:root {
  --bg-void: #030306;
  --bg-surface: #0c0e14;
  --bg-elevated: #12151f;
  --stroke: rgba(255, 255, 255, 0.08);
  --stroke-bright: rgba(52, 211, 153, 0.35);
  --accent: #34d399;
  --accent-2: #a78bfa;
  --accent-hot: #f472b6;
  --accent-warm: #fbbf24;
  --text: #f8fafc;
  --text-dim: #94a3b8;
  --header-h: 64px;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --radius: 14px;
  --spot: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(167, 139, 250, 0.09),
    transparent 45%
  );
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-void);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body.page-sub {
  padding-top: 0;
}

/* Animated mesh + grid + spotlight layer */
.fx-backdrop {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    var(--spot),
    linear-gradient(165deg, #030306 0%, #0a0c18 40%, #08051a 100%);
}
.fx-backdrop::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 50% 40% at 20% 20%, rgba(167, 139, 250, 0.22), transparent 55%),
    radial-gradient(ellipse 45% 35% at 85% 15%, rgba(52, 211, 153, 0.14), transparent 50%),
    radial-gradient(ellipse 40% 50% at 70% 90%, rgba(244, 114, 182, 0.1), transparent 55%);
  animation: mesh-drift 18s ease-in-out infinite alternate;
  opacity: 0.9;
}
.fx-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
  animation: grid-pan 40s linear infinite;
}
@keyframes mesh-drift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-4%, 3%) scale(1.05);
  }
}
@keyframes grid-pan {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(48px, 48px);
  }
}

.fx-scan {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.012) 2px,
    rgba(255, 255, 255, 0.012) 4px
  );
  opacity: 0.5;
}

.page-content {
  position: relative;
  z-index: 2;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.container {
  width: min(1200px, 100% - 40px);
  margin-inline: auto;
}

/* Sticky header — в потоке, не перекрывает hero */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  isolation: isolate;
  display: flex;
  align-items: center;
  background: rgba(6, 8, 12, 0.72);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--stroke);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  border-bottom-color: rgba(167, 139, 250, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}
.site-header .inner {
  width: min(1200px, 100% - 40px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-shine {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent),
    var(--accent-2),
    var(--accent-hot),
    transparent
  );
  background-size: 200% 100%;
  animation: shine-bar 4s linear infinite;
  opacity: 0.65;
  pointer-events: none;
}
@keyframes shine-bar {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  text-decoration: none;
}
.logo:hover {
  text-decoration: none;
}
.logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 0 0 1px var(--stroke), 0 0 24px rgba(52, 211, 153, 0.15);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.32rem;
  letter-spacing: 0.08em;
  font-weight: 400;
  color: var(--text);
  text-shadow: 0 0 40px rgba(167, 139, 250, 0.35);
}
.logo-text span {
  font-size: 0.68rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}
.nav-main a {
  color: var(--text-dim);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
}
.nav-main a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.25s ease;
}
.nav-main a:hover {
  color: var(--text);
  text-decoration: none;
}
.nav-main a:hover::after {
  width: 100%;
}
@media (max-width: 900px) {
  .nav-main {
    display: none;
  }
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 1.4rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #030306;
  background: linear-gradient(135deg, var(--accent) 0%, #6ee7b7 50%, var(--accent-warm) 100%);
  background-size: 200% 200%;
  animation: btn-gradient 6s ease infinite;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 8px 28px rgba(52, 211, 153, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
@keyframes btn-gradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.btn-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(167, 139, 250, 0.4),
    0 12px 36px rgba(167, 139, 250, 0.25);
  text-decoration: none;
  color: #030306;
}
.btn-cta--outline {
  background: transparent;
  animation: none;
  color: var(--accent);
  border: 1px solid rgba(52, 211, 153, 0.45);
  box-shadow: none;
}
.btn-cta--outline:hover {
  background: rgba(52, 211, 153, 0.1);
  color: var(--accent);
}

/* Hero */
.hero {
  position: relative;
  padding: 2.5rem 0 4rem;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 20%;
  right: -10%;
  width: min(55vw, 480px);
  height: min(55vw, 480px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.2), transparent 65%);
  filter: blur(40px);
  animation: pulse-orb 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulse-orb {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 5rem);
  line-height: 0.92;
  margin: 0 0 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}
.hero h1 .line2 {
  display: block;
  background: linear-gradient(105deg, var(--accent), var(--accent-2), var(--accent-hot));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 30px rgba(167, 139, 250, 0.35));
}

.glitch-wrap {
  position: relative;
  display: inline-block;
  z-index: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .glitch-wrap::before,
  .glitch-wrap::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
  }
  .glitch-wrap::before {
    color: var(--accent-hot);
    animation: glitch-a 4s infinite;
    clip-path: inset(40% 0 55% 0);
  }
  .glitch-wrap::after {
    color: var(--accent);
    animation: glitch-b 5s infinite;
    clip-path: inset(65% 0 20% 0);
  }
}
@keyframes glitch-a {
  0%,
  90%,
  100% {
    opacity: 0;
    transform: translate(0);
  }
  91% {
    opacity: 0.85;
    transform: translate(-2px, 1px);
  }
  92% {
    opacity: 0;
  }
}
@keyframes glitch-b {
  0%,
  88%,
  100% {
    opacity: 0;
    transform: translate(0);
  }
  89% {
    opacity: 0.75;
    transform: translate(2px, -1px);
  }
  90% {
    opacity: 0;
  }
}

.hero-lead {
  color: var(--text-dim);
  font-size: 1.08rem;
  max-width: 34rem;
  margin-bottom: 1.75rem;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.jackpot-box {
  display: inline-flex;
  flex-direction: column;
  padding: 1.1rem 1.5rem;
  background: rgba(18, 21, 31, 0.85);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow:
    0 0 0 1px rgba(167, 139, 250, 0.12),
    0 20px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}
.jackpot-box small {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-dim);
  font-weight: 600;
}
.jackpot-box .amount {
  font-family: var(--font-display);
  font-size: 2.35rem;
  letter-spacing: 0.08em;
  color: var(--accent-warm);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 24px rgba(251, 191, 36, 0.35);
}

.hero-visual {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  perspective: 900px;
}
.lights {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.lights::before,
.lights::after {
  content: "";
  position: absolute;
  top: 12%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-warm);
  box-shadow: 0 0 20px var(--accent-warm), 0 0 40px var(--accent-hot);
  animation: blink 1.4s ease-in-out infinite alternate;
}
.lights::before {
  left: 6%;
}
.lights::after {
  right: 6%;
  animation-delay: 0.5s;
}
@keyframes blink {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

.slot-machine {
  width: min(100%, 340px);
  background: linear-gradient(180deg, #161a28, #0e1018);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 1.35rem;
  box-shadow:
    0 0 0 1px rgba(167, 139, 250, 0.2),
    0 24px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform-style: preserve-3d;
  transition: transform 0.35s ease;
}
.hero-visual:hover .slot-machine {
  transform: rotateY(-6deg) rotateX(4deg);
}
@media (max-width: 900px) {
  .hero-visual:hover .slot-machine {
    transform: none;
  }
}
.slot-screen {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  height: 128px;
  overflow: hidden;
  background: #050508;
  border-radius: 10px;
  padding: 10px;
  border: 1px solid rgba(52, 211, 153, 0.15);
}
.slot-reel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: spin-reel 2.4s ease-in-out infinite;
}
.slot-reel:nth-child(2) {
  animation-delay: 0.12s;
}
.slot-reel:nth-child(3) {
  animation-delay: 0.24s;
}
@keyframes spin-reel {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}
.slot-symbol {
  font-size: 2.1rem;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}
.slot-label {
  text-align: center;
  margin-top: 0.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin: 2.25rem 0;
}
.chip {
  padding: 0.5rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(167, 139, 250, 0.1);
  border: 1px solid rgba(167, 139, 250, 0.35);
  color: var(--text);
  backdrop-filter: blur(6px);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.chip:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(52, 211, 153, 0.15);
}

.section {
  padding: 4rem 0;
  position: relative;
}
.section--angled {
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
  background: rgba(12, 14, 20, 0.5);
  border-block: 1px solid var(--stroke);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
  color: var(--text);
}
.section-intro {
  color: var(--text-dim);
  max-width: 680px;
  margin-bottom: 2.25rem;
  font-size: 1.02rem;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.6rem;
}
.game-card {
  background: rgba(18, 21, 31, 0.65);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--stroke);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  backdrop-filter: blur(10px);
}
.game-card:hover {
  border-color: rgba(52, 211, 153, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 40px rgba(167, 139, 250, 0.08);
}
.game-card .thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}
.game-card .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(3, 3, 6, 0.65));
  opacity: 0.9;
  pointer-events: none;
}
.game-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.game-card:hover .thumb img {
  transform: scale(1.06);
}
.game-card .body {
  padding: 1.35rem;
}
.game-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.12rem;
  font-weight: 700;
}
.game-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-dim);
}

.hot-picks {
  margin-top: 3.5rem;
}
.hot-picks h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}
.hot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1.1rem;
}
.hot-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.hot-item:hover {
  border-color: var(--accent-hot);
  transform: scale(1.03);
  box-shadow: 0 12px 32px rgba(244, 114, 182, 0.2);
}
.hot-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.live-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
  align-items: center;
  padding: 2.75rem;
  background: rgba(18, 21, 31, 0.55);
  border-radius: 22px;
  border: 1px solid rgba(167, 139, 250, 0.25);
  box-shadow: 0 0 80px rgba(167, 139, 250, 0.06);
  backdrop-filter: blur(12px);
}
@media (max-width: 768px) {
  .live-block {
    grid-template-columns: 1fr;
  }
}
.live-block img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--stroke);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  margin-bottom: 1.6rem;
}
@media (max-width: 700px) {
  .bonus-grid {
    grid-template-columns: 1fr;
  }
}
.bonus-tile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
  align-items: center;
  background: rgba(18, 21, 31, 0.6);
  border-radius: 18px;
  padding: 1.35rem;
  border: 1px solid var(--stroke);
  transition: border-color 0.25s;
}
.bonus-tile:hover {
  border-color: rgba(251, 191, 36, 0.35);
}
@media (max-width: 500px) {
  .bonus-tile {
    grid-template-columns: 1fr;
  }
}
.bonus-tile img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.bonus-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}
@media (max-width: 700px) {
  .bonus-row {
    grid-template-columns: 1fr;
  }
}
.bonus-card-sm {
  display: flex;
  gap: 1.1rem;
  background: rgba(18, 21, 31, 0.6);
  border-radius: var(--radius);
  padding: 1.15rem;
  border: 1px solid var(--stroke);
}
.bonus-card-sm img {
  width: 104px;
  height: 104px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.faq-list {
  max-width: 820px;
}
.faq-list details {
  background: rgba(18, 21, 31, 0.55);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  margin-bottom: 0.85rem;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-list details[open] {
  border-color: rgba(52, 211, 153, 0.3);
}
.faq-list summary {
  padding: 1.1rem 1.35rem;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--accent-2);
}
.faq-list details[open] summary::after {
  content: "−";
}
.faq-list .answer {
  padding: 0 1.35rem 1.35rem;
  color: var(--text-dim);
  font-size: 0.96rem;
}

.final-cta {
  text-align: center;
  padding: 4.5rem 1.75rem;
  margin: 2.5rem 0 0;
  background:
    linear-gradient(135deg, rgba(167, 139, 250, 0.12), rgba(52, 211, 153, 0.08)),
    rgba(12, 14, 20, 0.8);
  border-radius: 26px;
  border: 1px solid rgba(167, 139, 250, 0.25);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 180deg, transparent, rgba(52, 211, 153, 0.06), transparent 40%);
  animation: cta-spin 14s linear infinite;
  pointer-events: none;
}
@keyframes cta-spin {
  to {
    transform: rotate(360deg);
  }
}
.final-cta h2,
.final-cta p,
.final-cta .btn-cta,
.final-cta .disclaimer {
  position: relative;
  z-index: 1;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  letter-spacing: 0.1em;
  margin: 0 0 1rem;
}
.final-cta p {
  color: var(--text-dim);
  margin-bottom: 1.6rem;
}
.disclaimer {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 1.25rem;
}

.site-footer {
  padding: 3rem 0;
  margin-top: 2rem;
  border-top: 1px solid var(--stroke);
  font-size: 0.88rem;
  color: var(--text-dim);
  background: rgba(6, 8, 12, 0.5);
}
.site-footer .footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  justify-content: space-between;
  align-items: flex-start;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.35rem;
}
.site-footer nav a {
  color: var(--text-dim);
  font-weight: 500;
}
.site-footer nav a:hover {
  color: var(--accent);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ——— Подстраницы ——— */
.sub-banner {
  position: relative;
  min-height: min(52vh, 520px);
  display: flex;
  align-items: flex-end;
  margin-bottom: 0;
  border-bottom: 1px solid var(--stroke);
}
.sub-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

/* Логотип на баннере: без растягивания, чёткие края, фон под индексацию и превью */
.sub-banner--brand {
  background:
    radial-gradient(ellipse 90% 70% at 50% 32%, rgba(167, 139, 250, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(52, 211, 153, 0.1), transparent 50%),
    linear-gradient(168deg, #06070d 0%, #0f1118 42%, #050508 100%);
}
.sub-banner--brand .sub-banner__bg {
  object-fit: contain;
  object-position: center 32%;
  padding: clamp(1.5rem, 5vw, 3.5rem);
  box-sizing: border-box;
  filter: saturate(1.1) drop-shadow(0 12px 40px rgba(0, 0, 0, 0.55));
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.sub-banner--brand .sub-banner__overlay {
  background: linear-gradient(180deg, rgba(3, 3, 6, 0.35) 0%, rgba(3, 3, 6, 0.78) 50%, #030306 100%);
}

.sub-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 3, 6, 0.25) 0%, rgba(3, 3, 6, 0.75) 45%, #030306 100%);
}
.sub-banner__content {
  position: relative;
  z-index: 2;
  padding: 3rem 0 2.75rem;
  width: 100%;
}
.sub-banner__content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  max-width: 900px;
  line-height: 1;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.8);
}
.sub-lead {
  color: #cbd5e1;
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 0 1.75rem;
  line-height: 1.6;
}
.sub-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.sub-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 1.5rem 0 2rem;
  border-bottom: 1px solid var(--stroke);
  margin-bottom: 0;
}
.sub-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  color: var(--text-dim);
  text-decoration: none;
  background: rgba(18, 21, 31, 0.4);
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.sub-pill:hover {
  border-color: var(--accent);
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 0 20px rgba(52, 211, 153, 0.12);
}
.sub-pill.is-active {
  border-color: var(--accent-2);
  color: var(--text);
  background: rgba(167, 139, 250, 0.12);
}

.sub-section {
  padding: 3rem 0;
}
.sub-section:nth-child(even) .split {
  flex-direction: row-reverse;
}
.split {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.split__media {
  flex: 1 1 320px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.split__media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.split:hover .split__media img {
  transform: scale(1.04);
}
.split__text {
  flex: 1 1 280px;
}
.split__text h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  letter-spacing: 0.06em;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}
.split__text p {
  color: var(--text-dim);
  margin: 0 0 1rem;
  font-size: 1.02rem;
}

.glass-callout {
  margin: 2.5rem 0;
  padding: 1.75rem 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(167, 139, 250, 0.25);
  background: rgba(18, 21, 31, 0.55);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 60px rgba(167, 139, 250, 0.06);
}
.glass-callout p {
  margin: 0;
  color: var(--text-dim);
  font-size: 1.02rem;
}
.glass-callout strong {
  color: var(--accent);
}

.sub-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin: 2rem 0 3rem;
}
.stat-card {
  text-align: center;
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(18, 21, 31, 0.45);
}
.stat-card b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.06em;
  color: var(--accent-warm);
  margin-bottom: 0.25rem;
}
.stat-card span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  font-weight: 600;
}

.breadcrumb {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
  font-weight: 500;
}
.breadcrumb a {
  color: #cbd5e1;
}
.breadcrumb a:hover {
  color: var(--accent);
}

.sub-hero {
  padding: 2rem 0 1rem;
}
.sub-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}
.prose {
  max-width: 720px;
}
.prose p {
  color: var(--text-dim);
  margin: 0 0 1rem;
  font-size: 1.02rem;
}
.sub-actions {
  margin: 2rem 0 3rem;
}

.logo-page-type {
  font-size: 0.65rem !important;
  color: var(--accent-2) !important;
  font-weight: 700 !important;
}

.sub-footer-cta {
  text-align: center;
  padding: 3rem 1.5rem;
  margin: 2rem 0 0;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: rgba(18, 21, 31, 0.5);
}
.sub-footer-cta h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.08em;
  margin: 0 0 0.75rem;
}
.sub-footer-cta p {
  color: var(--text-dim);
  margin: 0 0 1.25rem;
}
