:root {
  --bg: #050505;
  --bg-2: #090a0d;
  --panel: rgba(13, 15, 18, 0.78);
  --panel-2: rgba(18, 19, 22, 0.88);
  --line: rgba(218, 184, 111, 0.18);
  --line-strong: rgba(218, 184, 111, 0.42);
  --text: #f5f0e8;
  --muted: rgba(245, 240, 232, 0.66);
  --muted-2: rgba(245, 240, 232, 0.43);
  --gold: #d8b66d;
  --gold-2: #fff0bd;
  --green: #9cec56;
  --danger: #ff785f;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow: 0 30px 110px rgba(0, 0, 0, 0.55);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 22% 14%, rgba(216, 182, 109, 0.12), transparent 31vw),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.055), transparent 25vw),
    radial-gradient(circle at 56% 78%, rgba(216, 182, 109, 0.075), transparent 35vw),
    linear-gradient(180deg, #050506 0%, #06070a 50%, #030303 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
svg { display: block; }

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .42;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(circle at center, #000 0, transparent 78%);
}

.ambient {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 999px;
  filter: blur(30px);
  opacity: .55;
}
.ambient-a { width: 420px; height: 420px; top: -170px; left: 12%; background: rgba(216,182,109,.13); }
.ambient-b { width: 440px; height: 440px; top: 18%; right: -190px; background: rgba(216,182,109,.12); }
.ambient-c { width: 520px; height: 520px; bottom: -260px; left: 38%; background: rgba(255,255,255,.045); }

.header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 32px), var(--max));
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(6, 7, 9, .72);
  backdrop-filter: blur(22px);
  border-radius: 999px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, .38);
  z-index: 50;
}

.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand__mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: radial-gradient(circle at 50% 0%, rgba(216,182,109,.22), rgba(216,182,109,.04));
  box-shadow: inset 0 0 18px rgba(216,182,109,.12), 0 0 36px rgba(216,182,109,.10);
}
.brand__mark svg { width: 25px; height: 25px; fill: none; stroke: var(--gold-2); stroke-width: 2; stroke-linejoin: round; }
.brand__text {
  letter-spacing: .16em;
  font-weight: 760;
  font-size: 15px;
}
.brand__text b { color: var(--gold); }

.nav { display: flex; align-items: center; gap: 8px; }
.nav a {
  position: relative;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .04em;
  transition: color .25s ease, background .25s ease;
  border-radius: 999px;
}
.nav a:hover { color: var(--text); background: rgba(255,255,255,.045); }

.header__actions { display: flex; align-items: center; gap: 10px; }
.ghost-link {
  color: var(--muted);
  font-size: 13px;
  padding: 11px 12px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.ghost-link:hover { background: rgba(255,255,255,.055); color: var(--text); }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  color: var(--gold-2);
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(216,182,109,.12), rgba(216,182,109,.045));
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .04em;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.header-cta:hover { transform: translateY(-1px); border-color: rgba(216,182,109,.72); box-shadow: 0 0 40px rgba(216,182,109,.13); }

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: var(--text);
  cursor: pointer;
}
.burger i {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.burger.is-open i:first-child { transform: translateY(3.5px) rotate(45deg); }
.burger.is-open i:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(560px, 1.35fr);
  gap: 46px;
  align-items: center;
  padding-top: 118px;
  padding-bottom: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 700;
}
.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(216,182,109,.85);
}

.hero h1 {
  margin: 24px 0 0;
  max-width: 720px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 7vw, 102px);
  line-height: .92;
  letter-spacing: -.06em;
  font-weight: 500;
  text-wrap: balance;
}
.hero h1::first-letter { color: var(--gold-2); }
.lead {
  margin: 26px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.72;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 760;
  letter-spacing: .04em;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }
.btn--primary {
  color: #090805;
  background: linear-gradient(135deg, #ffe8a1 0%, #d5a74f 45%, #9c6f24 100%);
  box-shadow: 0 18px 60px rgba(216,182,109,.25), inset 0 1px 0 rgba(255,255,255,.55);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 22px 74px rgba(216,182,109,.34), inset 0 1px 0 rgba(255,255,255,.7); }
.btn--secondary {
  color: var(--text);
  background: rgba(255,255,255,.045);
  border-color: rgba(255,255,255,.11);
}
.btn--secondary:hover { transform: translateY(-2px); border-color: var(--line-strong); background: rgba(216,182,109,.065); }

.hero__badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
  max-width: 650px;
}
.hero__badges div {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.035);
  border-radius: 18px;
}
.hero__badges b { display: block; color: var(--gold-2); font-size: 17px; margin-bottom: 6px; }
.hero__badges span { color: var(--muted-2); font-size: 12px; line-height: 1.45; }

.hero__visual { position: relative; min-height: 610px; }
.command-card {
  position: relative;
  width: 100%;
  min-height: 595px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 32px;
  background:
    radial-gradient(circle at 72% 0%, rgba(216,182,109,.14), transparent 35%),
    linear-gradient(180deg, rgba(23,25,29,.88), rgba(8,9,11,.86));
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,.035);
  transform: perspective(1200px) rotateY(-3.5deg) rotateX(1deg);
}
.command-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.08) 47%, transparent 57%);
  transform: translateX(-50%);
  animation: shimmer 8s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 45% { transform: translateX(-55%) rotate(10deg); opacity: 0; }
  55% { opacity: .7; }
  100% { transform: translateX(55%) rotate(10deg); opacity: 0; }
}

.window-bar {
  position: relative;
  z-index: 1;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
}
.traffic { display: flex; gap: 7px; }
.traffic i { width: 9px; height: 9px; border-radius: 999px; background: rgba(255,255,255,.18); }
.traffic i:nth-child(2) { background: rgba(216,182,109,.55); }
.window-bar strong { color: var(--muted); letter-spacing: .14em; font-size: 12px; }
.window-bar span { color: var(--gold); font-size: 11px; letter-spacing: .14em; }

.command-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 174px 1fr; min-height: 533px; }
.sidebar {
  padding: 22px 16px;
  border-right: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.15);
}
.sidebar__logo {
  height: 46px;
  display: flex;
  align-items: center;
  color: var(--gold-2);
  letter-spacing: .16em;
  font-weight: 800;
  font-size: 14px;
}
.sidebar button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 10px;
  margin-top: 6px;
  border: 0;
  border-radius: 12px;
  color: var(--muted);
  background: transparent;
  text-align: left;
  font-size: 12px;
}
.sidebar button span { color: var(--muted-2); font-size: 10px; }
.sidebar button.active { color: var(--gold-2); background: rgba(216,182,109,.10); }

.command-main { padding: 24px; }
.match-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.match-head small, .panel__label { color: var(--muted-2); text-transform: uppercase; letter-spacing: .12em; font-size: 11px; }
.match-head h3 { margin: 7px 0 0; font-size: 24px; letter-spacing: -.02em; }
.match-head em { font-style: normal; color: var(--gold); font-size: 12px; padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; background: rgba(216,182,109,.06); }
.command-grid { display: grid; grid-template-columns: 1.5fr .85fr; gap: 14px; }
.panel {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.085);
  border-radius: 20px;
  background: rgba(0,0,0,.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}
.panel--wide, .panel--chart { grid-column: span 1; }
.panel--chart { min-height: 190px; }
.odds { display: flex; align-items: center; gap: 16px; margin-top: 18px; }
.odds strong { font-size: 44px; letter-spacing: -.05em; }
.odds svg { width: 28px; height: 28px; fill: none; stroke: var(--muted-2); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.gold { color: var(--gold-2); }
.split-metrics { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; color: var(--muted); }
.split-metrics span { padding: 8px 10px; border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07); font-size: 12px; }
.panel-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 18px; color: var(--muted-2); font-size: 12px; }
.panel-footer b { color: var(--gold); font-weight: 700; }
.risk-score { margin-top: 14px; font-size: 52px; color: var(--gold-2); font-weight: 650; letter-spacing: -.05em; }
.risk-score small { font-size: 18px; color: var(--muted-2); }
.progress { height: 8px; background: rgba(255,255,255,.08); border-radius: 999px; overflow: hidden; margin: 12px 0; }
.progress i { display: block; height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-2)); border-radius: inherit; }
.panel p { margin: 0; color: var(--muted-2); font-size: 13px; line-height: 1.5; }
.chart { width: 100%; height: 145px; margin-top: 14px; overflow: visible; }
.chart-grid { stroke: rgba(255,255,255,.06); stroke-width: 1; }
.chart-fill { fill: url(#chartFill); }
.chart-line { fill: none; stroke: var(--gold); stroke-width: 3; }
.chart circle { fill: var(--gold-2); filter: drop-shadow(0 0 12px rgba(216,182,109,.65)); }
.signal-status { display: flex; align-items: center; gap: 8px; margin: 18px 0 12px; color: var(--gold-2); font-size: 15px; font-weight: 700; }
.signal-status i { width: 10px; height: 10px; border-radius: 999px; background: var(--green); box-shadow: 0 0 18px rgba(156,236,86,.55); }

.phone-card {
  position: absolute;
  right: -12px;
  bottom: -18px;
  width: 315px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background: rgba(18, 25, 34, .92);
  backdrop-filter: blur(18px);
  box-shadow: 0 32px 90px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.06);
}
.phone-card__top { display: flex; justify-content: space-between; color: var(--muted-2); font-size: 12px; }
.phone-card h4 { margin: 13px 0 12px; font-size: 21px; }
.phone-card p { margin: 0 0 12px; color: var(--text); }
.phone-card dl { margin: 0; display: grid; gap: 8px; }
.phone-card dl div { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-top: 1px solid rgba(255,255,255,.07); }
.phone-card dt { color: var(--muted-2); }
.phone-card dd { margin: 0; color: var(--gold-2); font-weight: 700; }

.ticker { position: relative; z-index: 2; overflow: hidden; border-block: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.025); }
.ticker__track {
  display: flex;
  width: max-content;
  gap: 18px;
  align-items: center;
  min-height: 62px;
  animation: ticker 28s linear infinite;
}
.ticker span { color: var(--gold); text-transform: uppercase; letter-spacing: .18em; font-size: 11px; margin-left: 18px; }
.ticker b { color: var(--text); font-size: 13px; font-weight: 650; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: 98px 0 0; }
.section__head { max-width: 760px; margin-bottom: 34px; }
.section__head h2, .launch h2, .final-cta h2 {
  margin: 14px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.2vw, 64px);
  line-height: 1;
  letter-spacing: -.055em;
  font-weight: 500;
}
.section__head p, .launch p, .final-cta p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.launch {
  margin-top: 82px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 88% 16%, rgba(216,182,109,.18), transparent 36%),
    rgba(255,255,255,.035);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.045);
}
.launch__content { max-width: 720px; }
.launch__panel {
  padding: 20px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 26px;
  background: rgba(0,0,0,.2);
}
.slots {
  display: grid;
  place-items: center;
  min-height: 190px;
  border-radius: 22px;
  border: 1px dashed var(--line-strong);
  background: rgba(216,182,109,.045);
  margin-bottom: 14px;
  text-align: center;
}
.slots span { color: var(--muted); }
.slots strong { display: block; color: var(--gold-2); font-size: 76px; line-height: .9; letter-spacing: -.06em; }
.slots em { font-style: normal; color: var(--muted-2); }
.launch__panel .btn { width: 100%; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,.03);
}
.stats article {
  padding: 28px 22px;
  min-height: 134px;
  border-right: 1px solid rgba(255,255,255,.07);
}
.stats article:last-child { border-right: 0; }
.stats b { display: block; color: var(--gold-2); font-size: 40px; letter-spacing: -.045em; margin-bottom: 8px; }
.stats span { color: var(--muted-2); line-height: 1.5; font-size: 13px; }

.features, .signal-cards, .case-grid, .steps, .after-grid, .pricing-grid {
  display: grid;
  gap: 16px;
}
.features { grid-template-columns: repeat(3, 1fr); }
.feature, .tg-card, .case, .step, .after, .price-card {
  position: relative;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.022));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.feature { padding: 24px; min-height: 235px; overflow: hidden; }
.feature::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(216,182,109,.16), transparent 65%);
}
.feature__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(216,182,109,.055);
  font-size: 22px;
}
.feature h3, .tg-card h3, .case h3, .step h3, .after h3, .price-card h3 { margin: 0 0 12px; font-size: 21px; letter-spacing: -.02em; }
.feature p, .tg-card p, .case p, .step p, .after p, .price-card p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 14px; }

.signals { padding-top: 106px; }
.signal-cards { grid-template-columns: repeat(4, 1fr); }
.tg-card {
  padding: 18px;
  background: rgba(27, 39, 53, .58);
  border-radius: 24px;
}
.tg-card__meta, .case__top, .case__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.tg-card__meta { margin-bottom: 18px; }
.tg-card__meta span, .case__top span { color: var(--gold); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.tg-card__meta b, .case__top b { color: var(--green); font-size: 10px; letter-spacing: .12em; border: 1px solid rgba(156,236,86,.24); padding: 5px 8px; border-radius: 999px; background: rgba(156,236,86,.06); }
.tg-card .match { color: var(--text); font-weight: 760; margin-bottom: 20px; }
.tg-odds { display: flex; align-items: center; gap: 10px; margin: 14px 0; }
.tg-odds span, .tg-amount { color: var(--gold-2); font-size: 32px; font-weight: 760; letter-spacing: -.04em; }
.tg-odds i { color: var(--muted-2); font-style: normal; }
.tg-amount { margin: 14px 0; font-size: 30px; }
.tg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 16px 0; }
.tg-grid span {
  display: grid;
  place-items: center;
  min-height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  color: var(--muted);
  font-size: 12px;
  background: rgba(0,0,0,.16);
}
.tg-card em { color: var(--muted-2); font-style: normal; font-size: 12px; }

.report-tabs {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  margin-bottom: 16px;
}
.tab {
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}
.tab.active { color: #090805; background: linear-gradient(135deg, var(--gold-2), var(--gold)); font-weight: 800; }
.report-board {
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 32px;
  background: radial-gradient(circle at 82% 20%, rgba(216,182,109,.14), transparent 34%), rgba(255,255,255,.032);
  min-height: 406px;
  overflow: hidden;
}
.report-view { display: none; padding: 28px; }
.report-view.active { display: block; animation: fadeUp .32s ease both; }
.report-view__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.08); }
.report-view__head small { color: var(--gold); letter-spacing: .16em; text-transform: uppercase; font-size: 11px; }
.report-view__head h3 { margin: 8px 0 0; font-size: 31px; letter-spacing: -.035em; }
.report-view__head span { color: var(--muted); font-size: 13px; padding: 8px 10px; border: 1px solid rgba(255,255,255,.08); border-radius: 999px; background: rgba(0,0,0,.14); }
.report-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 22px; }
.report-metrics div { padding: 20px; border: 1px solid rgba(255,255,255,.08); border-radius: 20px; background: rgba(0,0,0,.18); }
.report-metrics b { display: block; color: var(--gold-2); font-size: 38px; letter-spacing: -.05em; }
.report-metrics span { display: block; color: var(--muted-2); line-height: 1.45; font-size: 13px; margin-top: 6px; }
.report-highlight { margin-top: 18px; padding: 24px; border: 1px solid var(--line); border-radius: 24px; background: rgba(216,182,109,.055); }
.report-highlight span { color: var(--gold); text-transform: uppercase; letter-spacing: .14em; font-size: 11px; }
.report-highlight h4 { margin: 10px 0 8px; font-size: 24px; letter-spacing: -.03em; }
.report-highlight p { margin: 0; color: var(--muted); line-height: 1.6; }

.case-grid { grid-template-columns: repeat(3, 1fr); }
.case { padding: 22px; min-height: 250px; }
.case h3 { margin-top: 44px; }
.case__bottom { margin-top: 22px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.07); }
.case__bottom span { color: var(--gold-2); font-size: 13px; }
.public-channel {
  margin-top: 18px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(216,182,109,.045);
}
.public-channel h3 { margin: 0 0 8px; font-size: 22px; }
.public-channel p { margin: 0; color: var(--muted); }

.steps { grid-template-columns: repeat(4, 1fr); counter-reset: steps; }
.step { padding: 24px; min-height: 235px; }
.step b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--gold);
  margin-bottom: 34px;
  background: rgba(216,182,109,.045);
}

.after-grid { grid-template-columns: repeat(4, 1fr); }
.after { padding: 24px; min-height: 220px; }
.after span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 34px;
  border-radius: 999px;
  color: #080705;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-weight: 900;
}

.pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.price-card { padding: 28px; min-height: 460px; display: flex; flex-direction: column; }
.price-card--main {
  border-color: var(--line-strong);
  background: radial-gradient(circle at 50% 0%, rgba(216,182,109,.18), transparent 45%), rgba(255,255,255,.045);
  transform: translateY(-12px);
  box-shadow: 0 24px 90px rgba(216,182,109,.09), inset 0 1px 0 rgba(255,255,255,.06);
}
.label { align-self: flex-start; color: #080705; background: linear-gradient(135deg, var(--gold-2), var(--gold)); border-radius: 999px; padding: 7px 10px; font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.price-card h3 { font-size: 26px; }
.price { margin: 22px 0; color: var(--gold-2); font-size: 50px; font-weight: 760; letter-spacing: -.06em; }
.price-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; color: var(--muted); }
.price-card li { position: relative; padding-left: 24px; font-size: 14px; line-height: 1.45; }
.price-card li::before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 999px; background: var(--gold); box-shadow: 0 0 12px rgba(216,182,109,.45); }
.price-card a {
  margin-top: auto;
  min-height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  color: var(--gold-2);
  background: rgba(216,182,109,.065);
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.price-card a:hover { transform: translateY(-2px); background: rgba(216,182,109,.12); box-shadow: 0 20px 60px rgba(216,182,109,.10); }
.price-card--main a { color: #080705; border-color: transparent; background: linear-gradient(135deg, var(--gold-2), var(--gold)); }

.faq-list { display: grid; gap: 10px; max-width: 880px; }
details {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  background: rgba(255,255,255,.035);
  overflow: hidden;
}
summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  cursor: pointer;
  font-weight: 760;
  letter-spacing: -.01em;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--gold); font-size: 24px; }
details[open] summary::after { content: "−"; }
details p { margin: 0; padding: 0 22px 22px; color: var(--muted); line-height: 1.65; }

.final-cta {
  margin-top: 110px;
  margin-bottom: 50px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 78% 20%, rgba(216,182,109,.18), transparent 38%), rgba(255,255,255,.04);
}
.final-cta small { color: var(--gold); text-transform: uppercase; letter-spacing: .18em; }
.final-cta h2 { max-width: 740px; }
.final-cta p { max-width: 680px; }
.final-cta .btn { flex: 0 0 auto; }

.footer {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto 28px;
  padding: 26px 0 82px;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 24px;
  align-items: start;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer__brand { letter-spacing: .16em; font-weight: 800; }
.footer__brand b { color: var(--gold); }
.footer p { margin: 0; color: var(--muted-2); line-height: 1.6; max-width: 620px; font-size: 13px; }
.footer__links { display: flex; gap: 14px; }
.footer__links a { color: var(--muted); font-size: 13px; }
.footer__links a:hover { color: var(--gold-2); }

.sticky-cta {
  display: none;
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 60;
  min-height: 54px;
  place-items: center;
  border-radius: 16px;
  color: #080705;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-weight: 900;
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: .08s; }
.reveal--delay-2 { transition-delay: .16s; }
.reveal--delay-3 { transition-delay: .24s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1100px) {
  .header { width: min(calc(100% - 24px), 980px); }
  .nav { position: fixed; left: 12px; right: 12px; top: 90px; display: grid; gap: 6px; padding: 16px; border: 1px solid rgba(255,255,255,.10); border-radius: 24px; background: rgba(8,9,11,.94); backdrop-filter: blur(20px); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity .22s ease, transform .22s ease; }
  body.menu-open .nav { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav a { padding: 14px 16px; }
  .burger { display: block; }
  .ghost-link { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 130px; }
  .hero__visual { min-height: 560px; }
  .command-card { transform: none; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .signal-cards { grid-template-columns: repeat(2, 1fr); }
  .steps, .after-grid { grid-template-columns: repeat(2, 1fr); }
  .launch { grid-template-columns: 1fr; }
  .launch__panel { max-width: 420px; }
}

@media (max-width: 820px) {
  .header { top: 10px; height: 64px; padding: 9px 10px 9px 14px; }
  .brand__mark { width: 34px; height: 34px; border-radius: 12px; }
  .brand__text { font-size: 13px; letter-spacing: .12em; }
  .header-cta { display: none; }
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .hero { padding-top: 108px; gap: 34px; }
  .lead { font-size: 16px; line-height: 1.65; }
  .hero__buttons .btn { width: 100%; }
  .hero__badges { grid-template-columns: 1fr; }
  .hero__visual { min-height: auto; }
  .command-card { min-height: auto; border-radius: 26px; }
  .window-bar strong { display: none; }
  .command-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .command-main { padding: 16px; }
  .match-head { display: grid; }
  .match-head h3 { font-size: 19px; }
  .command-grid { grid-template-columns: 1fr; }
  .panel--chart { min-height: 160px; }
  .odds strong { font-size: 36px; }
  .phone-card { position: relative; right: auto; bottom: auto; margin-top: 14px; width: 100%; border-radius: 24px; }
  .ticker__track { min-height: 54px; animation-duration: 24s; }
  .section { padding-top: 74px; }
  .launch { margin-top: 62px; padding: 20px; border-radius: 24px; }
  .stats, .features, .signal-cards, .case-grid, .steps, .after-grid, .pricing-grid, .report-metrics { grid-template-columns: 1fr; }
  .stats article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.07); min-height: auto; }
  .stats article:last-child { border-bottom: 0; }
  .report-tabs { display: grid; grid-template-columns: 1fr; border-radius: 20px; width: 100%; }
  .tab { border-radius: 15px; }
  .report-view { padding: 18px; }
  .report-view__head { display: grid; }
  .public-channel { display: grid; }
  .price-card--main { transform: none; }
  .final-cta { display: grid; margin-top: 74px; padding: 22px; }
  .final-cta .btn { width: 100%; }
  .footer { grid-template-columns: 1fr; padding-bottom: 92px; }
  .sticky-cta { display: grid; }
}

@media (max-width: 460px) {
  .hero h1 { font-size: 44px; }
  .section__head h2, .launch h2, .final-cta h2 { font-size: 35px; }
  .tg-grid { grid-template-columns: 1fr; }
  .price { font-size: 42px; }
}
