/* ===================================================================
   GammaTerminal — Landing Page
   Brand tokens mirror /gammaterminal-platform tailwind.config.ts + globals.css
   =================================================================== */

:root {
  /* Brand */
  --gold:        #22D3EE;
  --gold-dark:   #0891B2;
  --gold-light:  #A5F3FC;
  --silver:      #3B82F6;
  --silver-dark: #1E3A8A;
  --black:       #0A0F1A;

  /* Surfaces */
  --panel:  #111827;
  --panel2: #161F2E;
  --line:   #243042;

  /* Semantic */
  --green:  #22c55e;
  --red:    #ef4444;
  --yellow: #eab308;

  /* Text */
  --text:   #E2E8F0;
  --muted:  #94A3B8;

  /* Gradients */
  --grad-gold:   linear-gradient(135deg, #A5F3FC 0%, #22D3EE 35%, #0891B2 65%, #3B82F6 100%);
  --grad-silver: linear-gradient(135deg, #FFFFFF 0%, #3B82F6 50%, #1E3A8A 100%);

  /* Shadows */
  --shadow-gold:   0 0 0 1px rgba(34,211,238,.35), 0 18px 50px -16px rgba(34,211,238,.30);
  --shadow-silver: 0 0 0 1px rgba(59,130,246,.20), 0 10px 30px -10px rgba(59,130,246,.15);
  --shadow-soft:   0 24px 60px -24px rgba(0,0,0,.7);

  --maxw: 1200px;
  --radius: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  background: var(--black);
  color: var(--text);
  font-family: "Montserrat", ui-sans-serif, system-ui, "Segoe UI", Roboto, Helvetica, Arial;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, .eyebrow, .brand__word, .stat__num, .plan__price, .step__n {
  font-family: "Rajdhani", ui-sans-serif, system-ui;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.08;
}

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

img { display: block; }

/* ─── Brand gradient text helpers ─────────────────────────────────── */
.g-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.g-silver {
  background: var(--grad-silver);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ─── Layout ──────────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 820px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

.section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }
.section__head { margin-bottom: 56px; }
.section__head.center { max-width: 720px; }

h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 18px; }
h3 { font-size: 1.3rem; margin-bottom: 8px; }

.eyebrow {
  display: inline-block;
  font-size: .82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .28em;
  color: var(--gold);
  margin-bottom: 18px;
}

.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--silver); }
.micro { font-size: .85rem; color: var(--muted); margin-top: 16px; }

/* ─── Decorative parallax backdrop ────────────────────────────────── */
.bg-fx { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.bg-grid {
  position: absolute; inset: -20% -10%;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 35%, transparent 75%);
}
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5; }
.orb--gold   { width: 540px; height: 540px; top: -160px; left: -120px;
  background: radial-gradient(circle, rgba(34,211,238,.42), transparent 65%); }
.orb--gold2  { width: 460px; height: 460px; top: 40%; right: -160px;
  background: radial-gradient(circle, rgba(8,145,178,.32), transparent 65%); }
.orb--silver { width: 420px; height: 420px; top: 65%; left: -140px;
  background: radial-gradient(circle, rgba(59,130,246,.22), transparent 65%); }

/* ─── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: "Montserrat", sans-serif; font-weight: 600; font-size: .95rem;
  padding: 12px 22px; border-radius: 12px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn--lg { padding: 15px 30px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.btn--gold {
  color: var(--black);
  background: var(--grad-gold);
  box-shadow: 0 8px 26px -8px rgba(34,211,238,.55);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.btn--ghost {
  color: var(--silver);
  background: rgba(59,130,246,.04);
  border-color: var(--line);
}
.btn--ghost:hover { color: #fff; border-color: var(--silver); transform: translateY(-2px); }

/* ─── Announcement bar ────────────────────────────────────────────── */
.topbar {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: .8rem; color: var(--silver);
  padding: 9px 16px; text-align: center;
  background: linear-gradient(90deg, rgba(34,211,238,.10), rgba(59,130,246,.06));
  border-bottom: 1px solid var(--line);
}
.topbar__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 0 rgba(34,197,94,.6); animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  70% { box-shadow: 0 0 0 7px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* ─── Header ──────────────────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: rgba(13,13,13,.55);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease;
}
.header.scrolled { background: rgba(13,13,13,.85); border-bottom-color: var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__logo { width: 40px; height: 40px; object-fit: contain; }
.brand__word { font-size: 1.45rem; font-weight: 700; letter-spacing: .04em; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav > a:not(.btn) { font-size: .92rem; color: var(--silver); font-weight: 500; transition: color .2s; }
.nav > a:not(.btn):hover { color: #fff; }

/* ─── Language dropdown ───────────────────────────────────────────── */
.lang { position: relative; }
.lang__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 11px; border: 1px solid var(--line); border-radius: 10px;
  background: rgba(255,255,255,.02); color: var(--silver); cursor: pointer;
  font-family: "Montserrat", sans-serif; font-size: .8rem; font-weight: 700; letter-spacing: .06em;
  transition: border-color .2s, color .2s, background .2s;
}
.lang__btn:hover { color: #fff; border-color: var(--silver); }
.lang.open .lang__btn { border-color: rgba(34,211,238,.6); color: #fff; }
.lang__chev { width: 11px; height: 11px; opacity: .65; transition: transform .25s ease; }
.lang.open .lang__chev { transform: rotate(180deg); }

.flag {
  width: 20px; height: 14px; border-radius: 3px; overflow: hidden; display: block;
  flex: 0 0 auto; box-shadow: 0 0 0 1px rgba(255,255,255,.1);
}

.lang__menu {
  position: absolute; top: calc(100% + 10px); right: 0; min-width: 188px;
  background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 6px;
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(34,211,238,.10);
  opacity: 0; visibility: hidden; transform: translateY(-8px) scale(.97); transform-origin: top right;
  transition: opacity .2s ease, transform .2s ease, visibility .2s; z-index: 60;
}
.lang.open .lang__menu { opacity: 1; visibility: visible; transform: none; }
.lang__opt {
  display: flex; align-items: center; gap: 11px; padding: 9px 10px; border-radius: 8px;
  color: var(--silver); font-size: .9rem; font-weight: 500;
  transition: background .15s, color .15s;
}
.lang__opt:hover { background: var(--panel2); color: #fff; }
.lang__opt .lang__name { flex: 1; }
.lang__opt .lang__code { font-size: .68rem; color: var(--silver-dark); letter-spacing: .1em; }
.lang__opt.is-active { color: var(--gold); }
.lang__opt.is-active .lang__name { font-weight: 600; }
.lang__opt.is-active .lang__code { color: var(--gold-dark); }
.lang__check { width: 14px; height: 14px; margin-left: 2px; color: var(--gold); opacity: 0; flex: 0 0 auto; }
.lang__opt.is-active .lang__check { opacity: 1; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--silver); transition: .3s; border-radius: 2px; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero ────────────────────────────────────────────────────────── */
.hero { padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 7vw, 88px); }
.hero__inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero__title { margin: 6px 0 22px; }
.hero__sub { font-size: clamp(1.02rem, 1.5vw, 1.22rem); color: var(--silver); max-width: 560px; }
.hero__cta { display: flex; gap: 14px; margin: 32px 0 18px; flex-wrap: wrap; }
.hero__cta.center { justify-content: center; }
.hero__tagline {
  font-family: "Rajdhani", sans-serif; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; font-size: .82rem; color: var(--silver-dark); margin-top: 8px;
}

/* ─── Chart card (indicator visual) ───────────────────────────────── */
.hero__visual { perspective: 1200px; }
.chartcard {
  background: linear-gradient(180deg, var(--panel), #121216);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-soft), var(--shadow-gold);
  transition: transform .2s ease;
  will-change: transform;
}
.chartcard--lg { padding: 22px; }
.chartcard__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.chartcard__title { font-size: .92rem; color: var(--silver); display: flex; align-items: center; gap: 8px; }
.chartcard__title strong { color: #fff; }
.chartcard__badge {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--gold); border: 1px solid rgba(34,211,238,.4);
  padding: 3px 9px; border-radius: 999px; background: rgba(34,211,238,.08);
}
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot--live { background: var(--green); animation: pulse 2s infinite; }

.chartcard__legend {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 14px;
  font-size: .74rem; color: var(--muted);
}
.chartcard__legend span { display: inline-flex; align-items: center; gap: 6px; }
.key { width: 10px; height: 10px; border-radius: 2px; display: inline-block; }
.key--gold { background: var(--gold); }
.key--silver { background: var(--silver); }
.key--green { background: var(--green); }
.key--red { background: var(--red); }

/* ─── Hedgehog histogram (built by JS) ────────────────────────────── */
.hedgehog {
  position: relative;
  display: flex; flex-direction: column; gap: 5px;
  padding: 6px 0;
}
.hedgehog::before { /* center spine = spot */
  content: ""; position: absolute; top: 0; bottom: 0; left: 50%;
  width: 1px; background: linear-gradient(var(--gold-light), transparent);
  opacity: .25;
}
.hh-row { display: grid; grid-template-columns: 1fr 54px 1fr; align-items: center; gap: 6px; height: 16px; }
.hh-bar { height: 9px; border-radius: 3px; transform-origin: center; }
.hh-left  { justify-self: end; background: linear-gradient(90deg, rgba(239,68,68,.25), var(--red)); }
.hh-right { justify-self: start; background: linear-gradient(90deg, var(--green), rgba(34,197,94,.25)); }
.hh-strike {
  text-align: center; font-family: "Montserrat"; font-size: .68rem; color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.hh-row.is-magnet .hh-strike { color: var(--gold); font-weight: 700; }
.hh-row.is-spot .hh-strike { color: var(--gold-light); }
.hh-row.is-magnet { background: linear-gradient(90deg, transparent, rgba(34,211,238,.10), transparent); border-radius: 6px; }

/* annotation lines */
.hh-annot { position: absolute; left: 0; right: 0; display: flex; align-items: center; pointer-events: none; }
.hh-annot::before { content: ""; flex: 1; height: 0; border-top: 1px dashed currentColor; opacity: .55; }
.hh-annot span {
  font-size: .64rem; text-transform: uppercase; letter-spacing: .1em;
  padding: 2px 7px; border-radius: 5px; background: var(--panel2); border: 1px solid currentColor;
  white-space: nowrap;
}
.hh-annot--magnet { color: var(--gold); }
.hh-annot--bias { color: var(--silver); }

/* ─── Candlestick mock (built by JS) ──────────────────────────────── */
.candles { width: 100%; }
.cs-svg { width: 100%; height: auto; display: block; overflow: visible; }

/* ─── Heatmap mock (built by JS) ──────────────────────────────────── */
.heatmap { display: grid; gap: 3px; width: 100%; padding: 2px 0; }
.hm-head {
  font-family: "Montserrat", sans-serif; font-size: .58rem; font-weight: 600;
  letter-spacing: .02em; color: var(--muted); text-align: center; align-self: center;
}
.hm-strike {
  font-family: "Montserrat", sans-serif; font-size: .62rem; color: var(--muted);
  text-align: right; padding-right: 6px; align-self: center; font-variant-numeric: tabular-nums;
}
.hm-strike.is-atm { color: var(--gold); font-weight: 700; }
.hm-cell { border-radius: 3px; background: rgba(255,255,255,.02); }
.hm-cell.is-atm { box-shadow: inset 0 2px 0 -1px rgba(34,211,238,.75); }

/* ─── Trust strip ─────────────────────────────────────────────────── */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 26px 0; background: rgba(255,255,255,.012); }
.strip__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.strip__label { font-size: .85rem; color: var(--muted); }
.strip__tickers { display: flex; flex-wrap: wrap; gap: 26px; }
.strip__tickers span {
  font-family: "Rajdhani"; font-weight: 700; font-size: 1.15rem; color: var(--silver); letter-spacing: .04em;
}
.strip__tickers em { font-style: normal; font-size: .72rem; color: var(--gold); margin-left: 4px; vertical-align: super; }

/* ─── Stats ───────────────────────────────────────────────────────── */
.stats { padding: clamp(48px, 6vw, 80px) 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.stat__num {
  font-size: 2.8rem; line-height: 1;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  font-variant-numeric: tabular-nums;
}
.stat__lbl { font-size: .85rem; color: var(--muted); margin-top: 10px; }

/* ─── Indicator showcase ──────────────────────────────────────────── */
.indicator__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature-list { list-style: none; margin: 26px 0 28px; display: flex; flex-direction: column; gap: 16px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list strong { color: #fff; }
.feature-list div { color: var(--silver); font-size: .98rem; }
.fl-mark { flex: 0 0 auto; width: 14px; height: 14px; border-radius: 4px; margin-top: 4px; }
.fl-gold { background: var(--gold); box-shadow: 0 0 12px rgba(34,211,238,.6); }
.fl-silver { background: var(--silver); }
.fl-grad { background: var(--grad-gold); }

/* ─── Cards grid ──────────────────────────────────────────────────── */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: 1fr 1fr; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(34,211,238,.45); box-shadow: var(--shadow-gold); }
.card__ico {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  font-size: 1.3rem; margin-bottom: 16px;
  background: rgba(34,211,238,.10); border: 1px solid rgba(34,211,238,.30); color: var(--gold);
}
.card p { color: var(--muted); font-size: .94rem; }

/* ─── "Coming soon" badge ─────────────────────────────────────────── */
.soon {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: "Rajdhani", sans-serif; font-size: .62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; white-space: nowrap;
  color: var(--gold); border: 1px solid rgba(34,211,238,.45);
  border-radius: 999px; padding: 3px 9px; background: rgba(34,211,238,.10);
}
.card--soon { position: relative; }
.card--soon .soon { position: absolute; top: 18px; right: 18px; }
.card--soon .card__ico { opacity: .8; }
.card--soon:hover { border-color: var(--line); box-shadow: none; transform: translateY(-2px); }
.soon--inline { font-size: .56rem; padding: 2px 7px; margin: 0 4px; vertical-align: middle; }

/* ─── Steps ───────────────────────────────────────────────────────── */
.steps .step { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); position: relative; }
.step__n { font-size: 2.6rem; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; margin-bottom: 12px; }
.step p { color: var(--muted); }

/* ─── Benefits ────────────────────────────────────────────────────── */
.benefits__grid { align-items: start; gap: 40px; }
.checks { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.checks li { position: relative; padding-left: 34px; color: var(--silver); }
.checks li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  width: 22px; height: 22px; border-radius: 6px; display: grid; place-items: center;
  font-size: .8rem; font-weight: 700; color: var(--black); background: var(--grad-gold);
}

/* ─── Pricing ─────────────────────────────────────────────────────── */
.plans { align-items: stretch; }
.plan {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; display: flex; flex-direction: column; position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.plan--featured {
  border: 1px solid transparent;
  background: linear-gradient(var(--panel), var(--panel)) padding-box,
              var(--grad-gold) border-box;
  box-shadow: var(--shadow-gold);
  transform: translateY(-8px);
}
.plan--featured:hover { transform: translateY(-12px); }
.plan__tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  color: var(--black); background: var(--grad-gold); padding: 5px 14px; border-radius: 999px;
}
.plan__name { font-family: "Rajdhani"; font-weight: 600; text-transform: uppercase; letter-spacing: .15em; color: var(--silver); font-size: .95rem; }
.plan__price { font-size: 3.4rem; margin: 10px 0 2px; color: #fff; line-height: 1; }
.plan__price .cur { font-size: 1.5rem; vertical-align: super; color: var(--gold); }
.plan__price .per { font-size: 1rem; color: var(--muted); font-family: "Montserrat"; font-weight: 500; }
.plan__bill { font-size: .85rem; color: var(--muted); margin-bottom: 22px; }
.plan__feat { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; flex: 1; }
.plan__feat li { padding-left: 26px; position: relative; font-size: .92rem; color: var(--silver); }
.plan__feat li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ─── Money-back guarantee badge ──────────────────────────────────── */
.guarantee {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 18px; border-radius: 999px;
  border: 1px solid rgba(34,211,238,.38); background: rgba(34,211,238,.07);
  color: var(--silver); font-size: .92rem; text-align: left;
}
.guarantee svg { width: 19px; height: 19px; color: var(--gold); flex: 0 0 auto; }
.guarantee strong { color: var(--gold); font-weight: 700; }
.guarantee--center { margin: 0 auto 30px; }
.cta-band .guarantee { margin-top: 22px; background: rgba(34,211,238,.10); }

/* ─── Comparison table ────────────────────────────────────────────── */
.compare__wrap {
  overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--panel); -webkit-overflow-scrolling: touch;
}
.compare table { width: 100%; border-collapse: collapse; min-width: 560px; }
.compare th, .compare td { padding: 15px 18px; border-bottom: 1px solid var(--line); }
.compare tr:last-child td { border-bottom: 0; }
.compare thead th {
  font-family: "Rajdhani", sans-serif; font-weight: 600; font-size: 1.05rem;
  text-align: center; color: var(--silver); background: rgba(255,255,255,.02);
}
.compare thead th:first-child { text-align: left; }
.compare thead th.col-us { color: var(--gold); }
.compare tbody td { color: var(--silver); font-size: .94rem; }
.compare td.feat { color: #fff; font-weight: 500; }
.compare td.cell { text-align: center; width: 150px; font-weight: 700; }
.compare td.col-us-cell { background: rgba(34,211,238,.06); }
.compare .yes { color: var(--gold); font-size: 1.15rem; }
.compare .no  { color: var(--silver-dark); }
.compare .partial { color: var(--silver-dark); font-size: .82rem; font-weight: 500; }
.compare__note { font-size: .8rem; color: var(--muted); margin-top: 14px; text-align: center; }

/* ─── FAQ accordion ───────────────────────────────────────────────── */
.acc { display: flex; flex-direction: column; gap: 12px; }
.acc__item { border: 1px solid var(--line); border-radius: 12px; background: var(--panel); overflow: hidden; }
.acc__item summary {
  cursor: pointer; padding: 18px 22px; font-family: "Rajdhani"; font-weight: 600; font-size: 1.12rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: #fff;
}
.acc__item summary::-webkit-details-marker { display: none; }
.acc__item summary::after { content: "+"; color: var(--gold); font-size: 1.5rem; transition: transform .25s; }
.acc__item[open] summary::after { transform: rotate(45deg); }
.acc__item p { padding: 0 22px 20px; color: var(--silver); font-size: .96rem; }

/* ─── Final CTA band ──────────────────────────────────────────────── */
.cta-band {
  text-align: center;
  background:
    radial-gradient(ellipse 60% 100% at 50% 0%, rgba(34,211,238,.14), transparent 70%);
  border-top: 1px solid var(--line);
}
.cta-band h2 { font-size: clamp(2rem, 5vw, 3.4rem); }

/* ─── Footer ──────────────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--line); padding: 64px 0 32px; background: #0a0a0c; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.footer__brand .brand { margin-bottom: 14px; }
.footer__tag { color: var(--muted); font-size: .9rem; max-width: 320px; }
.footer__col h4 { font-family: "Rajdhani"; text-transform: uppercase; letter-spacing: .12em; font-size: .85rem; color: var(--gold); margin-bottom: 14px; }
.footer__col a { display: block; color: var(--silver); font-size: .9rem; padding: 5px 0; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__legal { margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--line); }
.footer__legal p { color: var(--muted); font-size: .8rem; }
.footer__disclaimer { margin-top: 10px; max-width: 880px; line-height: 1.6; }

/* ─── Scroll reveal ───────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ─── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero__inner, .indicator__grid, .benefits__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { order: 2; }
  .indicator__visual { order: 2; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }

  .nav {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(13,13,13,.98); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px -24px rgba(0,0,0,.85);
    padding: 16px 24px 24px;
    max-height: calc(100vh - 72px); overflow-y: auto;
    /* Fully hidden + non-interactive when closed so nothing peeks over the header */
    transform: translateY(-10px);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }
  .nav.open { transform: none; opacity: 1; visibility: visible; pointer-events: auto; }
  .nav > a:not(.btn) { padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .nav .btn { margin-top: 8px; }
  .nav__login { display: none; }
  .hamburger { display: flex; }

  /* Language dropdown: inline (non-clipping) inside the mobile menu */
  .lang { width: 100%; margin-top: 10px; }
  .lang__btn { width: 100%; justify-content: space-between; }
  .lang__menu {
    position: static; width: 100%; min-width: 0; margin-top: 6px;
    box-shadow: none; opacity: 1; visibility: visible; transform: none;
    display: none;
  }
  .lang.open .lang__menu { display: block; }
}

@media (max-width: 560px) {
  .stats__grid, .grid--2, .grid--3, .footer__inner { grid-template-columns: 1fr; }
  .plan--featured { transform: none; }
  .strip__inner { justify-content: center; text-align: center; }
  .topbar { font-size: .72rem; }
  .brand__word { font-size: 1.2rem; }
  .btn { width: 100%; }
  .hero__cta { flex-direction: column; }
}

/* ─── Reduced motion ──────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
