@font-face {
  font-family: "Material Symbols Outlined";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/material-symbols-outlined-subset.ttf") format("truetype");
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
}

:root {
  --bg: #fafaf5;
  --surface: #ffffff;
  --surface-low: #f3f4ee;
  --surface-mid: #edefe8;
  --surface-high: #e0e4dc;
  --ink: #2f342e;
  --ink-soft: #5c605a;
  --primary: #406752;
  --primary-dim: #345b47;
  --primary-soft: #c1edd2;
  --secondary: #3e637c;
  --secondary-soft: #c8e6ff;
  --outline: #afb3ac;
  --radius-lg: 2rem;
  --radius-xl: 3rem;
  --shadow: 0 20px 40px rgba(47, 52, 46, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

.shell {
  width: min(1140px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background: rgba(250, 250, 245, 0.7);
  backdrop-filter: blur(20px);
}

.nav-inner {
  min-height: 4.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
}

.brand img {
  height: 2rem;
  width: auto;
}

.brand span {
  font-size: 1.45rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--primary);
}

.menu-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-self: center;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  text-decoration: none;
  color: var(--ink-soft);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  padding-bottom: 0.18rem;
}

.nav-link-button {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link-active {
  color: var(--primary);
  font-weight: 700;
  border-bottom: 2px solid var(--primary);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle-icon {
  display: block;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  grid-template-areas:
    "title media"
    "actions media"
    "compare media";
  gap: 2rem;
  padding: 7rem 0 3rem;
  align-items: start;
}

.hero > h1 {
  grid-area: title;
  margin: 0.2rem 0 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.2rem, 6.3vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--primary);
}

.hero-label {
  margin: 0 0 0.45rem;
  color: var(--secondary);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.15rem;
  max-width: 50ch;
}

.hero-copy small {
  display: block;
  margin-top: 0.7rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-actions {
  grid-area: actions;
  margin-top: 1.35rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.compare-lite-link {
  grid-area: compare;
  display: inline-block;
  margin-top: 0.85rem;
  color: var(--ink-soft);
  font-size: 0.93rem;
  font-weight: 600;
  text-decoration: none;
}

.compare-lite-link:hover {
  color: var(--primary);
  text-decoration: underline;
}

  /* ── Store badge layout ──────────────────────────────── */
  .store-badge-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
  }

  .store-badge-row--center {
    justify-content: center;
  }

  .store-badge {
    display: inline-flex;
    align-items: center;
  }

  .store-badge img {
    display: block;
    height: 50px;
    width: auto;
    object-fit: contain;
  }

  .hero-store-badge-row {
    margin-top: 0.1rem;
  }

  .footer-store-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
  }

/* ── Check Video page ─────────────────────────────────── */
.check-video-page {
  min-height: 100vh;
  padding: 7rem 0 2.5rem;
}

.check-video-hero {
  text-align: center;
}

.check-video-hero h1 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 6vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.check-video-age-row {
  margin-top: 1.5rem;
  border: 1px solid rgba(175, 179, 172, 0.24);
  border-radius: 1.4rem;
  background: var(--surface);
  box-shadow: 0 1rem 2rem rgba(47, 52, 46, 0.05);
  padding: 1rem;
}

.check-video-age-display {
  margin: 0;
  color: var(--ink-soft);
  font: 800 1rem "Manrope", sans-serif;
  text-align: center;
}

.check-video-age-display strong {
  color: var(--ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.2rem;
}

.check-video-form {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem;
  border-radius: 1rem;
  background: var(--surface-low);
  box-shadow: inset 0 0 0 1px rgba(175, 179, 172, 0.18);
  transition: box-shadow 180ms ease, background 180ms ease, transform 180ms ease;
}

.check-video-form:focus-within {
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(64, 103, 82, 0.16), 0 0.8rem 1.4rem rgba(47, 52, 46, 0.07);
  transform: translateY(-1px);
}

.check-video-form > .material-symbols-outlined {
  display: none;
  color: var(--ink-soft);
  font-size: 1.45rem;
}

.check-video-form input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: 800 1rem "Manrope", sans-serif;
  padding: 0.75rem 0.35rem;
}

.check-video-form input::placeholder {
  color: var(--outline);
}

.check-video-form .btn {
  min-height: 3rem;
  width: 100%;
  white-space: nowrap;
  border-radius: 0.95rem;
  padding-inline: 1.1rem;
}

.check-video-age-slider {
  width: 100%;
  max-width: 320px;
  margin: 0.8rem auto 0;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: start;
  gap: 0.7rem;
}

.check-video-age-step {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--primary);
  color: #e6ffee;
  font: 900 1.25rem/1 "Manrope", sans-serif;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.check-video-age-step:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 0.55rem 1rem rgba(64, 103, 82, 0.2);
}

.check-video-age-step:focus-visible {
  outline: 3px solid rgba(64, 103, 82, 0.2);
  outline-offset: 2px;
}

.check-video-age-step:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.check-video-age-track-wrap {
  min-width: 0;
}

.check-video-age-track {
  width: 100%;
  height: 24px;
  margin: 10px 0 0;
  appearance: none;
  background: transparent;
}

.check-video-age-track::-webkit-slider-runnable-track {
  height: 3px;
  border-radius: 999px;
  background: rgba(175, 179, 172, 0.65);
}

.check-video-age-track::-moz-range-track {
  height: 3px;
  border-radius: 999px;
  background: rgba(175, 179, 172, 0.65);
}

.check-video-age-track::-webkit-slider-thumb {
  appearance: none;
  margin-top: -8px;
  width: 19px;
  height: 19px;
  border: 0;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0.2rem 0.6rem rgba(64, 103, 82, 0.24);
}

.check-video-age-track::-moz-range-thumb {
  width: 19px;
  height: 19px;
  border: 0;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0.2rem 0.6rem rgba(64, 103, 82, 0.24);
}

.check-video-age-anchors {
  margin-top: 0.25rem;
  display: flex;
  justify-content: space-between;
  color: var(--outline);
  font: 700 0.75rem "Manrope", sans-serif;
}

.check-video-error {
  margin: 1rem auto 0;
  width: fit-content;
  max-width: 100%;
  border-radius: 1rem;
  background: rgba(168, 56, 54, 0.1);
  color: #8f2525;
  padding: 0.7rem 1rem;
  font-weight: 800;
}

.check-video-options {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
}

.check-video-option-block {
  border: 1px solid rgba(175, 179, 172, 0.24);
  border-radius: 1.35rem;
  background: var(--surface);
  box-shadow: 0 1rem 2rem rgba(47, 52, 46, 0.05);
  padding: 1rem;
}

.check-video-option-block h2 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.12rem;
  color: var(--ink);
}

.check-video-option-list {
  display: grid;
  gap: 0.65rem;
}

.check-video-option-card {
  width: 100%;
  min-height: 76px;
  border: 1px solid rgba(175, 179, 172, 0.24);
  border-radius: 1rem;
  background: #f8f8f4;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.45rem;
  text-align: left;
  cursor: pointer;
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.check-video-option-card:hover {
  border-color: rgba(64, 103, 82, 0.33);
  background: #fbfbf8;
  box-shadow: 0 0.6rem 1rem rgba(47, 52, 46, 0.06);
  transform: translateY(-1px);
}

.check-video-option-card:focus-visible {
  outline: 3px solid rgba(64, 103, 82, 0.2);
  outline-offset: 2px;
}

.check-video-option-thumb {
  height: 64px;
  border-radius: 0.7rem;
  overflow: hidden;
  background: #e9ece5;
}

.check-video-option-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.check-video-option-body {
  min-width: 0;
}

.check-video-option-body h3 {
  margin: 0;
  color: var(--ink);
  font: 800 0.95rem "Manrope", sans-serif;
  line-height: 1.25;
  overflow: hidden;
  line-clamp: 2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.check-video-option-body p {
  margin: 0.3rem 0 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.35;
}

.check-video-option-score {
  justify-self: end;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dim);
  padding: 0.35rem 0.62rem;
  font: 900 0.8rem "Manrope", sans-serif;
}

.check-video-option-card-skeleton {
  pointer-events: none;
  border-style: dashed;
}

.check-video-option-thumb-skeleton {
  height: 64px;
  border-radius: 0.7rem;
  background: linear-gradient(100deg, #eceee7 20%, #f3f5ef 40%, #eceee7 60%);
  background-size: 200% 100%;
  animation: check-video-shimmer 1.2s linear infinite;
}

.check-video-option-lines {
  display: grid;
  gap: 0.4rem;
}

.check-video-option-lines span {
  height: 0.7rem;
  border-radius: 999px;
  background: linear-gradient(100deg, #eceee7 20%, #f3f5ef 40%, #eceee7 60%);
  background-size: 200% 100%;
  animation: check-video-shimmer 1.2s linear infinite;
}

.check-video-option-lines span:nth-child(1) {
  width: 95%;
}

.check-video-option-lines span:nth-child(2) {
  width: 80%;
}

.check-video-option-lines span:nth-child(3) {
  width: 40%;
}

@keyframes check-video-shimmer {
  from {
    background-position: 200% 0;
  }

  to {
    background-position: -200% 0;
  }
}

.check-video-option-empty {
  margin: 0;
  color: var(--ink-soft);
  font: 700 0.9rem "Manrope", sans-serif;
}

.check-video-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr;
}

.check-video-info-card,
.check-video-result-card {
  border: 1px solid rgba(175, 179, 172, 0.24);
  border-radius: 1.5rem;
  background: var(--surface);
  box-shadow: 0 1.15rem 2rem rgba(47, 52, 46, 0.06);
}

.check-video-info-card {
  position: relative;
  overflow: hidden;
  padding: 1.8rem;
}

.check-video-card-spark {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 5.4rem;
  color: var(--primary);
  opacity: 0.06;
}

.check-video-info-card h2 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.9rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.2rem;
}

.check-video-info-card h2 .material-symbols-outlined,
.check-video-info-card li .material-symbols-outlined {
  color: var(--primary);
}

.check-video-info-card p {
  position: relative;
  margin: 0 0 1rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.check-video-info-card ul {
  position: relative;
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-video-info-card li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-weight: 800;
}

.check-video-results {
  margin-top: 1rem;
  min-width: 0;
}

.check-video-result-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  padding: 0.85rem;
  animation: check-video-card-enter 0.3s ease both;
}

.check-video-result-card.is-blocked {
  border-color: rgba(168, 56, 54, 0.24);
}

.check-video-result-card.is-moderate {
  border-color: rgba(199, 138, 45, 0.28);
}

.check-video-result-skeleton {
  pointer-events: none;
}

.check-video-result-media-skeleton {
  background: linear-gradient(100deg, #eceee7 20%, #f3f5ef 40%, #eceee7 60%);
  background-size: 200% 100%;
  animation: check-video-shimmer 1.2s linear infinite;
}

.check-video-loading-card {
  position: relative;
  min-height: 19rem;
  border-color: rgba(64, 103, 82, 0.22);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(238, 244, 231, 0.78) 100%);
  animation: check-video-card-enter 0.28s ease both;
}

.check-video-loading-media {
  position: relative;
  min-height: 12rem;
  border-radius: 1rem;
  background: var(--surface-high);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(64, 103, 82, 0.14);
  isolation: isolate;
}

.check-video-loading-media::before {
  content: "";
  position: absolute;
  inset: 0.55rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(64, 103, 82, 0.24);
  z-index: 2;
  pointer-events: none;
}

.check-video-loading-media img,
.check-video-loading-placeholder {
  width: 100%;
  height: 100%;
  min-height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.check-video-loading-placeholder {
  color: var(--primary);
  background:
    radial-gradient(circle at 35% 25%, rgba(64, 103, 82, 0.14), transparent 34%),
    linear-gradient(135deg, var(--surface-high), var(--surface-low));
}

.check-video-loading-placeholder .material-symbols-outlined {
  font-size: 2.5rem;
  opacity: 0.78;
}

.check-video-loading-orbit {
  position: absolute;
  inset: 0.35rem;
  border-radius: 0.9rem;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(64, 103, 82, 0.72), transparent) top / 50% 2px no-repeat,
    linear-gradient(180deg, transparent, rgba(62, 99, 124, 0.5), transparent) right / 2px 50% no-repeat,
    linear-gradient(90deg, transparent, rgba(64, 103, 82, 0.52), transparent) bottom / 50% 2px no-repeat,
    linear-gradient(180deg, transparent, rgba(62, 99, 124, 0.44), transparent) left / 2px 50% no-repeat;
  filter: drop-shadow(0 0 0.7rem rgba(64, 103, 82, 0.22));
  animation: check-video-loading-orbit 2.1s linear infinite;
}

.check-video-loading-body {
  min-width: 0;
  padding: 0.2rem 0.25rem 0.25rem;
}

.check-video-loading-status {
  margin-top: 0.55rem;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.12rem, 2.2vw, 1.55rem);
  font-weight: 900;
  line-height: 1.2;
}

.check-video-loading-subtext {
  margin: 0.45rem 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.45;
}

.check-video-loading-title {
  margin: 0.65rem 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.check-video-loading-criteria {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.check-video-loading-criteria li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
  border-radius: 999px;
  background: rgba(238, 244, 231, 0.75);
  color: var(--ink-soft);
  padding: 0.48rem 0.62rem;
  font-size: 0.8rem;
  font-weight: 900;
  transition: background 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.check-video-loading-criteria li span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.check-video-loading-dot {
  flex: 0 0 auto;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background: rgba(119, 128, 114, 0.42);
  box-shadow: 0 0 0 4px rgba(119, 128, 114, 0.08);
  transition: background 0.24s ease, box-shadow 0.24s ease;
}

.check-video-loading-criteria li.is-active {
  color: var(--primary-dim);
  background: rgba(64, 103, 82, 0.13);
  transform: translateY(-1px);
}

.check-video-loading-criteria li.is-active .check-video-loading-dot {
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(64, 103, 82, 0.16);
  animation: check-video-loading-pulse 0.9s ease-in-out infinite;
}

.check-video-loading-criteria li.is-complete {
  color: var(--primary-dim);
  background: var(--primary-soft);
}

.check-video-loading-criteria li.is-complete .check-video-loading-dot {
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(64, 103, 82, 0.12);
}

@keyframes check-video-loading-orbit {
  0% {
    background-position: left top, right top, right bottom, left bottom;
  }

  50% {
    background-position: right top, right bottom, left bottom, left top;
  }

  100% {
    background-position: left top, right top, right bottom, left bottom;
  }
}

@keyframes check-video-loading-pulse {
  50% {
    transform: scale(1.2);
  }
}

@keyframes check-video-card-enter {
  from {
    opacity: 0;
    transform: translateY(0.35rem) scale(0.992);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.check-video-result-media {
  min-height: 12rem;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--surface-high);
}

.check-video-result-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.check-video-result-body {
  min-width: 0;
  padding: 0.2rem 0.25rem 0.25rem;
}

.check-video-result-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.check-video-eyebrow {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.check-video-score {
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dim);
  padding: 0.45rem 0.75rem;
  font-weight: 900;
}

.check-video-result-score-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.check-video-score-disclosure {
  margin: 0.4rem 0 0;
}

.check-video-result-body h2 {
  margin: 0.6rem 0 0.25rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.15rem, 2.4vw, 1.75rem);
  line-height: 1.15;
}

.check-video-channel,
.check-video-message {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.5;
}

.check-video-message {
  margin-top: 0.75rem;
}

.check-video-score-bar {
  margin-top: 0.9rem;
  border-radius: 1rem;
  background: var(--surface-low);
  padding: 0.85rem;
}

.check-video-score-bar-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.check-video-score-bar-heading h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.98rem;
}

.check-video-score-bar-heading p {
  margin: 0.35rem 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.45;
}

.check-video-score-bar-heading strong {
  flex: 0 0 auto;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.15rem;
}

.check-video-score-track {
  position: relative;
  height: 0.75rem;
  margin-top: 0.85rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #b94a48 0%, #d9863d 42%, #e7c653 56%, #4f8f62 100%);
  box-shadow: inset 0 0 0 1px rgba(47, 52, 46, 0.08);
}

.check-video-score-marker {
  position: absolute;
  top: 50%;
  width: 1.05rem;
  height: 1.05rem;
  border: 3px solid var(--surface);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0.25rem 0.65rem rgba(47, 52, 46, 0.2);
  transform: translate(-50%, -50%);
}

.check-video-score-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 0.45rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 900;
}

.check-video-meta,
.check-video-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.check-video-pill,
.check-video-categories span {
  border-radius: 999px;
  background: var(--surface-low);
  color: var(--ink-soft);
  padding: 0.42rem 0.68rem;
  font-size: 0.78rem;
  font-weight: 900;
}

.check-video-pill.is-good,
.check-video-pill.is-excellent {
  background: var(--primary-soft);
  color: var(--primary-dim);
}

.check-video-pill.is-blocked {
  background: rgba(168, 56, 54, 0.11);
  color: #8f2525;
}

.check-video-pill.is-moderate {
  background: rgba(199, 138, 45, 0.16);
  color: #8a5a17;
}

.check-video-detail {
  margin-top: 0.85rem;
  border-top: 1px solid rgba(175, 179, 172, 0.26);
  padding-top: 0.85rem;
}

.check-video-detail h3 {
  margin: 0 0 0.35rem;
  color: var(--ink);
  font: 800 0.92rem "Plus Jakarta Sans", sans-serif;
}

.check-video-detail p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

.check-video-detail ul {
  margin: 0.3rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

.check-video-detail .check-video-categories {
  margin-top: 0;
}

.check-video-category-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
}

.check-video-category-chip span {
  font-size: 0.95rem;
  line-height: 1;
}

.check-video-actions {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.check-video-actions .btn {
  min-height: 3rem;
  width: 100%;
  padding: 0.72rem 1rem;
  font-size: 0.88rem;
}

.check-video-result-cta {
  margin-top: 1rem;
  border: 1px solid rgba(64, 103, 82, 0.22);
  border-radius: 1.2rem;
  background: linear-gradient(135deg, rgba(238, 244, 231, 0.7) 0%, rgba(255, 255, 255, 0.9) 100%);
  box-shadow: 0 1rem 1.8rem rgba(47, 52, 46, 0.06);
  overflow: hidden;
}

.check-video-result-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 1.6rem 1rem 1.2rem;
  text-align: center;
}

.check-video-result-cta-icon {
  font-size: 2rem;
  line-height: 1;
}

.check-video-result-cta h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.15rem;
  line-height: 1.3;
}

.check-video-result-cta-sub {
  margin: 0 0 0.35rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 28rem;
}

.check-video-result-disclaimer {
  margin: 0.35rem 0 0;
  color: var(--ink-soft);
  font: 700 0.82rem "Manrope", sans-serif;
  opacity: 0.75;
}

@media (max-width: 860px) {
  .check-video-page {
    padding-top: 6.4rem;
  }

  .check-video-option-card {
    grid-template-columns: 88px minmax(0, 1fr) auto;
  }

  .check-video-option-score {
    align-self: start;
  }

  .check-video-grid {
    margin-top: 0.95rem;
  }
}

@media (min-width: 861px) {
  .check-video-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

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

  .check-video-form > .material-symbols-outlined {
    display: inline-flex;
    margin-left: 0.65rem;
  }

  .check-video-form .btn {
    width: auto;
    min-width: 8rem;
    border-radius: 999px;
  }

  .check-video-option-card {
    min-height: 68px;
  }

  .check-video-result-card {
    grid-template-columns: 14rem 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .check-video-result-media,
  .check-video-loading-media {
    min-height: 10rem;
  }

  .check-video-loading-media img,
  .check-video-loading-placeholder {
    min-height: 10rem;
  }

  .check-video-actions .btn {
    width: auto;
  }

  .check-video-grid {
    grid-template-columns: minmax(300px, 0.85fr);
  }
}

@media (max-width: 520px) {
  .check-video-loading-criteria {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .check-video-result-card,
  .check-video-loading-card,
  .check-video-loading-orbit,
  .check-video-loading-criteria li.is-active .check-video-loading-dot,
  .check-video-result-media-skeleton,
  .check-video-option-thumb-skeleton,
  .check-video-option-lines span {
    animation: none;
  }

  .check-video-loading-criteria li,
  .check-video-loading-dot {
    transition: none;
  }

  .check-video-loading-orbit {
    opacity: 0.55;
  }
}

/* ── Top Channels page ────────────────────────────────── */
.top-channels-page {
  min-height: 100vh;
  padding: 6.8rem 0 3rem;
  background: #fbfbf8;
}

.top-channels-hero {
  text-align: center;
  max-width: 820px;
}

.top-channels-hero h1 {
  margin: 0;
  color: #1a1a2e;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.25rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.top-channels-hero p {
  max-width: 68ch;
  margin: 1rem auto 0;
  color: var(--ink-soft);
  line-height: 1.65;
  font-weight: 700;
}

.top-channels-filter-wrap {
  position: sticky;
  top: 4.5rem;
  z-index: 20;
  margin-top: 2rem;
  background: rgba(251, 251, 248, 0.94);
  border-block: 1px solid rgba(238, 238, 238, 0.9);
  backdrop-filter: blur(14px);
}

.top-channels-filter-bar {
  display: grid;
  gap: 0.85rem;
  padding-block: 0.9rem;
}

.top-channels-filter-group {
  display: grid;
  gap: 0.45rem;
}

.top-channels-filter-group > span,
.top-channels-count {
  color: #7c817b;
  font-size: 0.86rem;
  font-weight: 900;
}

.top-channels-filter-pills {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.top-channels-filter-pill {
  min-height: 2.25rem;
  border: 1px solid #eeeeee;
  border-radius: 999px;
  background: #fff;
  color: #1a1a2e;
  cursor: pointer;
  padding: 0.45rem 0.85rem;
  font: 900 0.86rem "Manrope", sans-serif;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}

.top-channels-filter-pill.is-active {
  border-color: #e87722;
  background: #e87722;
  color: #fff;
}

.top-channels-clear,
.top-channels-empty button {
  width: fit-content;
  border: 0;
  background: transparent;
  color: #e87722;
  cursor: pointer;
  padding: 0;
  font: 900 0.9rem "Manrope", sans-serif;
}

.top-channels-results {
  margin-top: 1.4rem;
}

.top-channels-count {
  margin: 0 0 0.85rem;
}

.top-channels-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.top-channel-card {
  display: grid;
  gap: 1rem;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 1rem;
  transition: box-shadow 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.top-channel-card:hover {
  border-color: #e87722;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.09);
  transform: translateY(-1px);
}

.top-channel-card-head {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0.85rem;
  align-items: start;
}

.top-channel-avatar {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: #f5f5f5;
  color: #00897b;
}

.top-channel-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-channel-card h2 {
  margin: 0;
  color: #1a1a2e;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.25;
}

.top-channel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.45rem;
}

.top-channel-tag {
  border-radius: 999px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
}

.top-channel-tag.category {
  background: #00897b;
}

.top-channel-tag.age {
  background: #6b3fa0;
}

.top-channel-youtube-link {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  margin-top: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 700;
  text-decoration: none;
}

.top-channel-youtube-link .material-symbols-outlined {
  font-size: 0.9rem;
}

.top-channel-youtube-link:hover,
.top-channel-youtube-link:focus-visible {
  color: #e87722;
  text-decoration: underline;
}

.top-channels-score-disclosure {
  margin-top: -0.35rem;
}

.top-channel-score {
  border-radius: 12px;
  background: #f5f5f5;
  padding: 1rem;
  text-align: center;
}

.top-channel-score strong {
  display: block;
  color: #e87722;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 3rem;
  line-height: 1;
}

.top-channel-score span {
  display: block;
  margin-top: 0.25rem;
  color: #1a1a2e;
  font-weight: 900;
}

.top-channel-score small {
  display: block;
  margin-top: 0.3rem;
  color: #7c817b;
  font-weight: 800;
}

.top-channel-watch,
.top-channels-load-more button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  border: 1px solid #e87722;
  border-radius: 999px;
  background: #fff;
  color: #e87722;
  cursor: pointer;
  text-decoration: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 900;
  transition: background 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.top-channel-watch {
  width: 100%;
}

.top-channel-watch:hover,
.top-channels-load-more button:hover {
  background: #e87722;
  color: #fff;
  box-shadow: 0 0.8rem 1.6rem rgba(232, 119, 34, 0.2);
}

.top-channel-card-skeleton {
  pointer-events: none;
}

.top-channel-skeleton-head,
.top-channel-skeleton-line,
.top-channel-skeleton-score,
.top-channel-skeleton-button {
  border-radius: 999px;
  background: linear-gradient(90deg, #eeeeee 0%, #f7f7f7 50%, #eeeeee 100%);
  background-size: 200% 100%;
  animation: topChannelSkeleton 1.15s ease-in-out infinite;
}

.top-channel-skeleton-head {
  width: 64px;
  height: 64px;
}

.top-channel-skeleton-line {
  width: 75%;
  height: 1rem;
}

.top-channel-skeleton-score {
  width: 100%;
  height: 7rem;
  border-radius: 12px;
}

.top-channel-skeleton-button {
  width: 100%;
  height: 2.8rem;
}

@keyframes topChannelSkeleton {
  from { background-position: 0 0; }
  to { background-position: -200% 0; }
}

.top-channels-load-more {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.top-channels-load-more p {
  margin: 0;
  color: #7c817b;
  font-weight: 800;
}

.top-channels-load-more button {
  padding: 0.7rem 1.25rem;
}

.top-channels-error,
.top-channels-empty {
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  background: #fff;
  padding: 2rem;
  text-align: center;
}

.top-channels-error p,
.top-channels-empty p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 800;
}

.top-channels-explainer,
.top-channels-cta {
  margin-top: 2rem;
  border-radius: 12px;
  padding: 1.5rem;
}

.top-channels-explainer {
  background: #f5f5f5;
}

.top-channels-explainer h2,
.top-channels-cta h2 {
  margin: 0;
  color: #1a1a2e;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.top-channels-explainer p,
.top-channels-cta p {
  margin: 0.65rem 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
  font-weight: 700;
}

.top-channels-cta {
  background: #fff;
  border: 1px solid #eeeeee;
  text-align: center;
}

.top-channels-cta-intro {
  margin-top: 1.6rem;
}

.top-channels-store-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.top-channels-cta-intro .top-channels-store-badges {
  flex-wrap: nowrap;
  gap: 0.5rem;
}

.top-channels-cta-intro .store-badge img {
  height: 2.25rem;
  width: auto;
  max-width: 9.6rem;
}

@media (max-width: 980px) {
  .top-channels-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .top-channels-page {
    padding-top: 6.1rem;
  }

  .top-channels-filter-wrap {
    top: 4rem;
  }

  .top-channels-filter-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.15rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .top-channels-filter-pills::-webkit-scrollbar {
    display: none;
  }

  .top-channels-filter-pill {
    flex: 0 0 auto;
  }

  .top-channels-grid {
    grid-template-columns: 1fr;
  }

  .top-channels-cta-intro .top-channels-store-badges {
    justify-content: center;
  }

  .top-channels-cta-intro .store-badge img {
    height: 2rem;
    max-width: 8.75rem;
  }
}

  /* ── /download page ──────────────────────────────────── */
  .download-page-main {
    padding: 6.6rem 0 3.6rem;
  }

  .download-page-shell {
    max-width: 1120px;
  }

  .download-page-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 2.6rem;
    background: var(--surface);
    border: 1px solid var(--surface-high);
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
  }

  .download-page-container h1 {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    max-width: 11ch;
    font-size: clamp(2.35rem, 6vw, 4.4rem);
    line-height: 0.96;
    font-weight: 800;
    color: var(--primary);
  }

  .download-page-intro {
    max-width: 35rem;
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--ink-soft);
    margin: 1rem 0 0;
  }

  .download-store-badges {
    margin-top: 1.45rem;
  }

  .download-page-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 4.5rem);
  }

  .download-page-hero__copy {
    min-width: 0;
  }

  .download-page-eyebrow {
    margin: 0 0 0.9rem;
    color: var(--primary);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .download-page-hero__media {
    margin: 0;
    display: flex;
    justify-content: center;
  }

  .download-page-hero__media img,
  .download-screenshot-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 1.35rem;
    border: 1px solid var(--surface-high);
    box-shadow: 0 1.25rem 3rem rgba(34, 62, 84, 0.16);
    background: var(--surface-soft);
  }

  .download-page-hero__media img {
    max-width: 21rem;
    aspect-ratio: 1 / 2;
    object-fit: cover;
  }

  .download-page-section {
    max-width: 1120px;
    margin-top: 4.5rem;
  }

  .download-page-section-header {
    max-width: 42rem;
    margin-bottom: 1.6rem;
  }

  .download-page-section-header h2,
  .download-trust-card h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(1.65rem, 3vw, 2.4rem);
    line-height: 1.08;
    font-weight: 800;
    color: var(--ink);
    margin: 0;
  }

  .download-page-section-header p:not(.download-page-eyebrow),
  .download-how-step p,
  .download-trust-card p {
    color: var(--ink-soft);
    line-height: 1.65;
  }

  .download-page-section-header p:not(.download-page-eyebrow) {
    margin: 0.75rem 0 0;
    font-size: 1rem;
  }

  .download-how-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .download-how-step,
  .download-trust-card {
    background: var(--surface);
    border: 1px solid var(--surface-high);
    border-radius: 1.25rem;
    box-shadow: 0 1rem 2.4rem rgba(34, 62, 84, 0.09);
  }

  .download-how-step {
    padding: 1.35rem;
  }

  .download-how-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
  }

  .download-how-step h3 {
    margin: 0;
    color: var(--ink);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.04rem;
    font-weight: 800;
  }

  .download-how-step p {
    margin: 0.55rem 0 0;
    font-size: 0.95rem;
  }

  .download-screenshot-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .download-screenshot-card {
    margin: 0;
  }

  .download-screenshot-card img {
    aspect-ratio: 9 / 19.5;
    object-fit: cover;
  }

  .download-screenshot-card figcaption {
    margin-top: 0.75rem;
    color: var(--ink);
    font-size: 0.94rem;
    font-weight: 700;
    text-align: center;
  }

  .download-trust-section {
    max-width: 920px;
  }

  .download-trust-card {
    padding: clamp(1.5rem, 4vw, 2.5rem);
    text-align: center;
  }

  .download-trust-stat {
    margin: 0 0 0.75rem;
    color: var(--primary);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1;
    font-weight: 800;
  }

  .download-trust-card p:not(.download-trust-stat) {
    max-width: 44rem;
    margin: 1rem auto 0;
  }

  .download-store-badges--trust {
    margin-top: 1.35rem;
  }

  @media (max-width: 768px) {
    .download-page-main {
      padding: 5.6rem 0 2.6rem;
    }

    .download-page-container {
      padding: 1.5rem 1.1rem 2rem;
      border-radius: 1.1rem;
    }

    .download-page-container h1 {
      max-width: 100%;
      font-size: clamp(2.05rem, 13vw, 3rem);
    }

    .download-page-hero__layout,
    .download-how-steps {
      grid-template-columns: 1fr;
    }

    .download-page-hero__media img {
      max-width: min(18rem, 82vw);
    }

    .download-page-section {
      margin-top: 3.2rem;
    }

    .download-screenshot-grid {
      display: flex;
      gap: 0.9rem;
      margin-right: -1rem;
      overflow-x: auto;
      padding: 0 1rem 0.5rem 0;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }

    .download-screenshot-card {
      flex: 0 0 min(72vw, 18rem);
      scroll-snap-align: start;
    }

    .store-badge-row {
      justify-content: center;
    }
  }

.hero-compare-link {
  max-width: 44ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  border: 0;
}

.btn-small {
  padding: 0.6rem 1rem;
}

.nav-cta {
  padding: 0.48rem 0.9rem;
  font-size: 0.82rem;
  box-shadow: 0 8px 18px rgba(64, 103, 82, 0.16);
}

.nav-cta-mobile {
  display: none;
}

.btn-primary {
  background: var(--primary);
  color: #e6ffee;
  box-shadow: 0 12px 28px rgba(64, 103, 82, 0.2);
}

.btn-primary:hover {
  background: var(--primary-dim);
}

.btn-secondary {
  background: var(--secondary-soft);
  color: #30566e;
}

.hero-media {
  grid-area: media;
  position: relative;
  justify-self: end;
  width: min(100%, 390px);
  padding: 0.85rem;
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  aspect-ratio: auto;
  object-fit: contain;
  background: #fff;
  position: relative;
  z-index: 2;
}

.steps {
  margin: 0 1rem;
  background: var(--surface-low);
  border-radius: 2.3rem;
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 2.2rem;
}

.section-title span {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(64, 103, 82, 0.7);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
}

.section-title h2,
.compare h2,
.scenario h2,
.controls h2,
.cta h2 {
  margin: 0.5rem 0 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.9rem, 4.9vw, 3.1rem);
  letter-spacing: -0.03em;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.step-grid article {
  padding: 1.4rem;
}

.step-grid article span {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.9rem;
  background: var(--surface);
  box-shadow: 0 8px 20px rgba(47, 52, 46, 0.05);
}

.step-grid h3 {
  margin: 0.9rem 0 0.4rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.2rem;
}

.step-grid p {
  margin: 0;
  color: var(--ink-soft);
}

.step-link {
  margin-top: 1.2rem;
  display: inline-block;
  color: var(--primary);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.step-link:hover {
  text-decoration: underline;
}

.features {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.features article {
  background: var(--surface);
  border-radius: 1.35rem;
  padding: 1.3rem;
  border: 1px solid rgba(175, 179, 172, 0.3);
}

.features span {
  color: var(--secondary);
  font-size: 2rem;
}

.features h3 {
  margin: 0.6rem 0 0.35rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.28rem;
}

.features p {
  margin: 0;
  color: var(--ink-soft);
}

.features-trust {
  grid-column: 1 / -1;
  margin: 0.25rem 0 0;
  color: rgba(55, 77, 91, 0.78);
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
}

.features-check-cta {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
  border-radius: 1.35rem;
  background: var(--primary);
  color: #e6ffee;
  padding: 1rem 1.2rem;
  text-decoration: none;
  box-shadow: 0 1rem 2.1rem rgba(64, 103, 82, 0.22);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.features-check-cta:hover {
  background: var(--primary-dim);
  transform: translateY(-1px);
  box-shadow: 0 1.2rem 2.5rem rgba(64, 103, 82, 0.26);
}

.features-check-cta .material-symbols-outlined {
  color: inherit;
  font-size: 1.65rem;
}

.features-check-cta strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.02rem;
}

.features-check-cta small {
  color: rgba(230, 255, 238, 0.82);
  font-weight: 800;
  text-align: right;
}

.early-access {
  margin-top: 3.8rem;
  background: var(--surface);
  padding: 4rem 0;
}

.early-wrap {
  background: var(--surface-low);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.early-wrap h2 {
  text-align: center;
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.9rem, 4.9vw, 3.1rem);
  letter-spacing: -0.03em;
}

.early-lead {
  margin: 0.9rem auto 0;
  max-width: 70ch;
  text-align: center;
  color: var(--ink-soft);
}

.early-points {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.early-points > div {
  background: var(--surface);
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid rgba(175, 179, 172, 0.24);
}

.early-points span {
  color: var(--primary);
  font-size: 2rem;
}

.early-points h4 {
  margin: 0.5rem 0 0.3rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
}

.early-points p {
  margin: 0;
  color: var(--ink-soft);
}

.early-cta {
  margin-top: 1.3rem;
  text-align: center;
}

.early-form-section {
  margin-top: 3rem;
}

.early-form-wrap {
  background: var(--surface);
  border: 1px solid rgba(175, 179, 172, 0.28);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.early-form-wrap h2 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.early-form-intro {
  margin: 0.7rem 0 0;
  color: var(--ink-soft);
  max-width: 66ch;
}

.early-form {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}

.early-form label,
.early-form legend {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
}

.early-form input[type="text"],
.early-form input[type="email"],
.early-form select,
.early-form textarea {
  width: 100%;
  border: 1px solid rgba(175, 179, 172, 0.42);
  border-radius: 0.9rem;
  padding: 0.8rem 0.9rem;
  background: var(--surface-low);
  color: var(--ink);
  font: inherit;
}

.early-form textarea {
  resize: vertical;
}

.early-form input:focus,
.early-form select:focus,
.early-form textarea:focus {
  outline: 2px solid rgba(64, 103, 82, 0.3);
  border-color: rgba(64, 103, 82, 0.65);
}

.field-help,
.privacy-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.error-note {
  margin: 0;
  padding: 0.7rem 0.85rem;
  border-radius: 0.75rem;
  background: rgba(163, 54, 46, 0.12);
  color: #7a2a24;
  font-weight: 700;
  font-size: 0.92rem;
}

#early-access-submit:disabled {
  opacity: 0.75;
  cursor: wait;
}

.early-form fieldset {
  margin: 0;
  border: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.choice-card {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 0.85rem;
  border-radius: 0.9rem;
  background: var(--surface-low);
  border: 1px solid rgba(175, 179, 172, 0.28);
  font-family: "Manrope", sans-serif;
  font-weight: 600;
}

.choice-card input[type="radio"],
.choice-card input[type="checkbox"] {
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--primary);
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 0.3rem;
}

.consent-row input {
  margin-top: 0.18rem;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--primary);
}

.success-note {
  margin: 0.9rem 0 0;
  padding: 0.85rem 0.95rem;
  border-radius: 0.9rem;
  background: rgba(64, 103, 82, 0.1);
  color: var(--primary-dim);
  font-weight: 700;
}

.success-card {
  margin: 0.9rem 0 0;
  padding: 1rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(64, 103, 82, 0.25);
  background: rgba(64, 103, 82, 0.08);
}

.success-card h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--primary-dim);
}

.success-card p {
  margin: 0.5rem 0 0;
  color: var(--ink);
}

.success-cta {
  margin-top: 0.9rem;
  width: 100%;
  justify-content: center;
  min-height: 2.8rem;
}

.scenario {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
  align-items: center;
}

.tag {
  font-family: "Plus Jakarta Sans", sans-serif;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--primary);
  font-weight: 700;
}

.scenario h2 {
  margin: 0.45rem 0 1rem;
}

blockquote {
  margin: 0;
  padding: 1rem 1rem 1rem 1.3rem;
  border-left: 0.35rem solid rgba(64, 103, 82, 0.2);
  background: var(--surface);
  border-radius: 1rem;
  font-size: 1.2rem;
}

.scenario p {
  color: var(--ink-soft);
}

.scenario-media {
  position: relative;
}

.scenario-media img {
  width: 100%;
  border-radius: 1.35rem;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.scenario-media aside {
  position: absolute;
  right: -0.4rem;
  bottom: -0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--surface);
  border-radius: 0.9rem;
  padding: 0.7rem 0.9rem;
  box-shadow: var(--shadow);
  color: var(--primary);
}

.controls {
  margin-top: 3.6rem;
  background: rgba(200, 230, 255, 0.36);
  border-radius: 2rem;
  padding: 3rem 0;
}

.controls-wrap {
  text-align: center;
}

.controls-wrap p {
  color: var(--ink-soft);
  max-width: 62ch;
  margin: 0.6rem auto 1rem;
}

.controls-compare-link {
  margin-bottom: 0.8rem;
}

.toggle-card {
  max-width: 380px;
  margin: 0 auto;
  padding: 1rem;
  background: var(--surface);
  border-radius: 1rem;
}

.toggle-card div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-weight: 700;
}

.toggle-card i {
  width: 3rem;
  height: 1.6rem;
  border-radius: 999px;
  background: var(--outline);
  position: relative;
}

.toggle-card i::after {
  content: "";
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: #fff;
  position: absolute;
  right: 0.25rem;
  top: 0.3rem;
}

.toggle-card i.active {
  background: var(--primary);
}

.principles {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  text-align: center;
}

.principles article span {
  color: var(--primary);
  font-size: 2.5rem;
}

.principles h4 {
  margin: 0.45rem 0 0.2rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.15rem;
}

.principles p {
  margin: 0;
  color: var(--ink-soft);
}

.cta {
  margin-top: 3.8rem;
  text-align: center;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.cta-note {
  margin: 0.7rem 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.cta::before {
  content: "";
  position: absolute;
  width: 120%;
  left: -10%;
  top: -35%;
  height: 220px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background: rgba(64, 103, 82, 0.05);
  z-index: -1;
}

.footer {
  margin-top: 3rem;
  border-top: 1px solid rgba(175, 179, 172, 0.35);
  background: var(--surface-low);
}

.footer-inner {
  min-height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem 1.2rem;
  flex-wrap: wrap;
  padding: 0.9rem 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-brand img {
  height: 1.9rem;
}

.footer-brand span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  color: var(--primary);
}

.footer-brand p,
.footer-inner p {
  margin: 0;
  color: var(--ink-soft);
}

.footer-powered a {
  color: var(--ink-soft);
  font-weight: 600;
}

.footer-powered a:hover {
  color: var(--primary);
}

.footer-compare-link {
  color: var(--ink-soft);
  font-size: 0.93rem;
  font-weight: 600;
  text-decoration: none;
}

.footer-compare-link:hover {
  color: var(--primary);
  text-decoration: underline;
}

.footer-legal-links {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.3rem;
}

.footer-legal {
  flex-basis: 100%;
  text-align: center;
}

.footer-youtube-disclosure {
  flex-basis: 100%;
  text-align: center;
  font-size: 0.82rem;
}

.footer-youtube-disclosure a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.footer-youtube-disclosure a:hover {
  color: var(--primary-dim);
  text-decoration: underline;
}

/*
 * Reusable "not a YouTube metric" disclosure (YouTube API Developer Policies
 * III.E.4.h). Always visible, no interaction required — do not hide behind
 * a tooltip or collapse.
 */
.score-disclosure {
  margin: 0.5rem 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.4;
}

.footer-legal-links a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: var(--primary-dim);
  text-decoration: underline;
}

.footer-legal-links a:focus-visible {
  outline: 2px solid var(--primary-soft);
  outline-offset: 2px;
  border-radius: 0.2rem;
}

.facebook-browser-banner {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;
  min-height: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  background: #1a1a2e;
  color: #ffffff;
  padding: 10px 16px;
  box-sizing: border-box;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
}

.facebook-browser-banner p {
  margin: 0;
  color: #ffffff;
  font-family: "Nunito", "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.25;
}

.facebook-browser-actions {
  display: flex;
  gap: 0.45rem;
}

.facebook-browser-actions button {
  min-height: 28px;
  border-radius: 8px;
  cursor: pointer;
  padding: 0.25rem 0.6rem;
  white-space: nowrap;
  font: 900 12px "Manrope", sans-serif;
}

.facebook-cookie-reject {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  color: #ffffff;
}

.facebook-cookie-accept {
  border: 1px solid #e87722;
  background: #e87722;
  color: #ffffff;
}

@media (max-width: 420px) {
  .facebook-browser-banner {
    gap: 0.5rem;
    padding: 8px 10px;
  }

  .facebook-browser-banner p {
    font-size: 12px;
  }

  .facebook-browser-actions {
    gap: 0.3rem;
  }

  .facebook-browser-actions button {
    padding-inline: 0.45rem;
    font-size: 11px;
  }
}

.cookie-consent {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1000;
  max-height: min(180px, 25vh);
  max-height: min(180px, 25dvh);
  pointer-events: none;
  transform: translateY(110%);
  transition: transform 300ms ease;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.cookie-consent.is-visible {
  transform: translateY(0);
}

.cookie-consent-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  max-height: min(180px, 25vh);
  max-height: min(180px, 25dvh);
  margin: 0;
  background: #ffffff;
  border-top: 1px solid rgba(175, 179, 172, 0.38);
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
  padding: 0.75rem;
  box-sizing: border-box;
  pointer-events: auto;
}

.cookie-consent-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.35;
}

.cookie-consent-copy a {
  color: #e87722;
  font-weight: 900;
  text-decoration: none;
}

.cookie-consent-copy a:hover {
  text-decoration: underline;
}

.cookie-essential {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.4rem;
  color: #555555;
  font-size: 12px;
  font-weight: 800;
}

.cookie-essential input[type="checkbox"] {
  width: 0.85rem;
  height: 0.85rem;
  accent-color: #e87722;
}

.cookie-actions {
  display: grid;
  gap: 0.45rem;
  width: min(9.8rem, 38vw);
}

.cookie-btn {
  min-height: 32px;
  border-radius: 8px;
  cursor: pointer;
  padding: 0.35rem 0.65rem;
  font: 900 12px "Manrope", sans-serif;
}

.cookie-btn-reject {
  border: 1px solid rgba(85, 85, 85, 0.35);
  background: #ffffff;
  color: #555555;
}

.cookie-btn-accept {
  border: 1px solid #e87722;
  background: #e87722;
  color: #ffffff;
}

.cookie-btn:focus-visible,
.cookie-consent-copy a:focus-visible {
  outline: 3px solid rgba(232, 119, 34, 0.24);
  outline-offset: 2px;
}

@media (min-width: 760px) {
  .cookie-consent {
    right: auto;
    bottom: 16px;
    left: 16px;
    width: 380px;
    max-height: none;
  }

  .cookie-consent-inner {
    max-height: none;
    border: 1px solid rgba(175, 179, 172, 0.38);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  }
}

@media (max-width: 759px) {
  body.has-cookie-consent {
    padding-bottom: min(180px, 25vh);
    padding-bottom: min(180px, 25dvh);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero,
  .scenario,
  .step-grid,
  .features,
  .principles,
  .early-points {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-areas:
      "title"
      "media"
      "actions"
      "compare";
    padding-top: 6rem;
    row-gap: 1rem;
  }

  .hero > h1 {
    margin-bottom: 0.4rem;
  }

  .hero-media {
    justify-self: stretch;
    width: 100%;
    max-width: none;
    margin-top: 0.4rem;
  }

  .steps {
    margin: 0 0.6rem;
  }

  .early-wrap {
    padding: 1rem;
  }

  .early-form-wrap {
    padding: 1rem;
  }

  .features-check-cta {
    grid-template-columns: auto 1fr;
  }

  .features-check-cta small {
    grid-column: 1 / -1;
    text-align: left;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav-actions {
    justify-self: end;
    margin-left: auto;
  }

  .nav-cta {
    display: none;
  }

  .menu-list {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 1.2rem;
    width: min(300px, calc(100% - 2.4rem));
    padding: 0.8rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    background: #fff;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-self: end;
  }

  .nav-link,
  .nav-link-active {
    border: 0;
    padding-bottom: 0;
  }

  .menu-list.open {
    display: flex;
  }

  .nav-cta-mobile {
    display: inline-flex;
    margin-top: 0.3rem;
    width: 100%;
  }

  .scenario-media aside {
    position: static;
    margin-top: 0.6rem;
    width: fit-content;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0.8rem 0;
  }

  .hero-compare-link,
  .controls-compare-link,
  .footer-compare-link {
    margin-top: 0.6rem;
  }

  .success-cta {
    min-height: 3rem;
    font-size: 1rem;
  }
}

/* Parent controls showcase (WayTube 1.2) */
.parent-controls-section {
  margin-top: 4rem;
}

.parent-controls-head {
  max-width: 46rem;
}

.parent-controls-head h2 {
  margin-bottom: 0.5rem;
}

.parent-controls-head p {
  color: var(--ink-soft);
  margin-top: 0;
}

.parent-controls-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.parent-controls-grid article {
  background: var(--surface);
  border-radius: 1.35rem;
  padding: 1.3rem;
  border: 1px solid rgba(175, 179, 172, 0.3);
}

.parent-controls-grid span {
  color: var(--secondary);
  font-size: 2rem;
}

.parent-controls-grid h3 {
  margin: 0.6rem 0 0.35rem;
  font-size: 1.05rem;
}

.parent-controls-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.parent-controls-note {
  margin-top: 1.5rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

@media (max-width: 960px) {
  .parent-controls-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .parent-controls-grid {
    grid-template-columns: 1fr;
  }
}

/* Hero phone carousel
   Slide 1 is the original hero image and stays the LCP element; slides 2+ lazy-load.
   Scroll-snap does the work so swipe/trackpad/keyboard all behave natively. */
.hero-carousel {
  position: relative;
}

.hero-carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border-radius: 1.5rem;
}

.hero-carousel-track::-webkit-scrollbar {
  display: none;
}

.hero-carousel-track:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 3px;
}

.hero-carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

/* Height-driven rather than width-driven: the sources have slightly different
   aspect ratios, and phones should read as the same physical size regardless.
   The fixed height also reserves space, so lazy slides cannot shift the layout. */
/* Sized to the phone so the "New" badge pins to the device corner, not the slide. */
.hero-carousel-frame {
  position: relative;
  display: inline-block;
  line-height: 0;
}

/* TEMPORARY — paired with SHOW_NEW_BADGES in HeroCarousel.jsx. Safe to delete
   together with that flag once 1.2 is no longer new. */
.hero-carousel-new {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 3;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(47, 52, 46, 0.22);
}

.hero-carousel-slide img {
  display: block;
  height: clamp(360px, 52vh, 520px);
  width: auto;
  max-width: 100%;
  border-radius: 1.5rem;
  object-fit: contain;
  background: transparent;
}

.hero-carousel-slide figcaption {
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--ink-soft);
  text-align: center;
  max-width: 30ch;
  min-height: 2.4em;
}

.hero-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 0.6rem;
}

.hero-carousel-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid rgba(64, 103, 82, 0.28);
  background: var(--surface-low);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-carousel-arrow:hover:not(:disabled) {
  border-color: var(--primary);
  background: var(--surface-mid);
}

.hero-carousel-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.hero-carousel-arrow .material-symbols-outlined {
  font-size: 1.15rem;
}

.hero-carousel-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  flex-shrink: 0;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(64, 103, 82, 0.28);
  background: var(--surface-low);
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hero-carousel-play:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--surface-mid);
}

.hero-carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-carousel-dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background: var(--outline);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-carousel-dot.is-active {
  background: var(--primary);
  transform: scale(1.35);
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel-track {
    scroll-behavior: auto;
  }

  .hero-carousel-dot {
    transition: none;
  }
}

/* ---------------------------------------------------------------------------
   Blog + shared FAQ
   --------------------------------------------------------------------------- */

.blog-page {
  padding-top: 7rem;
  padding-bottom: 5rem;
}

.blog-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--secondary);
  margin: 0 0 0.5rem;
}

.blog-hero h1 {
  margin: 0 0 0.6rem;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.02em;
}

.blog-hero-intro {
  color: var(--ink-soft);
  max-width: 46rem;
  margin: 0;
  font-size: 1.05rem;
}

.blog-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.blog-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid rgba(175, 179, 172, 0.3);
  border-radius: 1.35rem;
  padding: 1.4rem;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(47, 52, 46, 0.09);
}

.blog-card-media {
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--surface-low);
}

.blog-card-media img {
  display: block;
  width: 100%;
  height: auto;
}

.blog-card-body {
  min-width: 0;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--ink-soft);
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}

.blog-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  line-height: 1.25;
}

.blog-card h2 a,
.blog-card-link {
  color: var(--ink);
  text-decoration: none;
}

.blog-card h2 a:hover {
  color: var(--primary);
}

.blog-card-body > p {
  margin: 0 0 0.8rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.blog-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}

.blog-tag {
  border-radius: 999px;
  background: var(--surface-low);
  border: 1px solid rgba(64, 103, 82, 0.2);
  color: var(--ink-soft);
  padding: 0.15rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 800;
  color: var(--primary);
}

.blog-card-link .material-symbols-outlined {
  font-size: 1rem;
}

.blog-empty {
  color: var(--ink-soft);
}

/* Post */
.blog-post {
  max-width: 46rem;
}

.blog-breadcrumb {
  display: flex;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}

.blog-breadcrumb a {
  color: var(--ink-soft);
}

.blog-post-header h1 {
  margin: 0.5rem 0;
  font-size: clamp(1.9rem, 4.6vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.blog-post-standfirst {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 1rem;
}

.blog-toc {
  background: var(--surface-low);
  border: 1px solid rgba(64, 103, 82, 0.18);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  margin: 2rem 0;
}

.blog-toc p {
  margin: 0 0 0.5rem;
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

.blog-toc ol {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.35rem;
}

.blog-toc a {
  color: var(--primary-dim);
}

.blog-post-body {
  font-size: 1.03rem;
  line-height: 1.75;
}

.blog-post-body h2 {
  margin: 2.4rem 0 0.8rem;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  scroll-margin-top: 6rem;
}

.blog-post-body h3 {
  margin: 1.8rem 0 0.6rem;
  font-size: 1.15rem;
}

.blog-post-body p {
  margin: 0 0 1.1rem;
}

.blog-post-body ul {
  margin: 0 0 1.3rem;
  padding-left: 1.3rem;
  display: grid;
  gap: 0.5rem;
}

.blog-figure {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

.blog-figure img {
  display: block;
  width: min(320px, 100%);
  height: auto;
}

.blog-figure figcaption {
  font-size: 0.88rem;
  color: var(--ink-soft);
  text-align: center;
  max-width: 34rem;
}

.blog-inline-link {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  font-weight: 600;
}

.blog-inline-link:hover {
  text-decoration-thickness: 2px;
}

.blog-callout {
  background: var(--primary-soft);
  border-radius: 1rem;
  padding: 1.1rem 1.3rem;
  margin: 1.8rem 0;
}

.blog-callout strong {
  display: block;
  margin-bottom: 0.35rem;
}

.blog-callout p {
  margin: 0;
  color: #2f4d3d;
}

.blog-post-cta {
  margin-top: 3rem;
  padding: 1.8rem;
  border-radius: 1.35rem;
  background: var(--surface-low);
  border: 1px solid rgba(64, 103, 82, 0.2);
  text-align: center;
}

.blog-post-cta h2 {
  margin-top: 0;
}

.blog-post-cta p {
  color: var(--ink-soft);
}

.blog-post-back {
  margin-top: 2rem;
}

.blog-post-back a {
  color: var(--primary-dim);
  font-weight: 700;
}

/* Shared FAQ block (also carries FAQPage structured data) */
.faq-section {
  margin-top: 3rem;
}

.faq-list {
  display: grid;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid rgba(175, 179, 172, 0.32);
  border-radius: 1rem;
  padding: 0.9rem 1.15rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--primary);
  font-weight: 800;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0.7rem 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

@media (max-width: 720px) {
  .blog-card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .blog-card-media {
    max-width: 130px;
  }
}

/* ── Check-video score detail page (/check-video/:videoId) ─────────────── */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.score-detail-breadcrumb {
  margin-top: 1.2rem;
}

.score-detail-breadcrumb a {
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.score-detail-breadcrumb a:hover {
  color: var(--primary-dim);
}

.score-detail-state {
  margin: 3rem auto;
  text-align: center;
}

.score-detail-state h1 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
}

.score-detail-state p {
  margin: 0 auto 1.2rem;
  max-width: 46ch;
  color: var(--ink-soft);
  line-height: 1.65;
}

.score-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 1.4rem;
  margin-top: 1rem;
  padding: 1.1rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.score-detail-hero-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 1.1rem;
  object-fit: cover;
}

.score-detail-hero-body h1 {
  margin: 0.3rem 0 0.2rem;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  line-height: 1.25;
}

.score-detail-score {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.7rem;
}

.score-detail-score-age {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.score-detail-age-picker {
  margin-top: 1.1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(175, 179, 172, 0.26);
}

.score-detail-age-picker > label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 800;
}

.score-detail-block {
  margin-top: 2.4rem;
}

.score-detail-block > h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
}

.score-detail-lede {
  margin: 0 0 1.2rem;
  max-width: 68ch;
  color: var(--ink-soft);
  line-height: 1.7;
}

.score-detail-subhead {
  margin: 1rem 0 0.2rem;
  font-size: 0.95rem;
}

.score-detail-empty,
.score-detail-adjustment,
.score-detail-confidence {
  margin: 0.9rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: var(--surface-low);
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── Age curve chart ───────────────────────────────────────────────────── */

.age-curve {
  margin: 0;
  padding: 1.1rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.age-curve-caption h3 {
  margin: 0 0 0.25rem;
  font-size: 1.02rem;
}

.age-curve-caption p {
  margin: 0 0 0.7rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

.age-curve-plot svg {
  display: block;
  width: 100%;
  height: auto;
}

.age-curve-line {
  stroke: var(--ink);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* The 2px surface ring keeps dots legible where they sit on the line, and is
   part of the hover target rather than decoration. */
.age-curve-dot {
  stroke: var(--surface);
  stroke-width: 2;
}

.age-curve-grid {
  stroke: var(--surface-high);
  stroke-width: 1;
}

.age-curve-threshold {
  stroke: var(--ink-soft);
  stroke-width: 1;
  opacity: 0.55;
}

.age-curve-threshold-label,
.age-curve-zone-label,
.age-curve-axis-title {
  fill: var(--ink-soft);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.age-curve-zone-label {
  font-size: 11.5px;
}

.age-curve-tick {
  fill: var(--ink-soft);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.age-curve-tick.is-active {
  fill: var(--ink);
}

.age-curve-value {
  fill: var(--ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 900;
}

/* Both floating labels sit over the plot, so they carry a surface halo — the
   text equivalent of the dots' surface ring — and stay readable wherever the
   curve happens to run. */
.age-curve-value,
.age-curve-threshold-label {
  paint-order: stroke fill;
  stroke: var(--surface);
  stroke-width: 3px;
  stroke-linejoin: round;
}

.age-curve-hit {
  cursor: pointer;
}

.age-curve-readout {
  margin: 0.5rem 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.age-curve-readout strong {
  color: var(--ink);
}

.age-curve-note {
  margin: 0.9rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: var(--surface-low);
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.6;
}

.age-curve-table {
  margin-top: 0.9rem;
}

.age-curve-table summary {
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

.age-curve-table table {
  width: 100%;
  margin-top: 0.7rem;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.age-curve-table th,
.age-curve-table td {
  padding: 0.4rem 0.6rem;
  border-bottom: 1px solid var(--surface-mid);
  text-align: left;
  font-variant-numeric: tabular-nums;
}

.age-curve-table thead th {
  color: var(--ink-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.age-curve-table tbody tr.is-selected {
  background: var(--surface-low);
}

/* ── Score factors ─────────────────────────────────────────────────────── */

.score-detail-factors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.score-detail-factor {
  padding: 1rem;
  border: 1px solid var(--surface-high);
  border-radius: 1.2rem;
  background: var(--surface);
}

.score-detail-factor.is-positive {
  border-color: rgba(46, 125, 79, 0.34);
}

.score-detail-factor.is-negative {
  border-color: rgba(192, 52, 47, 0.3);
}

.score-detail-factor-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.score-detail-factor-head h3 {
  flex: 1 1 auto;
  margin: 0;
  font-size: 1rem;
}

.score-detail-factor-icon {
  font-size: 1.1rem;
}

/* Impact never rides colour alone — the symbol and the wording carry it too. */
.score-detail-impact {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: var(--surface-low);
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 900;
}

.score-detail-impact.is-positive {
  background: var(--primary-soft);
  color: var(--primary-dim);
}

.score-detail-impact.is-negative {
  background: rgba(192, 52, 47, 0.12);
  color: #8f2525;
}

.score-detail-factor-note {
  margin: 0.7rem 0 0;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.55;
}

.score-detail-factor-what {
  margin: 0.55rem 0 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.6;
}

/* ── Language explainer ────────────────────────────────────────────────── */

.score-detail-language-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0.9rem;
}

.score-detail-language-card {
  padding: 1.1rem;
  border-radius: 1.2rem;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.score-detail-language-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.score-detail-language-card p {
  margin: 0 0 0.6rem;
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.65;
}

.score-detail-language-detected,
.score-detail-language-note {
  margin: 0.7rem 0 0 !important;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(175, 179, 172, 0.26);
  font-size: 0.88rem !important;
}

.score-detail-language-detected strong {
  color: var(--ink);
}

.score-detail-limits ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.score-detail-limits li {
  margin-bottom: 0.45rem;
}

@media (max-width: 860px) {
  .score-detail-hero {
    grid-template-columns: 1fr;
  }

  .score-detail-hero-media img {
    max-width: 420px;
  }
}

@media (max-width: 720px) {
  /* Squeezing eleven age ticks into a phone width shrinks the labels past
     reading size. Let the chart scroll inside its own card instead — the page
     itself never scrolls sideways, and the table below carries every value for
     anyone who would rather not scroll at all. */
  .age-curve-plot {
    overflow-x: auto;
  }

  .age-curve-plot svg {
    min-width: 560px;
  }

  .score-detail-factors,
  .score-detail-language-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Channel pages (/channels/*) ───────────────────────────────────────────
   Rendered server-side by Laravel, not by this app — see safenet-bknd's
   resources/views/site/. The markup lives there; the design lives here, so both
   halves of the site share one set of tokens. Keep these selectors additive: any
   rule below is also being applied to pages this build never sees.            */

.channel-page {
  padding: 2.5rem 0 4rem;
}

.channel-detail {
  max-width: 62rem;
}

.channel-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.channel-breadcrumb a {
  color: var(--ink-soft);
  text-decoration: none;
}

.channel-breadcrumb a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.channel-detail-header {
  margin-bottom: 2.5rem;
}

.channel-detail-header h1 {
  font-size: clamp(1.9rem, 4.5vw, 2.7rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  text-wrap: balance;
}

/* The citable claim. Set larger than body copy because it is the first thing a
   reader should land on, and it is the sentence most likely to be quoted. */
.channel-answer {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 46rem;
  margin: 0 0 1.25rem;
}

.channel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.channel-tag {
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--surface-low);
  border: 1px solid var(--surface-high);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  color: var(--ink-soft);
}

.channel-section {
  margin-bottom: 3rem;
}

.channel-section h2 {
  font-size: 1.45rem;
  margin: 0 0 0.75rem;
  text-wrap: balance;
}

.channel-section > p {
  max-width: 46rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 1rem;
}

.channel-reading {
  color: var(--ink) !important;
}

.channel-note {
  background: var(--surface-low);
  border-left: 3px solid var(--primary);
  border-radius: 0 0.6rem 0.6rem 0;
  padding: 0.9rem 1.1rem;
  font-size: 0.94rem;
  color: var(--ink-soft);
  max-width: 46rem;
}

/* Tables scroll inside their own container so a narrow viewport never scrolls
   the page sideways. */
.channel-table-wrap {
  overflow-x: auto;
  margin: 0 0 1.25rem;
}

.channel-score-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 34rem;
  font-variant-numeric: tabular-nums;
  background: var(--surface);
  border-radius: 0.8rem;
  overflow: hidden;
}

.channel-score-table th,
.channel-score-table td {
  text-align: left;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--surface-mid);
}

.channel-score-table thead th {
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--surface-low);
  white-space: nowrap;
}

.channel-score-table tbody tr:last-child th,
.channel-score-table tbody tr:last-child td {
  border-bottom: 0;
}

.channel-score-table tbody th {
  font-weight: 600;
}

.channel-score-table a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.channel-score-table a:hover {
  text-decoration: underline;
}

.channel-score-cell {
  font-weight: 700;
}

/* The band the channel is actually aimed at. Marked with weight and a rule as
   well as tint, so it does not rely on colour alone. */
.channel-score-table tr.is-best {
  background: var(--primary-soft);
  box-shadow: inset 3px 0 0 var(--primary);
}

.channel-score-table tr.is-best th,
.channel-score-table tr.is-best td {
  font-weight: 700;
}

.channel-rank {
  color: var(--ink-soft);
  width: 3rem;
}

.channel-video-list,
.channel-similar-list,
.channel-hub-links,
.channel-hub-grid {
  list-style: none;
  padding: 0;
  margin: 0;
}

.channel-video-list li {
  border-bottom: 1px solid var(--surface-mid);
}

.channel-video-list a {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.75rem 0.25rem;
  text-decoration: none;
  color: var(--ink);
}

.channel-video-list a:hover .channel-video-title {
  text-decoration: underline;
}

.channel-video-score {
  flex: none;
  min-width: 2.6rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--primary);
  color: #fff;
  border-radius: 0.5rem;
  padding: 0.3rem 0.4rem;
}

.channel-video-title {
  line-height: 1.4;
}

.channel-similar-list,
.channel-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  gap: 0.75rem;
}

.channel-similar-list a,
.channel-hub-grid a {
  display: block;
  background: var(--surface);
  border: 1px solid var(--surface-high);
  border-radius: 0.8rem;
  padding: 0.9rem 1rem;
  text-decoration: none;
  color: var(--ink);
}

.channel-similar-list a:hover,
.channel-hub-grid a:hover {
  border-color: var(--primary);
}

.channel-similar-list strong,
.channel-hub-grid strong {
  display: block;
  margin-bottom: 0.2rem;
}

.channel-similar-list span,
.channel-hub-grid span {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.channel-hub-links li {
  margin-bottom: 0.4rem;
}

.channel-hub-links a {
  color: var(--primary);
  font-weight: 600;
}

.channel-faq-item {
  border-top: 1px solid var(--surface-mid);
  padding: 1.1rem 0;
}

.channel-faq-item h3 {
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
}

.channel-faq-item p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 46rem;
}

.channel-cta {
  background: var(--surface-low);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

.channel-cta h2 {
  margin: 0 0 0.6rem;
  font-size: 1.35rem;
}

.channel-cta p {
  max-width: 34rem;
  margin: 0 auto 1.25rem;
  color: var(--ink-soft);
}

.channel-disclosure {
  border-top: 1px solid var(--surface-high);
  padding-top: 1.25rem;
  margin-bottom: 1.5rem;
}

.channel-disclosure p {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  max-width: 46rem;
}

.channel-back a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.channel-back a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .channel-cta {
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.15rem;
  }
}

/* Cross-link from the interactive picker to the server-rendered channel tier. */
.top-channels-crosslink {
  text-align: center;
  padding: 2rem 0 0.5rem;
}

.top-channels-crosslink h2 {
  font-size: 1.35rem;
  margin: 0 0 0.6rem;
}

.top-channels-crosslink p {
  max-width: 38rem;
  margin: 0 auto 1.1rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.top-channels-crosslink-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  border: 2px solid var(--primary);
  border-radius: 999px;
  padding: 0.6rem 1.3rem;
}

.top-channels-crosslink-cta:hover {
  background: var(--primary);
  color: #fff;
}

.top-channels-crosslink-cta .material-symbols-outlined {
  font-size: 1.1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.4rem;
  margin: 0.5rem 0;
}

.footer-links a {
  color: var(--ink-soft);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary);
  text-decoration: underline;
}
