:root {
  --bg: #040910;
  --panel: #0c1320;
  --text: #e8ecf1;
  --muted: #9aa4b2;
  --accent: #00e5ff;
  --accent-dim: #00b8cc;
  --gold: #ffd60a;
  --danger: #ff3b30;
  --radius: 12px;
  --font: system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: 960px; margin: 0 auto; padding: 0 1.25rem; }

.site-header {
  border-bottom: 1px solid #1c2430;
  background: rgba(4, 9, 16, 0.92);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  gap: 1rem;
}

.brand { font-weight: 700; color: var(--text); font-size: 1.05rem; }

.nav { display: flex; gap: 1rem; flex-wrap: wrap; font-size: 0.9rem; }
.nav a { color: var(--muted); }
.nav a:hover { color: var(--text); }

.hero {
  text-align: center;
  padding: 3rem 0 2rem;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  text-align: left;
  padding: 3.5rem 0 2.5rem;
}

.hero-copy .hero-cta { justify-content: flex-start; }
.hero-note { color: var(--muted); font-size: 0.82rem; margin: 1rem 0 0; }
.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.section-lead {
  color: var(--muted);
  max-width: 720px;
  margin: -0.5rem 0 1.25rem;
}

.compat { padding-top: 0; }
.compat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.compat-chip {
  background: var(--panel);
  border: 1px solid #1c2430;
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
  color: var(--text);
}

.watch-preview { text-align: center; }
.watch-frame {
  width: min(240px, 70vw);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  padding: 14px;
  background: linear-gradient(145deg, #1a2230 0%, #0a0f18 100%);
  border: 3px solid #2a3548;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255,255,255,0.06);
}
.watch-screen {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #102030 0%, #040910 70%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  overflow: hidden;
}
.watch-screen--grid { padding: 1.25rem; }
.watch-time {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent);
  line-height: 1;
}
.watch-time span { opacity: 0.5; }
.watch-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 0.75rem;
  font-size: 0.62rem;
  color: var(--muted);
}
.watch-caption {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.card-feature { position: relative; padding-top: 2.5rem; }
.card-icon {
  position: absolute;
  top: 1rem;
  left: 1.2rem;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: rgba(0, 229, 255, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid #1c2430;
  border-radius: var(--radius);
  background: var(--panel);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.compare-table th,
.compare-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #1c2430;
}
.compare-table th { color: var(--muted); font-weight: 600; font-size: 0.82rem; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .yes { color: var(--accent); font-weight: 700; }
.compare-table .no { color: #4a5568; }

.price-label { margin: 0 0 0.5rem; color: var(--muted); }
.price-sub { color: var(--muted); font-size: 0.9rem; margin: 0 0 1.25rem; }
.price-trust {
  margin: 1.25rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.faq-list { display: grid; gap: 0.65rem; }
.faq-list details {
  background: var(--panel);
  border: 1px solid #1c2430;
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
}
.faq-list p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-muted { margin-top: 0.35rem; font-size: 0.78rem; opacity: 0.75; }

.hero h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  margin: 0 0 0.75rem;
  background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline { color: var(--muted); max-width: 640px; margin: 0 auto 1.5rem; font-size: 1.05rem; }

.badges { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 1.75rem; }

.badge {
  background: var(--panel);
  border: 1px solid #1c2430;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--muted);
}

.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

.btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-primary { background: var(--accent); color: #041018; }
.btn-primary:hover { background: var(--accent-dim); text-decoration: none; }

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid #2a3548;
}

.btn-secondary:hover { border-color: var(--accent); text-decoration: none; }

section { padding: 2.5rem 0; }

h2 { font-size: 1.35rem; margin: 0 0 1rem; }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--panel);
  border: 1px solid #1c2430;
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
}

.card h3 { margin: 0 0 0.5rem; font-size: 1rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.premium-lock { color: var(--gold); }

.price-box {
  text-align: center;
  background: linear-gradient(180deg, #0f1a2e 0%, var(--panel) 100%);
  border: 1px solid #243044;
  border-radius: var(--radius);
  padding: 2rem;
  margin: 2rem 0;
}

.price-box .amount { font-size: 2.5rem; font-weight: 700; color: var(--accent); }

.price-box input {
  max-width: 320px;
  margin: 0 auto 1rem;
  display: block;
}

.form-card {
  background: var(--panel);
  border: 1px solid #1c2430;
  border-radius: var(--radius);
  padding: 1.5rem;
  max-width: 520px;
  margin: 0 auto;
}

label { display: block; font-size: 0.85rem; color: var(--muted); margin-bottom: 0.35rem; }

input, textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  border: 1px solid #2a3548;
  background: #060b14;
  color: var(--text);
  font: inherit;
  margin-bottom: 1rem;
}

textarea { min-height: 100px; font-family: ui-monospace, monospace; font-size: 0.85rem; }

.result {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  background: #061a12;
  border: 1px solid #1a4030;
  display: none;
}

.result.error { background: #1a0a0a; border-color: #402020; }

.site-footer {
  border-top: 1px solid #1c2430;
  padding: 2rem 0;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

.steps { counter-reset: step; list-style: none; padding: 0; }
.steps li {
  counter-increment: step;
  margin-bottom: 1rem;
  padding-left: 2.5rem;
  position: relative;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--accent);
  color: #041018;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

@media (max-width: 800px) {
  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-copy .hero-cta { justify-content: center; }
  .watch-preview { order: -1; }
}

@media (max-width: 600px) {
  .nav { display: none; }
}
