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

:root {
  --bg: #09090B;
  --bg-raised: #111114;
  --bg-overlay: #18181B;
  --border-subtle: #1E1E22;
  --border: #2A2A2E;

  --text: #FAF9F6;
  --text-secondary: #A8A29E;
  --text-muted: #6B6560;

  --gold: #C9A84C;
  --gold-light: #E2C878;
  --gold-dark: #A68A3E;
  --gold-glow: rgba(201, 168, 76, 0.10);
  --gold-text: #DFBE68;

  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  --section-gap: clamp(80px, 12vw, 140px);
  --container: min(1200px, 90vw);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* Scroll reveal system */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--delay, 0ms);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 5vw;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom-color: var(--border-subtle);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.nav-cta:hover { color: var(--bg); }
.nav-links .nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 0 0 var(--gold-glow);
}
.nav-links .nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px var(--gold-glow);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 72px;
  background: rgba(9, 9, 11, 0.97);
  backdrop-filter: blur(24px);
  z-index: 99;
  padding: 40px 5vw;
  flex-direction: column;
  gap: 24px;
}
.mobile-menu.open { display: flex; }
body.menu-open { overflow: hidden; }
.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.mobile-menu a.nav-cta {
  margin-top: 8px;
  padding: 14px 24px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 10px;
  border-bottom: none;
  text-align: center;
}
.mobile-menu a.nav-cta:hover {
  background: var(--gold-light);
}

/* ── HERO ── */
.hero {
  padding: 160px 5vw 100px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  right: -100px;
  top: -100px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  left: 10%;
  bottom: -200px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  font-weight: 400;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-text);
}
.hero-sub {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 0 0 var(--gold-glow);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--gold-glow);
}
.btn-secondary {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}
.btn-secondary:hover { color: var(--text); }
.btn-secondary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}
.btn-secondary:hover svg { transform: translateX(3px); }

/* Dashboard mockup */
.dashboard {
  background: var(--bg-raised);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(0,0,0,0.4),
    0 0 80px var(--gold-glow);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.5s var(--ease-out);
}
.dashboard:hover {
  transform: perspective(1200px) rotateY(-1deg) rotateX(0.5deg);
}
.dash-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-subtle);
}
.dash-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
}
.dash-dot:first-child { background: #EF4444; }
.dash-dot:nth-child(2) { background: #F59E0B; }
.dash-dot:nth-child(3) { background: #22C55E; }
.dash-body { padding: 20px; }
.dash-greeting {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.dash-greeting strong {
  color: var(--text);
  font-weight: 600;
}
.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.dash-stat {
  background: var(--bg);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 14px 12px;
}
.dash-stat-value {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.dash-stat-value.gold { color: var(--gold-text); }
.dash-stat-label {
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.dash-tasks {
  background: var(--bg);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  overflow: hidden;
}
.dash-tasks-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-subtle);
}
.dash-tasks-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
}
.dash-tasks-badge {
  font-size: 0.625rem;
  font-weight: 700;
  background: var(--gold);
  color: var(--bg);
  padding: 2px 8px;
  border-radius: 99px;
}
.dash-task-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.75rem;
}
.dash-task-item:last-child { border-bottom: none; }
.dash-task-check {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  border: 1.5px solid var(--border);
  flex-shrink: 0;
}
.dash-task-check.done {
  background: var(--gold);
  border-color: var(--gold);
  position: relative;
}
.dash-task-check.done::after {
  content: '\2713';
  position: absolute;
  top: -1px;
  left: 1.5px;
  font-size: 10px;
  color: var(--bg);
  font-weight: 700;
}
.dash-task-text { color: var(--text-secondary); }
.dash-task-text.done { color: var(--text-muted); text-decoration: line-through; }
.dash-task-time {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 0.6875rem;
  flex-shrink: 0;
}

/* ── TRUST BAR ── */
.trust {
  padding: 60px 5vw;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.trust-inner {
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}
.trust-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
  flex-wrap: wrap;
}
.trust-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-muted);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.trust-logo:hover { opacity: 0.8; }

/* ── PROBLEM / BEFORE-AFTER ── */
.problem {
  padding: var(--section-gap) 5vw;
}
.problem-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.problem-header {
  max-width: 680px;
  margin-bottom: 64px;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.comparison-card {
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
}
.comparison-card.before {
  background: linear-gradient(135deg, var(--bg-raised) 0%, rgba(30, 20, 20, 0.4) 100%);
}
.comparison-card.after {
  background: linear-gradient(135deg, var(--bg-raised) 0%, rgba(30, 28, 15, 0.4) 100%);
  border-color: rgba(201, 168, 76, 0.15);
}
.comparison-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.before .comparison-label { color: #EF4444; }
.after .comparison-label { color: var(--gold); }
.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.before .comparison-list li { color: var(--text-secondary); }
.after .comparison-list li { color: var(--text); }
.comparison-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}
.before .comparison-icon { color: #EF4444; }
.after .comparison-icon { color: var(--gold); }

/* ── FEATURES ── */
.features {
  padding: var(--section-gap) 5vw;
}
.features-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.features-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bento-card {
  background: var(--bg-raised);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 36px 32px;
  transition: border-color 0.3s ease, transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.bento-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.bento-card.wide { grid-column: span 2; }
.bento-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gold-glow);
  border: 1px solid rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}
.bento-icon svg { width: 22px; height: 22px; }
.bento-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.bento-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── HOW IT WORKS ── */
.how {
  padding: var(--section-gap) 5vw;
  border-top: 1px solid var(--border-subtle);
}
.how-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.how-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 1px;
  background: linear-gradient(90deg, var(--border-subtle), var(--gold-dark), var(--border-subtle));
}
.step { text-align: center; position: relative; }
.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold-text);
  position: relative;
  z-index: 1;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

/* ── PRICING ── */
.pricing {
  padding: var(--section-gap) 5vw;
}
.pricing-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.pricing-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 20px;
}
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 56px;
}
.pricing-toggle-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}
.pricing-toggle-label.active { color: var(--text); }
.toggle-switch {
  width: 48px;
  height: 26px;
  background: var(--border);
  border-radius: 99px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
  border: none;
}
.toggle-switch.active { background: var(--gold-dark); }
.toggle-switch::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--text);
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.3s var(--ease-out);
}
.toggle-switch.active::after { transform: translateX(22px); }
.pricing-save {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-glow);
  padding: 4px 10px;
  border-radius: 99px;
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-raised);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s var(--ease-out);
}
.pricing-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}
.pricing-card.featured {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 0 60px var(--gold-glow);
}
.pricing-card.featured:hover { border-color: rgba(201, 168, 76, 0.5); }
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 99px;
}
.pricing-tier {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.pricing-price .currency {
  font-size: 1.25rem;
  vertical-align: super;
  color: var(--text-secondary);
}
.pricing-price .period {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 400;
}
.pricing-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.5;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.pricing-features li svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}
.btn-outline {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}
.btn-outline:hover {
  border-color: var(--text-muted);
  background: rgba(255,255,255,0.03);
  transform: translateY(-1px);
}
.pricing-card.featured .btn-outline {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}
.pricing-card.featured .btn-outline:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: var(--section-gap) 5vw;
  border-top: 1px solid var(--border-subtle);
}
.testimonials-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.testimonials-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial {
  background: var(--bg-raised);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 36px 32px;
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 20px;
  color: var(--gold);
}
.testimonial-stars svg { width: 16px; height: 16px; }
.testimonial-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
}
.testimonial-name {
  font-size: 0.875rem;
  font-weight: 600;
}
.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── FAQ ── */
.faq {
  padding: var(--section-gap) 5vw;
}
.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}
.faq-header {
  text-align: center;
  margin-bottom: 56px;
}
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color 0.2s ease;
}
.faq-question:hover { color: var(--gold-text); }
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s var(--ease-out), color 0.2s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--gold);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease-out);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 0 24px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── FINAL CTA / WAITLIST ── */
.final-cta {
  padding: var(--section-gap) 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-glow {
  position: absolute;
  width: 800px;
  height: 400px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.final-cta h2 em {
  font-style: italic;
  color: var(--gold-text);
}
.final-cta p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}
.final-cta-note {
  margin-top: 16px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Waitlist form */
.waitlist-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}
.waitlist-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.waitlist-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.waitlist-form label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.waitlist-form input {
  padding: 14px 16px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.waitlist-form input::placeholder {
  color: var(--text-muted);
}
.waitlist-form input:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.waitlist-form .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
.waitlist-success {
  text-align: center;
  padding: 40px 0;
}
.waitlist-success .success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--gold);
}
.waitlist-success h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 12px;
}
.waitlist-success p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0;
}
.waitlist-error {
  color: #EF4444;
  font-size: 0.8125rem;
  text-align: center;
  margin-top: 8px;
}

/* ── FOOTER ── */
.footer {
  padding: 60px 5vw 40px;
  border-top: 1px solid var(--border-subtle);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .nav-logo { display: inline-block; margin-bottom: 16px; }
.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
}
.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  max-width: var(--container);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ── CONTENT PAGES (Privacy, Terms) ── */
.content-page {
  padding: 140px 5vw 80px;
}
.content-page-inner {
  max-width: 720px;
  margin: 0 auto;
}
.content-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.content-page .last-updated {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}
.content-page h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-top: 48px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.content-page p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}
.content-page ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
  padding-left: 0;
}
.content-page ul li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}
.content-page ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.content-page a {
  color: var(--gold-text);
  text-decoration: none;
  transition: color 0.2s ease;
}
.content-page a:hover {
  color: var(--gold-light);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .dashboard { transform: perspective(1200px) rotateY(0deg) rotateX(2deg); max-width: 560px; }
  .comparison { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-card.wide { grid-column: span 2; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 120px 5vw 60px; }
  .hero h1 { font-size: 2.25rem; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .steps::before { display: none; }
  .bento { grid-template-columns: 1fr; }
  .bento-card.wide { grid-column: span 1; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .waitlist-form .form-row { grid-template-columns: 1fr; }
}
