:root {
  --bg: #1a1a1f;
  --bg2: #0f0f14;
  --fg: #f5f0e8;
  --fg-muted: rgba(245,240,232,0.5);
  --accent: #ff4f3a;
  --accent-dim: rgba(255,79,58,0.15);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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 {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: linear-gradient(180deg, rgba(26,26,31,0.95) 0%, rgba(26,26,31,0) 100%);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 40px 60px;
  background: radial-gradient(ellipse at 60% 30%, rgba(255,79,58,0.06) 0%, transparent 60%), var(--bg);
  position: relative;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text { display: flex; flex-direction: column; gap: 24px; }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.hero-headline span { color: var(--accent); }
.hero-accent {
  display: block;
  font-style: italic;
  font-weight: 300;
  font-size: 0.85em;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 420px;
  line-height: 1.65;
}
.hero-illustration {
  display: flex;
  justify-content: flex-end;
}
.hero-illustration svg {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 0 60px rgba(255,79,58,0.2));
}

/* Stats row */
.hero-stats {
  max-width: 1200px;
  margin: 60px auto 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 32px 40px;
  background: rgba(255,79,58,0.04);
  border: 1px solid rgba(255,79,58,0.12);
  border-radius: 12px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  max-width: 180px;
  line-height: 1.4;
}
.stat-div {
  width: 1px;
  height: 40px;
  background: rgba(245,240,232,0.1);
  flex-shrink: 0;
}

/* Eyebrow */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

/* How it works */
.how-it-works {
  padding: 120px 40px;
  background: var(--bg2);
}
.how-header {
  max-width: 1200px;
  margin: 0 auto 60px;
}
.how-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.steps {
  max-width: 1200px;
  margin: 0 auto 60px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.step {
  flex: 1;
  padding: 32px;
  background: rgba(245,240,232,0.03);
  border: 1px solid rgba(245,240,232,0.06);
  border-radius: 12px;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.step:hover {
  border-color: rgba(255,79,58,0.3);
  background: rgba(255,79,58,0.03);
}
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 20px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.step p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.step-arrow {
  padding-top: 60px;
  flex-shrink: 0;
}
.process-visual {
  max-width: 1200px;
  margin: 0 auto;
}
.process-visual svg {
  width: 100%;
  height: auto;
}

/* The form */
.the-form {
  padding: 120px 40px;
  background: var(--bg);
}
.the-form-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.the-form-text h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.the-form-text p {
  color: var(--fg-muted);
  margin-bottom: 32px;
  line-height: 1.65;
}
.form-fields { display: flex; flex-direction: column; gap: 16px; }
.form-field {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--fg);
  opacity: 0.7;
}

/* Form card */
.form-preview { display: flex; justify-content: center; }
.form-card {
  width: 320px;
  background: #0d0d12;
  border: 1px solid rgba(245,240,232,0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 40px rgba(255,79,58,0.05);
}
.form-card-header {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(245,240,232,0.06);
}
.form-card-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.form-card-body { padding: 24px; }
.fcl {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
  margin-bottom: 12px;
}
.fci { margin-bottom: 14px; }
.fc-label {
  font-size: 10px;
  color: var(--fg-muted);
  margin-bottom: 6px;
}
.fc-line {
  height: 8px;
  background: rgba(245,240,232,0.1);
  border-radius: 4px;
  margin-bottom: 4px;
}
.fc-select {
  height: 28px;
  background: rgba(245,240,232,0.05);
  border: 1px solid rgba(245,240,232,0.1);
  border-radius: 6px;
}
.fc-tags { display: flex; gap: 8px; }
.fc-tag {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  background: rgba(245,240,232,0.06);
  color: var(--fg-muted);
  border: 1px solid rgba(245,240,232,0.1);
}
.fc-tag-active {
  background: rgba(255,79,58,0.15);
  color: var(--accent);
  border-color: rgba(255,79,58,0.3);
}
.fc-textarea {
  height: 60px;
  background: rgba(245,240,232,0.04);
  border: 1px solid rgba(245,240,232,0.08);
  border-radius: 8px;
}

/* Proof */
.proof {
  padding: 120px 40px;
  background: var(--bg2);
}
.proof-header {
  max-width: 1200px;
  margin: 0 auto 60px;
  text-align: center;
}
.proof-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.proof-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.proof-card {
  padding: 32px 28px;
  background: rgba(245,240,232,0.02);
  border: 1px solid rgba(245,240,232,0.06);
  border-radius: 12px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.proof-card:hover {
  border-color: rgba(255,79,58,0.25);
  transform: translateY(-4px);
}
.proof-icon { margin-bottom: 20px; }
.proof-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.proof-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Closing */
.closing {
  padding: 120px 40px;
  background: var(--bg);
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.closing p {
  font-size: 20px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Footer */
.footer {
  padding: 40px;
  border-top: 1px solid rgba(245,240,232,0.06);
  background: var(--bg2);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
}
.footer-copy {
  font-size: 13px;
  color: var(--fg-muted);
}

/* Mobile */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-illustration { justify-content: center; }
  .hero-illustration svg { max-width: 300px; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 20px; }
  .stat-div { display: none; }
  .steps { flex-direction: column; }
  .step-arrow { display: none; }
  .the-form-inner { grid-template-columns: 1fr; }
  .form-preview { display: none; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; gap: 8px; align-items: flex-start; }
  .nav { padding: 16px 20px; }
  .hero { padding: 100px 20px 60px; }
  .how-it-works, .the-form, .proof, .closing { padding: 80px 20px; }
}

@media (max-width: 480px) {
  .proof-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 40px; }
  .hero-stats { padding: 24px; }
}