:root {
  color-scheme: dark;
  --ink: oklch(96% 0.008 23);
  --muted: oklch(76% 0.027 26);
  --dim: oklch(62% 0.034 28);
  --paper: oklch(13% 0.018 28);
  --panel: oklch(18% 0.025 28);
  --panel-strong: oklch(23% 0.035 28);
  --line: oklch(33% 0.045 28);
  --red: oklch(64% 0.22 28);
  --pink: oklch(72% 0.18 350);
  --amber: oklch(78% 0.16 72);
  --cyan: oklch(74% 0.13 210);
  --shadow: 0 30px 90px oklch(5% 0.02 28 / 0.55);
  --soft-shadow: 0 18px 48px oklch(5% 0.02 28 / 0.32);
  --radius: 8px;
  font-family:
    "Arial Narrow",
    "Aptos",
    "Helvetica Neue",
    Arial,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    linear-gradient(135deg, oklch(18% 0.05 22 / 0.9), transparent 38%),
    linear-gradient(315deg, oklch(17% 0.035 350 / 0.9), transparent 42%),
    var(--paper);
  color: var(--ink);
}

body.discreet {
  overflow-x: hidden;
}

@supports (zoom: 1) {
  body.discreet main,
  body.discreet footer,
  body.discreet .brand,
  body.discreet .nav-links {
    zoom: 0.16;
  }
}

@supports not (zoom: 1) {
  body.discreet main,
  body.discreet footer,
  body.discreet .brand,
  body.discreet .nav-links {
    width: calc(100% / 0.16);
    transform: scale(0.16);
    transform-origin: top left;
  }
}

button,
a,
input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(16px, 3vw, 42px);
  background: oklch(13% 0.018 28 / 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 185px;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 6px;
  background: var(--red);
  color: oklch(98% 0.006 28);
  font-size: 0.9rem;
  font-weight: 950;
  text-transform: uppercase;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  letter-spacing: 0;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.74rem;
}

.nav-links {
  display: flex;
  gap: clamp(12px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  color: var(--ink);
  border-color: var(--red);
}

.ghost-button,
.secondary-button,
.primary-button,
.filter-button,
.icon-button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: oklch(21% 0.028 28);
  transition:
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 180ms ease,
    background 180ms ease;
}

.ghost-button,
.secondary-button,
.primary-button,
.filter-button {
  min-height: 42px;
  padding: 0 16px;
}

.ghost-button:hover,
.secondary-button:hover,
.filter-button:hover,
.icon-button:hover {
  transform: translateY(-1px);
  border-color: oklch(55% 0.13 28);
  background: oklch(25% 0.04 28);
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-color: oklch(65% 0.2 28);
  background: var(--red);
  color: oklch(98% 0.006 28);
  font-weight: 850;
}

.primary-button:hover {
  transform: translateY(-1px);
  background: oklch(68% 0.23 28);
}

.wide {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.9fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: center;
  min-height: calc(100svh - 126px);
  padding: clamp(28px, 4.2vw, 58px) clamp(16px, 5vw, 78px);
}

.hero-copy {
  max-width: 720px;
}

.notice,
.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 12.6ch;
  margin-bottom: clamp(18px, 2.6vw, 28px);
  font-size: clamp(3.6rem, 6.35vw, 6.45rem);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 54ch;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.tiny-player-shell {
  position: relative;
  display: grid;
  gap: 16px;
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid oklch(42% 0.07 28);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, oklch(24% 0.035 28), oklch(15% 0.02 28)),
    var(--panel);
  box-shadow: var(--shadow);
}

.player-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.player-header > div {
  min-width: 0;
  width: 100%;
}

.player-header h2 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 2.6vw, 2.35rem);
  line-height: 1.04;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.player-stage {
  position: relative;
  display: grid;
  min-height: clamp(230px, 25vw, 320px);
  place-items: center;
  overflow: hidden;
  border: 1px solid oklch(28% 0.035 28);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, oklch(100% 0 0 / 0.035) 1px, transparent 1px),
    linear-gradient(0deg, oklch(100% 0 0 / 0.035) 1px, transparent 1px),
    oklch(0% 0 0);
  background-size: 22px 22px, 22px 22px, auto;
}

#mainRick {
  width: var(--player-size, 8px);
  height: var(--player-size, 8px);
  object-fit: cover;
  image-rendering: pixelated;
  border: 1px solid oklch(91% 0.01 28 / 0.8);
  background: oklch(10% 0.02 28);
  box-shadow:
    0 0 0 12px oklch(5% 0.01 28 / 0.42),
    0 0 40px oklch(66% 0.2 28 / 0.22);
  transition:
    width 180ms cubic-bezier(0.22, 1, 0.36, 1),
    height 180ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 180ms ease;
}

#mainRick.is-paused {
  filter: grayscale(1) contrast(1.2);
}

.play-dot {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid oklch(80% 0.08 28 / 0.7);
  border-radius: 50%;
  background: oklch(12% 0.02 28 / 0.86);
  color: var(--ink);
  font-size: 0.72rem;
}

.player-controls {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 12px;
  align-items: center;
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
}

.zoom-nudge-button {
  color: var(--ink);
  font-size: 1.28rem;
  font-weight: 950;
  line-height: 1;
}

.range-control {
  display: grid;
  min-width: 0;
  gap: 7px;
  padding: 10px 12px 9px;
  border: 1px solid oklch(45% 0.09 28);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, oklch(26% 0.045 28), oklch(17% 0.026 28)),
    var(--panel);
  color: var(--muted);
  box-shadow:
    inset 0 1px 0 oklch(100% 0 0 / 0.06),
    0 0 28px oklch(66% 0.2 28 / 0.12);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.range-control:hover,
.range-control:focus-within {
  border-color: oklch(66% 0.2 28);
  box-shadow:
    inset 0 1px 0 oklch(100% 0 0 / 0.08),
    0 0 34px oklch(66% 0.2 28 / 0.22);
}

.range-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.range-heading span {
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.range-heading strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.range-slider-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.range-slider-row small {
  color: var(--dim);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1;
}

.range-ticks {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0;
  margin: -1px 34px 0;
}

.range-ticks span {
  justify-self: center;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: oklch(72% 0.08 28 / 0.88);
}

input[type="range"] {
  appearance: none;
  width: 100%;
  height: 24px;
  margin: 0;
  background: transparent;
  cursor: pointer;
}

input[type="range"]:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
}

input[type="range"]::-webkit-slider-runnable-track {
  height: 8px;
  border: 1px solid oklch(70% 0.08 28 / 0.22);
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--red) var(--zoom-progress, 17%), oklch(12% 0.02 28) 0),
    oklch(12% 0.02 28);
  box-shadow: inset 0 1px 5px oklch(5% 0.02 28 / 0.62);
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 24px;
  height: 24px;
  margin-top: -9px;
  border: 2px solid oklch(98% 0.006 28);
  border-radius: 50%;
  background: var(--red);
  box-shadow:
    0 0 0 5px oklch(66% 0.2 28 / 0.22),
    0 0 22px oklch(66% 0.2 28 / 0.42);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.range-control:hover input[type="range"]::-webkit-slider-thumb,
input[type="range"]:focus-visible::-webkit-slider-thumb {
  transform: scale(1.14);
  box-shadow:
    0 0 0 7px oklch(66% 0.2 28 / 0.26),
    0 0 30px oklch(66% 0.2 28 / 0.56);
}

input[type="range"]::-moz-range-track {
  height: 8px;
  border: 1px solid oklch(70% 0.08 28 / 0.22);
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--red) var(--zoom-progress, 17%), oklch(12% 0.02 28) 0),
    oklch(12% 0.02 28);
  box-shadow: inset 0 1px 5px oklch(5% 0.02 28 / 0.62);
}

input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border: 2px solid oklch(98% 0.006 28);
  border-radius: 50%;
  background: var(--red);
  box-shadow:
    0 0 0 5px oklch(66% 0.2 28 / 0.22),
    0 0 22px oklch(66% 0.2 28 / 0.42);
}

.ticker {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px clamp(16px, 5vw, 78px);
  border-block: 1px solid var(--line);
  background: oklch(20% 0.033 28);
  scrollbar-width: none;
}

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

.ticker span {
  flex: 0 0 auto;
  padding: 9px 14px;
  border: 1px solid oklch(38% 0.06 28);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
}

.catalog,
.split-section,
.reviews {
  padding: clamp(58px, 8vw, 104px) clamp(16px, 5vw, 78px);
}

.section-heading {
  display: grid;
  justify-items: start;
  gap: 10px;
  max-width: min(100%, 760px);
  margin-bottom: 28px;
}

.section-heading .eyebrow {
  margin-bottom: 0;
}

.section-heading h2,
.premium-copy h2 {
  max-width: 16ch;
  margin-bottom: 0;
  font-size: clamp(2.15rem, 4.7vw, 5.2rem);
  font-weight: 950;
  line-height: 0.94;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-button {
  white-space: nowrap;
}

.filter-button.active {
  border-color: var(--red);
  background: oklch(31% 0.08 28);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.video-card {
  display: grid;
  gap: 14px;
  min-height: 260px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, oklch(19% 0.028 28), oklch(15% 0.022 28)),
    oklch(17% 0.024 28);
  box-shadow: var(--soft-shadow);
  transition:
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 180ms ease;
}

.video-card:hover {
  transform: translateY(-2px);
  border-color: oklch(47% 0.08 28);
}

.video-card[hidden] {
  display: none;
}

.thumb {
  position: relative;
  display: grid;
  min-height: 156px;
  place-items: center;
  overflow: hidden;
  border-radius: 6px;
  background:
    linear-gradient(90deg, oklch(100% 0 0 / 0.04) 1px, transparent 1px),
    linear-gradient(0deg, oklch(100% 0 0 / 0.04) 1px, transparent 1px),
    oklch(11% 0.025 28);
  background-size: 18px 18px;
}

.thumb img {
  width: var(--thumb-size, 8px);
  height: var(--thumb-size, 8px);
  object-fit: cover;
  image-rendering: pixelated;
  border: 1px solid oklch(92% 0.01 28 / 0.6);
  box-shadow: 0 0 0 7px oklch(5% 0.01 28 / 0.42);
}

.thumb small {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 5px 7px;
  border-radius: 999px;
  background: oklch(8% 0.02 28 / 0.8);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
}

.video-card h3 {
  min-height: 2.2em;
  margin: 0;
  font-size: clamp(1.08rem, 1.4vw, 1.22rem);
  line-height: 1.16;
}

.video-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  color: var(--dim);
  font-size: 0.88rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 430px);
  gap: clamp(24px, 6vw, 80px);
  align-items: center;
  background:
    linear-gradient(100deg, oklch(27% 0.09 28), transparent 56%),
    oklch(15% 0.02 28);
  border-block: 1px solid var(--line);
}

.premium-copy p:not(.eyebrow) {
  max-width: 54ch;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.6;
}

.pricing-panel {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid oklch(48% 0.1 28);
  border-radius: var(--radius);
  background: oklch(14% 0.02 28);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 62px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
}

.price-row strong {
  color: var(--ink);
  font-size: 1.2rem;
}

.price-row.featured {
  border-color: oklch(65% 0.2 28);
  background: oklch(28% 0.075 28);
}

.review-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.review-list article {
  display: grid;
  align-content: space-between;
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, oklch(19% 0.028 28), oklch(15% 0.022 28)),
    oklch(17% 0.024 28);
  box-shadow: var(--soft-shadow);
}

.review-list p {
  color: var(--ink);
  font-size: clamp(1.08rem, 1.65vw, 1.34rem);
  line-height: 1.28;
}

.review-list strong {
  color: var(--amber);
}

.footer {
  padding: 26px clamp(16px, 5vw, 78px) 42px;
  color: var(--dim);
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer p {
  max-width: 72ch;
}

.zoom-popover {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
  background: oklch(7% 0.018 28 / 0.72);
}

.zoom-popover[hidden] {
  display: none;
}

.zoom-popover-panel {
  position: relative;
  width: min(100%, 520px);
  padding: clamp(20px, 5vw, 32px);
  border: 1px solid oklch(55% 0.12 28);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, oklch(24% 0.045 28), oklch(14% 0.024 28)),
    var(--panel);
  box-shadow: var(--shadow);
}

.zoom-popover-panel h2 {
  max-width: 10ch;
  margin-bottom: 16px;
  font-size: clamp(2.25rem, 8vw, 4.7rem);
  font-weight: 950;
  line-height: 0.9;
}

.zoom-popover-panel p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.zoom-popover-panel .zoom-cta {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 78px;
  margin-top: 24px;
  padding: 0 76px 0 22px;
  overflow: visible;
  border: 2px solid oklch(86% 0.16 78);
  background: transparent;
  color: oklch(92% 0.13 82);
  font-size: clamp(1.02rem, 3.3vw, 1.24rem);
  font-weight: 950;
  text-transform: uppercase;
  text-align: left;
  text-shadow:
    0 0 12px oklch(86% 0.17 80 / 0.64),
    0 2px 0 oklch(3% 0.01 28 / 0.82);
  box-shadow:
    0 0 0 1px oklch(100% 0 0 / 0.18) inset,
    0 16px 0 oklch(4% 0.02 28 / 0.62),
    0 18px 48px oklch(66% 0.22 28 / 0.34),
    0 0 54px oklch(86% 0.16 78 / 0.28);
}

.zoom-cta-frame {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  background:
    radial-gradient(circle at 18% 0%, oklch(72% 0.22 28 / 0.34), transparent 28%),
    radial-gradient(circle at 78% 100%, oklch(86% 0.17 80 / 0.34), transparent 30%),
    linear-gradient(120deg, oklch(12% 0.035 250), oklch(8% 0.025 28) 48%, oklch(18% 0.055 30));
}

.zoom-cta-frame::before {
  content: "";
  position: absolute;
  inset: 7px;
  background:
    linear-gradient(115deg, transparent 0 38%, oklch(100% 0 0 / 0.62) 47%, transparent 58% 100%);
  filter: blur(1px);
  opacity: 0.42;
  transform: translateX(-70%);
}

.zoom-popover-panel .zoom-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  border-radius: inherit;
  background:
    linear-gradient(90deg, oklch(69% 0.23 28), oklch(88% 0.17 78), oklch(69% 0.23 28));
  filter: blur(18px);
  opacity: 0.5;
}

.zoom-cta-label {
  position: relative;
  z-index: 1;
}

.zoom-cta-badge {
  position: absolute;
  right: -9px;
  top: -15px;
  z-index: 2;
  display: grid;
  min-width: 54px;
  min-height: 34px;
  place-items: center;
  border: 2px solid oklch(98% 0.02 28);
  border-radius: 7px;
  background:
    linear-gradient(135deg, oklch(68% 0.24 28), oklch(78% 0.17 72));
  color: oklch(100% 0 0);
  font-size: 0.8rem;
  font-weight: 950;
  text-shadow: 0 1px 0 oklch(12% 0.02 28 / 0.7);
  box-shadow:
    0 8px 18px oklch(5% 0.02 28 / 0.52),
    0 0 22px oklch(66% 0.22 28 / 0.42);
  transform: rotate(8deg);
}

.zoom-popover-panel .zoom-cta:hover,
.zoom-popover-panel .zoom-cta:focus-visible {
  transform: translateY(-4px) scale(1.018);
  border-color: oklch(94% 0.16 82);
  box-shadow:
    0 0 0 1px oklch(100% 0 0 / 0.24) inset,
    0 13px 0 oklch(4% 0.02 28 / 0.7),
    0 24px 58px oklch(66% 0.22 28 / 0.48),
    0 0 76px oklch(86% 0.16 78 / 0.42);
}

.zoom-popover-panel .zoom-cta:hover .zoom-cta-frame,
.zoom-popover-panel .zoom-cta:focus-visible .zoom-cta-frame {
  background:
    radial-gradient(circle at 18% 0%, oklch(75% 0.24 28 / 0.42), transparent 28%),
    radial-gradient(circle at 78% 100%, oklch(91% 0.17 80 / 0.46), transparent 30%),
    linear-gradient(120deg, oklch(15% 0.045 250), oklch(9% 0.025 28) 44%, oklch(22% 0.07 30));
}

.zoom-popover:not([hidden]) .zoom-cta {
  animation: cta-pop-pulse 1250ms ease-in-out infinite;
}

.zoom-popover:not([hidden]) .zoom-cta-frame::before {
  animation: cta-shine 1600ms cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.zoom-popover:not([hidden]) .zoom-cta-badge {
  animation: cta-badge-wiggle 1350ms ease-in-out infinite;
}

@keyframes cta-pop-pulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow:
      0 0 0 1px oklch(100% 0 0 / 0.18) inset,
      0 16px 0 oklch(4% 0.02 28 / 0.62),
      0 18px 48px oklch(66% 0.22 28 / 0.34),
      0 0 54px oklch(86% 0.16 78 / 0.28);
  }

  50% {
    transform: translateY(-3px) scale(1.015);
    box-shadow:
      0 0 0 1px oklch(100% 0 0 / 0.24) inset,
      0 13px 0 oklch(4% 0.02 28 / 0.72),
      0 24px 62px oklch(66% 0.22 28 / 0.5),
      0 0 82px oklch(86% 0.16 78 / 0.46);
  }
}

@keyframes cta-shine {
  0% {
    transform: translateX(-82%);
  }

  56%,
  100% {
    transform: translateX(82%);
  }
}

@keyframes cta-badge-wiggle {
  0%,
  100% {
    transform: rotate(8deg) scale(1);
  }

  50% {
    transform: rotate(13deg) scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .zoom-popover:not([hidden]) .zoom-cta,
  .zoom-popover:not([hidden]) .zoom-cta-frame::before,
  .zoom-popover:not([hidden]) .zoom-cta-badge {
    animation: none;
  }
}

.close-button {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: oklch(18% 0.025 28);
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
}

@media (max-width: 860px) {
  .topbar {
    align-items: start;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-top: 4px;
  }

  .hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  h1 {
    max-width: 100%;
  }

  .section-heading {
    display: grid;
    max-width: 100%;
  }

  .section-heading h2,
  .premium-copy h2 {
    max-width: 100%;
    font-size: clamp(2.3rem, 10vw, 4.2rem);
    line-height: 0.98;
  }

  .review-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .topbar {
    gap: 12px;
  }

  .brand {
    min-width: auto;
  }

  .ghost-button {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.75rem, 12.4vw, 4rem);
    line-height: 0.95;
  }

  .hero-actions,
  .hero-actions > * {
    width: 100%;
  }

  .player-controls {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 10px;
  }

  .icon-button {
    width: 38px;
    height: 38px;
  }

  .range-control {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .catalog,
  .split-section,
  .reviews {
    padding-block: 54px;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-card {
    min-height: 236px;
  }

  .thumb {
    min-height: 138px;
  }

  .zoom-popover-panel h2 {
    max-width: 9ch;
  }
}
