:root {
  --bg: #0b0e13;
  --bg-soft: #121723;
  --panel: rgba(22, 28, 40, 0.88);
  --panel-2: rgba(17, 21, 30, 0.92);
  --line: rgba(255, 255, 255, 0.08);
  --text: #eef3ff;
  --muted: #a5b2c9;
  --accent: #ff7a18;
  --accent-2: #8dfc65;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top right, rgba(255,122,24,.15), transparent 28%),
    radial-gradient(circle at left center, rgba(141,252,101,.08), transparent 22%),
    linear-gradient(180deg, #0b0e13 0%, #0f1420 100%);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.site-shell {
  overflow: hidden;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(8, 11, 17, 0.75);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(255, 122, 24, .22));
}

.brand-text {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}

.brand-text span { color: var(--accent); }

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 700;
  cursor: pointer;
  transition: .25s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ff9b4b);
  color: #111;
  box-shadow: 0 12px 30px rgba(255, 122, 24, .22);
}

.btn-secondary,
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.12);
  color: var(--text);
}

.hero {
  padding: 72px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 32px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--accent-2);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(40px, 6vw, 68px);
  line-height: .98;
  letter-spacing: -.04em;
  max-width: 780px;
}

.hero h1 span {
  color: var(--accent);
  text-shadow: 0 0 28px rgba(255, 122, 24, .18);
}

.lead,
.section-head p,
.feature-item p,
.bonus-card p,
.terms-card p,
.faq-item p,
.info-card p,
.step-card p,
.cta-box p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions,
.hero-pills,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  color: #d9e3f5;
  font-size: 13px;
}

.hero-card {
  position: relative;
}

.glow {
  position: absolute;
  inset: 10% 8% auto 8%;
  height: 72%;
  background: radial-gradient(circle, rgba(255, 122, 24, .32), transparent 60%);
  filter: blur(30px);
}

.promo-card,
.info-card,
.step-card,
.bonus-card,
.side-panel,
.terms-card,
.cta-box,
.faq-item {
  position: relative;
  background: linear-gradient(180deg, rgba(26,33,47,.96), rgba(15,18,26,.98));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.promo-card {
  padding: 30px;
}

.promo-card.featured {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-badge,
.tag,
.mini-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
}

.promo-badge,
.tag {
  background: rgba(255, 122, 24, .14);
  color: #ffb67f;
  border: 1px solid rgba(255, 122, 24, .24);
}

.mini-label {
  background: rgba(141,252,101,.12);
  color: var(--accent-2);
  border: 1px solid rgba(141,252,101,.18);
}

.promo-card h2 {
  margin: 18px 0 12px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1;
  letter-spacing: -.04em;
}

.promo-card ul {
  margin: 10px 0 22px;
  padding-left: 18px;
  color: #dce5f6;
  line-height: 1.8;
}

.copy-btn {
  background: linear-gradient(135deg, rgba(141,252,101,.95), rgba(255,122,24,.95));
  color: #08110b;
  border: 0;
  border-radius: 14px;
  padding: 14px 18px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 14px 32px rgba(0,0,0,.28);
}

.copy-btn:hover {
  transform: translateY(-2px);
}

.copy-note {
  min-height: 20px;
  margin-top: 12px;
  color: var(--accent-2);
  font-size: 13px;
}

.ticker-wrap {
  padding: 6px 0 0;
}

.ticker {
  display: flex;
  gap: 18px;
  white-space: nowrap;
  overflow: auto;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  color: #d8e2f2;
}

.section {
  padding: 84px 0;
}

.alt-bg {
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
}

.section-head {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-head.left {
  margin: 0 0 24px;
  text-align: left;
}

.section-head h2 {
  margin: 16px 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: -.03em;
}

.code-grid,
.bonus-grid,
.steps-grid {
  display: grid;
  gap: 18px;
}

.code-grid {
  grid-template-columns: repeat(3, 1fr);
}

.info-card {
  padding: 24px;
}

.card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.info-card h3,
.bonus-card h3,
.step-card h3,
.terms-card h3 {
  margin: 18px 0 10px;
  font-size: 24px;
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--accent-2);
  font-weight: 700;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.feature-item:last-child { border-bottom: 0; }

.side-panel {
  padding: 22px;
}

.stat-box {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
}

.stat-box + .stat-box { margin-top: 14px; }

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.steps-grid {
  grid-template-columns: repeat(3, 1fr);
}

.step-card {
  padding: 24px;
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 122, 24, .14);
  border: 1px solid rgba(255, 122, 24, .2);
  font-weight: 800;
  color: #ffb67f;
}

.bonus-grid {
  grid-template-columns: repeat(4, 1fr);
}

.bonus-card {
  padding: 24px;
  min-height: 220px;
}

.terms-layout {
  align-items: center;
}

.terms-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.terms-list li {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
}

.terms-card {
  padding: 28px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { padding: 0 24px 22px; margin: 0; }

.cta-section {
  padding: 26px 0 84px;
}

.cta-box {
  padding: 28px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.footer {
  padding: 0 0 28px;
}

.footer-inner {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 18px;
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .two-col,
  .bonus-grid,
  .steps-grid,
  .code-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bonus-grid {
    grid-template-columns: 1fr 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .nav { display: none; }
  .topbar-inner { min-height: 70px; }
  .hero { padding-top: 34px; }
  .hero-grid,
  .code-grid,
  .steps-grid,
  .bonus-grid,
  .cta-box {
    grid-template-columns: 1fr;
    display: grid;
  }
  .hero h1 { font-size: 42px; }
  .promo-card.featured { min-height: auto; }
  .section { padding: 68px 0; }
  .cta-box { gap: 20px; }
}


/* ========== CONTENT IMAGES ========== */

.section-media {
  padding-top: 12px;
  padding-bottom: 28px;
}

.content-image {
  margin: 0 0 30px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(26,33,47,.96), rgba(15,18,26,.98));
  box-shadow: var(--shadow);
}

.content-image img {
  display: block;
  width: 100%;
  height: auto;
}

.content-image-wide {
  width: 100%;
}

.content-image-wide img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.content-image-side {
  height: 100%;
  min-height: 320px;
}

.content-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-image-card {
  min-height: 260px;
}

.content-image-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.image-placeholder {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top right, rgba(255,122,24,.16), transparent 28%),
    radial-gradient(circle at left center, rgba(141,252,101,.10), transparent 24%),
    linear-gradient(180deg, rgba(26,33,47,.96), rgba(15,18,26,.98));
}

.content-image-wide.image-placeholder {
  min-height: 320px;
}

.content-image-side.image-placeholder {
  min-height: 100%;
}

.image-placeholder__inner {
  text-align: center;
  padding: 28px;
  max-width: 440px;
}

.image-placeholder__label {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--accent-2);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}

.image-placeholder p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.split-media {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: stretch;
  margin: 34px 0;
}

.split-media__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.inline-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 28px 0 34px;
}

/* ========== BETTER TEXT LISTS ========== */

.section ul:not(.terms-list),
.section ol {
  margin: 20px 0 24px;
  padding: 0;
}

.section ul:not(.terms-list) {
  list-style: none;
  display: grid;
  gap: 12px;
}

.section ul:not(.terms-list) li {
  position: relative;
  padding: 14px 18px 14px 52px;
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  color: #dce5f6;
  line-height: 1.7;
}

.section ul:not(.terms-list) li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--accent-2) 0 35%, transparent 36%),
    linear-gradient(135deg, rgba(141,252,101,.25), rgba(255,122,24,.25));
  box-shadow: 0 0 0 4px rgba(141,252,101,.08);
}

.terms-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.terms-list li {
  position: relative;
  padding: 16px 18px 16px 54px;
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  color: #dce5f6;
  line-height: 1.7;
}

.terms-list li::before {
  content: "•";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 122, 24, .14);
  border: 1px solid rgba(255, 122, 24, .2);
  color: #ffb67f;
  font-weight: 800;
  font-size: 14px;
}

/* ========== TYPOGRAPHY HELPERS ========== */

.section > .container > p,
.section .split-media__content p,
.section .two-col p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 18px;
}

.section h3 {
  margin: 0 0 14px;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.15;
  letter-spacing: -.02em;
}

/* ========== RESPONSIVE ADDITIONS ========== */

@media (max-width: 1080px) {
  .split-media {
    grid-template-columns: 1fr;
  }

  .inline-media-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 780px) {
  .inline-media-grid {
    grid-template-columns: 1fr;
  }

  .content-image-wide img {
    max-height: 340px;
  }

  .content-image-side {
    min-height: 240px;
  }

  .content-image-card,
  .content-image-card img,
  .image-placeholder {
    min-height: 220px;
  }
}

@media (max-width: 780px) {
  .brand-logo {
    width: 42px;
    height: 42px;
  }
}
.promo-table-wrap {
      margin-top: 24px;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 18px;
      overflow: hidden;
      background: rgba(7, 13, 31, 0.72);
      backdrop-filter: blur(8px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.18);
    }
    .promo-table {
      width: 100%;
      border-collapse: collapse;
    }
    .promo-table th,
    .promo-table td {
      padding: 16px 18px;
      text-align: left;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      border-right: 1px solid rgba(255,255,255,0.08);
    }
    .promo-table th:last-child,
    .promo-table td:last-child {
      border-right: none;
    }
    .promo-table tr:last-child td {
      border-bottom: none;
    }
    .promo-table th {
      font-weight: 700;
      color: #ffffff;
      background: rgba(255,255,255,0.04);
    }
    .promo-table td {
      color: rgba(255,255,255,0.88);
      line-height: 1.55;
    }
    .promo-table .promo-code {
      font-weight: 800;
      color: #ff8a1f;
      text-transform: uppercase;
      letter-spacing: 0.02em;
    }
    .promo-table .promo-note {
      color: #b7c3da;
      font-size: 0.95rem;
    }
    @media (max-width: 860px) {
      .promo-table-wrap {
        overflow-x: auto;
      }
      .promo-table {
        min-width: 720px;
      }
    }
.footer {
  padding:48px 0 36px;
  background:#0c1238;
  border-top:1px solid rgba(255,255,255,.08);
}
  .footer-inner {
      display:flex;
      flex-direction:column;
      gap:24px;
  }
  .footer-disclaimer {
      max-width:560px;
      padding:18px 20px;
      border:1px solid rgba(255,255,255,.08);
      border-radius:14px;
      background:linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.02));
      color:#aeb7d4;
      line-height:1.55;
  }
    .footer-badges {display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;padding-top:8px;}
    .footer-badge-card {display:flex;align-items:center;gap:14px;padding:20px 22px;border:1px solid rgba(255,255,255,.08);border-radius:14px;background:linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.02));box-shadow:0 10px 24px rgba(0,0,0,.18);}
    .footer-badge-icon {width:46px;height:46px;border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:24px;background:rgba(255,255,255,.05);flex:0 0 46px;}
    .footer-badge-card span {font-size:1.08rem;font-weight:700;color:#f5f7ff;}
    .footer-copy {padding-top:22px;border-top:1px solid rgba(255,255,255,.08);color:#7f89ac;font-size:.96rem;}
    @media (max-width: 900px) {.footer-badges{grid-template-columns:1fr;}.footer-disclaimer{max-width:none;}}