:root {
  --bg: #FAFAF5;
  --bg-alt: #F2F2ED;
  --fg: #111111;
  --fg-2: #555555;
  --fg-3: #999999;
  --accent: #FF5722;
  --accent-dark: #E64A19;
  --border: #E0E0DA;
  --font-head: 'Syne', sans-serif;
  --font-body: 'Figtree', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 14px;
  color: var(--fg-3);
  font-weight: 400;
}

/* Hero */
.hero {
  padding: 80px 40px 60px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-2);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 32px;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--fg-2);
  background: white;
}

/* Phone mockup */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.phone-frame {
  width: 240px;
  background: #1A1A1A;
  border-radius: 36px;
  padding: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 0 0 1px rgba(255,255,255,0.08);
}
.phone-notch {
  width: 80px;
  height: 24px;
  background: #1A1A1A;
  border-radius: 20px;
  margin: 0 auto 12px;
}
.phone-screen {
  background: #000;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.video-mock {
  padding: 16px;
}
.video-mock-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.vm-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF5722, #FF8A65);
}
.vm-name {
  font-size: 13px;
  font-weight: 600;
  color: white;
  font-family: var(--font-body);
}
.video-mock-body {
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
  border-radius: 16px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}
.video-mock-body::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,87,34,0.08) 0%, transparent 100%);
}
.vm-play-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vm-waveform {
  width: 120px;
  height: 24px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.3) 0, rgba(255,255,255,0.3) 3px, transparent 3px, transparent 6px);
  border-radius: 4px;
}
.video-mock-actions {
  display: flex;
  gap: 16px;
}
.vm-action {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: white;
}
.video-mock-caption {
  padding: 10px 12px;
}
.caption-text {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.video-mock-reel {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 2px 6px;
}
.reel-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  color: white;
  letter-spacing: 0.1em;
}
.phone-home-bar {
  width: 100px;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
  margin: 12px auto 4px;
}
.hero-stats {
  display: flex;
  gap: 40px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-3);
}

/* Proof bar */
.proof {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 40px;
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.proof-label {
  font-size: 13px;
  color: var(--fg-3);
  white-space: nowrap;
}
.proof-categories {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.proof-categories span {
  font-size: 13px;
  color: var(--fg-2);
  font-weight: 500;
}
.proof-categories .dot {
  color: var(--fg-3);
}

/* Section shared */
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--fg);
}

/* Services */
.services {
  padding: 100px 40px;
  background: var(--bg);
}
.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.services .section-headline {
  margin-bottom: 60px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.service-card {
  padding: 36px 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: background 0.2s;
}
.service-card:hover {
  background: white;
}
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.service-card p {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.6;
}

/* Process */
.process {
  padding: 100px 40px;
  background: var(--fg);
  color: white;
}
.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.process .section-eyebrow {
  color: rgba(255,255,255,0.4);
}
.process .section-headline {
  color: white;
  margin-bottom: 60px;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.step {
  display: flex;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: flex-start;
}
.step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.05em;
  padding-top: 4px;
  min-width: 28px;
}
.step-body h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.step-body p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 540px;
}
.process-callout {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 28px;
  background: rgba(255,87,34,0.12);
  border: 1px solid rgba(255,87,34,0.25);
  border-radius: 12px;
}
.callout-code {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  white-space: nowrap;
}
.process-callout p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

/* Pricing */
.pricing {
  padding: 100px 40px;
  background: var(--bg);
}
.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pricing .section-headline {
  margin-bottom: 60px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.pricing-card {
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: white;
  position: relative;
}
.pricing-card-featured {
  border-color: var(--accent);
  background: #111111;
  color: white;
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  font-family: var(--font-mono);
}
.pricing-tier {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-3);
  margin-bottom: 12px;
}
.pricing-card-featured .pricing-tier {
  color: rgba(255,255,255,0.5);
}
.pricing-price {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -2px;
  margin-bottom: 28px;
}
.pricing-price span {
  font-size: 18px;
  font-weight: 500;
  color: var(--fg-3);
  letter-spacing: 0;
}
.pricing-card-featured .pricing-price {
  color: white;
}
.pricing-card-featured .pricing-price span {
  color: rgba(255,255,255,0.5);
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--fg-2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}
.pricing-card-featured .pricing-features li {
  color: rgba(255,255,255,0.7);
}
.pricing-note {
  text-align: center;
  padding: 24px;
  border: 1px dashed var(--border);
  border-radius: 12px;
}
.note-code {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 500;
  color: var(--fg);
  display: block;
  margin-bottom: 8px;
}
.pricing-note p {
  font-size: 14px;
  color: var(--fg-3);
}

/* Closing */
.closing {
  padding: 100px 40px;
  background: var(--fg);
  overflow: hidden;
  position: relative;
}
.closing::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,87,34,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.closing-content {
  max-width: 700px;
}
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: white;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 48px;
}
.closing-code {
  font-family: var(--font-head);
  font-size: 120px;
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  letter-spacing: -4px;
  line-height: 1;
  user-select: none;
}

/* Form */
.form-page {
  min-height: 100vh;
  background: var(--bg);
}
.form-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 40px 100px;
}
.form-header {
  margin-bottom: 48px;
}
.form-header h1 {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 12px;
}
.form-header p {
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.7;
}
.form-section {
  margin-bottom: 40px;
}
.form-section-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.3px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-2);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg);
  background: white;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,87,34,.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23555555' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: all .2s;
  font-size: 14px;
  color: var(--fg-2);
}
.checkbox-item input {
  display: none;
}
.checkbox-item.selected {
  border-color: var(--accent);
  background: #FFF4F0;
  color: var(--accent);
  font-weight: 500;
}
.form-submit {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 20px;
}
.btn-primary {
  padding: 14px 36px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.btn-primary:hover {
  background: var(--accent-dark);
}
.form-note {
  font-size: 13px;
  color: var(--fg-3);
  line-height: 1.6;
}

/* Success state */
.success-state {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 40px 100px;
}
.success-header {
  margin-bottom: 36px;
}
.success-icon {
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.success-icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
}
.success-header h1 {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 12px;
}
.success-header p {
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.7;
}
.brief-preview {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 24px;
}
.brief-preview-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-alt);
}
.brief-preview-header h2 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.3px;
}
.brief-preview-body {
  padding: 24px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.8;
  color: var(--fg);
  white-space: pre-wrap;
  max-height: 500px;
  overflow-y: auto;
}
.error-msg {
  padding: 16px 20px;
  background: #FFF0EC;
  border: 1px solid #FFCDBF;
  border-radius: 10px;
  color: #C62828;
  font-size: 14px;
  margin-bottom: 24px;
}

/* Footer */
.footer {
  padding: 32px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--fg);
}
.footer-slug {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-3);
}
.footer-copy {
  font-size: 13px;
  color: var(--fg-3);
}

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 60px 24px 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { order: -1; }
  .phone-frame { width: 180px; }
  .hero-stats { gap: 24px; }
  .services { padding: 60px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .process { padding: 60px 24px; }
  .step { gap: 20px; }
  .pricing { padding: 60px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .closing { padding: 60px 24px; }
  .closing-code { font-size: 64px; }
  .footer { padding: 24px; }
}