:root {
  --navy: #0f1c2e;
  --amber: #e8a427;
  --offwhite: #f4f0e8;
  --light-gray: #ece8e1;
  --text: #1c1c2e;
  --muted: #6b6b7a;
  --white: #ffffff;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

/* ── Nav ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 64px;
  border-bottom: 1px solid rgba(15,28,46,0.08);
}
.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.brand-mark { color: var(--amber); margin-right: 6px; }
.nav-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Hero ── */
.hero {
  padding: 80px 64px 100px;
  background: var(--offwhite);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 40px;
  line-height: 1.65;
}
.hero-pillars {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 500;
}
.pillar-icon { color: var(--amber); font-size: 0.65rem; }

/* ── Device mockup ── */
.hero-right {
  display: flex;
  justify-content: center;
}
.device-frame {
  width: 320px;
  background: var(--navy);
  border-radius: 28px;
  padding: 14px;
  box-shadow: 0 40px 80px rgba(15,28,46,0.18), 0 8px 24px rgba(15,28,46,0.12);
}
.device-notch {
  width: 100px;
  height: 22px;
  background: var(--navy);
  border-radius: 0 0 14px 14px;
  margin: 0 auto 12px;
}
.device-screen {
  background: #f0ede6;
  border-radius: 18px;
  overflow: hidden;
}
.video-card { padding: 18px; }
.video-card-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.video-card-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, #2a4060 100%);
  flex-shrink: 0;
}
.video-card-meta { flex: 1; }
.video-card-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}
.video-card-title {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 1px;
}
.video-card-body { margin-bottom: 14px; }
.video-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--navy);
  line-height: 1.5;
  padding: 10px;
  background: var(--white);
  border-left: 3px solid var(--amber);
  border-radius: 0 6px 6px 0;
  margin-bottom: 10px;
}
.video-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag {
  font-size: 0.62rem;
  padding: 2px 8px;
  background: rgba(15,28,46,0.08);
  border-radius: 20px;
  color: var(--navy);
  font-weight: 500;
}
.video-card-stats {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid rgba(15,28,46,0.1);
}
.stat { display: flex; gap: 4px; align-items: baseline; }
.stat-num { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.stat-label { font-size: 0.62rem; color: var(--muted); }
.video-card-footer { padding: 0 18px 16px; }
.mini-video-list {
  display: flex;
  gap: 8px;
}
.mini-vid {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(15,28,46,0.12);
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--muted);
}
.mini-vid.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.mini-vid-thumb {
  width: 16px; height: 16px;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(15,28,46,0.15), rgba(232,164,39,0.2));
}

/* ── How It Works ── */
.howitworks {
  padding: 100px 64px;
  background: var(--white);
}
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 64px;
  max-width: 600px;
}
.steps {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1100px;
}
.step {
  flex: 1;
  padding: 0 40px;
}
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }
.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(15,28,46,0.1);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 20px;
}
.step-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}
.step-connector {
  font-size: 1.4rem;
  color: var(--amber);
  font-family: var(--font-display);
  flex-shrink: 0;
  padding: 0 8px;
  margin-top: -32px;
}

/* ── Compliance ── */
.compliance {
  padding: 100px 64px;
  background: var(--navy);
}
.compliance-inner {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.compliance-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 36px;
  border: 2px solid var(--amber);
  border-radius: 16px;
  flex-shrink: 0;
  text-align: center;
}
.badge-icon { font-size: 2rem; color: var(--amber); }
.badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--amber);
  line-height: 1.4;
}
.compliance-content { flex: 1; }
.compliance-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.compliance-body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 600px;
}
.compliance-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ctag {
  padding: 5px 14px;
  border: 1px solid rgba(232,164,39,0.4);
  border-radius: 20px;
  font-size: 0.78rem;
  color: var(--amber);
  font-weight: 500;
}

/* ── Pricing ── */
.pricing {
  padding: 100px 64px;
  background: var(--offwhite);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.plan {
  background: var(--white);
  border: 1px solid rgba(15,28,46,0.1);
  border-radius: 16px;
  padding: 36px;
  position: relative;
}
.plan-featured {
  background: var(--navy);
  border-color: var(--navy);
}
.plan-featured .plan-name,
.plan-featured .plan-price,
.plan-featured .plan-features li,
.plan-featured .plan-cta { color: var(--white); }
.plan-featured .plan-features li { border-color: rgba(255,255,255,0.1); }
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.plan-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.plan-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted);
}
.plan-featured .plan-price span { color: rgba(255,255,255,0.5); }
.plan-features {
  list-style: none;
  margin-bottom: 28px;
}
.plan-features li {
  font-size: 0.85rem;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid rgba(15,28,46,0.07);
  line-height: 1.4;
}
.plan-features li:last-child { border-bottom: none; }
.plan-cta {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
  text-align: center;
}

/* ── Outro ── */
.outro {
  padding: 100px 64px;
  background: linear-gradient(160deg, var(--light-gray) 0%, var(--offwhite) 100%);
}
.outro-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.outro-quote-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--amber);
  line-height: 0.5;
  margin-bottom: 32px;
  display: block;
}
.outro-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.outro-attribution {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Footer ── */
.footer {
  padding: 40px 64px;
  background: var(--navy);
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-meta { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-bottom: 12px; }
.footer-note { font-size: 0.72rem; color: rgba(255,255,255,0.2); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav { padding: 20px 28px; }
  .hero { padding: 60px 28px 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .steps { flex-direction: column; gap: 40px; }
  .step { padding: 0; }
  .step-connector { display: none; }
  .compliance-inner { flex-direction: column; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .pricing, .howitworks, .compliance, .outro { padding: 64px 28px; }
  .footer { padding: 32px 28px; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 2rem; }
  .section-headline { font-size: 1.6rem; }
  .plan { padding: 28px 24px; }
}