:root {
  --bg: #05091a;
  --panel: #0b1430;
  --panel-2: #101b3c;
  --text: #f8fbff;
  --muted: #b6c4e3;
  --cyan: #16c8ff;
  --blue: #3589ff;
  --purple: #8f4dff;
  --magenta: #e33fd0;
  --green: #6ee7a7;
  --yellow: #ffd166;
  --border: rgba(129, 173, 255, 0.25);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 4%, rgba(22, 200, 255, .15), transparent 30%),
    radial-gradient(circle at 84% 6%, rgba(227, 63, 208, .14), transparent 32%),
    linear-gradient(180deg, #030616 0%, var(--bg) 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button, .button { font: inherit; }
.container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(3, 6, 22, .84);
  border-bottom: 1px solid var(--border);
}
.nav { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { text-decoration: none; font-size: 1.6rem; font-weight: 850; letter-spacing: -.04em; }
.logo span { background: linear-gradient(90deg, var(--cyan), var(--purple), var(--magenta)); -webkit-background-clip: text; color: transparent; }
.nav-links { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.nav-links a { text-decoration: none; color: var(--muted); font-weight: 650; font-size: .96rem; }
.nav-links a:hover, .nav-links a:focus { color: white; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(90deg, var(--purple), var(--blue), var(--cyan)); box-shadow: 0 10px 35px rgba(53, 137, 255, .28); }
.button-secondary { border-color: var(--border); background: rgba(255, 255, 255, .04); }
.button-small { min-height: 40px; padding: 0 17px; }
.button-disabled { opacity: .62; cursor: not-allowed; }

.hero { padding: 84px 0 58px; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; }
.eyebrow { color: var(--cyan); font-weight: 850; letter-spacing: .13em; text-transform: uppercase; font-size: .8rem; }
h1 { margin: 14px 0 18px; font-size: clamp(2.7rem, 7vw, 5.8rem); line-height: .98; letter-spacing: -.065em; }
.gradient-text { background: linear-gradient(90deg, var(--cyan), #6f73ff 50%, var(--magenta)); -webkit-background-clip: text; color: transparent; }
.lede { font-size: clamp(1.08rem, 2vw, 1.3rem); color: var(--muted); max-width: 760px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 20px; }
.trust-line { color: var(--muted); font-size: .92rem; }
.hero-card {
  background: linear-gradient(145deg, rgba(16, 27, 60, .94), rgba(7, 12, 31, .98));
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 20px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero-card::before { content: ""; position: absolute; inset: -40% 45% 45% -40%; background: radial-gradient(circle, rgba(22,200,255,.22), transparent 68%); }
.hero-card img { border-radius: 24px; position: relative; }

.section { padding: 76px 0; }
.section-tight { padding: 46px 0; }
.section-heading { max-width: 820px; margin-bottom: 32px; }
.section-heading h2 { margin: 8px 0 12px; font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.05; letter-spacing: -.045em; }
.section-heading p { color: var(--muted); font-size: 1.08rem; }

.offer-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.offer-card {
  background: linear-gradient(145deg, rgba(16, 27, 60, .86), rgba(7, 12, 31, .95));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.offer-card.featured { border-color: rgba(227, 63, 208, .5); }
.offer-kicker { color: var(--cyan); font-weight: 850; text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; }
.price { margin: 13px 0 4px; font-size: 3.1rem; font-weight: 900; letter-spacing: -.05em; }
.price small { font-size: 1rem; color: var(--muted); font-weight: 650; letter-spacing: 0; }
.offer-card h3 { margin: 3px 0 8px; font-size: 1.55rem; }
.offer-card p { color: var(--muted); }
.check-list { margin: 18px 0 26px; padding: 0; list-style: none; }
.check-list li { margin: 10px 0; padding-left: 26px; position: relative; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.offer-card .button { margin-top: auto; }
.fine-print { color: var(--muted); font-size: .83rem; margin-top: 13px; }

.loop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.loop-step { padding: 20px; border: 1px solid var(--border); background: rgba(255,255,255,.035); border-radius: 18px; }
.loop-step strong { display: block; font-size: 1.05rem; margin-bottom: 7px; }
.loop-step span { color: var(--muted); font-size: .92rem; }
.loop-number { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--purple)); font-weight: 900; margin-bottom: 13px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.visual-panel { border-radius: var(--radius); padding: 14px; border: 1px solid var(--border); background: rgba(255,255,255,.035); box-shadow: var(--shadow); }
.visual-panel img { border-radius: 16px; }
.callout { padding: 24px; border-radius: 20px; border: 1px solid rgba(255, 209, 102, .35); background: rgba(255, 209, 102, .07); }
.callout strong { color: var(--yellow); }

.roadmap { display: grid; gap: 14px; }
.roadmap-row { display: grid; grid-template-columns: 150px 1fr; gap: 20px; padding: 20px; border: 1px solid var(--border); border-radius: 18px; background: rgba(255,255,255,.035); }
.roadmap-row .phase { color: var(--cyan); font-weight: 900; }
.roadmap-row p { margin: 0; color: var(--muted); }

.cta-panel { text-align: center; padding: 54px 30px; border-radius: 30px; background: linear-gradient(120deg, rgba(22, 200, 255, .12), rgba(143, 77, 255, .14), rgba(227, 63, 208, .12)); border: 1px solid var(--border); }
.cta-panel h2 { margin: 0 0 12px; font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -.05em; }
.cta-panel p { color: var(--muted); max-width: 720px; margin: 0 auto 24px; }

.site-footer { padding: 42px 0 58px; border-top: 1px solid var(--border); color: var(--muted); }
.footer-grid { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); }

.policy { max-width: 860px; }
.policy h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
.policy h2 { margin-top: 34px; font-size: 1.5rem; }
.policy p, .policy li { color: var(--muted); }
.policy .notice { border-left: 4px solid var(--yellow); background: rgba(255,209,102,.07); padding: 16px 18px; border-radius: 0 14px 14px 0; }

.success-card { max-width: 760px; margin: 80px auto; text-align: center; padding: 48px 28px; border-radius: 28px; border: 1px solid var(--border); background: var(--panel); box-shadow: var(--shadow); }
.success-mark { width: 74px; height: 74px; margin: 0 auto 18px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg, var(--green), var(--cyan)); color: #03101c; font-size: 2rem; font-weight: 950; }

@media (max-width: 900px) {
  .hero-grid, .split, .offer-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 54px; }
  .hero-card { max-width: 620px; }
  .loop-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links a:not(.button) { display: none; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 22px, 1160px); }
  .loop-grid { grid-template-columns: 1fr; }
  .roadmap-row { grid-template-columns: 1fr; gap: 4px; }
  .button { width: 100%; }
  .nav-links .button { width: auto; }
  .offer-card { padding: 24px; }
}

.activation-confirmation {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 650px;
  margin: 24px auto;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
  color: var(--muted);
  text-align: left;
}
.activation-confirmation input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex: 0 0 auto;
}
