:root {
  --bg: #060911;
  --bg-panel: #0c1220;
  --bg-panel-2: #101a2e;
  --border: #1c2a44;
  --cyan: #4dd8ff;
  --cyan-glow: rgba(77, 216, 255, 0.35);
  --text: #eaf2ff;
  --text-dim: #9fb0cc;
  --text-dimmer: #6b7a99;
  --radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Background texture */
body {
  background-image:
    radial-gradient(circle at 15% 8%, rgba(77, 216, 255, 0.08), transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(77, 216, 255, 0.06), transparent 45%);
}

/* Nav */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 9, 17, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text);
  text-decoration: none;
  font-size: 17px;
}
.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--cyan), #1a6f94);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 900;
  color: #051018;
  box-shadow: 0 0 18px var(--cyan-glow);
}
nav .links {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav .links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
nav .links a:hover { color: var(--text); }
.btn-nav {
  background: var(--cyan);
  color: #04121b !important;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 700 !important;
}

/* Hero */
.hero {
  padding: 90px 0 70px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}
h1 {
  font-size: 46px;
  line-height: 1.12;
  margin: 0 0 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
h1 .accent {
  color: var(--cyan);
  text-shadow: 0 0 28px var(--cyan-glow);
}
.hero p.sub {
  color: var(--text-dim);
  font-size: 18px;
  max-width: 520px;
  margin: 0 0 32px;
}
.cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--cyan), #2fa3cf);
  color: #04121b;
  font-weight: 800;
  font-size: 16px;
  padding: 16px 30px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 8px 30px rgba(77, 216, 255, 0.25);
}
.btn-primary:hover { filter: brightness(1.08); }
.price-note {
  color: var(--text-dimmer);
  font-size: 13px;
}
.price-note strong { color: var(--text); }

.hero-cover {
  display: flex;
  justify-content: center;
}
.hero-cover img {
  width: 100%;
  max-width: 320px;
  border-radius: 10px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.55), 0 0 0 1px var(--border);
  transform: rotate(2deg);
}

/* Trust strip */
.trust {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 46px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.trust-item h3 {
  font-size: 16px;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-item p {
  color: var(--text-dim);
  font-size: 14px;
  margin: 0;
}
.trust-icon {
  color: var(--cyan);
  font-size: 18px;
}

/* Section shared */
section.block {
  padding: 80px 0;
}
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-head .eyebrow { justify-content: center; }
.section-head h2 {
  font-size: 32px;
  margin: 0 0 12px;
}
.section-head p {
  color: var(--text-dim);
  font-size: 16px;
  margin: 0;
}

/* What's inside */
.inside {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.inside img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.5), 0 0 0 1px var(--border);
}
.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: var(--text);
}
.check-mark {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: rgba(77, 216, 255, 0.12);
  border: 1px solid rgba(77, 216, 255, 0.4);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  margin-top: 1px;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.faq-item h3 {
  font-size: 16px;
  margin: 0 0 8px;
  color: var(--text);
}
.faq-item p {
  color: var(--text-dim);
  font-size: 15px;
  margin: 0;
}
.disclaimer-box {
  margin-top: 36px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-panel);
  color: var(--text-dimmer);
  font-size: 13px;
  text-align: center;
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 90px 0;
  border-top: 1px solid var(--border);
}
.final-cta h2 {
  font-size: 34px;
  margin: 0 0 16px;
}
.final-cta p {
  color: var(--text-dim);
  font-size: 16px;
  margin: 0 0 32px;
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  text-align: center;
  color: var(--text-dimmer);
  font-size: 13px;
}

/* Thank-you page */
.ty-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}
.ty-card {
  max-width: 560px;
  text-align: center;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 56px 44px;
}
.ty-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(77, 216, 255, 0.12);
  border: 1px solid rgba(77, 216, 255, 0.4);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 24px;
  box-shadow: 0 0 30px var(--cyan-glow);
}
.ty-card h1 {
  font-size: 28px;
  margin: 0 0 14px;
}
.ty-card p {
  color: var(--text-dim);
  font-size: 15px;
  margin: 0 0 30px;
}
.discount-box {
  background: var(--bg-panel-2);
  border: 1px dashed rgba(77, 216, 255, 0.5);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 30px;
  font-size: 14px;
  color: var(--text-dim);
}
.discount-box strong { color: var(--cyan); }

/* Responsive */
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; padding-top: 50px; }
  .hero-cover { order: -1; }
  .hero-cover img { max-width: 220px; }
  h1 { font-size: 34px; }
  .trust-grid { grid-template-columns: 1fr; }
  .inside { grid-template-columns: 1fr; }
  nav .links a:not(.btn-nav) { display: none; }
  .section-head h2 { font-size: 26px; }
}
