/* ============================================================
   AKEELAH TRADING ACADEMY  —  Premium 2026 Stylesheet
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  /* Gold */
  --gold: #C9A84C;
  --gold-lt: #E2C063;
  --gold-dk: #8B6914;
  --gold-a15: rgba(201, 168, 76, .15);
  --gold-a08: rgba(201, 168, 76, .08);
  --gold-glow: rgba(201, 168, 76, .30);

  /* Backgrounds */
  --bg-base: #07090F;
  --bg-1: #0C1020;
  --bg-2: #111825;
  --bg-glass: rgba(255, 255, 255, .035);

  /* Borders */
  --bdr: rgba(201, 168, 76, .18);
  --bdr-lt: rgba(255, 255, 255, .07);

  /* Text */
  --tx: #E8ECF4;
  --tx-md: #9BA4BC;
  --tx-dk: #5E677D;

  /* Other */
  --blue: #3B6FD8;
  --red-a: rgba(255, 90, 90, .12);
  --red-bdr: rgba(255, 90, 90, .22);

  /* Spacing */
  --section-py: 110px;
  --rad: 14px;
  --rad-lg: 22px;
  --rad-sm: 8px;

  /* Motion */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --trans: all .32s var(--ease);

  /* Typography */
  --f-serif: 'Cormorant Garamond', Georgia, serif;
  --f-sans: 'Outfit', system-ui, sans-serif;
}

/* ── RESET ──────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--f-sans);
  background: var(--bg-base);
  color: var(--tx);
  line-height: 1.7;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

img,
video {
  display: block;
  max-width: 100%;
}

button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* ── LAYOUT ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.container--narrow {
  max-width: 820px;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
.serif-italic {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 600;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.label--light {
  color: var(--gold-lt);
}

.label--light::before {
  background: var(--gold-lt);
}

.heading {
  font-family: var(--f-sans);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--tx);
  margin-bottom: 22px;
  letter-spacing: -.5px;
}

.heading--light {
  color: #fff;
}

.heading__accent {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
}

.intro {
  font-size: 1.05rem;
  color: var(--tx-md);
  max-width: 640px;
  margin-bottom: 60px;
  line-height: 1.85;
}

.intro--light {
  color: rgba(255, 255, 255, .62);
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: 4px;
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--trans);
  white-space: nowrap;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #000;
  border-color: var(--gold);
  box-shadow: 0 4px 24px var(--gold-glow);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(201, 168, 76, .50);
}

.btn--ghost {
  background: rgba(255, 255, 255, .05);
  color: var(--tx);
  border-color: var(--bdr-lt);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn--outline:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--gold-glow);
}

.btn--lg {
  padding: 17px 42px;
  font-size: 1rem;
}

/* ── SCROLL REVEAL ──────────────────────────────────────── */
.js-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}

.js-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 22px 0;
  transition: var(--trans);
}

.nav.solid {
  background: rgba(7, 9, 15, .94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--bdr);
  padding: 14px 0;
  box-shadow: 0 4px 40px rgba(0, 0, 0, .5);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.nav__logo-img {
  height: 48px;
  width: auto;
  flex-shrink: 0;
  transition: var(--trans);
}


.nav__links {
  display: flex;
  align-items: center;
  gap: 38px;
  list-style: none;
}

.nav__links a {
  font-family: var(--f-sans);
  font-size: .88rem;
  font-weight: 500;
  color: var(--tx-md);
  letter-spacing: .3px;
  transition: color .25s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease);
}

.nav__links a:hover {
  color: var(--gold);
}

.nav__links a:hover::after {
  transform: scaleX(1);
}

.nav__cta {
  padding: 10px 24px !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk)) !important;
  color: #000 !important;
  font-weight: 700 !important;
  border-radius: 4px;
  box-shadow: 0 2px 16px var(--gold-glow);
  transition: var(--trans) !important;
}

.nav__cta::after {
  display: none !important;
}

.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 168, 76, .5) !important;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--tx);
  border-radius: 2px;
  transition: var(--trans);
}

.nav__burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__burger.open span:nth-child(2) {
  opacity: 0;
}

.nav__burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(.28) saturate(.7);
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 100%, rgba(201, 168, 76, .07) 0%, transparent 70%),
    linear-gradient(180deg, rgba(7, 9, 15, .15) 0%, rgba(7, 9, 15, .5) 55%, rgba(7, 9, 15, 1) 100%);
}

.hero__canvas {
  position: absolute;
  inset: 0;
  opacity: .45;
  pointer-events: none;
}

.hero__body {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__eyebrow {
  font-family: var(--f-sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--bdr);
  background: var(--gold-a08);
  padding: 8px 20px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 32px;
  backdrop-filter: blur(6px);
}

.hero__headline {
  font-family: var(--f-sans);
  font-size: clamp(3rem, 7vw, 5.4rem);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -2px;
  margin-bottom: 26px;
}

.hero__headline .serif-italic {
  display: block;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(3rem, 7.5vw, 5.8rem);
}

.hero__sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .62);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 580px;
}

.hero__metrics {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 44px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--bdr);
  border-radius: var(--rad);
  width: fit-content;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.hero__metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 36px;
  text-align: center;
}

.hero__metric-num {
  font-family: var(--f-sans);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.hero__metric-num sup {
  font-size: .55em;
  vertical-align: super;
}

.hero__metric-lbl {
  font-size: .72rem;
  font-weight: 500;
  color: var(--tx-md);
  letter-spacing: .5px;
  margin-top: 5px;
}

.hero__metric-rule {
  width: 1px;
  background: var(--bdr);
  align-self: stretch;
  flex-shrink: 0;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero__contact {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__contact-link {
  font-size: .9rem;
  color: var(--tx-md);
  transition: color .25s;
}

.hero__contact-link:hover {
  color: var(--gold);
}

.hero__contact-sep {
  color: var(--tx-dk);
  font-size: .9rem;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero__scroll span {
  display: block;
  width: 1px;
  height: 54px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: scrollLine 2s ease-in-out infinite;
  margin: 0 auto;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__body .hero__eyebrow {
  animation: fadeUp .7s .1s both;
}

.hero__body .hero__headline {
  animation: fadeUp .7s .25s both;
}

.hero__body .hero__sub {
  animation: fadeUp .7s .4s both;
}

.hero__body .hero__metrics {
  animation: fadeUp .7s .55s both;
}

.hero__body .hero__actions {
  animation: fadeUp .7s .7s both;
}

.hero__body .hero__contact {
  animation: fadeUp .7s .85s both;
}

/* ── HERO SPLIT LAYOUT ──────────────────────────────────── */
.hero__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}


.hero__split-right {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp .9s .4s both;
}

.hero__logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__logo-wrap::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, .18) 0%, transparent 70%);
  animation: logoPulse 3.5s ease-in-out infinite;
  pointer-events: none;
}

.hero__logo-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 8px 40px rgba(201, 168, 76, .35)) drop-shadow(0 0 80px rgba(201, 168, 76, .15));
  animation: logoFloat 5s ease-in-out infinite;
}

@keyframes logoFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes logoPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .7;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

/* ── RIBBON (EVENT BANNER) ──────────────────────────────── */
.ribbon {
  background: var(--bg-2);
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
  padding: 20px 0;
}

.ribbon__inner {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  row-gap: 12px;
}

.ribbon__item {
  display: flex;
  flex-direction: column;
  padding: 0 36px;
}

.ribbon__label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}

.ribbon__value {
  font-family: var(--f-sans);
  font-size: .95rem;
  font-weight: 500;
  color: #fff;
}

.ribbon__sep {
  width: 1px;
  height: 38px;
  background: var(--bdr);
  flex-shrink: 0;
}

.ribbon__cta {
  margin-left: auto;
  padding: 10px 26px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #000;
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .5px;
  border-radius: 4px;
  transition: var(--trans);
  white-space: nowrap;
}

.ribbon__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--gold-glow);
}

/* ── SECTION BASE ───────────────────────────────────────── */
.section {
  padding: var(--section-py) 0;
}

.section--dark {
  background: var(--bg-1);
}

.section--faq {
  background: var(--bg-base);
}

.section--cta {
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.section--compare {
  background: var(--bg-base);
}

.section--video {
  background: var(--bg-base);
  border-top: 1px solid var(--bdr-lt);
}

.section--image-bg {
  position: relative;
  overflow: hidden;
}

.section__bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section__bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.15) saturate(.6);
}

.section__bg-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg-base) 0%, transparent 18%, transparent 82%, var(--bg-base) 100%);
}

.section--image-bg .container {
  position: relative;
  z-index: 1;
}

/* ── SPLIT LAYOUT ───────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.split__deck {
  font-size: 1rem;
  color: var(--tx);
  margin-bottom: 20px;
  font-weight: 500;
}

/* ── LISTS ──────────────────────────────────────────────── */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 20px 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .93rem;
  color: var(--tx-md);
  line-height: 1.55;
}

.check-list--negative li::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='7' stroke='rgba(220,80,80,.5)' fill='none' stroke-width='1.5'/%3E%3Cline x1='5' y1='5' x2='11' y2='11' stroke='rgba(220,80,80,.6)' stroke-width='1.5'/%3E%3Cline x1='11' y1='5' x2='5' y2='11' stroke='rgba(220,80,80,.6)' stroke-width='1.5'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-list--gold li::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='7' stroke='%23C9A84C' fill='none' stroke-width='1.5'/%3E%3Cpolyline points='4.5,8 7,10.5 11.5,5' stroke='%23C9A84C' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── CALLOUT ────────────────────────────────────────────── */
.callout {
  background: var(--gold-a08);
  border: 1px solid var(--bdr);
  border-left: 3px solid var(--gold);
  border-radius: var(--rad-sm);
  padding: 22px 26px;
  margin-top: 28px;
}

.callout__eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.callout__text {
  font-size: .95rem;
  color: var(--tx);
  line-height: 1.75;
}

/* ── GLASS CARD ─────────────────────────────────────────── */
.glass-card {
  background: var(--bg-glass);
  border: 1px solid var(--bdr);
  border-radius: var(--rad-lg);
  padding: 40px;
  backdrop-filter: blur(14px);
  position: relative;
  box-shadow: 0 0 60px rgba(201, 168, 76, .06);
}

.glass-card__rule {
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 20px;
}

.glass-card__title {
  font-family: var(--f-serif);
  font-size: 1.8rem;
  font-weight: 600;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 14px;
}

.glass-card__lead {
  font-size: 1.08rem;
  color: var(--tx);
  margin-bottom: 12px;
  font-weight: 500;
}

.glass-card__body {
  font-size: .92rem;
  color: var(--tx-md);
  margin-bottom: 6px;
}

.glass-card__close {
  font-size: 1.05rem;
  color: var(--tx);
  font-weight: 600;
  margin-top: 8px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0 12px;
  border-top: 1px solid var(--bdr-lt);
  margin-top: 16px;
}

.pill {
  font-size: .78rem;
  color: var(--tx-md);
  border: 1px solid var(--bdr-lt);
  border-radius: 2px;
  padding: 5px 13px;
  background: rgba(255, 255, 255, .03);
}

/* ── VIDEO STAGE ────────────────────────────────────────── */
.video-stage {
  position: relative;
  border-radius: var(--rad-lg);
  overflow: hidden;
  border: 1px solid var(--bdr);
  box-shadow: 0 0 80px rgba(0, 0, 0, .6), 0 0 40px rgba(201, 168, 76, .06);
  background: #000;
}

.video-stage__player {
  width: 100%;
  display: block;
  max-height: 70vh;
  object-fit: contain;
}

.video-stage__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 9, 15, .55);
  cursor: pointer;
  transition: background .3s;
}

.video-stage__overlay:hover {
  background: rgba(7, 9, 15, .35);
}

.video-stage__overlay.hidden {
  display: none;
}

.play-ring {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, .5);
  animation: ringPulse 2s ease-in-out infinite;
}

.play-arrow {
  position: relative;
  z-index: 1;
  margin-left: 6px;
  filter: drop-shadow(0 0 12px rgba(201, 168, 76, .7));
}

@keyframes ringPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .7;
  }

  50% {
    transform: scale(1.18);
    opacity: .3;
  }
}

/* ── CURRICULUM DAYS ────────────────────────────────────── */
.days {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 52px;
}

.day-card {
  background: rgba(7, 9, 15, .88);
  border: 1px solid var(--bdr);
  border-radius: var(--rad-lg);
  padding: 38px;
  backdrop-filter: blur(16px);
  transition: var(--trans);
}

.day-card:hover {
  border-color: rgba(201, 168, 76, .38);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
}

.day-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.day-card__badge {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(100, 150, 255, .9);
  background: rgba(59, 111, 216, .15);
  border: 1px solid rgba(59, 111, 216, .3);
  padding: 5px 14px;
  border-radius: 2px;
}

.day-card__badge--gold {
  color: var(--gold);
  background: var(--gold-a15);
  border-color: var(--bdr);
}

.day-card__title {
  font-family: var(--f-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.day-card__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 26px;
}

.day-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--tx-md);
  line-height: 1.55;
}

.day-card__list li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}

.day-card__outcome {
  border-top: 1px solid var(--bdr-lt);
  padding-top: 18px;
  font-size: .88rem;
  color: var(--tx);
  line-height: 1.6;
}

/* ── APPLIES TO ─────────────────────────────────────────── */
.applies {
  text-align: center;
}

.applies__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--tx-md);
  margin-bottom: 16px;
  display: block;
}

.applies__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.applies__tag {
  font-family: var(--f-sans);
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-a08);
  border: 1px solid var(--bdr);
  border-radius: 2px;
  padding: 8px 18px;
  letter-spacing: .3px;
  transition: var(--trans);
}

.applies__tag:hover {
  background: var(--gold-a15);
}

/* ── WHO GRID ───────────────────────────────────────────── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.who-card {
  background: var(--bg-2);
  border: 1px solid var(--bdr-lt);
  border-radius: var(--rad);
  padding: 30px 26px;
  transition: var(--trans);
}

.who-card:hover {
  border-color: var(--bdr);
  transform: translateY(-3px);
}

.who-card__line {
  width: 28px;
  height: 2px;
  background: rgba(100, 150, 255, .5);
  margin-bottom: 16px;
  border-radius: 1px;
}

.who-card__line--gold {
  background: var(--gold);
}

.who-card p {
  font-size: .92rem;
  color: var(--tx-md);
  line-height: 1.65;
}

.who-card--gold {
  background: linear-gradient(145deg, rgba(201, 168, 76, .07), rgba(201, 168, 76, .03));
  border-color: var(--bdr);
}

.who-card--gold p {
  color: var(--tx);
}

/* ── COMPARE ────────────────────────────────────────────── */
.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
}

.compare__heading {
  font-family: var(--f-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(220, 80, 80, .8);
  margin-bottom: 22px;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: .82rem;
  letter-spacing: 2px;
}

.compare__heading--gold {
  color: var(--gold);
}

.compare__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.compare__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: var(--rad-sm);
}

.compare__list--before li {
  background: rgba(220, 60, 60, .05);
  border: 1px solid rgba(220, 60, 60, .12);
  color: var(--tx-md);
}

.compare__list--before li::before {
  content: '—';
  color: rgba(220, 80, 80, .5);
  flex-shrink: 0;
  font-size: .8rem;
  margin-top: 1px;
}

.compare__list--after li {
  background: var(--gold-a08);
  border: 1px solid var(--bdr);
  color: var(--tx);
}

.compare__list--after li::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpolyline points='2,7 5.5,10.5 12,3' stroke='%23C9A84C' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  margin-top: 3px;
}

.compare__note {
  border-radius: var(--rad-sm);
  padding: 18px 20px;
}

.compare__note--before {
  background: rgba(220, 60, 60, .05);
  border: 1px solid rgba(220, 60, 60, .18);
}

.compare__note-title {
  font-family: var(--f-sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(220, 100, 100, .9);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.compare__note p:last-child {
  font-size: .88rem;
  color: var(--tx-md);
}

.compare__divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 52px;
}

.compare__line {
  width: 1px;
  height: 100px;
  background: linear-gradient(180deg, transparent, var(--bdr), transparent);
}

.compare__vs {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--bdr);
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-sans);
  font-size: .78rem;
  font-weight: 700;
  color: var(--tx-dk);
  letter-spacing: 1px;
  flex-shrink: 0;
}

.compare__tagline {
  margin-top: 8px;
}

.compare__tagline-before {
  font-size: 1rem;
  font-weight: 500;
  color: var(--tx-md);
  text-decoration: line-through;
  margin-bottom: 8px;
}

.compare__tagline-after {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
}

/* ── PRICING ────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 52px;
  align-items: start;
}

.price-card {
  background: rgba(7, 9, 15, .9);
  border: 1px solid var(--bdr);
  border-radius: var(--rad-lg);
  padding: 42px;
  backdrop-filter: blur(16px);
  transition: var(--trans);
  position: relative;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}

.price-card--vip {
  border-color: rgba(201, 168, 76, .45);
  background: linear-gradient(155deg, rgba(20, 14, 4, .95), rgba(7, 9, 15, .95));
  box-shadow: 0 0 60px rgba(201, 168, 76, .1), inset 0 1px 0 rgba(201, 168, 76, .15);
}

.price-card__vip-flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #000;
  font-family: var(--f-sans);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 2px;
  white-space: nowrap;
}

.price-card__tier {
  font-family: var(--f-sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tx-md);
  margin-bottom: 16px;
}

.price-card__tier--gold {
  color: var(--gold);
}

.price-card__amount {
  font-family: var(--f-sans);
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
}

.price-card__amount--gold {
  color: var(--gold);
}

.price-card__period {
  font-size: .8rem;
  color: var(--tx-dk);
  margin-bottom: 20px;
  display: block;
}

.price-card__desc {
  font-size: .88rem;
  color: var(--tx-md);
  line-height: 1.7;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--bdr-lt);
  margin-bottom: 22px;
}

.price-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.price-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  color: var(--tx-md);
  line-height: 1.5;
}

.price-card__list li::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpolyline points='2,7 5.5,10.5 12,3' stroke='%23C9A84C' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  margin-top: 3px;
}

.price-card__bonus-group {
  margin-bottom: 22px;
}

.price-card__bonus-title {
  font-family: var(--f-sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--bdr);
}

.price-card__btn {
  width: 100%;
  margin-top: 8px;
}

.invest-note {
  border: 1px solid var(--bdr);
  border-radius: var(--rad-lg);
  padding: 40px;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, .025);
  text-align: center;
}

.invest-note__rule {
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 20px;
}

.invest-note__title {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
}

.invest-note__body {
  font-size: .92rem;
  color: var(--tx-md);
  line-height: 1.85;
  max-width: 680px;
  margin: 0 auto;
}

/* ── TESTIMONIALS ───────────────────────────────────────── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.testi {
  background: var(--bg-2);
  border: 1px solid var(--bdr-lt);
  border-radius: var(--rad-lg);
  padding: 34px;
  transition: var(--trans);
}

.testi:hover {
  border-color: var(--bdr);
  transform: translateY(-3px);
}

.testi--featured {
  border-color: rgba(201, 168, 76, .3);
  background: linear-gradient(145deg, var(--bg-2), rgba(201, 168, 76, .04));
}

.testi__stars {
  font-size: .9rem;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
}

.testi__quote {
  font-size: .93rem;
  color: var(--tx-md);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.testi__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--av-color-a), var(--av-color-b));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.testi__name {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  color: var(--tx);
}

.testi__city {
  display: block;
  font-size: .78rem;
  color: var(--tx-dk);
  margin-top: 2px;
}

/* ── FAQ ────────────────────────────────────────────────── */
.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__item {
  background: var(--bg-1);
  border: 1px solid var(--bdr-lt);
  border-radius: var(--rad);
  overflow: hidden;
  transition: border-color .3s;
}

.faq__item.open {
  border-color: var(--bdr);
}

.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  font-size: .96rem;
  color: var(--tx);
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color .25s;
  background: none;
  border: none;
}

.faq__q:hover {
  color: var(--gold);
}

.faq__item.open .faq__q {
  color: var(--gold);
}

.faq__icon {
  width: 24px;
  height: 24px;
  border: 1px solid var(--bdr);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: var(--trans);
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 1px;
  transition: var(--trans);
}

.faq__icon::before {
  width: 10px;
  height: 1.5px;
}

.faq__icon::after {
  width: 1.5px;
  height: 10px;
}

.faq__item.open .faq__icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq__item.open .faq__icon {
  background: var(--gold-a08);
  border-color: var(--bdr);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .42s var(--ease);
}

.faq__a p {
  padding: 0 28px 22px;
  font-size: .9rem;
  color: var(--tx-md);
  line-height: 1.85;
}

/* ── CTA SECTION ────────────────────────────────────────── */
.cta__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 168, 76, .07) 0%, transparent 65%);
  pointer-events: none;
}

.cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-a08);
  border: 1px solid var(--bdr);
  padding: 8px 20px;
  border-radius: 2px;
  margin-bottom: 30px;
}

.pulse-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: dotPulse 1.8s ease-in-out infinite;
}

@keyframes dotPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, .6);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(201, 168, 76, 0);
  }
}

.cta__headline {
  font-family: var(--f-serif);
  font-size: clamp(4rem, 9vw, 7rem);
  font-weight: 600;
  font-style: italic;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 28px;
}

.cta__lines p {
  font-size: 1.15rem;
  color: var(--tx-md);
  margin-bottom: 6px;
}

.cta__lines-accent {
  color: var(--gold) !important;
  font-family: var(--f-serif) !important;
  font-style: italic !important;
  font-size: 1.45rem !important;
  font-weight: 600 !important;
}

/* Event Box */
.event-box {
  border: 1px solid var(--bdr);
  border-radius: var(--rad-lg);
  overflow: hidden;
  margin: 52px auto;
  max-width: 760px;
  text-align: left;
}

.event-box__header {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #000;
  font-family: var(--f-sans);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 28px;
}

.event-box__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(7, 9, 15, .9);
  backdrop-filter: blur(12px);
}

.event-box__item {
  display: flex;
  flex-direction: column;
  padding: 20px 28px;
  border-bottom: 1px solid var(--bdr-lt);
  border-right: 1px solid var(--bdr-lt);
}

.event-box__item:nth-child(even) {
  border-right: none;
}

.event-box__item:nth-last-child(-n+2) {
  border-bottom: none;
}

.event-box__lbl {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.event-box__val {
  font-family: var(--f-sans);
  font-size: .95rem;
  font-weight: 500;
  color: #fff;
}

.event-box__val--warn {
  color: rgba(220, 180, 80, .9);
}

.cta__tiers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 0 auto 40px;
  flex-wrap: wrap;
}

.cta__tier {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta__tier-name {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tx-md);
  margin-bottom: 5px;
}

.cta__tier-price {
  font-family: var(--f-sans);
  font-size: 2.3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.cta__tier-price--gold {
  color: var(--gold);
}

.cta__tier-sep {
  width: 1px;
  height: 56px;
  background: var(--bdr);
}

.cta__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta__fine {
  font-size: .78rem;
  color: var(--tx-dk);
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--bg-base);
  border-top: 1px solid var(--bdr-lt);
  padding: 72px 0 36px;
  position: relative;
  overflow: hidden;
}

.footer__glow {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 160px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, .05) 0%, transparent 70%);
  pointer-events: none;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--bdr-lt);
  margin-bottom: 36px;
}

.footer__tag {
  font-size: .88rem;
  color: var(--tx-md);
  line-height: 1.75;
  margin: 14px 0 10px;
}

.footer__date {
  font-size: .82rem;
  color: var(--tx-dk);
  line-height: 1.6;
}

.footer__date strong {
  color: var(--gold);
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col-title {
  font-family: var(--f-sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--tx);
  margin-bottom: 4px;
}

.footer__col a {
  font-size: .88rem;
  color: var(--tx-md);
  transition: color .25s;
}

.footer__col a:hover {
  color: var(--gold);
}

.footer__cta-link {
  color: var(--gold) !important;
  font-weight: 600;
  margin-top: 4px;
}

.footer__bottom {
  text-align: center;
}

.footer__bottom p {
  font-size: .78rem;
  color: var(--tx-dk);
  margin-bottom: 6px;
}

.footer__disclaimer {
  max-width: 600px;
  margin: 0 auto 14px;
  line-height: 1.6;
  opacity: .7;
}

.footer__credit {
  font-size: .75rem !important;
  color: var(--tx-dk) !important;
  opacity: .6 !important;
}

.footer__credit-link {
  color: var(--gold) !important;
  font-weight: 600;
  opacity: 1 !important;
  transition: color .25s;
}

.footer__credit-link:hover {
  color: var(--gold-lt) !important;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width:1024px) {
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .who-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .compare {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .compare__divider {
    display: none;
  }

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

  .footer__brand {
    grid-column: 1/-1;
  }

  .event-box__grid {
    grid-template-columns: 1fr;
  }

  .event-box__item {
    border-right: none !important;
  }

  .event-box__item:last-child {
    border-bottom: none;
  }
}

@media (max-width:768px) {
  :root {
    --section-py: 72px;
  }

  /* Nav mobile */
  .nav__burger {
    display: flex;
  }

  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    width: 80%;
    max-width: 300px;
    background: rgba(7, 9, 15, .97);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--bdr);
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 96px 32px 40px;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    z-index: 850;
  }

  .nav__links.open {
    transform: translateX(0);
  }

  .nav__links li {
    width: 100%;
  }

  .nav__links a {
    font-size: 1.05rem;
    display: block;
  }

  .nav__cta {
    display: inline-flex;
  }

  .nav__logo-img {
    height: 38px;
  }

  /* Hero */
  .hero {
    padding: 110px 0 70px;
  }

  .hero__metrics {
    flex-wrap: wrap;
    gap: 0;
  }

  .hero__metric-rule {
    display: none;
  }

  .hero__metric {
    flex: 1 1 33%;
    padding: 16px 20px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  /* Ribbon */
  .ribbon__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .ribbon__sep {
    display: none;
  }

  .ribbon__item {
    padding: 0;
  }

  .ribbon__cta {
    margin-left: 0;
  }

  /* Who */
  .who-grid {
    grid-template-columns: 1fr;
  }

  /* Pricing */
  .pricing-grid {
    max-width: 100%;
  }

  .price-card {
    padding: 28px 22px;
  }

  /* CTA */
  .cta__btns {
    flex-direction: column;
  }

  .cta__btns .btn {
    width: 100%;
  }

  .cta__tiers {
    gap: 16px;
    flex-direction: column;
  }

  .cta__tier-sep {
    display: none;
  }

  /* Footer */
  .footer__top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__brand {
    grid-column: auto;
  }
}

@media (max-width:480px) {
  .hero__headline {
    font-size: 2.6rem;
  }

  .heading {
    font-size: 1.8rem;
  }

  .day-card {
    padding: 26px 20px;
  }

  .glass-card {
    padding: 28px 22px;
  }

  .event-box__item {
    padding: 16px 20px;
  }
}