@font-face {
  font-family: "Bricolage Grotesque";
  src: url("/fonts/bricolage-latin.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("/fonts/bricolage-latin-ext.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  font-family: "Bricolage Grotesque", "Avenir Next", "Segoe UI", sans-serif;
  color: oklch(0.985 0.006 285);
  background: oklch(0.14 0.055 286);
  text-rendering: optimizeLegibility;
  --stage: oklch(0.22 0.075 292);
  --stage-deep: oklch(0.14 0.055 286);
  --stage-raised: oklch(0.29 0.085 295);
  --ink: oklch(0.985 0.006 285);
  --muted: oklch(0.82 0.028 285);
  --pink: oklch(0.68 0.22 352);
  --pink-deep: oklch(0.49 0.19 350);
  --pink-pale: oklch(0.91 0.055 350);
  --blue: oklch(0.66 0.19 247);
  --blue-deep: oklch(0.47 0.17 250);
  --blue-pale: oklch(0.92 0.045 225);
  --surface-light: oklch(0.985 0.004 285);
  --dark-ink: oklch(0.22 0.035 286);
  --dark-muted: oklch(0.42 0.035 286);
  --focus: oklch(0.87 0.16 95);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --measure: 68ch;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

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

::selection {
  color: var(--ink);
  background: var(--pink-deep);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: -60px;
  left: 1rem;
  padding: 0.7rem 1rem;
  border-radius: 0 0 10px 10px;
  color: var(--dark-ink);
  background: var(--focus);
  font-weight: 750;
  transition: top 160ms var(--ease-out);
}

.skip-link:focus {
  top: 0;
}

/* ---------- header ---------- */

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.4rem);
  width: min(100% - 2.5rem, 1180px);
  margin: 0 auto;
  padding: 1.1rem 0;
}

.site-brand {
  position: relative;
  display: grid;
  line-height: 0.82;
  text-decoration: none;
}

.site-brand__small {
  padding-left: 0.18em;
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 750;
  letter-spacing: 0.2em;
}

.site-brand__main {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.site-brand__dots {
  position: absolute;
  top: 1px;
  right: -16px;
  display: grid;
  gap: 3px;
}

.site-brand__dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
}

.site-brand__dots i:last-child {
  background: var(--blue);
}

.site-nav {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: clamp(0.9rem, 2.4vw, 2rem);
}

.site-nav a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
}

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

.site-cta {
  padding: 0.62rem 1.05rem;
  border-radius: 999px;
  color: var(--dark-ink);
  background: var(--ink);
  font-size: 0.82rem;
  font-weight: 790;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms var(--ease-out);
}

.site-cta:hover {
  background: var(--focus);
  transform: translateY(-2px);
}

/* ---------- buttons ---------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.85rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 790;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 170ms var(--ease-out), background 170ms ease;
}

.button--primary {
  color: var(--dark-ink);
  background: var(--ink);
}

.button--primary:hover {
  background: var(--focus);
  transform: translateY(-2px);
}

.button--ghost {
  border-color: oklch(1 0 0 / 0.34);
  color: var(--ink);
  background: transparent;
}

.button--ghost:hover {
  background: oklch(1 0 0 / 0.12);
  transform: translateY(-2px);
}

.text-link {
  color: var(--ink);
  font-weight: 720;
  text-underline-offset: 4px;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  width: min(100% - 2.5rem, 1180px);
  margin: 0 auto;
  padding: clamp(2.5rem, 7vh, 5.5rem) 0 clamp(3rem, 8vh, 6rem);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  top: -30%;
  width: 42%;
  height: 150%;
  content: "";
  opacity: 0.4;
  filter: blur(60px);
  pointer-events: none;
}

.hero::before {
  left: -18%;
  background: radial-gradient(closest-side, var(--pink-deep), transparent);
}

.hero::after {
  right: -18%;
  background: radial-gradient(closest-side, var(--blue-deep), transparent);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5.4vw, 4.4rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero__sub {
  max-width: 52ch;
  margin: 1.3rem 0 1.8rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.6;
  text-wrap: pretty;
}

.team-girl-text {
  color: var(--pink);
}

.team-boy-text {
  color: var(--blue);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.8rem;
}

.hero__join {
  display: flex;
  overflow: hidden;
  border: 1px solid oklch(1 0 0 / 0.32);
  border-radius: 12px;
}

.hero__join input {
  width: 9.5ch;
  padding: 0 1rem;
  border: 0;
  color: var(--ink);
  background: oklch(1 0 0 / 0.08);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero__join input::placeholder {
  color: oklch(0.75 0.02 285);
  letter-spacing: 0;
  opacity: 1;
}

.hero__join input:focus {
  outline: none;
  background: oklch(1 0 0 / 0.16);
}

.hero__join .button {
  min-height: 52px;
  border-radius: 0;
  border-color: transparent;
}

.hero__note {
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

/* hero scene */

.hero-scene {
  position: relative;
  margin: 0;
  padding-bottom: 2.2rem;
}

.tv {
  position: relative;
  margin-right: clamp(2rem, 5vw, 3.5rem);
}

.tv__screen {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  aspect-ratio: 16 / 9.4;
  padding: clamp(1.1rem, 2.5vw, 2rem);
  overflow: hidden;
  border: 6px solid oklch(0.1 0.03 286);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 12%, oklch(0.4 0.11 294 / 0.75), transparent 42%),
    linear-gradient(135deg, var(--stage-deep), var(--stage) 55%, oklch(0.19 0.075 320));
  box-shadow: 0 34px 90px oklch(0.06 0.03 290 / 0.6);
}

.tv__beam {
  position: absolute;
  top: -30%;
  width: 34%;
  height: 140%;
  opacity: 0.5;
  filter: blur(6px);
  animation: beam-drift 9s ease-in-out infinite alternate;
}

.tv__beam--pink {
  left: 2%;
  background: linear-gradient(to bottom, var(--pink), transparent 75%);
  transform: rotate(-16deg);
}

.tv__beam--blue {
  right: 2%;
  background: linear-gradient(to bottom, var(--blue), transparent 75%);
  transform: rotate(16deg);
  animation-delay: -4s;
}

.tv__kicker {
  position: relative;
  margin: 0 0 0.3rem;
  color: var(--muted);
  font-size: clamp(0.5rem, 0.9vw, 0.72rem);
  font-weight: 760;
  letter-spacing: 0.14em;
}

.tv__headline {
  position: relative;
  margin: 0;
  font-size: clamp(1.7rem, 3.4vw, 3rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.tv__count {
  position: relative;
  margin: 0.55rem 0 0.75rem;
  color: var(--muted);
  font-size: clamp(0.7rem, 1.2vw, 0.95rem);
}

.tv__count strong {
  color: var(--ink);
  font-size: 1.35em;
}

.tv__roster {
  position: relative;
  display: flex;
  max-width: 88%;
  flex-wrap: wrap;
  gap: 0.32rem;
}

.tv__roster span {
  padding: 0.28rem 0.55rem;
  border: 1px solid oklch(1 0 0 / 0.26);
  border-radius: 999px;
  background: oklch(0.3 0.07 292 / 0.92);
  font-size: clamp(0.5rem, 0.95vw, 0.74rem);
  font-weight: 640;
  white-space: nowrap;
}

.tv__join {
  position: absolute;
  top: clamp(0.9rem, 2vw, 1.6rem);
  right: clamp(0.9rem, 2vw, 1.6rem);
  display: grid;
  justify-items: center;
  gap: 0.4rem;
  padding: 0.65rem;
  border-radius: 10px;
  color: var(--dark-ink);
  background: var(--surface-light);
}

.tv__qr {
  display: block;
  width: clamp(44px, 6.5vw, 74px);
  aspect-ratio: 1;
  border-radius: 4px;
  background:
    conic-gradient(var(--dark-ink) 25%, transparent 0 50%, var(--dark-ink) 0 75%, transparent 0) 0 0 / 34% 34%,
    repeating-linear-gradient(90deg, var(--dark-ink) 0 8%, transparent 0 16%) 50% 62% / 100% 12% no-repeat,
    repeating-linear-gradient(0deg, var(--dark-ink) 0 8%, transparent 0 16%) 62% 50% / 12% 100% no-repeat;
  outline: 3px solid var(--dark-ink);
  outline-offset: 3px;
  opacity: 0.9;
}

.tv__pin {
  font-size: clamp(0.5rem, 0.8vw, 0.68rem);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.tv__stand {
  width: 34%;
  height: 12px;
  margin: 0 auto;
  border-radius: 0 0 10px 10px;
  background: oklch(0.1 0.03 286);
}

.phone {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(110px, 13vw, 158px);
  transform: rotate(5deg);
  filter: drop-shadow(0 20px 40px oklch(0.06 0.03 290 / 0.55));
}

.phone__screen {
  display: grid;
  gap: 0.42rem;
  padding: 1rem 0.7rem;
  border: 5px solid oklch(0.1 0.03 286);
  border-radius: 20px;
  background: linear-gradient(160deg, var(--stage), var(--stage-deep));
}

.phone__q {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: -0.02em;
}

.phone__choice {
  padding: 0.5rem 0.55rem;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 800;
}

.phone__choice--girl {
  background: var(--pink-deep);
}

.phone__choice--boy {
  background: var(--blue-deep);
}

.phone__or {
  justify-self: center;
  margin: -0.2rem 0;
  color: var(--muted);
  font-size: 0.52rem;
  font-weight: 800;
}

.phone__lock {
  margin-top: 0.2rem;
  padding: 0.5rem;
  border-radius: 8px;
  color: var(--dark-ink);
  background: var(--ink);
  font-size: 0.6rem;
  font-weight: 800;
  text-align: center;
}

/* ---------- sections shared ---------- */

.definition,
.acts,
.compare,
.safety,
.teasers,
.faq,
.studio {
  width: min(100% - 2.5rem, 1180px);
  margin: 0 auto;
  padding: clamp(2.6rem, 7vh, 5rem) 0;
}

.definition h2,
.acts h2,
.compare h2,
.safety h2,
.teasers h2,
.faq h2,
.studio h2 {
  margin: 0 0 1.1rem;
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  font-weight: 790;
  letter-spacing: -0.03em;
  line-height: 1.02;
  text-wrap: balance;
}

/* definition */

.definition {
  border-top: 1px solid oklch(1 0 0 / 0.12);
}

.definition__answer {
  max-width: var(--measure);
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  line-height: 1.65;
  text-wrap: pretty;
}

.definition__answer a {
  color: var(--ink);
}

/* acts */

.acts__intro {
  max-width: var(--measure);
  margin: 0 0 2rem;
  color: var(--muted);
  line-height: 1.6;
}

.acts__list {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.act {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.2rem);
  padding: clamp(1.1rem, 2.5vw, 1.8rem) clamp(1.1rem, 2.5vw, 2rem);
  border: 1px solid oklch(1 0 0 / 0.14);
  border-radius: 16px;
  background: oklch(0.2 0.07 292 / 0.6);
}

.act--two {
  background: linear-gradient(100deg, oklch(0.34 0.13 350 / 0.5), oklch(0.3 0.11 250 / 0.5));
}

.act--four {
  border-color: oklch(1 0 0 / 0.3);
  background: linear-gradient(100deg, var(--pink-deep), var(--blue-deep));
}

.act__num {
  min-width: 2.2ch;
  color: var(--focus);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  text-align: center;
}

.act__body h3 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 780;
  letter-spacing: -0.02em;
}

.act__body p {
  max-width: 56ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.act--four .act__body p {
  color: oklch(0.95 0.02 320);
}

.act__scene {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
  max-width: 200px;
}

.act__scene--lobby span {
  padding: 0.3rem 0.6rem;
  border: 1px solid oklch(1 0 0 / 0.26);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 650;
}

.act__scene--reveal {
  flex-direction: column;
  align-items: flex-end;
}

.chip-girl,
.chip-boy {
  padding: 0.38rem 0.65rem;
  border-radius: 8px;
  font-size: 0.62rem;
  font-weight: 790;
  letter-spacing: 0.04em;
}

.chip-girl {
  background: var(--pink-deep);
}

.chip-boy {
  background: var(--blue-deep);
}

.act__scene--count span {
  display: grid;
  width: 64px;
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid oklch(1 0 0 / 0.3);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 820;
}

.act__scene--pop span {
  font-size: 1.1rem;
  font-weight: 820;
  letter-spacing: 0.04em;
}

.acts__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.acts__cta span {
  color: var(--muted);
  font-size: 0.88rem;
}

/* compare */

.compare__intro {
  max-width: var(--measure);
  margin: 0 0 1.8rem;
  color: var(--muted);
  line-height: 1.6;
}

.compare__scroll {
  overflow-x: auto;
  border: 1px solid oklch(1 0 0 / 0.16);
  border-radius: 16px;
}

.compare__table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.compare__table th,
.compare__table td {
  padding: 0.95rem 1.1rem;
  border-bottom: 1px solid oklch(1 0 0 / 0.12);
  line-height: 1.45;
  text-align: left;
  vertical-align: top;
}

.compare__table thead th {
  background: oklch(0.24 0.08 292);
  font-size: 0.8rem;
  font-weight: 790;
  letter-spacing: 0.05em;
}

.compare__table tbody th {
  color: var(--muted);
  font-weight: 700;
}

.compare__table td {
  color: var(--muted);
}

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

.compare__us {
  color: var(--ink) !important;
  background: oklch(0.32 0.1 322 / 0.45);
  font-weight: 680;
}

thead .compare__us {
  background: linear-gradient(100deg, var(--pink-deep), var(--blue-deep));
}

/* safety */

.safety {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.safety__copy p {
  max-width: var(--measure);
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.65;
  text-wrap: pretty;
}

.safety__copy a {
  color: var(--ink);
}

.safety__badge {
  display: grid;
  justify-items: center;
  gap: 1.1rem;
  padding: 2rem 2.4rem;
  border: 1px dashed oklch(1 0 0 / 0.3);
  border-radius: 18px;
}

.safety__balloon {
  width: 92px;
  aspect-ratio: 0.9;
  border-radius: 50% 50% 50% 50% / 56% 56% 44% 44%;
  background: radial-gradient(circle at 32% 24%, oklch(0.99 0.005 300), oklch(0.9 0.035 315) 38%, oklch(0.72 0.075 305) 82%);
  animation: balloon-bob 3.4s ease-in-out infinite alternate;
}

.safety__label {
  font-size: 0.78rem;
  font-weight: 790;
  letter-spacing: 0.1em;
}

/* teasers */

.teasers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.9rem;
}

.teaser {
  display: grid;
  align-content: start;
  gap: 0.6rem;
  padding: 1.3rem 1.35rem 1.5rem;
  border: 1px solid oklch(1 0 0 / 0.16);
  border-radius: 16px;
  background: oklch(0.2 0.07 292 / 0.6);
  text-decoration: none;
  transition: transform 180ms var(--ease-out), border-color 180ms ease;
}

.teaser:hover {
  border-color: oklch(1 0 0 / 0.4);
  transform: translateY(-4px);
}

.teaser__tag {
  color: var(--focus);
  font-size: 0.66rem;
  font-weight: 790;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.teaser__title {
  font-size: 1.18rem;
  font-weight: 770;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-wrap: balance;
}

.teaser__more {
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 680;
}

.teasers__all {
  margin: 1.4rem 0 0;
}

/* faq */

.faq {
  border-top: 1px solid oklch(1 0 0 / 0.12);
}

.faq-item {
  max-width: var(--measure);
  padding: 1.1rem 0;
  border-bottom: 1px solid oklch(1 0 0 / 0.12);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.12rem;
  font-weight: 770;
  letter-spacing: -0.015em;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  text-wrap: pretty;
}

/* studio */

.studio {
  padding-bottom: clamp(3rem, 9vh, 6rem);
  text-align: left;
}

.studio p {
  max-width: var(--measure);
  margin: 0 0 1.4rem;
  color: var(--muted);
  line-height: 1.65;
}

.studio a:not(.button) {
  color: var(--ink);
}

/* ---------- prose sheet (articles, about, privacy) ---------- */

.prose {
  width: min(100% - 2rem, 820px);
  margin: clamp(1.5rem, 4vh, 3rem) auto clamp(3rem, 7vh, 5rem);
  padding: clamp(1.6rem, 4vw, 3.4rem);
  border-radius: 18px;
  color: var(--dark-ink);
  background: var(--surface-light);
}

.prose--wide {
  width: min(100% - 2rem, 980px);
}

.prose--center {
  text-align: center;
}

.prose h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.04;
  text-wrap: balance;
}

.prose h2 {
  margin: 2.2rem 0 0.7rem;
  font-size: clamp(1.35rem, 2.6vw, 1.8rem);
  font-weight: 780;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.prose h3 {
  margin: 1.6rem 0 0.5rem;
  font-size: 1.14rem;
  font-weight: 760;
}

.prose p,
.prose li {
  max-width: var(--measure);
  color: oklch(0.3 0.03 286);
  line-height: 1.7;
  text-wrap: pretty;
}

.prose p {
  margin: 0 0 1rem;
}

.prose ul,
.prose ol {
  margin: 0 0 1.2rem;
  padding-left: 1.3rem;
}

.prose li {
  margin-bottom: 0.45rem;
}

.prose a {
  color: oklch(0.42 0.16 292);
  font-weight: 640;
  text-underline-offset: 3px;
}

.prose strong {
  color: var(--dark-ink);
}

.prose table {
  width: 100%;
  margin: 0 0 1.2rem;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.prose th,
.prose td {
  padding: 0.7rem 0.8rem;
  border: 1px solid oklch(0.3 0.03 285 / 0.22);
  line-height: 1.5;
  text-align: left;
  vertical-align: top;
}

.prose thead th {
  background: oklch(0.93 0.012 285);
}

.prose .table-scroll {
  overflow-x: auto;
  margin: 0 0 1.2rem;
}

.prose .table-scroll table {
  min-width: 560px;
  margin: 0;
}

.prose blockquote {
  margin: 0 0 1.2rem;
  padding: 0.9rem 1.2rem;
  border-radius: 12px;
  background: oklch(0.94 0.014 300);
  font-weight: 620;
}

.prose blockquote p {
  margin: 0;
}

.crumbs {
  margin-bottom: 1.4rem;
  color: var(--dark-muted);
  font-size: 0.8rem;
  font-weight: 650;
}

.crumbs a {
  color: var(--dark-muted);
}

.crumbs span[aria-hidden] {
  margin: 0 0.3rem;
}

.article-meta {
  margin: -0.3rem 0 1.8rem;
  color: var(--dark-muted);
  font-size: 0.85rem;
}

.article-faq {
  margin-top: 2.4rem;
  padding-top: 0.6rem;
  border-top: 1px solid oklch(0.3 0.03 285 / 0.2);
}

.article-faq .faq-item {
  border-color: oklch(0.3 0.03 285 / 0.16);
}

.article-faq .faq-item h3 {
  color: var(--dark-ink);
}

.article-faq .faq-item p {
  color: oklch(0.3 0.03 286);
}

.article-cta {
  margin-top: 2.6rem;
  padding: 1.5rem 1.6rem;
  border-radius: 16px;
  color: var(--ink);
  background: linear-gradient(110deg, var(--pink-deep), var(--blue-deep));
}

.article-cta p {
  max-width: none;
  margin: 0 0 1rem;
  color: var(--ink);
}

.article-pin {
  margin-top: 2.4rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid oklch(0.3 0.03 285 / 0.2);
  border-radius: 16px;
  background: linear-gradient(150deg, var(--pink-pale), var(--blue-pale));
}

.article-pin h2 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  color: var(--dark-ink);
}

.article-pin__body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
}

/* The pin is a 2:3 asset shown small — it is here to be saved, not to dominate
   the end of the article. */
.article-pin__image {
  flex: 0 0 auto;
  width: 172px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 22px oklch(0.22 0.035 286 / 0.22);
}

.article-pin__copy {
  flex: 1 1 15rem;
}

.article-pin__copy p {
  max-width: none;
  margin: 0 0 1.1rem;
  font-size: 0.95rem;
  color: oklch(0.3 0.03 286);
}

/* Same reason as .article-pin below: a lead CTA sitting directly on a pale prose
   card needs its own fill, because .button--primary is white-on-dark. */
.button--lead,
.prose a.button--lead {
  color: var(--ink);
  background: linear-gradient(110deg, var(--pink-deep), var(--blue-deep));
}

.button--lead:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

/* .button--primary is white-on-dark, made for the stage and the article CTA. On
   this pale card it would vanish, so the save button gets a solid brand fill —
   still clearly secondary to "Start your free show" above it. */
.article-pin .button--primary {
  min-height: 46px;
  color: var(--ink);
  background: var(--pink-deep);
}

.article-pin .button--primary:hover {
  background: oklch(0.42 0.19 344);
}

.notfound-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.article-related {
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid oklch(0.3 0.03 285 / 0.2);
}

.article-related h2 {
  margin: 0 0 0.8rem;
  font-size: 1.15rem;
}

.article-related ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.article-related li {
  margin: 0;
}

.article-related a {
  color: oklch(0.42 0.16 292);
  font-weight: 680;
  text-underline-offset: 3px;
}

/* blog index */

.blog-index__intro {
  margin-bottom: 2rem;
}

.blog-index__list {
  display: grid;
  gap: 1rem;
}

.blog-card {
  display: grid;
  gap: 0.45rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid oklch(0.3 0.03 285 / 0.2);
  border-radius: 14px;
  text-decoration: none;
  transition: transform 180ms var(--ease-out), border-color 180ms ease;
}

.blog-card:hover {
  border-color: oklch(0.42 0.16 292);
  transform: translateY(-3px);
}

.blog-card__tag {
  color: oklch(0.42 0.16 292);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-card h2 {
  margin: 0;
  color: var(--dark-ink);
  font-size: 1.3rem;
  line-height: 1.18;
}

.blog-card p {
  margin: 0;
  color: oklch(0.36 0.03 286);
}

.blog-card__meta {
  margin-top: 0.3rem;
  color: var(--dark-muted);
  font-size: 0.8rem;
}

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid oklch(1 0 0 / 0.14);
  background: oklch(0.11 0.045 286);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.6fr);
  gap: 2.5rem;
  width: min(100% - 2.5rem, 1180px);
  margin: 0 auto;
  padding: clamp(2rem, 5vh, 3.4rem) 0 1.6rem;
}

.site-footer__entity {
  max-width: 70ch;
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.site-footer__credit {
  max-width: 70ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.site-footer__credit a {
  color: var(--ink);
}

.site-footer__links {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.site-footer__links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.site-footer__links a:hover {
  color: var(--ink);
}

.site-footer__note {
  width: min(100% - 2.5rem, 1180px);
  margin: 0 auto;
  padding: 0 0 1.6rem;
  color: oklch(0.62 0.025 285);
  font-size: 0.78rem;
}

/* ---------- consent banner ---------- */

.consent {
  position: fixed;
  z-index: 90;
  right: clamp(0.8rem, 3vw, 1.5rem);
  bottom: clamp(0.8rem, 3vw, 1.5rem);
  left: clamp(0.8rem, 3vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  width: min(100% - 1.6rem, 680px);
  margin: 0 auto;
  padding: 1rem 1.2rem;
  border: 1px solid oklch(1 0 0 / 0.18);
  border-radius: 14px;
  background: oklch(0.17 0.06 288 / 0.96);
  box-shadow: 0 20px 60px oklch(0.06 0.03 290 / 0.5);
  backdrop-filter: blur(8px);
}

.consent[hidden] {
  display: none;
}

.consent p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.consent__actions {
  display: flex;
  flex-shrink: 0;
  gap: 0.5rem;
}

.consent__btn {
  min-height: 40px;
  padding: 0.5rem 1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--dark-ink);
  background: var(--ink);
  font-size: 0.8rem;
  font-weight: 780;
  transition: background 160ms ease, transform 160ms var(--ease-out);
}

.consent__btn:hover {
  background: var(--focus);
  transform: translateY(-1px);
}

.consent__btn--ghost {
  border-color: oklch(1 0 0 / 0.3);
  color: var(--ink);
  background: transparent;
}

.consent__btn--ghost:hover {
  background: oklch(1 0 0 / 0.12);
}

@media (max-width: 560px) {
  .consent {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }

  .consent__actions {
    justify-content: flex-end;
  }
}

/* ---------- motion ---------- */

@keyframes beam-drift {
  from { opacity: 0.34; transform: rotate(-16deg) translateX(-2%); }
  to { opacity: 0.6; transform: rotate(-13deg) translateX(2%); }
}

.tv__beam--blue {
  animation-name: beam-drift-blue;
}

@keyframes beam-drift-blue {
  from { opacity: 0.34; transform: rotate(16deg) translateX(2%); }
  to { opacity: 0.6; transform: rotate(13deg) translateX(-2%); }
}

@keyframes balloon-bob {
  from { transform: translateY(0) rotate(-2deg); }
  to { transform: translateY(-10px) rotate(2deg); }
}

/* ---------- responsive ---------- */

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

  .hero-scene {
    max-width: 640px;
  }

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

  .safety__badge {
    justify-self: start;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}

@media (max-width: 700px) {
  .site-nav {
    display: none;
  }

  .site-header {
    justify-content: space-between;
  }

  .act {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .act__scene {
    display: none;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__join input {
    flex: 1;
  }

  .acts__cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

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