:root {
  --turquoise: #2DD4BF;
  --turquoise-dark: #14b8a6;
  --navy: #1E293B;
  --obsidian: #0F172A;
  --clementine: #F59E0B;
  --ink: #0F172A;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #f1f5f9;
  --white: #ffffff;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --green: #16a34a;
  --green-dark: #15803d;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  --radius: 16px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
h1, h2, h3 { font-family: Inter, system-ui, sans-serif; letter-spacing: -0.03em; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

header.site {
  position: sticky; top: 0; z-index: 40;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(45, 212, 191, 0.18);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 16px;
}
.nav-links { display: flex; align-items: center; gap: 22px; font-size: 0.9rem; font-weight: 600; color: #94a3b8; }
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: var(--turquoise); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 10px; padding: 12px 18px; font-weight: 700; font-size: 0.92rem;
  border: 0; cursor: pointer; transition: 0.15s ease;
}
.btn-blue { background: var(--blue); color: white; }
.btn-blue:hover { background: var(--blue-dark); }
.btn-green { background: var(--green); color: white; }
.btn-green:hover { background: var(--green-dark); }
.btn-teal { background: var(--turquoise); color: var(--obsidian); }
.btn-teal:hover { background: var(--turquoise-dark); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { background: var(--bg); }
.btn-lg { padding: 14px 22px; font-size: 0.98rem; }

.hero {
  background:
    radial-gradient(900px 420px at 90% -8%, rgba(45,212,191,0.22), transparent 55%),
    radial-gradient(700px 380px at 8% 110%, rgba(245,158,11,0.12), transparent 50%),
    var(--obsidian);
  color: white; padding: 80px 0 0; overflow: hidden;
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(245,158,11,0.45);
  color: var(--clementine); background: rgba(245,158,11,0.08);
  border-radius: 999px; padding: 6px 12px; font-size: 0.78rem; font-weight: 700;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.3rem, 5.2vw, 3.7rem);
  line-height: 1.06; max-width: 16ch; margin-bottom: 16px;
}
.hero h1 em { font-style: normal; color: var(--turquoise); }
.hero .sub { max-width: 40rem; color: #cbd5e1; font-size: 1.08rem; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-shot {
  background: #0b1220; border-radius: 18px 18px 0 0;
  border: 1px solid rgba(45,212,191,0.18); border-bottom: 0;
  overflow: hidden; box-shadow: 0 -24px 80px rgba(45,212,191,0.12);
}
.hero-shot img { width: 100%; }

section { padding: 80px 0; }
.kicker { color: var(--turquoise-dark); font-weight: 800; font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 10px; }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); line-height: 1.2; margin-bottom: 12px; }
.lede { color: var(--muted); max-width: 40rem; margin-bottom: 36px; }

.features { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 28px; align-items: center; }
.features.reverse { grid-template-columns: 0.85fr 1.15fr; }
.features.reverse .copy { order: 2; }
.shot {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--line); background: white;
}
.shot img { width: 100%; }
.feature-list { list-style: none; display: grid; gap: 10px; margin-top: 18px; color: var(--muted); }
.feature-list li { display: flex; gap: 10px; }
.tick { color: var(--turquoise-dark); font-weight: 800; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px;
}
.card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.95rem; }

.trust {
  background: var(--navy); color: white; padding: 22px 0; text-align: center; font-weight: 600;
}
.alt { background: var(--bg); }

.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: stretch; }
.price-card {
  background: white; border: 1px solid var(--line); border-radius: 20px; padding: 28px;
  box-shadow: var(--shadow);
}
.price-card.year { border-top: 6px solid var(--blue); }
.price-card.life { border-top: 6px solid var(--green); position: relative; }
.badge {
  position: absolute; top: 16px; right: 16px;
  background: #ecfdf3; color: var(--green-dark);
  font-size: 0.75rem; font-weight: 800; padding: 5px 10px; border-radius: 999px;
}
.price { font-size: 2.4rem; letter-spacing: -0.04em; font-weight: 800; margin: 8px 0 4px; }
.price span { font-size: 1rem; font-weight: 600; color: var(--muted); }
.tagline { color: var(--muted); margin-bottom: 18px; }
.checks { list-style: none; display: grid; gap: 10px; margin: 0 0 22px; }
.checks li { display: flex; gap: 8px; }
.warn {
  background: #fffbeb; border: 1px solid #fde68a; color: #92400e;
  border-radius: 12px; padding: 14px 16px; margin-bottom: 24px; font-weight: 600;
}
.disclaimer { font-size: 0.88rem; color: var(--muted); margin-top: 12px; }
.pay-note { text-align: center; color: var(--muted); margin-top: 28px; }

.legal { padding: 64px 0 88px; }
.legal h1 { font-size: 2.1rem; margin-bottom: 8px; }
.legal .meta { color: var(--muted); margin-bottom: 28px; }
.legal h2 { font-size: 1.2rem; margin: 28px 0 8px; }
.legal p, .legal li { color: #334155; margin-bottom: 10px; }
.legal ul { padding-left: 20px; margin-bottom: 12px; }

.faq details {
  background: white; border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; margin-bottom: 10px;
}
.faq summary { cursor: pointer; font-weight: 700; }
.faq p { color: var(--muted); margin-top: 8px; }

footer.site {
  background: var(--obsidian); color: #94a3b8; padding: 36px 0;
  font-size: 0.9rem; border-top: 1px solid rgba(45,212,191,0.15);
}
.foot { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: center; }
.foot a:hover { color: var(--turquoise); }
.foot-links { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .features, .features.reverse, .price-grid, .grid-3 { grid-template-columns: 1fr; }
  .features.reverse .copy { order: 0; }
  .hero { padding-top: 48px; }
}
