:root {
  --navy: #0F1629;
  --cream: #FAF8F5;
  --amber: #F59E0B;
  --amber-dark: #D97706;
  --text-dark: #1A1A2E;
  --text-mid: #64748B;
  --text-light: #CBD5E1;
  --border: rgba(15, 22, 41, 0.12);
  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  background: var(--navy);
  color: var(--cream);
  padding: 96px 80px 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  max-width: 780px;
}

.hero-headline em {
  font-style: italic;
  color: var(--amber);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 0;
}

.stat {
  padding: 20px 40px 20px 0;
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  display: block;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.4;
  max-width: 130px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(250,248,245,0.15);
  margin: 0 40px;
  flex-shrink: 0;
}

.hero-accent-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 320px;
  height: 4px;
  background: var(--amber);
}

/* HOW IT WORKS */
.how-it-works {
  background: var(--cream);
  padding: 100px 80px;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 16px;
}

.section-label.light { color: var(--amber); }

.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  max-width: 680px;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 64px;
}

.workflow-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 64px;
}

.step {
  flex: 1;
  padding-right: 48px;
}

.step-connector {
  width: 48px;
  height: 1px;
  background: var(--border);
  margin-top: 32px;
  flex-shrink: 0;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}

.step-content h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.step-content p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.65;
}

.workflow-visual {
  background: var(--navy);
  border-radius: 12px;
  padding: 28px 32px;
  overflow: hidden;
}

.wv-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,248,245,0.4);
  margin-bottom: 20px;
}

.wv-row {
  display: grid;
  grid-template-columns: 1fr 100px 70px 180px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid rgba(250,248,245,0.08);
  gap: 16px;
}

.wv-row.wv-paid { opacity: 0.6; }

.wv-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--cream);
}

.wv-amount {
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
  font-variant-numeric: tabular-nums;
}

.wv-age {
  font-size: 13px;
  color: var(--text-light);
}

.wv-paid .wv-age { color: rgba(250,248,245,0.4); }

.wv-status {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  text-align: center;
}

.status-following { background: rgba(245,158,11,0.15); color: #FCD34D; }
.status-escalated { background: rgba(239,68,68,0.15); color: #FCA5A5; }
.status-waiting { background: rgba(100,116,139,0.15); color: var(--text-light); }
.status-paid { background: rgba(34,197,94,0.15); color: #86EFAC; }

/* PROBLEM */
.problem {
  background: var(--navy);
  padding: 100px 80px;
}

.problem-inner { max-width: 900px; }

.problem-headline {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 24px;
  max-width: 720px;
}

.problem-body {
  font-size: 17px;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 64px;
}

.problem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(250,248,245,0.1);
}

.p-stat-value {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 10px;
}

.p-stat-label {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

.problem-quote {
  border-left: 3px solid var(--amber);
  padding-left: 28px;
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
}

.quote-attr {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 13px;
  color: var(--text-mid);
  margin-top: 12px;
}

/* FEATURES */
.features {
  background: var(--cream);
  padding: 100px 80px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
}

.feature-icon {
  margin-bottom: 20px;
}

.feature h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.feature p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* PRINCIPLES */
.principles {
  background: var(--navy);
  padding: 100px 80px;
}

.principles-inner { max-width: 860px; }

.principles-headline {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 56px;
  max-width: 680px;
}

.principles-list { display: flex; flex-direction: column; gap: 0; }

.principle {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid rgba(250,248,245,0.1);
}

.principle-num {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  padding-top: 4px;
  min-width: 28px;
}

.principle-text h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.3;
}

.principle-text p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.65;
  max-width: 620px;
}

/* CLOSING */
.closing {
  background: var(--cream);
  padding: 100px 80px;
  text-align: left;
}

.closing-inner { max-width: 680px; }

.closing-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 24px;
}

.closing-headline {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.closing-body {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* FOOTER */
.footer {
  background: var(--navy);
  padding: 48px 80px;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-mid);
}

.footer-copy {
  font-size: 15px;
  color: var(--text-light);
  max-width: 360px;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-stats { grid-template-columns: repeat(2, 1fr); }
  .wv-row { grid-template-columns: 1fr 90px 60px 140px; }
}

@media (max-width: 768px) {
  .hero, .how-it-works, .problem, .features, .principles, .closing, .footer {
    padding: 64px 32px;
  }

  .hero-stats { flex-direction: column; gap: 24px; }
  .stat-divider { width: 40px; height: 1px; margin: 0; }

  .workflow-steps { flex-direction: column; gap: 32px; }
  .step-connector { width: 40px; height: 1px; }

  .problem-stats { grid-template-columns: 1fr; gap: 32px; }
  .feature-grid { grid-template-columns: 1fr; gap: 36px; }
  .principle { gap: 24px; }

  .wv-row { grid-template-columns: 1fr 80px 1fr; }
  .wv-status { grid-column: 1 / -1; }

  .footer-inner { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 40px; }
  .closing-headline { font-size: 36px; }
  .p-stat-value { font-size: 36px; }
}
