/* ============================================================
   OH MY BET AI — shared stylesheet
   Native rebuild (no Figma runtime). Used by index + legal pages.
   ============================================================ */

/* ---------- Brand fonts (self-hosted, subset cyr+lat) ---------- */
@font-face{font-family:'Akony';src:url('fonts/Akony.woff2') format('woff2');font-weight:400 900;font-style:normal;font-display:swap;}
@font-face{font-family:'Cygre';src:url('fonts/Cygre-Regular.woff2') format('woff2');font-weight:400;font-style:normal;font-display:swap;}
@font-face{font-family:'Cygre';src:url('fonts/Cygre-Medium.woff2') format('woff2');font-weight:500;font-style:normal;font-display:swap;}
@font-face{font-family:'Cygre';src:url('fonts/Cygre-SemiBold.woff2') format('woff2');font-weight:600;font-style:normal;font-display:swap;}
@font-face{font-family:'Cygre';src:url('fonts/Cygre-Bold.woff2') format('woff2');font-weight:700;font-style:normal;font-display:swap;}
@font-face{font-family:'Cygre';src:url('fonts/Cygre-ExtraBold.woff2') format('woff2');font-weight:800;font-style:normal;font-display:swap;}
@font-face{font-family:'Cygre';src:url('fonts/Cygre-Black.woff2') format('woff2');font-weight:900;font-style:normal;font-display:swap;}
@font-face{font-family:'Cygre';src:url('fonts/Cygre-BlackIt.woff2') format('woff2');font-weight:900;font-style:italic;font-display:swap;}
@font-face{font-family:'Cygre';src:url('fonts/Cygre-ExtraBoldIt.woff2') format('woff2');font-weight:800;font-style:italic;font-display:swap;}
@font-face{font-family:'Cygre';src:url('fonts/Cygre-BoldIt.woff2') format('woff2');font-weight:700;font-style:italic;font-display:swap;}

/* ---------- Tokens ---------- */
:root {
  --bg: #010101;
  --tile-a: #161618;
  --tile-b: #0c0c0e;
  --violet: #6b29ee;
  --violet-deep: #4301c6;
  --violet-soft: #7d37c4;
  --lilac: #ba6fc1;
  --orange: #f99501;
  --orange-hi: #ffb54a;
  --green: #33c004;
  --green-2: #21c004;
  --tg-nick: #6677ff;
  --text: #ffffff;
  --text-2: #999999;
  --text-3: #777777;
  --border: rgba(255, 255, 255, 0.07);

  --font-display: 'Akony', 'Cygre', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-head: 'Cygre', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-ui: 'Cygre', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --maxw: 1240px;
  --pad-x: 40px;
}

/* ---------- Base ---------- */
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}
html {
  scroll-behavior: smooth;
}
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  overflow-x: hidden;
}
body {
  position: relative;
  min-height: 100vh;
}
img {
  max-width: 100%;
}
a {
  color: inherit;
}
::selection {
  background: rgba(107, 41, 238, 0.45);
  color: #fff;
}
:focus-visible {
  outline: 2px solid var(--lilac);
  outline-offset: 3px;
  border-radius: 6px;
}

h1, h2, h3 {
  letter-spacing: -0.02em;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.section {
  position: relative;
  z-index: 1;
  padding-bottom: 132px;
}
.section--pt {
  padding-top: 124px;
}
.sec-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.eyebrow {
  font-size: 14px;
  font-weight: 700;
  color: var(--lilac);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-style: italic;
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 16px;
}
.sub {
  font-size: 17px;
  color: var(--text-2);
  margin: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-ui);
  font-weight: 800;
  border-radius: 999px;
  transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease;
}
.btn--violet {
  background: linear-gradient(145deg, var(--violet), var(--violet-deep));
  color: #fff;
  padding: 18px 34px;
  font-size: 16px;
  box-shadow: 0 14px 34px rgba(107, 41, 238, 0.4);
}
.btn--violet:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}
.btn--orange {
  background: var(--orange);
  color: #1a1000;
  padding: 18px 34px;
  font-size: 16px;
  box-shadow: 0 14px 34px rgba(249, 149, 1, 0.4);
}
.btn--orange:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 13px;
  font-weight: 700;
  font-size: 14.5px;
  width: 100%;
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ---------- Background glow blobs ---------- */
.glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.glow--1 {
  top: 1400px; left: -220px; width: 680px; height: 680px;
  background: radial-gradient(closest-side, rgba(107, 41, 238, 0.2), transparent 70%);
  filter: blur(40px);
  animation: ombGlowFloat 16s ease-in-out infinite;
}
.glow--2 {
  top: 3200px; right: -240px; width: 720px; height: 720px;
  background: radial-gradient(closest-side, rgba(249, 149, 1, 0.11), transparent 70%);
  filter: blur(46px);
  animation: ombGlowFloat 21s ease-in-out infinite reverse;
}
.glow--3 {
  top: 5200px; left: -180px; width: 640px; height: 640px;
  background: radial-gradient(closest-side, rgba(67, 1, 198, 0.18), transparent 70%);
  filter: blur(42px);
  animation: ombGlowFloat 18s ease-in-out infinite;
}

/* ---------- Reveal-on-scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* ---------- Footer + compliance ---------- */
.compliance {
  border-radius: 24px;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.compliance__badge {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 18px;
}
.compliance__body { flex: 1; min-width: 280px; }
.compliance h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  margin: 0 0 7px;
}
.compliance p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #888;
  margin: 0;
}

.site-footer {
  position: relative;
  z-index: 1;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px var(--pad-x) 60px;
}
.site-footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  text-decoration: none;
}
.wordmark__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: normal;
  font-size: 19px;
  letter-spacing: 0.01em;
  color: #fff;
}
.wordmark__ai {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: #150c00;
  background: var(--orange);
  padding: 2px 5px;
  border-radius: 5px;
  line-height: 1;
}
.site-footer__links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.site-footer__links a {
  text-decoration: none;
  color: var(--text-3);
  font-size: 13px;
  transition: color 0.2s ease;
}
.site-footer__links a:hover { color: #fff; }
.site-footer__copy {
  font-size: 13px;
  color: #666;
}

/* ============================================================
   Animations
   ============================================================ */
@keyframes ombGlowFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -34px) scale(1.14); }
}
@keyframes ombSheen {
  0% { transform: translateX(-160%) skewX(-18deg); }
  55%, 100% { transform: translateX(420%) skewX(-18deg); }
}
@keyframes ombPulseRing {
  0%, 100% { box-shadow: 0 20px 50px rgba(107, 41, 238, 0.25), 0 0 0 0 rgba(107, 41, 238, 0); }
  50% { box-shadow: 0 20px 60px rgba(107, 41, 238, 0.4), 0 0 0 6px rgba(107, 41, 238, 0.1); }
}

/* ============================================================
   HERO + sport cards + "получи от ставок" + "как работает"
   ============================================================ */
.hero {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  padding-top: 64px;
  padding-bottom: 124px;
}
.hero__glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  max-width: 130vw;
  height: 760px;
  background-image: url(omb/assets/0953f1b3c6bcb602.jpg);
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  -webkit-mask-image: radial-gradient(60% 60% at 50% 40%, #000 30%, transparent 75%);
  mask-image: radial-gradient(60% 60% at 50% 40%, #000 30%, transparent 75%);
  pointer-events: none;
  z-index: -1;
}
.hero__inner {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.hero h1 {
  font-family: var(--font-head);
  font-weight: 900;
  font-style: italic;
  font-size: 56px;
  line-height: 1.04;
  margin: 0 0 22px;
  text-shadow: 0 6px 34px rgba(0, 0, 60, 0.45);
}
.hero h1 .accent {
  color: var(--lilac);
}
.hero__sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-2);
  max-width: 620px;
  margin: 0 auto 32px;
}
.hero__note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-3);
}

/* sport cards row */
.sports {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 22px;
  margin-top: 100px;
  flex-wrap: wrap;
}
.sport {
  position: relative;
  width: 340px;
  max-width: 90vw;
  aspect-ratio: 381 / 510;
  border-radius: 60px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55);
}
.sport img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sport--on {
  width: 381px;
  transform: translateY(-60px);
  box-shadow: 0 50px 95px rgba(0, 0, 0, 0.6), 0 0 90px rgba(107, 41, 238, 0.25);
}
.sport--off::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 5, 0.45);
}
.sport__badge {
  /* Бейдж «Скоро» уже запечён в изображениях off-карточек
     (tennis-off.jpg, ufc-off.jpg, справа сверху), поэтому HTML-дубль
     скрываем — иначе бейдж «двоится». */
  display: none;
}
.sport__label {
  /* Подпись вида спорта уже запечена в изображениях карточек
     (omb/sport/*.jpg), поэтому HTML-дубль скрываем — иначе текст
     накладывается на запечённый и «двоится». */
  display: none;
}

/* feature strip ("получи от ставок максимум") */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 120px;
}
.benefit {
  border-radius: 28px;
  padding: 28px;
  background: linear-gradient(140deg, var(--tile-a), var(--tile-b));
  border: 1px solid var(--border);
}
.benefit__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: rgba(107, 41, 238, 0.12);
  border: 1px solid rgba(107, 41, 238, 0.3);
}
.benefit h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  margin: 0 0 9px;
}
.benefit p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0;
}

/* "как работает" steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 70px;
}
.step {
  position: relative;
  border-radius: 28px;
  padding: 30px 28px;
  background: linear-gradient(140deg, var(--tile-a), var(--tile-b));
  border: 1px solid var(--border);
}
.step__num {
  font-family: var(--font-head);
  font-weight: 900;
  font-style: italic;
  font-size: 40px;
  background: linear-gradient(145deg, var(--violet), var(--lilac));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}
.step h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 9px;
}
.step p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0;
}

/* ============================================================
   TRUST
   ============================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
}
.trust-tile {
  position: relative;
  overflow: hidden;
  border-radius: 48px;
  padding: 42px;
}
.trust-tile--accent {
  background: linear-gradient(140deg, var(--violet-deep) 5%, var(--violet-soft) 97%);
}
.trust-tile--dark {
  background: linear-gradient(140deg, var(--tile-a), var(--tile-b));
  border: 1px solid var(--border);
}
.trust-tile__sheen {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 34%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  animation: ombSheen 6.5s ease-in-out infinite;
  pointer-events: none;
}
.trust-tile__ghost {
  position: absolute;
  right: -30px;
  top: -70px;
  font-family: var(--font-head);
  font-weight: 900;
  font-style: italic;
  font-size: 250px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}
.trust-tile__body { position: relative; }
.trust-tile__cap {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  margin-bottom: 8px;
}
.trust-tile__big {
  font-family: var(--font-head);
  font-weight: 800;
  font-style: italic;
  font-size: 88px;
  line-height: 1;
  text-shadow: 0 4px 25px rgba(0, 0, 88, 0.3);
}
.trust-tile__note {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 14px;
}
.chips {
  display: flex;
  gap: 10px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.chip {
  padding: 9px 14px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.2);
  font-size: 13px;
  font-weight: 700;
}
.calib-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.calib-sub {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 28px;
}
.calib-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  height: 190px;
}
.calib-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  height: 100%;
  justify-content: flex-end;
}
.calib-col__val {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
}
.calib-col__bar {
  width: 100%;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
  border-radius: 10px 10px 3px 3px;
  background: linear-gradient(180deg, var(--violet), var(--violet-deep));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}
[data-reveal].is-in .calib-col__bar {
  transform: scaleY(1);
}
.calib-col__label {
  font-size: 12px;
  color: var(--text-3);
  white-space: nowrap;
}
.calib-note {
  font-size: 13px;
  color: var(--text-2);
  margin-top: 24px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(33, 192, 4, 0.07);
  border: 1px solid rgba(33, 192, 4, 0.25);
  line-height: 1.5;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
}
.feature {
  border-radius: 28px;
  padding: 26px;
  background: linear-gradient(140deg, var(--tile-a), var(--tile-b));
  border: 1px solid var(--border);
  transition: transform 0.25s ease;
}
.feature:hover { transform: translateY(-5px); }
.feature:nth-child(4n+1) { margin-top: 0; }
.feature:nth-child(4n+2) { margin-top: 38px; }
.feature:nth-child(4n+3) { margin-top: 70px; }
.feature:nth-child(4n+4) { margin-top: 38px; }
.feature--accent {
  border-color: rgba(249, 149, 1, 0.5);
}
.feature__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: rgba(107, 41, 238, 0.12);
  border: 1px solid rgba(107, 41, 238, 0.3);
}
.feature--accent .feature__icon {
  background: rgba(249, 149, 1, 0.12);
  border-color: rgba(249, 149, 1, 0.4);
}
.feature h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16.5px;
  margin: 0 0 9px;
}
.feature p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  columns: 3;
  column-gap: 16px;
}
.review {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 22px;
  padding: 20px;
  background: linear-gradient(140deg, var(--tile-a), var(--tile-b));
  border: 1px solid var(--border);
}
.review__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
}
.review__av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}
.review__meta { flex: 1; }
.review__user {
  font-weight: 700;
  font-size: 14px;
  color: var(--tg-nick);
}
.review__time {
  font-size: 11px;
  color: var(--text-3);
}
.review p {
  font-size: 14px;
  line-height: 1.55;
  color: #d2d2d8;
  margin: 0;
}

/* ============================================================
   FREE-TRIAL BANNER
   ============================================================ */
.banner {
  position: relative;
  overflow: hidden;
  border-radius: 60px;
  padding: 74px 40px;
  text-align: center;
  background-image:
    linear-gradient(115deg, rgba(67, 1, 198, 0) 50%, rgba(107, 41, 238, 0.95) 86%),
    linear-gradient(165deg, rgba(186, 111, 193, 0) 4%, rgba(186, 111, 193, 0.9) 190%),
    url(omb/assets/b563072c4cd1853d.jpg);
  background-size: cover;
  background-position: center;
  background-color: var(--violet-deep);
}
.banner__dim {
  position: absolute;
  inset: 0;
  background: radial-gradient(620px 200px at 50% 60%, rgba(15, 15, 17, 0.55), transparent 70%);
}
.banner__body { position: relative; }
.banner h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-style: italic;
  font-size: 56px;
  line-height: 1.05;
  margin: 0 0 14px;
  text-shadow: 0 4px 20px rgba(0, 0, 68, 0.45);
}
.banner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
  max-width: 560px;
  margin: 0 auto 30px;
}

/* ============================================================
   PHONE MOCKUPS
   ============================================================ */
.phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 22px;
  flex-wrap: wrap;
}
.phone-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.phone-col--side { transform: translateY(18px); }
.phone-col--center { z-index: 2; }
.phone {
  position: relative;
}
.phone__glow {
  position: absolute;
  inset: -28px;
  z-index: -1;
  background: radial-gradient(closest-side, rgba(107, 41, 238, 0.42), transparent 70%);
  filter: blur(26px);
}
.phone__frame {
  position: relative;
  padding: 9px;
  border-radius: 48px;
  background: linear-gradient(135deg, #52525a, #1c1c20 26%, #0a0a0c 52%, #26262a 76%, #43434b);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55), inset 0 1px 1px rgba(255, 255, 255, 0.22), inset 0 0 0 2px rgba(0, 0, 0, 0.55);
}
.phone--center .phone__frame {
  padding: 10px;
  border-radius: 54px;
  background: linear-gradient(135deg, #57575f, #1d1d21 26%, #0a0a0c 52%, #27272b 76%, #4a4a52);
  box-shadow: 0 46px 95px rgba(0, 0, 0, 0.62), inset 0 1px 1px rgba(255, 255, 255, 0.25), inset 0 0 0 2px rgba(0, 0, 0, 0.6);
}
.phone__screen {
  position: relative;
  width: 232px;
  border-radius: 40px;
  overflow: hidden;
  background: #000;
}
.phone--center .phone__screen {
  width: 256px;
  border-radius: 44px;
}
.phone__screen img {
  width: 100%;
  display: block;
}
.phone__island {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 23px;
  background: #000;
  border-radius: 99px;
  z-index: 3;
}
.phone--center .phone__island {
  top: 13px;
  width: 90px;
  height: 26px;
}
.phone__btn {
  position: absolute;
  width: 3px;
  border-radius: 3px 0 0 3px;
  background: linear-gradient(#17171a, #3a3a40);
}
.phone__btn--r { border-radius: 0 3px 3px 0; }
.phone-cap {
  font-size: 13px;
  color: var(--text-2);
  font-weight: 600;
}
.phone-cap--strong { color: #fff; font-weight: 700; }

/* ============================================================
   PRICING
   ============================================================ */
.toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.toggle {
  display: inline-flex;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  gap: 4px;
}
.toggle button {
  border: none;
  cursor: pointer;
  padding: 9px 22px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  background: transparent;
  transition: background 0.25s ease;
}
.toggle button.is-active {
  background: linear-gradient(145deg, var(--violet), var(--violet-deep));
}
.toggle .save { color: var(--green); font-size: 12px; }

.pricing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.plan {
  position: relative;
  border-radius: 32px;
  padding: 30px 26px;
  background: linear-gradient(140deg, var(--tile-a), var(--tile-b));
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.plan--pro {
  background: linear-gradient(160deg, rgba(107, 41, 238, 0.22), rgba(67, 1, 198, 0.08));
  border: 1.5px solid rgba(107, 41, 238, 0.7);
  box-shadow: 0 20px 50px rgba(107, 41, 238, 0.25);
  animation: ombPulseRing 3.5s ease-in-out infinite;
}
.plan--elite { border-color: rgba(249, 149, 1, 0.4); }
.plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 16px;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--violet), var(--violet-deep));
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.plan__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 4px;
}
.plan--elite .plan__name { color: var(--orange-hi); }
.plan__tag {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 20px;
  min-height: 36px;
}
.plan--pro .plan__tag { color: #c9b8f5; }
.plan__price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 38px;
  margin-bottom: 4px;
}
.plan__period {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 22px;
}
.plan--pro .plan__period { color: #c9b8f5; }
.plan__cta {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14.5px;
  margin-bottom: 22px;
  transition: background 0.2s ease, filter 0.2s ease;
}
.plan__cta--ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}
.plan__cta--ghost:hover { background: rgba(255, 255, 255, 0.1); }
.plan__cta--violet {
  background: linear-gradient(145deg, var(--violet), var(--violet-deep));
  color: #fff;
  box-shadow: 0 10px 24px rgba(107, 41, 238, 0.4);
}
.plan__cta--violet:hover { filter: brightness(1.1); }
.plan__cta--orange {
  background: rgba(249, 149, 1, 0.12);
  border: 1px solid rgba(249, 149, 1, 0.5);
  color: var(--orange-hi);
}
.plan__cta--orange:hover { background: rgba(249, 149, 1, 0.2); }
.plan__feats {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 13.5px;
  color: #c7c7ce;
}
.plan--pro .plan__feats { color: #ede8fb; }
.plan__feats div { display: flex; gap: 9px; }
.plan__feats .tick { color: var(--green); }
.plan--elite .plan__feats .tick { color: var(--orange); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { max-width: 840px; }
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border-radius: 22px;
  background: linear-gradient(140deg, var(--tile-a), var(--tile-b));
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  border: none;
  cursor: pointer;
  background: transparent;
  color: #fff;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 16.5px;
}
.faq-q__plus {
  flex-shrink: 0;
  font-size: 24px;
  color: var(--lilac);
  transition: transform 0.25s ease;
}
.faq-q[aria-expanded="true"] .faq-q__plus {
  transform: rotate(45deg);
}
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.faq-a__inner {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-2);
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-header {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px var(--pad-x);
}
.legal-header__inner {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.legal-back {
  text-decoration: none;
  color: var(--text-2);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}
.legal-back:hover { color: #fff; }
.legal-main {
  position: relative;
  z-index: 1;
  max-width: 840px;
  margin: 0 auto;
  padding: 60px var(--pad-x) 90px;
}
.legal-main h1 {
  font-family: var(--font-head);
  font-weight: 900;
  font-style: italic;
  font-size: 40px;
  line-height: 1.1;
  margin: 0 0 10px;
}
.legal-updated {
  font-size: 14px;
  color: var(--text-3);
  margin: 0 0 40px;
}
.legal-main h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 24px;
  margin: 44px 0 14px;
}
.legal-main h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  margin: 28px 0 10px;
}
.legal-main p,
.legal-main li {
  font-size: 16px;
  line-height: 1.7;
  color: #cfcfd6;
}
.legal-main ul {
  padding-left: 22px;
  margin: 14px 0;
}
.legal-main li { margin-bottom: 8px; }
.legal-main a { color: var(--lilac); }
.legal-callout {
  margin: 24px 0;
  padding: 22px 24px;
  border-radius: 20px;
  background: rgba(249, 149, 1, 0.08);
  border: 1px solid rgba(249, 149, 1, 0.45);
}
.legal-callout strong { color: var(--orange-hi); }
.legal-callout p { color: #ecdcc7; margin: 0; }
.legal-callout--warn {
  background: rgba(255, 86, 86, 0.07);
  border-color: rgba(255, 96, 96, 0.42);
}
.legal-callout--warn strong { color: #ffadad; }
.legal-callout--warn p { color: #f1dada; }
.legal-main .legal-subtitle {
  font-size: 17px;
  line-height: 1.5;
  color: var(--text-2);
  margin: -18px 0 12px;
  max-width: 760px;
}
.legal-main .legal-note {
  font-size: 13px;
  line-height: 1.5;
  font-style: italic;
  color: var(--text-3);
  margin-top: 10px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1160px) {
  .features { grid-template-columns: repeat(3, 1fr); }
  .feature:nth-child(n) { margin-top: 0; }
}
@media (max-width: 1080px) {
  .pricing { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1040px) {
  .reviews { columns: 2; }
}
@media (max-width: 920px) {
  .features { grid-template-columns: 1fr 1fr; }
  .benefits { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
}
@media (max-width: 880px) {
  .trust-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  :root { --pad-x: 22px; }
  .hero { padding-top: 80px; padding-bottom: 76px; }
  .hero h1 { font-size: 40px; }
  .h2 { font-size: 32px; }
  .banner h2 { font-size: 38px; }
  .legal-main h1 { font-size: 30px; }
  .section { padding-bottom: 90px; }
  .section--pt { padding-top: 80px; }
  .sport--on { transform: none; }
}
@media (max-width: 700px) {
  .reviews { columns: 1; }
}
@media (max-width: 620px) {
  .pricing { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .features { grid-template-columns: 1fr; }
}

/* reduced motion: show everything, no animated drift */
@media (prefers-reduced-motion: reduce) {
  .glow, .trust-tile__sheen, .plan--pro { animation: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .calib-col__bar { transform: scaleY(1) !important; }
  html { scroll-behavior: auto; }
}

/* ================= SITE HEADER ================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(1, 1, 1, 0.72);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 70px;
}
.site-logo {
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
  white-space: nowrap;
}
.site-logo__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: #fff;
}
.site-logo__ai {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 12px;
  color: var(--orange);
  margin-left: 2px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.18s ease;
}
.site-nav a:hover {
  color: #fff;
}
.btn-launch {
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid rgba(125, 55, 196, 0.85);
  background: rgba(107, 41, 238, 0.14);
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.12s ease;
}
.btn-launch:hover {
  background: rgba(107, 41, 238, 0.32);
  border-color: var(--violet);
}
.btn-launch:active {
  transform: translateY(1px);
}
/* sticky-header anchor offset */
#trust, #reviews, #pricing, #faq {
  scroll-margin-top: 90px;
}
@media (max-width: 860px) {
  .site-header__inner { height: 60px; gap: 14px; }
  .site-nav { display: none; }
  .site-logo__name { font-size: 18px; }
  .btn-launch { padding: 9px 16px; font-size: 13.5px; }
}

/* ================= НОВЫЕ СЕКЦИИ ЭТАЛОНА ================= */
/* inline violet accent */
.accent-v { color: #8b7cff; }

/* --- играй так, как всегда мечтал --- */
.tagline {
  text-align: center;
  max-width: 820px;
  margin: 96px auto 0;
}
.tagline__h {
  font-family: var(--font-head);
  font-weight: 900;
  font-style: italic;
  font-size: 42px;
  line-height: 1.1;
  margin: 0 0 18px;
}
.tagline__p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-2);
  max-width: 720px;
  margin: 0 auto;
}

/* --- Получи от ставок максимум --- */
.maxbet__grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 44px;
  align-items: start;
}
.maxbet__phone { display: flex; flex-direction: column; align-items: flex-start; }
.phonecard {
  width: 100%;
  height: 500px;
  border-radius: 32px;
  background: linear-gradient(150deg, var(--tile-a), var(--tile-b));
  border: 1px solid var(--border);
  overflow: hidden;
}
.phonecard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
}
.maxbet__cta { margin-top: 26px; }

.maxbet__right { display: flex; flex-direction: column; }
.points { list-style: none; margin: 0; padding: 0; }
.point {
  display: grid;
  grid-template-columns: 58px minmax(130px, 0.7fr) 1.3fr;
  gap: 22px;
  align-items: center;
  padding: 24px 4px;
  border-bottom: 1px solid var(--border);
}
.point:first-child { padding-top: 6px; }
.point__num {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(139, 124, 255, 0.55);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 800; font-style: italic;
  font-size: 17px;
  color: #8b7cff;
}
.point__body { display: contents; }
.point__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  color: #fff;
}
.point__desc { font-size: 15px; line-height: 1.5; color: var(--text-2); }

.maxbet__foot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  margin-top: 38px;
}
.maxbet__note {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-2);
  max-width: 340px;
  margin: 0;
}
.statcard {
  width: 230px; height: 230px;
  flex-shrink: 0;
  border-radius: 32px;
  background: linear-gradient(155deg, var(--violet) 0%, var(--violet-deep) 100%);
  box-shadow: 0 22px 50px rgba(67, 1, 198, 0.4);
  padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.statcard__num {
  font-family: var(--font-head);
  font-weight: 900; font-style: italic;
  font-size: 58px; line-height: 1;
  color: #fff;
}
.statcard__label { font-size: 13px; line-height: 1.45; color: rgba(255,255,255,0.85); }

/* --- Как работает (2x2 + CTA) --- */
.howto__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.howcard {
  border-radius: 28px;
  background: linear-gradient(140deg, var(--tile-a), var(--tile-b));
  border: 1px solid var(--border);
  padding: 30px 32px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
}
.howcard__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(139, 124, 255, 0.5);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 800; font-style: italic;
  font-size: 18px;
  color: #8b7cff;
  margin-bottom: auto;
}
.howcard h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  margin: 28px 0 10px;
  color: #fff;
}
.howcard p { font-size: 15px; line-height: 1.55; color: var(--text-2); font-style: italic; margin: 0; }
.howcard--cta {
  text-decoration: none;
  background: linear-gradient(150deg, var(--violet) 0%, var(--violet-deep) 100%);
  border: none;
  box-shadow: 0 22px 50px rgba(67, 1, 198, 0.38);
  transition: transform 0.2s ease, filter 0.2s ease;
}
.howcard--cta:hover { transform: translateY(-3px); filter: brightness(1.07); }
.howcard__check {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: auto;
}
.howcard--cta h3 { color: #fff; }
.howcard--cta p { color: rgba(255,255,255,0.88); }

/* --- responsive --- */
@media (max-width: 900px) {
  .maxbet__grid { grid-template-columns: 1fr; gap: 32px; }
  .maxbet__phone { align-items: center; }
  .maxbet__cta { align-self: center; }
  .howto__grid { grid-template-columns: 1fr; }
  .point { grid-template-columns: 50px 1fr; row-gap: 6px; }
  .point__desc { grid-column: 2; }
  .maxbet__foot { grid-template-columns: 1fr; justify-items: start; gap: 22px; }
  .tagline__h { font-size: 32px; }
}
