:root {
  --color-bg: #1C1E27;
  --color-bg-deep: #14161E;
  --color-surface: #232733;
  --color-surface-2: #2B3040;
  --color-border: #394052;
  --color-text: #F0F4F8;
  --color-text-dim: #A9B4C6;
  --color-accent: #3498FE;
  --color-accent-2: #4DA5FE;
  --color-accent-rgb: 52, 152, 254;
  --color-cta-bg: #1D6BCB;
  --color-cta-bg-hover: #1A5FB5;
  --font-display: "Chakra Petch", sans-serif;
  --font-body: "Schibsted Grotesk", sans-serif;
  --fs-body: 1rem;
  --fs-small: 0.8rem;
  --fs-card-title: 1.25rem;
  --fs-section-title: clamp(1.4rem, 1.1rem + 1.6vw, 1.953rem);
  --fs-hero: clamp(1.75rem, 1.2rem + 2.9vw, 2.44rem);
  --lh-body: 1.6;
  --radius-s: 6px;
  --radius-m: 12px;
  --radius-pill: 999px;
  --header-h: 64px;
  --sidebar-w: 248px;
  --section-gap: 72px;
  --section-gap-mob: 48px;
  --hero-padding-v: 56px;
  --footer-padding-v: 48px;
  --gap: 24px;
  --ease-enter: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-exit: cubic-bezier(0.7, 0, 0.84, 0);
  --ease-toggle: cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast: 150ms;
  --t-med: 250ms;
  --t-slow: 350ms;
}

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

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
}

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

img {
  height: auto;
}

button {
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

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

ul,
ol {
  padding-left: 1.4em;
}

:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--color-bg), 0 0 0 4px var(--color-accent);
}

::selection {
  background: rgba(var(--color-accent-rgb), 0.35);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-text-dim);
}

.nowrap {
  white-space: nowrap;
}

.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 16px;
}

@media (min-width: 768px) {
  .container {
    padding-inline: 24px;
  }
}

.skip-link {
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 300;
  padding: 10px 18px;
  border-radius: var(--radius-s);
  background: var(--color-cta-bg);
  color: #FFFFFF;
  transform: translateY(-200%);
  transition: transform var(--t-fast) var(--ease-enter);
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--color-bg-deep);
  border-bottom: 1px solid var(--color-border);
}

.top-bar__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: var(--header-h);
}

.top-bar__brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.top-bar__brand img {
  height: 24px;
  width: auto;
  object-fit: contain;
}

.top-bar__nav {
  display: none;
}

.top-bar__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-bar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: var(--radius-s);
  background: var(--color-cta-bg);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background var(--t-med) var(--ease-toggle);
}

.top-bar__cta:hover {
  background: var(--color-cta-bg-hover);
}

.top-bar__burger {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px 11px;
  border-radius: var(--radius-s);
  transition: background var(--t-fast) var(--ease-toggle);
}

.top-bar__burger:hover {
  background: var(--color-surface);
}

.top-bar__burger span {
  display: block;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--color-text);
  transition: transform var(--t-med) var(--ease-toggle), opacity var(--t-med) var(--ease-toggle);
}

.top-bar__burger span:nth-child(1) {
  width: 100%;
}

.top-bar__burger span:nth-child(2) {
  width: 66%;
}

.top-bar__burger span:nth-child(3) {
  width: 86%;
}

.top-bar__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.top-bar__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.top-bar__burger[aria-expanded="true"] span:nth-child(3) {
  width: 100%;
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 768px) {
  .top-bar__brand img {
    height: 28px;
  }

  .top-bar__cta {
    min-height: 44px;
    padding: 10px 22px;
    font-size: 0.95rem;
  }
}

@media (min-width: 1024px) {
  .top-bar__nav {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: 34px;
  }

  .top-bar__nav a {
    color: var(--color-text-dim);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 8px 2px;
    transition: color var(--t-fast) var(--ease-toggle);
  }

  .top-bar__nav a:hover {
    color: var(--color-text);
  }

  .top-bar__burger {
    display: none;
  }
}

.side-veil {
  position: fixed;
  top: var(--header-h);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 140;
  background: rgba(10, 12, 17, 0.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med) var(--ease-toggle);
}

.side-veil.is-open {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 1024px) {
  .side-veil {
    display: none;
  }
}

.side-nav {
  position: fixed;
  top: var(--header-h);
  bottom: 0;
  left: 0;
  z-index: 150;
  width: min(var(--sidebar-w), 84vw);
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 22px 18px;
  background: var(--color-bg-deep);
  border-right: 1px solid var(--color-border);
  overflow-y: auto;
  visibility: hidden;
  transform: translateX(-105%);
  transition: transform var(--t-slow) var(--ease-toggle), visibility 0s linear var(--t-slow);
}

.side-nav.is-open {
  visibility: visible;
  transform: translateX(0);
  transition: transform var(--t-slow) var(--ease-toggle), visibility 0s;
}

.side-nav__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-small);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-dim);
}

.side-nav__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.side-nav__link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: var(--radius-s);
  color: var(--color-text);
  font-weight: 500;
  transition: background var(--t-fast) var(--ease-toggle), color var(--t-fast) var(--ease-toggle);
}

.side-nav__link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-accent);
}

.side-nav__link:hover {
  background: var(--color-surface);
}

.side-nav__promo {
  padding: 18px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-m);
  background: linear-gradient(160deg, var(--color-surface) 0%, var(--color-surface-2) 100%);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.side-nav__promo-tag {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-small);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-2);
}

.side-nav__promo-line {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.3;
}

.side-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 6px;
  padding: 10px 16px;
  border-radius: var(--radius-s);
  background: var(--color-cta-bg);
  color: #FFFFFF;
  font-weight: 700;
  transition: background var(--t-med) var(--ease-toggle);
}

.side-nav__cta:hover {
  background: var(--color-cta-bg-hover);
}

.side-nav__safe {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-m);
}

.side-nav__age {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
}

.side-nav__safe p {
  font-size: var(--fs-small);
  color: var(--color-text-dim);
  line-height: 1.5;
}

.layout {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
}

.page-main {
  min-width: 0;
}

.page-main > * + * {
  margin-block-start: var(--section-gap-mob);
}

@media (min-width: 768px) {
  .page-main > * + * {
    margin-block-start: var(--section-gap);
  }
}

@media (min-width: 1024px) {
  .layout {
    display: grid;
    grid-template-columns: var(--sidebar-w) minmax(0, 1fr);
    gap: var(--gap);
    padding-inline: 24px;
  }

  .side-nav {
    position: sticky;
    top: calc(var(--header-h) + var(--gap));
    bottom: auto;
    left: auto;
    z-index: 1;
    width: auto;
    align-self: start;
    max-height: calc(100vh - var(--header-h) - var(--gap) * 2);
    margin-block-start: var(--gap);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-m);
    background: var(--color-bg-deep);
    visibility: visible;
    transform: none;
    transition: none;
  }
}

.splash__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.splash__viewport::-webkit-scrollbar {
  display: none;
}

.splash__track {
  display: flex;
  width: 100%;
}

.splash__slide {
  position: relative;
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  min-height: clamp(360px, 52vw, 480px);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.splash__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.splash__overlay {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(90deg, rgba(13, 15, 22, 0.9) 0%, rgba(13, 15, 22, 0.62) 52%, rgba(13, 15, 22, 0.18) 100%);
}

.splash__copy {
  max-width: 640px;
  padding: clamp(24px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.splash__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-hero);
  line-height: 1.14;
  letter-spacing: 0.01em;
}

.splash__sub {
  color: #DCE4EF;
  max-width: 46ch;
}

.splash__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}

.splash__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 26px;
  border-radius: var(--radius-s);
  background: var(--color-cta-bg);
  color: #FFFFFF;
  font-weight: 700;
  transition: background var(--t-med) var(--ease-toggle);
  animation: splash-pulse 2.6s var(--ease-toggle) infinite;
}

.splash__cta:hover {
  background: var(--color-cta-bg-hover);
  animation: none;
}

.splash__cta--line {
  background: rgba(20, 22, 30, 0.35);
  box-shadow: inset 0 0 0 1px rgba(240, 244, 248, 0.55);
  animation: none;
}

.splash__cta--line:hover {
  background: rgba(240, 244, 248, 0.14);
}

@keyframes splash-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(29, 107, 203, 0.55);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(29, 107, 203, 0);
  }
}

.splash__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 14px;
}

.splash__dots {
  display: flex;
  align-items: center;
}

.splash__dot {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  padding: 9px;
  border-radius: 50%;
  background-color: rgba(169, 180, 198, 0.45);
  background-clip: content-box;
  transition: background-color var(--t-fast) var(--ease-toggle);
}

.splash__dot.is-active {
  background-color: var(--color-accent);
}

.splash__arrow {
  display: none;
  align-items: center;
  justify-content: center;
  width: clamp(36px, 4vw, 44px);
  height: clamp(36px, 4vw, 44px);
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-surface);
  box-shadow: inset 0 0 0 1px var(--color-border);
  color: var(--color-text-dim);
  transition: color var(--t-fast) var(--ease-toggle), background var(--t-fast) var(--ease-toggle);
}

.splash__arrow svg {
  width: 16px;
  height: 16px;
}

.splash__arrow:hover {
  color: var(--color-text);
  background: var(--color-surface-2);
}

@media (min-width: 768px) {
  .splash__arrow {
    display: inline-flex;
  }
}

.copy-block {
  word-wrap: break-word;
  overflow-wrap: break-word;
  --tw-mark-bg: rgba(52, 152, 254, 0.25);
  --tw-code-bg: rgba(128, 128, 128, 0.15);
  --tw-pre-bg: rgba(0, 0, 0, 0.85);
  --tw-pre-text: #e5e5e5;
  --tw-hr-border: var(--color-border);
  --tw-quote-bg: rgba(128, 128, 128, 0.08);
  --tw-quote-border: var(--color-accent);
  --tw-table-border: var(--color-border);
  --tw-link-color: var(--color-accent-2);
}

.copy-block :is(h1,h2,h3,h4,h5,h6,p):first-child { margin-top: 0; }

.copy-block p { margin: 0 0 1.2em; line-height: 1.6; clear: none; }
.copy-block strong, .copy-block b { font-weight: 600; }
.copy-block em, .copy-block i { font-style: italic; }
.copy-block mark { background: var(--tw-mark-bg); color: inherit; padding: 0 2px; }
.copy-block del { text-decoration: line-through; }
.copy-block sup { font-size: 0.8em; vertical-align: super; }
.copy-block sub { font-size: 0.8em; vertical-align: sub; }

.copy-block h1, .copy-block h2, .copy-block h3,
.copy-block h4, .copy-block h5, .copy-block h6 {
  margin: 1.2em 0 0.8em; line-height: 1.3; clear: none;
}

.copy-block ul, .copy-block ol {
  margin: 0 0 1.2em; padding-left: 1.5em; overflow: auto; clear: none;
}
.copy-block ul { list-style-type: disc; }
.copy-block ol { list-style-type: decimal; }

.copy-block li { margin-bottom: 0.4em; list-style-position: inside; clear: none; }

.copy-block dl { margin: 1.5em 0; overflow: auto; clear: none; }
.copy-block dt { font-weight: 600; clear: none; }
.copy-block dd { margin: 0 0 1em 1.5em; clear: none; }

.copy-block a { color: var(--tw-link-color); text-decoration: underline; transition: color 0.2s; }
.copy-block a:hover { color: var(--color-accent); }

.copy-block code {
  background: var(--tw-code-bg); padding: 2px 6px; border-radius: 4px;
  font-family: Consolas, Monaco, monospace; font-size: 0.9em;
}

.copy-block pre {
  background: var(--tw-pre-bg); color: var(--tw-pre-text);
  padding: 1em; overflow-x: auto; border-radius: 6px; margin: 1.5em 0;
}
.copy-block pre code { background: none; padding: 0; color: inherit; }

.copy-block hr { margin: 2em 0; border: none; border-top: 1px solid var(--tw-hr-border); }

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

.copy-block video, .copy-block iframe {
  width: 100%; max-width: 100%; height: auto;
  margin: 1.5em 0; display: block; border-radius: 6px;
}

.copy-block figure { margin: 2em 0; text-align: center; clear: none; }
.copy-block figcaption { margin-top: 0.5em; font-style: italic; opacity: 0.8; }

.copy-block blockquote {
  margin: 2em 0; padding: 1em 1.5em;
  border-left: 4px solid var(--tw-quote-border);
  background: var(--tw-quote-bg); border-radius: 4px;
  overflow: auto; clear: none;
}
.copy-block blockquote p:last-child { margin-bottom: 0; }
.copy-block > *:last-child { margin-bottom: 0; }

.copy-block__table-wrap {
  margin: 2em 0; overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-border) var(--color-bg-deep);
}
.copy-block__table-wrap table {
  width: 100%; min-width: 600px; table-layout: fixed; border-collapse: collapse; font-size: 0.95em;
}
.copy-block__table-wrap th, .copy-block__table-wrap td {
  padding: 0.75em 1em; border: 1px solid var(--tw-table-border);
  text-align: left; vertical-align: top; overflow-wrap: break-word;
}
.copy-block__table-wrap th { font-weight: 600; }

.copy-block h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.65rem, 1.25rem + 2vw, 2.3rem);
  line-height: 1.18;
}

.copy-block h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-section-title);
  padding-bottom: 10px;
  position: relative;
}

.copy-block h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 3px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-2));
}

.copy-block h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
}

.copy-block p,
.copy-block li {
  color: var(--color-text-dim);
}

.copy-block strong {
  color: var(--color-text);
}

.copy-block li::marker {
  color: var(--color-accent);
}

.copy-block__table-wrap th {
  background: var(--color-surface-2);
  font-family: var(--font-display);
}

.copy-block__table-wrap td {
  color: var(--color-text-dim);
}

.copy-block__table-wrap table {
  background: var(--color-surface);
  border-radius: var(--radius-s);
}

.copy-block .seo-figure img {
  border-radius: var(--radius-m);
  margin-inline: auto;
}

.copy-block .seo-figure--square {
  max-width: 480px;
  margin-inline: auto;
}

.strip-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.strip-head__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-section-title);
  line-height: 1.2;
}

.strip-head__nav {
  margin-left: auto;
  display: none;
  gap: 8px;
}

.strip-head__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-surface);
  box-shadow: inset 0 0 0 1px var(--color-border);
  color: var(--color-text-dim);
  transition: color var(--t-fast) var(--ease-toggle), background var(--t-fast) var(--ease-toggle), opacity var(--t-fast) var(--ease-toggle);
}

.strip-head__arrow svg {
  width: 15px;
  height: 15px;
}

.strip-head__arrow:hover {
  color: var(--color-text);
  background: var(--color-surface-2);
}

.strip-head__arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

@media (min-width: 768px) {
  .strip-head__nav {
    display: flex;
  }
}

.slot-strip__rail {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 4px;
  padding-block: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.slot-strip__rail::-webkit-scrollbar {
  display: none;
}

.tile {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  scroll-snap-align: start;
}

.slot-strip__rail .tile {
  flex: 0 0 auto;
  width: clamp(150px, 40vw, 196px);
}

.tile__frame {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius-m);
  background: var(--color-surface);
}

.tile__art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.35s var(--ease-enter);
}

a.tile:hover .tile__art,
a.tile:focus-visible .tile__art {
  transform: scale(1.06);
}

.tile__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 4px 0;
}

.tile__name {
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.35;
}

.tile__hint {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-accent-2);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--t-med) var(--ease-toggle), transform var(--t-med) var(--ease-toggle);
}

a.tile:hover .tile__hint,
a.tile:focus-visible .tile__hint {
  opacity: 1;
  transform: translateY(0);
}

.crash-grid__sub {
  color: var(--color-text-dim);
  margin: -8px 0 20px;
}

.crash-grid__wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

@media (min-width: 480px) {
  .crash-grid__wrap {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .crash-grid__wrap {
    gap: var(--gap);
  }
}

.bonus-matrix__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  margin-top: 20px;
}

@media (min-width: 900px) {
  .bonus-matrix__row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--gap);
  }
}

.bonus-matrix__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-m);
  background: var(--color-surface);
  transition: border-color var(--t-med) var(--ease-toggle), background var(--t-med) var(--ease-toggle);
}

.bonus-matrix__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 14px;
  right: 14px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease-enter);
}

.bonus-matrix__card:hover {
  border-color: var(--color-accent);
  background: var(--color-surface-2);
}

.bonus-matrix__card:hover::before {
  transform: scaleX(1);
}

.bonus-matrix__card--lead {
  border-color: rgba(var(--color-accent-rgb), 0.55);
  background: linear-gradient(170deg, var(--color-surface) 0%, var(--color-surface-2) 100%);
}

.bonus-matrix__tag {
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(var(--color-accent-rgb), 0.14);
  color: var(--color-accent-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-small);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bonus-matrix__name {
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.35;
}

.bonus-matrix__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-card-title);
  line-height: 1.25;
  color: var(--color-accent-2);
}

.bonus-matrix__note {
  color: var(--color-text-dim);
  font-size: 0.92rem;
}

.bonus-matrix__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: auto;
  padding: 10px 18px;
  border-radius: var(--radius-s);
  background: var(--color-cta-bg);
  color: #FFFFFF;
  font-weight: 700;
  transition: background var(--t-med) var(--ease-toggle);
}

.bonus-matrix__cta:hover {
  background: var(--color-cta-bg-hover);
}

.faq-block__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-m);
  background: var(--color-surface);
  transition: border-color var(--t-med) var(--ease-toggle);
}

.faq-item.is-open {
  border-color: rgba(var(--color-accent-rgb), 0.55);
}

.faq-item__q {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  padding: 16px 52px 16px 18px;
  font-weight: 600;
  line-height: 1.35;
  cursor: pointer;
  transition: color var(--t-fast) var(--ease-toggle);
}

.faq-item__q:hover {
  color: var(--color-accent-2);
}

.faq-item__q::before,
.faq-item__q::after {
  content: "";
  position: absolute;
  right: 20px;
  top: calc(16px + 0.675em);
  width: 14px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--color-accent);
  transition: transform var(--t-med) var(--ease-toggle);
}

.faq-item__q::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item__q::before {
  transform: translateY(-50%);
}

.faq-item.is-open .faq-item__q::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  transition: max-height var(--t-slow) var(--ease-toggle), padding var(--t-slow) var(--ease-toggle);
}

.faq-item.is-open .faq-item__body {
  max-height: 420px;
  padding: 0 18px 16px;
}

.faq-item__a {
  color: var(--color-text-dim);
  margin: 0;
}

.bottom-bar {
  margin-block-start: var(--section-gap-mob);
  padding-block: var(--footer-padding-v);
  background: var(--color-bg-deep);
  border-top: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .bottom-bar {
    margin-block-start: var(--section-gap);
  }
}

.bottom-bar__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}

@media (min-width: 640px) {
  .bottom-bar__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .bottom-bar__grid {
    grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
    gap: var(--gap);
  }
}

.bottom-bar__brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bottom-bar__brand img {
  height: 26px;
  width: auto;
  align-self: flex-start;
  object-fit: contain;
}

.bottom-bar__about {
  color: var(--color-text-dim);
  font-size: 0.92rem;
  max-width: 34ch;
}

.bottom-bar__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bottom-bar__head {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-small);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  margin-bottom: 4px;
}

.bottom-bar__col a {
  color: var(--color-text);
  font-size: 0.95rem;
  padding-block: 4px;
  transition: color var(--t-fast) var(--ease-toggle);
}

.bottom-bar__col a:hover {
  color: var(--color-accent-2);
}

.bottom-bar__base {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--color-border);
}

.bottom-bar__age {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
}

.bottom-bar__legal {
  flex: 1 1 260px;
  min-width: 0;
  color: var(--color-text-dim);
  font-size: var(--fs-small);
}

.bottom-bar__copy {
  color: var(--color-text-dim);
  font-size: var(--fs-small);
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .splash__cta {
    animation: none;
  }

  .tile__art,
  .side-nav {
    transition: none;
  }
}
