:root {
  --navy: #0a2e2a;
  --navy-2: #071f1c;
  --emerald: #0e8f6a;
  --emerald-light: #5ef2a8;
  --gold: #f0a93c;
  --gold-soft: #ffe9a8;
  --cream: #f4f8f6;
  --cream-2: #e9f2ee;
  --ink: #16241f;
  --ink-soft: #55655e;
  --line: #d9e5e0;
  --white: #ffffff;
  --radius: 20px;
  --radius-sm: 12px;
  --maxw: 1180px;
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --dur: 0.6s;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--navy); color: var(--cream); padding: 12px 18px; z-index: 999; }
.skip-link:focus { left: 12px; top: 12px; }

.eyebrow { font-size: 0.8rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--emerald); font-weight: 700; margin: 0 0 16px; }
.eyebrow-light { color: var(--gold-soft); }
.section-title { font-family: var(--serif); font-size: clamp(1.9rem, 3.6vw, 2.6rem); font-weight: 400; line-height: 1.15; margin: 0 0 44px; max-width: 620px; color: var(--navy); }
.section-title-light { font-family: var(--serif); font-size: clamp(1.9rem, 3.6vw, 2.6rem); font-weight: 400; color: var(--white); margin: 0 0 24px; }
.accent-text { color: var(--gold); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 15px 28px; border-radius: 999px; text-decoration: none; font-weight: 700; font-size: 0.95rem; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); border: 1px solid transparent; cursor: pointer; }
.btn-primary { background: var(--gold); color: var(--navy-2); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(240,169,60,0.55); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--cream); }
.btn-gold { background: linear-gradient(120deg, var(--gold-soft), var(--gold)); color: var(--navy-2); padding: 18px 36px; font-size: 1.02rem; box-shadow: 0 20px 40px -18px rgba(240,169,60,0.6); }
.btn-gold:hover { transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-arrow { display: inline-block; transition: transform 0.3s var(--ease); }
.btn-primary:hover .btn-arrow, .btn-gold:hover .btn-arrow { transform: translateX(4px); }

.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: linear-gradient(90deg, var(--emerald-light), var(--gold)); z-index: 400; transition: width 0.1s linear; }

.site-header { position: sticky; top: 0; z-index: 200; background: rgba(244,248,246,0.9); backdrop-filter: blur(10px); border-bottom: 1px solid transparent; transition: border-color var(--dur) var(--ease); }
.site-header.is-scrolled { border-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 20px 28px; transition: padding var(--dur) var(--ease); }
.site-header.is-scrolled .header-inner { padding: 12px 28px; }
.logo { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; color: var(--navy); text-decoration: none; }
.logo span { color: var(--gold); }

.hero { position: relative; padding: 110px 0 90px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.blob { position: absolute; border-radius: 44% 56% 62% 38% / 45% 40% 60% 55%; filter: blur(6px); }
.blob-1 { width: 480px; height: 480px; right: -160px; top: -140px; background: radial-gradient(circle at 35% 35%, var(--emerald-light), var(--navy) 75%); opacity: 0.3; }
.blob-2 { width: 300px; height: 300px; left: -100px; bottom: -80px; background: radial-gradient(circle at 40% 40%, var(--gold-soft), transparent 75%); opacity: 0.35; }

.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.badge-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--line); padding: 8px 18px; border-radius: 999px; font-size: 0.85rem; font-weight: 700; color: var(--navy); margin: 0 0 24px; }
.hero-title { font-family: var(--serif); font-size: clamp(2.6rem, 6vw, 4rem); line-height: 1.08; font-weight: 400; margin: 0 0 22px; color: var(--navy); }
.hero-sub { font-size: 1.08rem; color: var(--ink-soft); max-width: 480px; margin: 0 0 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.trust-row { display: flex; gap: 22px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--ink-soft); font-weight: 600; }
.trust-check { color: var(--emerald); font-weight: 700; }
.hero-visual { display: flex; justify-content: center; }
.hero-visual img { border-radius: var(--radius); box-shadow: 0 40px 70px -30px rgba(10,46,42,0.4); }

.wave-seam { line-height: 0; }
.wave-seam svg { display: block; width: 100%; height: 60px; }
.wave-seam.bg-cream { background: var(--cream); }
.wave-seam.bg-blush { background: var(--cream); }
.wave-seam svg.fill-navy path { fill: var(--navy); }

.pain { padding: 90px 0; background: var(--navy); color: var(--white); }
.pain-grid { max-width: 820px; }
.pain-copy h2 { font-family: var(--serif); font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 400; line-height: 1.2; margin: 0 0 36px; }
.pain-list { list-style: none; padding: 0; margin: 0 0 34px; display: grid; gap: 16px; }
.pain-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 1.02rem; color: #d7e6e0; }
.pain-icon { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,0.12); color: var(--gold-soft); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; margin-top: 2px; }
.pain-bridge { font-family: var(--serif); font-size: 1.3rem; color: var(--gold-soft); }

.topics { padding: 100px 0; }
.topics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.topic-card { position: relative; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.topic-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -28px rgba(10,46,42,0.3); }
.topic-card img { margin-bottom: 16px; }
.topic-card h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; margin: 0 0 8px; color: var(--navy); }
.topic-card p { color: var(--ink-soft); font-size: 0.92rem; margin: 0; }

.spotlight::before { content: ""; position: absolute; inset: 0; background: radial-gradient(300px circle at var(--mx, 50%) var(--my, 50%), rgba(240,169,60,0.16), transparent 70%); opacity: 0; transition: opacity 0.4s var(--ease); pointer-events: none; }
.spotlight:hover::before { opacity: 1; }

.forwho { padding: 100px 0; background: var(--navy-2); color: var(--white); }
.forwho-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.forwho-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.forwho-list li { padding-left: 30px; position: relative; color: #d7e6e0; font-size: 1.02rem; }
.forwho-list li::before { content: "✓"; position: absolute; left: 0; color: var(--emerald-light); font-weight: 700; }
.includes-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); padding: 32px 28px; }
.includes-title { font-family: var(--serif); font-size: 1.3rem; color: var(--gold-soft); margin: 0 0 18px; }
.includes-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.includes-card li { padding-left: 26px; position: relative; color: #d7e6e0; font-size: 0.95rem; }
.includes-card li::before { content: "★"; position: absolute; left: 0; color: var(--gold); font-size: 0.8rem; }

.pricing { padding: 100px 0; text-align: center; }
.pricing-inner { max-width: 420px; margin: 0 auto; }
.price-card { position: relative; overflow: hidden; background: var(--white); border: 2px solid var(--gold); border-radius: var(--radius); padding: 40px 32px; box-shadow: 0 30px 60px -30px rgba(10,46,42,0.3); }
.price-amount { font-family: var(--serif); font-size: 3.4rem; color: var(--navy); margin: 0; }
.price-currency { font-size: 1.6rem; vertical-align: top; }
.price-note { color: var(--ink-soft); font-size: 0.9rem; margin: 4px 0 24px; }
.price-cta { width: 100%; }
.price-fine { font-size: 0.78rem; color: var(--ink-soft); margin: 16px 0 0; }

.faq { padding: 100px 0; background: var(--cream-2); }
.accordion { display: grid; gap: 14px; max-width: 780px; }
.accordion-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.accordion-trigger { width: 100%; display: flex; align-items: center; gap: 18px; padding: 20px 22px; background: none; border: none; text-align: left; cursor: pointer; font-family: var(--sans); }
.accordion-title { flex: 1; font-weight: 700; color: var(--navy); font-size: 1rem; }
.accordion-chevron { flex-shrink: 0; width: 10px; height: 10px; border-right: 2px solid var(--navy); border-bottom: 2px solid var(--navy); transform: rotate(45deg); transition: transform 0.3s var(--ease); }
.accordion-trigger[aria-expanded="true"] .accordion-chevron { transform: rotate(-135deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.accordion-panel p { margin: 0 22px 20px; color: var(--ink-soft); }

.final-cta { padding: 110px 0; text-align: center; background: var(--navy); color: var(--white); }
.final-cta-inner { max-width: 560px; margin: 0 auto; }
.final-cta h2 { font-family: var(--serif); font-size: clamp(2rem, 3.8vw, 2.8rem); font-weight: 400; margin: 0 0 16px; }
.final-cta p { color: #d7e6e0; margin: 0 0 34px; }

.site-footer { background: var(--navy-2); color: #a9bdb5; padding: 32px 0; }
.footer-inner { display: flex; flex-direction: column; gap: 10px; }
.footer-logo { color: var(--white); font-size: 1.1rem; }
.site-footer p { margin: 0; font-size: 0.78rem; max-width: 620px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Hero showcase extras ---------- */
.hero-showcase { position: relative; display: inline-block; }
.orbit-ring { position: absolute; inset: -18px; border: 1.5px dashed rgba(14,143,106,0.35); border-radius: 50%; animation: orbitSpin 40s linear infinite; }
@media (prefers-reduced-motion: reduce) { .orbit-ring { animation: none; } }
@keyframes orbitSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.float-chip {
  position: absolute; background: var(--white); border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 14px; font-size: 0.78rem; font-weight: 700; color: var(--navy);
  box-shadow: 0 14px 28px -16px rgba(10,46,42,0.35); animation: chipFloat 5s ease-in-out infinite; white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) { .float-chip { animation: none; } }
@keyframes chipFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.chip-a { top: 6%; left: -14%; animation-delay: 0s; }
.chip-b { bottom: 8%; right: -16%; animation-delay: 1.4s; }
@media (max-width: 720px) { .chip-a, .chip-b { display: none; } }

/* ---------- Marquee ---------- */
.marquee-strip { background: var(--navy-2); color: var(--gold-soft); overflow: hidden; padding: 14px 0; white-space: nowrap; }
.marquee-track { display: inline-flex; gap: 14px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; animation: marqueeScroll 26s linear infinite; }
.marquee-track span { flex-shrink: 0; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } .marquee-strip { overflow-x: auto; } }

/* ---------- Stats band ---------- */
.stats-band { background: var(--navy); color: var(--white); padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-num { display: block; font-family: var(--serif); font-size: clamp(1.9rem, 4vw, 2.4rem); color: var(--gold-soft); }
.stat-label { font-size: 0.8rem; color: #b9d4cb; }

/* ---------- How it works ---------- */
.howworks { padding: 100px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; }
.step-num { font-family: var(--serif); font-size: 1.7rem; color: var(--gold); display: block; margin-bottom: 12px; }
.step-card h3 { font-family: var(--serif); font-weight: 400; font-size: 1.2rem; margin: 0 0 8px; color: var(--navy); }
.step-card p { color: var(--ink-soft); font-size: 0.92rem; margin: 0; }

/* ---------- Corner brackets ---------- */
.includes-card { position: relative; }
.corner { position: absolute; width: 28px; height: 28px; border: 2px solid var(--gold); z-index: 1; }
.corner-tl { top: -12px; left: -12px; border-right: none; border-bottom: none; }
.corner-br { bottom: -12px; right: -12px; border-left: none; border-top: none; }

/* ---------- Extra wave-seam variants ---------- */
.wave-seam.bg-navy2 { background: var(--navy-2); }
.wave-seam.bg-cream2 { background: var(--cream-2); }
.wave-seam svg.fill-cream path { fill: var(--cream); }
.wave-seam svg.fill-cream2 path { fill: var(--cream-2); }

@media (max-width: 960px) {
  .hero-inner, .forwho-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 320px; margin: 0 auto 12px; }
  .topics-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .topics-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .wave-seam svg { height: 32px; }
  .marquee-track { font-size: 0.7rem; }
}
