:root {
  color-scheme: dark;
  --night: #080b12;
  --night-2: #0d121d;
  --panel: #121925;
  --panel-2: #182131;
  --ink: #f7fbff;
  --muted: #aebbcf;
  --dim: #7f8da3;
  --line: rgba(205, 225, 255, 0.15);
  --blue: #62c4ff;
  --orange: #ff7146;
  --green: #55dfa1;
  --display: "DIN Condensed", "Avenir Next Condensed", Impact, sans-serif;
  --body: "Avenir Next", "Trebuchet MS", sans-serif;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--night);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 70;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--blue) 48%, var(--orange) 52%, var(--orange));
}

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

a {
  color: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--night);
  background: var(--ink);
  font-weight: 800;
  transform: translateY(-150%);
}

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

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(205, 225, 255, 0.1);
  background: rgba(8, 11, 18, 0.82);
  backdrop-filter: blur(18px) saturate(1.4);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 11px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
}

.brand-copy {
  display: grid;
  font-family: var(--display);
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 0.85;
  text-transform: uppercase;
}

.brand-copy span:last-child {
  color: var(--blue);
  font-size: 18px;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

nav a {
  color: #c9d4e5;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

nav a:hover {
  color: var(--ink);
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(98, 196, 255, 0.45);
  border-radius: 7px;
  color: var(--night);
  background: var(--blue);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 770px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 11, 18, 0.98) 0%, rgba(8, 11, 18, 0.9) 43%, rgba(8, 11, 18, 0.5) 72%, rgba(8, 11, 18, 0.72) 100%),
    linear-gradient(180deg, transparent 65%, var(--night) 100%),
    url("/assets/paywall-hero-v1.webp") center / cover no-repeat;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.72fr);
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
  padding: 105px 0 115px;
}

.eyebrow,
.section-kicker {
  color: var(--orange);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  content: "";
  background: currentColor;
  box-shadow: 0 0 0 7px rgba(255, 113, 70, 0.14), 0 0 26px rgba(255, 113, 70, 0.75);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 800px;
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: clamp(64px, 8.1vw, 112px);
  font-weight: 950;
  letter-spacing: -0.025em;
  line-height: 0.82;
  text-transform: uppercase;
}

h1 em {
  color: var(--blue);
  font-style: normal;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 0;
  color: #c3cfe0;
  font-size: clamp(19px, 2.2vw, 25px);
  font-weight: 650;
  line-height: 1.42;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.store-button {
  display: inline-flex;
  min-width: 194px;
  min-height: 62px;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  color: var(--ink);
  background: rgba(6, 8, 13, 0.9);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.store-button:hover {
  border-color: var(--blue);
  background: #0e1521;
  transform: translateY(-2px);
}

.store-button svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  fill: currentColor;
}

.store-button span {
  display: grid;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 0.88;
}

.store-button small {
  margin-bottom: 3px;
  color: var(--muted);
  font-family: var(--body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.trust-row li {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #c7d3e4;
  background: rgba(8, 11, 18, 0.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.broadcast-card {
  position: relative;
  border: 1px solid rgba(205, 225, 255, 0.22);
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(23, 33, 49, 0.94), rgba(7, 10, 16, 0.94));
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.52), inset 0 1px rgba(255, 255, 255, 0.08);
  transform: rotate(1.2deg);
}

.broadcast-card::before {
  position: absolute;
  z-index: -1;
  inset: -14px 18px 16px -15px;
  border: 1px solid rgba(98, 196, 255, 0.25);
  border-radius: 18px;
  content: "";
  transform: rotate(-3deg);
}

.broadcast-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.on-air {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
}

.on-air::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: currentColor;
  animation: pulse 1.5s ease-in-out infinite;
}

.matchup {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 26px 22px 22px;
}

.fighter {
  font-family: var(--display);
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 950;
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
}

.fighter:first-child { color: var(--blue); }
.fighter:last-child { color: #ff9473; }

.versus {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--dim);
  font-family: var(--display);
  font-weight: 900;
}

.now-calling {
  margin: 0 18px 18px;
  padding: 18px;
  border-left: 4px solid var(--orange);
  background: rgba(255, 113, 70, 0.1);
}

.now-calling span {
  display: block;
  margin-bottom: 4px;
  color: #ff9d7e;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.now-calling strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(31px, 4vw, 46px);
  font-weight: 950;
  line-height: 0.95;
  text-transform: uppercase;
}

.meter {
  display: flex;
  height: 38px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0 18px 20px;
}

.meter span {
  width: 5px;
  border-radius: 4px;
  background: linear-gradient(var(--blue), var(--orange));
  animation: equalize 1.1s ease-in-out infinite alternate;
}

.meter span:nth-child(1), .meter span:nth-child(5) { height: 12px; }
.meter span:nth-child(2), .meter span:nth-child(6) { height: 25px; animation-delay: -0.35s; }
.meter span:nth-child(3) { height: 36px; animation-delay: -0.7s; }
.meter span:nth-child(4) { height: 19px; animation-delay: -0.2s; }

.signal-strip {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #0b1019;
}

.signal-track {
  display: flex;
  width: max-content;
  animation: ticker 26s linear infinite;
}

.signal-track span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 14px 18px 13px 0;
  color: #c5d0e0;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.signal-track span::after {
  color: var(--orange);
  content: "◆";
  font-size: 9px;
}

.section {
  position: relative;
  padding: clamp(82px, 10vw, 140px) 0;
  border-bottom: 1px solid var(--line);
}

.section-kicker {
  margin-bottom: 14px;
  font-size: 17px;
  letter-spacing: 0.12em;
}

h2 {
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 84px);
  font-weight: 950;
  letter-spacing: -0.015em;
  line-height: 0.88;
  text-transform: uppercase;
}

.section-copy {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  line-height: 1.55;
}

.demo-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
  gap: clamp(34px, 6vw, 76px);
}

.demo-notes {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.demo-note {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 12px;
  color: #d4ddea;
  font-size: 14px;
  font-weight: 750;
}

.demo-note span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue);
  background: var(--panel);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 900;
}

.video-shell {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(98, 196, 255, 0.3);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(98, 196, 255, 0.12), rgba(255, 113, 70, 0.08));
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.38);
}

.video-label {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  padding: 8px 11px;
  border-radius: 5px;
  color: var(--night);
  background: var(--green);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: 0.08em;
  pointer-events: none;
  text-transform: uppercase;
}

.video-shell video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  background: #000;
  object-fit: cover;
}

.video-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 12px 4px 0;
  color: var(--dim);
  font-size: 12px;
  font-weight: 750;
}

.video-caption strong { color: #d8e1ed; }

.transcript {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.transcript summary {
  width: max-content;
  max-width: 100%;
  color: #c9d5e4;
  cursor: pointer;
  font-weight: 800;
}

.transcript p { margin: 12px 0 0; }

.features-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 113, 70, 0.12), transparent 30rem),
    radial-gradient(circle at 4% 88%, rgba(98, 196, 255, 0.1), transparent 32rem),
    var(--night-2);
}

.feature-heading {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: end;
  gap: 48px;
  margin-bottom: 46px;
}

.feature-heading h2,
.feature-heading p { margin-bottom: 0; }

.feature-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 14px;
}

.feature-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(16, 23, 35, 0.88);
}

.feature-card:first-child {
  grid-row: span 2;
  min-height: 534px;
  background:
    linear-gradient(180deg, rgba(8, 11, 18, 0.1), rgba(8, 11, 18, 0.88)),
    url("/assets/paywall-hero-v1.webp") 42% center / cover;
}

.feature-card:nth-child(4) { grid-column: span 2; }

.feature-index {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 80px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue);
  font-family: var(--display);
  font-size: 19px;
  font-weight: 900;
}

.feature-card:first-child .feature-index { margin-bottom: 260px; }

.feature-card h3 {
  margin-bottom: 9px;
  font-family: var(--display);
  font-size: clamp(30px, 3.2vw, 43px);
  font-weight: 950;
  line-height: 0.94;
  text-transform: uppercase;
}

.feature-card p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.classic-card {
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 196, 80, 0.18), transparent 15rem),
    rgba(16, 23, 35, 0.88);
}

.classic-card .feature-index { color: #ffd372; }
.privacy-card .feature-index { color: var(--green); }

.how-section { background: #080b12; }

.how-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: clamp(40px, 8vw, 100px);
}

.mode-stack { display: grid; gap: 14px; }

.mode-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
}

.mode-number {
  color: var(--blue);
  font-family: var(--display);
  font-size: 68px;
  font-weight: 950;
  line-height: 0.8;
}

.mode-card:nth-child(2) .mode-number { color: var(--orange); }

.mode-card h3 {
  margin-bottom: 7px;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.mode-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.availability {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.availability div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #c7d2e1;
  background: #0d131e;
  font-size: 13px;
  font-weight: 750;
}

.availability strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 20px;
  text-transform: uppercase;
}

.offer-section {
  overflow: hidden;
  color: #06111b;
  background: var(--blue);
}

.offer-section::before {
  position: absolute;
  right: -180px;
  bottom: -360px;
  width: 680px;
  height: 680px;
  border: 90px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  align-items: center;
  gap: clamp(44px, 8vw, 110px);
}

.free-score {
  position: relative;
  padding: 34px;
  border: 3px solid #06111b;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 14px 14px 0 #06111b;
  transform: rotate(-2deg);
}

.free-score small {
  display: block;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.free-score strong {
  display: block;
  margin: 18px 0;
  font-family: var(--display);
  font-size: clamp(120px, 15vw, 190px);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 0.74;
}

.offer-copy h2 { max-width: 700px; margin-bottom: 20px; }

.offer-copy p {
  max-width: 660px;
  margin-bottom: 0;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.48;
}

.offer-section .section-kicker { color: #0c4f76; }

.plan-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.plan-list li {
  padding: 8px 11px;
  border: 1px solid rgba(6, 17, 27, 0.42);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.offer-section .store-button {
  border-color: #06111b;
  color: white;
  background: #06111b;
}

.offer-section .store-button small { color: #b7c6d6; }
.faq-section { background: var(--night-2); }

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: clamp(38px, 7vw, 90px);
}

.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }

.faq-list summary {
  position: relative;
  padding: 22px 42px 22px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.05;
  list-style: none;
  text-transform: uppercase;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  position: absolute;
  top: 18px;
  right: 2px;
  color: var(--blue);
  content: "+";
  font-family: var(--body);
  font-size: 28px;
  font-weight: 400;
}

.faq-list details[open] summary::after { content: "−"; }

.faq-list details p {
  max-width: 720px;
  margin: -5px 0 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.closing { padding: 80px 0; text-align: center; }
.closing h2 { max-width: 780px; margin-right: auto; margin-left: auto; }
.closing .store-actions { justify-content: center; }

.site-footer {
  padding: 38px 0 110px;
  border-top: 1px solid var(--line);
  color: var(--dim);
  background: #06080d;
  font-size: 13px;
  line-height: 1.55;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
}

.footer-grid p { max-width: 760px; margin-bottom: 0; }
.footer-links { display: flex; gap: 18px; }
.footer-links a { color: #cbd6e4; font-weight: 800; }
.mobile-download { display: none; }

@keyframes pulse { 50% { opacity: 0.4; transform: scale(0.75); } }
@keyframes equalize { to { transform: scaleY(0.45); } }
@keyframes ticker { to { transform: translateX(-50%); } }

@media (max-width: 980px) {
  nav { display: none; }

  .hero-grid,
  .demo-grid,
  .feature-heading,
  .how-grid,
  .offer-grid,
  .faq-grid { grid-template-columns: 1fr; }

  .hero-grid { padding-top: 80px; }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(8, 11, 18, 0.98) 0%, rgba(8, 11, 18, 0.82) 58%, rgba(8, 11, 18, 0.62) 100%),
      linear-gradient(180deg, transparent 65%, var(--night) 100%),
      url("/assets/paywall-hero-v1.webp") center / cover no-repeat;
  }

  .broadcast-card { width: min(540px, 100%); justify-self: center; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-card:first-child { grid-column: span 2; grid-row: auto; min-height: 430px; }
  .feature-card:first-child .feature-index { margin-bottom: 180px; }
  .feature-card:nth-child(4) { grid-column: span 2; }
  .offer-grid { width: min(760px, 100%); margin-inline: auto; }
  .free-score { width: min(380px, 88%); }
}

@media (max-width: 680px) {
  html { scroll-padding-top: 72px; }
  .shell { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: 68px; }
  .brand img { width: 40px; height: 40px; }
  .brand-copy { font-size: 18px; }
  .brand-copy span:last-child { font-size: 15px; }
  .header-cta { min-height: 38px; padding: 0 13px; font-size: 16px; }
  .hero { min-height: auto; }
  .hero-grid { gap: 64px; padding: 64px 0 82px; }
  h1 { font-size: clamp(59px, 19vw, 84px); }
  h2 { font-size: clamp(48px, 16vw, 68px); }

  .store-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .store-button { min-width: 0; min-height: 58px; padding: 9px 12px; }
  .store-button svg { width: 24px; height: 24px; }
  .store-button span { font-size: 19px; }
  .store-button small { font-size: 8px; }
  .video-caption { display: block; }
  .video-caption span { display: block; margin-top: 4px; }
  .feature-grid { grid-template-columns: 1fr; }

  .feature-card,
  .feature-card:first-child,
  .feature-card:nth-child(4) { grid-column: auto; min-height: 250px; }

  .feature-card:first-child { min-height: 390px; }
  .feature-card:first-child .feature-index { margin-bottom: 155px; }
  .feature-index { margin-bottom: 65px; }
  .mode-card { grid-template-columns: 56px 1fr; gap: 14px; padding: 20px; }
  .mode-number { font-size: 52px; }
  .availability { grid-template-columns: 1fr; }
  .free-score { box-shadow: 8px 8px 0 #06111b; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-footer { padding-bottom: 126px; }

  .mobile-download {
    position: fixed;
    z-index: 60;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: rgba(8, 11, 18, 0.94);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(18px);
  }

  .mobile-download a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    color: var(--ink);
    background: var(--panel-2);
    font-family: var(--display);
    font-size: 18px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-download a:first-child { color: var(--night); background: var(--blue); }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
