
:root {
  --bg: #070a0c;
  --bg2: #0d1612;
  --ink: #eef7f1;
  --muted: #8aa396;
  --line: #1c2a22;
  --card: #0f1814;
  --accent: #45d08c;
  --accent2: #2bb673;
  --accent-dim: color-mix(in srgb, var(--accent) 16%, transparent);
  --danger: #ff7b72;
  --radius: 18px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Syne", "Manrope", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: radial-gradient(1200px 600px at 10% -10%, #143528 0%, transparent 55%),
              radial-gradient(900px 500px at 90% 0%, #0b2a22 0%, transparent 50%),
              linear-gradient(180deg, var(--bg), var(--bg2) 40%, #050807);
  min-height: 100vh;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(760px, calc(100% - 32px)); }
.bg-glow { position: fixed; inset: 0; pointer-events: none; z-index: -1; opacity: .35;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}
.top { position: sticky; top: 0; z-index: 20; backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg) 78%, transparent); border-bottom: 1px solid var(--line); }
.top-inner { display: flex; align-items: center; gap: 14px; padding: 12px 0; position: relative; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-family: var(--display); font-weight: 800; letter-spacing: -.03em; text-decoration: none; font-size: 1.15rem; flex-shrink: 0; }
.brand img { border-radius: 10px; }
.nav { display: flex; flex-wrap: wrap; gap: 6px 14px; margin-left: auto; }
.nav a { color: var(--muted); font-size: .92rem; font-weight: 600; text-decoration: none; }
.nav a:hover, .nav a.is-active { color: var(--ink); }
.nav-toggle {
  display: none;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  cursor: pointer;
  padding: 0;
}
.nav-toggle svg, .nav-toggle i { width: 20px; height: 20px; display: block; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 18px; border-radius: 12px; background: var(--accent); color: #04140c; font-weight: 800; border: none; text-decoration: none; cursor: pointer; }
.btn:hover { filter: brightness(1.05); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-sm { padding: 8px 12px; font-size: .88rem; }
.btn-block { width: 100%; }
.hero { padding: 72px 0 56px; min-height: min(88vh, 760px); display: grid; align-items: center; }
.hero-inner { text-align: center; }
.hero-mark { border-radius: 22px; box-shadow: 0 20px 60px #45d08c33; }
.hero h1 { font-family: var(--display); font-size: clamp(3rem, 10vw, 5.5rem); margin: 18px 0 10px; letter-spacing: -.06em; }
.hero-lead { margin: 0 auto 22px; max-width: 40rem; color: var(--muted); font-size: 2.3rem; line-height: 1.35; min-height: 1.5em; font-weight: 600; letter-spacing: -.02em; }
.hero-type-text { color: var(--muted); }
.hero-caret {
  display: inline-block;
  width: 2px;
  height: 1.05em;
  margin-left: 2px;
  vertical-align: -0.12em;
  background: var(--accent);
  border-radius: 1px;
  animation: hero-caret-blink 1s steps(1) infinite;
}
.hero-lead.is-typed .hero-caret { opacity: 0; animation: none; }
@keyframes hero-caret-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-caret { display: none; }
}
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-devices {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.4;
  opacity: .92;
}
.section { padding: 64px 0; }
.section.alt { background: color-mix(in srgb, #0a1210 70%, transparent); border-block: 1px solid var(--line); }
.section h1, .section h2 { font-family: var(--display); letter-spacing: -.04em; margin: 0 0 10px; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.section-lead { color: var(--muted); margin: 0 0 28px; max-width: 40rem; line-height: 1.5; }
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.price-card { position: relative; background: var(--card); border: 3px solid #fff; border-radius: var(--radius); padding: 20px 18px 18px; display: flex; flex-direction: column; gap: 8px; }
.price-card[data-featured="1"] { border-color: var(--accent); box-shadow: 0 18px 40px #0006; }
.price-card h3 { margin: 0; font-family: var(--display); }
.price-card .period { margin: 0; color: var(--muted); font-size: .9rem; }
.price-card .price { margin: 4px 0 8px; display: grid; gap: 2px; }
.price-card .price strong { font-size: 1.8rem; letter-spacing: -.03em; }
.price-card .price span { color: var(--muted); font-size: .88rem; }
.price-card ul.feat-list { margin: 0 0 14px; padding-left: 0; list-style: none; color: var(--muted); line-height: 1.45; flex: 1; display: grid; gap: 10px; }
.price-card .feat-list li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; padding: 0; }
.price-card .ico { width: 18px; height: 18px; color: var(--accent); stroke-width: 2; margin-top: 1px; }
.feat-head-ico { width: 28px; height: 28px; color: var(--accent); stroke-width: 2; display: block; margin-bottom: 12px; }
#close-cookie-banner i, #close-cookie-banner svg { width: 16px; height: 16px; display: block; }
.badge { position: absolute; top: 12px; right: 12px; background: var(--accent); color: #04140c; font-size: .72rem; font-weight: 800; padding: 4px 8px; border-radius: 999px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feature-grid article { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.feature-grid h3 { margin: 0 0 8px; font-family: var(--display); }
.feature-grid p { margin: 0; color: var(--muted); line-height: 1.5; }
.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  counter-reset: s;
}
.steps li {
  counter-increment: s;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 18px;
  height: 100%;
}
.steps li::before {
  content: counter(s);
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--accent-dim);
  color: var(--accent);
  font-weight: 800;
  font-family: var(--display);
}
.step-body {
  display: grid;
  gap: 8px;
  min-width: 0;
  flex: 1;
  align-content: start;
}
.steps strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.3;
  font-family: var(--display);
  letter-spacing: -.02em;
}
.steps span {
  color: var(--muted);
  line-height: 1.55;
  overflow-wrap: anywhere;
}
.step-link {
  margin-top: auto;
  padding-top: 8px;
  font-weight: 700;
  font-size: .92rem;
  color: var(--accent);
  text-decoration: none;
}
.step-link:hover { text-decoration: underline; }
.faq details { border: 1px solid var(--line); background: var(--card); border-radius: 14px; padding: 14px 16px; margin-bottom: 10px; }
.faq summary { cursor: pointer; font-weight: 700; }
.faq p { color: var(--muted); line-height: 1.5; margin: 10px 0 0; }
.cta-band { padding-bottom: 80px; }
.cta-inner { text-align: center; padding: 42px 20px; border-radius: 28px; border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--line)); background: linear-gradient(135deg, #10261c, #0a1410 55%, #0e1f18); }
.cta-inner p { color: var(--muted); margin: 0 0 18px; }
.panel { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; margin: 18px 0; }
.panel.notice { border-color: color-mix(in srgb, var(--accent) 40%, var(--line)); }
.form { display: grid; gap: 12px; }
.form label:not(.plan-option) { display: grid; gap: 6px; font-weight: 600; font-size: .92rem; }
.email-locked {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 45%, var(--line));
  color: var(--accent);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .01em;
  word-break: break-all;
}
.email-prefilled #email[hidden] { display: none !important; }
.form input, .form select { font: inherit; padding: 12px 12px; border-radius: 12px; border: 1px solid var(--line); background: #07110d; color: var(--ink); }
.checkout-form { gap: 22px; }
.plan-pick { border: 0; margin: 0; padding: 0; min-width: 0; }
.plan-pick legend {
  padding: 0;
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.02em;
}
.plan-option {
  cursor: pointer;
  border-width: 1.5px;
  transition: border-color .2s ease, border-width .2s ease, box-shadow .2s ease, transform .2s ease;
}
.plan-option input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}
.plan-pick-mark {
  display: none;
  margin-top: auto;
  text-align: center;
  font-weight: 700;
  font-size: .92rem;
  color: var(--accent);
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--accent-dim);
}
.plan-option:hover { border-color: #fff; }
.plan-option:has(input:checked) {
  border-width: 4px;
  border-color: var(--accent);
  box-shadow: 0 18px 40px #0006;
  transform: translateY(-2px);
}
.plan-option:has(input:checked) .plan-pick-mark { display: block; }
.plan-option:focus-within { outline: none; box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 45%, transparent); }
.checkout-fields { display: grid; gap: 12px; max-width: 520px; margin-left: auto; margin-right: auto; width: 100%; scroll-margin-top: 88px; }
.promo-block { margin: 2px 0; }
.promo-link {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  font-weight: 600;
  font-size: .92rem;
  color: var(--accent);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.promo-link:hover { color: var(--ink); }
.promo-link[hidden] { display: none !important; }
.promo-field { display: grid; gap: 6px; font-weight: 600; font-size: .92rem; }
.promo-field[hidden] { display: none !important; }
.checkout-summary {
  width: 100%;
  border-collapse: collapse;
  margin: 6px 0 4px;
  font-size: .95rem;
}
.checkout-summary th,
.checkout-summary td {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.checkout-summary th:last-child,
.checkout-summary td:last-child { text-align: right; white-space: nowrap; }
.checkout-summary thead th {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 4px;
  padding-bottom: 10px;
}
.checkout-summary tbody td:first-child {
  color: var(--ink);
  font-weight: 600;
  padding-right: 16px;
  white-space: normal;
}
.checkout-summary .sum-price strong { font-size: 1.05rem; }
.checkout-summary .price-old { display: block; margin-bottom: 2px; font-size: .85rem; }
.plain { color: var(--muted); line-height: 1.55; }
.prose p, .prose li { color: var(--muted); line-height: 1.6; }
.prose h2 { font-size: 1.2rem; margin-top: 1.6rem; }
.muted { color: var(--muted); }
.tiny { font-size: .85rem; }
.err { color: var(--danger); margin: 0; }
.price-old { text-decoration: line-through; color: var(--muted); margin-left: 8px; }
.foot { border-top: 1px solid var(--line); padding: 36px 0 24px; margin-top: 20px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 22px; }
.foot h4 { margin: 0 0 10px; font-size: .85rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink); }
.foot a { display: block; color: var(--muted); margin: 6px 0; text-decoration: none; }
.foot a:hover { color: var(--accent); }
.foot-bottom { margin-top: 28px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--muted); font-size: .85rem; }
#cookie-banner {
  position: relative;
  width: 100%;
  background: #0c1410;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding: 10px 40px 10px 20px;
  font-size: 12px;
  box-sizing: border-box;
  z-index: 40;
}
#cookie-banner[hidden] { display: none !important; }
#cookie-banner p { margin: 0; line-height: 1.45; }
#cookie-banner a { color: var(--muted); text-decoration: underline; }
#cookie-banner a:hover { color: var(--accent); }
#accept-cookie-banner {
  margin-left: 10px;
  background: var(--ink);
  color: #04140c;
  border: none;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  vertical-align: middle;
}
#close-cookie-banner {
  position: absolute;
  top: 8px;
  right: 14px;
  font-size: 16px;
  cursor: pointer;
  color: var(--ink);
  background: none;
  border: none;
  line-height: 1;
  padding: 2px 4px;
}
@media (max-width: 640px) {
  #accept-cookie-banner { display: none; }
  #cookie-banner { padding-right: 35px; font-size: 11px; }
}
@media (max-width: 1100px) {
  .price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .feature-grid, .foot-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps li {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: start;
  }
  .steps li::before { grid-row: 1 / -1; }
  .nav-toggle { display: inline-flex; }
  .top-cta { display: none; }
  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    margin: 0;
    padding: 12px;
    flex-direction: column;
    gap: 4px;
    background: color-mix(in srgb, var(--bg) 96%, transparent);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 18px 40px #0008;
    z-index: 30;
  }
  .nav a {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    color: var(--ink);
  }
  .nav a:hover, .nav a.is-active { background: var(--accent-dim); text-decoration: none; }
  .top-inner.is-open .nav { display: flex; }
}
@media (max-width: 640px) {
  .wrap, .narrow { width: min(1120px, calc(100% - 24px)); }
  .price-grid, .feature-grid, .foot-grid { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
  .hero { padding: 40px 0 36px; min-height: auto; }
  .hero h1 { font-size: clamp(2.6rem, 16vw, 4rem); }
  .hero-lead { font-size: 2.04rem; }
  .price-card .price strong { font-size: 1.55rem; }
  .cta-inner { padding: 28px 16px; border-radius: 20px; }
  .panel { padding: 16px; }
  .form input, .form select, .btn { min-height: 44px; }
}
