:root {
  color-scheme: light;
  --ink: #17131e;
  --ink-soft: #5f586a;
  --paper: #f8f7fb;
  --surface: #ffffff;
  --line: rgba(23, 19, 30, 0.14);
  --purple: #7a35ef;
  --pink: #ef35c5;
  --blue: #8de8ff;
  --acid: #dffb72;
  --dark: #17131e;
  --max: 1240px;
  --header-h: 70px;
  font-family: Geist, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: inherit;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(23, 19, 30, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 19, 30, 0.024) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

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

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

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

button {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--dark);
  color: #fff;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 14px;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 28px), var(--max));
  height: var(--header-h);
  padding: 10px 12px 10px 16px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: rgba(248, 247, 251, 0.84);
  box-shadow: 0 12px 40px rgba(23, 19, 30, 0.11);
  backdrop-filter: blur(18px) saturate(140%);
  transition: background-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 24px rgba(23, 19, 30, 0.14);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-size: 1.05rem;
  font-weight: 780;
}

.brand img,
.footer-brand img {
  border-radius: 8px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 36px);
  font-size: 0.88rem;
  font-weight: 640;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  color: #393240;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--pink);
  transition: transform 200ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-action {
  justify-self: end;
  padding: 13px 18px;
  border-radius: 7px;
  background: var(--dark);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 720;
  transition: transform 180ms ease, background-color 180ms ease;
}

.header-action:hover {
  transform: translateY(-2px);
  background: var(--purple);
}

.menu-toggle {
  display: none;
}

.site-main {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  background: #231a2a;
  color: #fff;
}

.hero-gallery,
.hero-wash {
  position: absolute;
  inset: 0;
}

.hero-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  background: #231a2a;
}

.portrait {
  position: relative;
  height: 100%;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #2b2232;
}

.portrait::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to bottom, rgba(17, 12, 22, 0.08), rgba(17, 12, 22, 0.5));
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.08);
  transition: transform 900ms cubic-bezier(.2, .75, .25, 1), filter 500ms ease;
}

.portrait:hover img {
  transform: scale(1.055);
  filter: saturate(1) contrast(1.04);
}

.portrait-a,
.portrait-f {
  opacity: 0.66;
}

.portrait-b,
.portrait-e {
  opacity: 0.82;
}

.hero-wash {
  background:
    radial-gradient(ellipse at center, rgba(22, 13, 28, 0.12) 0%, rgba(22, 13, 28, 0.76) 72%),
    linear-gradient(to bottom, rgba(10, 7, 13, 0.5), transparent 32%, rgba(10, 7, 13, 0.46));
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 92svh;
  width: min(calc(100% - 40px), 1120px);
  margin: 0 auto;
  padding: 136px 0 110px;
  text-align: center;
}

.age-mark {
  margin: 0 0 24px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 5px;
  background: rgba(20, 14, 25, 0.46);
  font-size: 0.78rem;
  font-weight: 720;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(3.55rem, 8vw, 7.4rem);
  line-height: 0.94;
  font-weight: 810;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--blue);
}

.hero-intro {
  max-width: 720px;
  margin: 30px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.02rem, 1.6vw, 1.24rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 0.92rem;
  font-weight: 730;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

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

.button-primary:hover {
  background: var(--acid);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(17, 12, 22, 0.35);
  color: #fff;
}

.button-ghost:hover {
  border-color: #fff;
  background: rgba(17, 12, 22, 0.68);
}

.hero-cue {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  font-weight: 680;
}

.hero-cue span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
}

.chapter {
  padding: clamp(112px, 14vw, 190px) max(24px, calc((100vw - var(--max)) / 2));
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.65fr);
  align-items: end;
  gap: 40px;
  margin-bottom: clamp(54px, 7vw, 94px);
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -20px;
}

.eyebrow {
  margin: 0;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 780;
  text-transform: uppercase;
}

.section-heading h2,
.safety-heading h2,
.availability h2,
.policy-hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5.3vw, 5.5rem);
  line-height: 0.98;
  font-weight: 800;
  text-wrap: balance;
}

.section-heading > p:last-child,
.safety-heading > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 10px;
}

.feature {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 390px;
  overflow: hidden;
  padding: clamp(26px, 3.6vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(23, 19, 30, 0.12);
}

.feature h3 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1.05;
}

.feature p {
  max-width: 540px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.feature-match {
  grid-column: span 7;
  background:
    linear-gradient(135deg, rgba(141, 232, 255, 0.28), transparent 48%),
    #fff;
}

.feature-rooms {
  grid-column: span 5;
  background: var(--dark);
  color: #fff;
}

.feature-rooms p {
  color: rgba(255, 255, 255, 0.68);
}

.feature-chat {
  grid-column: span 5;
  background: #f3eaff;
}

.feature-control {
  grid-column: span 7;
  background:
    linear-gradient(120deg, rgba(239, 53, 197, 0.16), transparent 56%),
    #fff;
}

.mood-orbit {
  position: relative;
  align-self: flex-end;
  width: min(100%, 420px);
  height: 176px;
  margin-top: 30px;
}

.mood-orbit::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--line);
}

.mood-orbit span {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 98px;
  height: 98px;
  transform: translateY(-50%);
  border: 1px solid rgba(122, 53, 239, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 36px rgba(56, 32, 86, 0.13);
}

.mood-orbit span:nth-child(1) { left: 0; }
.mood-orbit span:nth-child(2) { left: calc(50% - 49px); width: 118px; height: 118px; }
.mood-orbit span:nth-child(3) { right: 0; }
.mood-orbit img { width: 76%; height: 76%; object-fit: contain; }

.room-people {
  display: flex;
  align-items: center;
  padding: 8px 0 40px 16px;
}

.room-people img {
  width: clamp(82px, 8vw, 118px);
  aspect-ratio: 1;
  margin-left: -16px;
  border: 4px solid var(--dark);
  border-radius: 50%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.feature-rooms:hover .room-people img:nth-child(1) { transform: translateX(-4px) rotate(-3deg); }
.feature-rooms:hover .room-people img:nth-child(2) { transform: translateY(-7px); }
.feature-rooms:hover .room-people img:nth-child(3) { transform: translateX(4px) rotate(3deg); }

.voice-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 128px;
  margin-top: 34px;
}

.voice-wave i {
  width: 8px;
  height: 22%;
  border-radius: 5px;
  background: var(--purple);
  animation: wave 1.15s ease-in-out infinite alternate;
}

.voice-wave i:nth-child(2), .voice-wave i:nth-child(8) { height: 40%; animation-delay: -0.4s; }
.voice-wave i:nth-child(3), .voice-wave i:nth-child(7) { height: 66%; animation-delay: -0.8s; }
.voice-wave i:nth-child(4), .voice-wave i:nth-child(6) { height: 84%; animation-delay: -0.2s; }
.voice-wave i:nth-child(5) { height: 100%; animation-delay: -0.6s; background: var(--pink); }

@keyframes wave {
  to { transform: scaleY(0.58); }
}

.control-symbol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100%, 470px);
  height: 150px;
  gap: 8px;
  margin: 0 0 42px auto;
}

.control-symbol span {
  border: 1px solid rgba(23, 19, 30, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.control-symbol span:nth-child(1) { background: var(--acid); }
.control-symbol span:nth-child(2) { background: var(--blue); }
.control-symbol span:nth-child(3) { background: var(--pink); }

.safety {
  background: var(--dark);
  color: #fff;
}

.safety-rail {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(440px, 1.18fr);
  gap: clamp(54px, 8vw, 130px);
}

.safety-heading {
  align-self: start;
}

.safety-heading .eyebrow {
  color: var(--blue);
}

.safety-heading h2 {
  margin: 18px 0 28px;
}

.safety-heading > p {
  color: rgba(255, 255, 255, 0.66);
}

.text-link {
  display: inline-flex;
  gap: 10px;
  margin-top: 34px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.54);
  color: #fff;
  font-weight: 680;
}

.safety-stories {
  display: grid;
  gap: 18px;
}

.story {
  position: sticky;
  top: 116px;
  display: grid;
  grid-template-rows: minmax(210px, 1fr) auto;
  min-height: 470px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  background: #28222f;
  box-shadow: 0 -18px 46px rgba(8, 6, 10, 0.2);
}

.story:nth-child(2) { top: 132px; background: #efe9fb; color: var(--ink); }
.story:nth-child(3) { top: 148px; background: var(--acid); color: var(--ink); }

.story img {
  align-self: center;
  justify-self: center;
  width: min(70%, 300px);
  max-height: 270px;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.2));
}

.story-number {
  align-self: center;
  justify-self: end;
  font-size: clamp(6rem, 14vw, 11rem);
  line-height: 0.8;
  font-weight: 800;
  color: rgba(23, 19, 30, 0.12);
}

.story > div:last-child {
  display: grid;
  gap: 8px;
}

.story strong {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.story span {
  max-width: 570px;
  color: currentColor;
  opacity: 0.72;
  line-height: 1.55;
}

.voice-statement {
  display: grid;
  min-height: 86svh;
  place-items: center;
  padding: 100px 24px;
  background:
    linear-gradient(115deg, rgba(141, 232, 255, 0.46), transparent 38%),
    linear-gradient(295deg, rgba(239, 53, 197, 0.2), transparent 46%),
    var(--paper);
}

.voice-statement p {
  max-width: 1080px;
  margin: 0;
  text-align: center;
  font-size: clamp(3.2rem, 8.5vw, 8rem);
  line-height: 0.96;
  font-weight: 810;
  text-wrap: balance;
}

.scrub-word {
  display: inline-block;
  opacity: 0.16;
}

.support {
  background: #fff;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(440px, 1.3fr);
  gap: clamp(60px, 10vw, 150px);
}

.support .section-heading {
  display: block;
  margin: 0;
}

.support .section-heading h2 {
  margin-top: 18px;
}

.support-links {
  border-top: 1px solid var(--line);
}

.support-links a {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 114px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  transition: color 180ms ease, padding-left 180ms ease;
}

.support-links a:hover {
  padding-left: 10px;
  color: var(--purple);
}

.support-links span {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 650;
}

.support-links strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 1.06rem;
}

.support-links b {
  font-size: 1.4rem;
}

.availability {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(110px, 15vw, 200px) 24px;
  background: var(--dark);
  color: #fff;
  text-align: center;
}

.availability img {
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(239, 53, 197, 0.28);
}

.availability h2 {
  max-width: 1040px;
  margin-top: 42px;
}

.availability p {
  margin: 22px 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.08rem;
}

.store-status {
  display: inline-flex;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 7px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 680;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 34px max(24px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--dark);
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  font-size: 0.82rem;
}

.site-footer > p {
  justify-self: end;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  text-align: right;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
}

/* Privacy policy */
.policy-page {
  background: #f7f6fa;
}

.policy-main {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 148px 0 120px;
}

.policy-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.42fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
  min-height: 570px;
  padding-bottom: 94px;
  border-bottom: 1px solid var(--line);
}

.policy-hero h1 {
  max-width: 900px;
  margin: 22px 0 28px;
}

.policy-lead {
  max-width: 770px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
  line-height: 1.7;
}

.policy-hero > img {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 28px 42px rgba(64, 30, 100, 0.18));
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin: 42px 0 0;
}

.policy-meta div {
  display: grid;
  gap: 5px;
}

.policy-meta dt {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 680;
  text-transform: uppercase;
}

.policy-meta dd {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 720;
}

.policy-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 800px);
  justify-content: space-between;
  gap: clamp(60px, 10vw, 150px);
  padding-top: 90px;
}

.policy-toc {
  position: sticky;
  top: 108px;
  align-self: start;
}

.policy-toc > p {
  margin: 0 0 16px;
  font-size: 0.76rem;
  font-weight: 760;
  text-transform: uppercase;
}

.policy-toc nav {
  display: grid;
  border-top: 1px solid var(--line);
}

.policy-toc a {
  padding: 9px 4px;
  border-bottom: 1px solid rgba(23, 19, 30, 0.08);
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.25;
  transition: color 160ms ease, padding-left 160ms ease;
}

.policy-toc a:hover,
.policy-toc a.is-active {
  padding-left: 10px;
  color: var(--purple);
}

.policy-article section {
  padding: 0 0 68px;
  scroll-margin-top: 110px;
}

.policy-article section + section {
  padding-top: 68px;
  border-top: 1px solid var(--line);
}

.policy-article h2 {
  margin: 0 0 28px;
  font-size: clamp(1.75rem, 3.2vw, 2.7rem);
  line-height: 1.1;
}

.policy-article h3 {
  margin: 34px 0 8px;
  font-size: 1.08rem;
}

.policy-article p,
.policy-article li {
  color: #4f4858;
  font-size: 1rem;
  line-height: 1.78;
}

.policy-article p {
  margin: 0 0 18px;
}

.policy-article ul,
.policy-article ol {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding-left: 24px;
}

.policy-article a {
  color: var(--purple);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.data-table {
  margin: 30px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.data-row {
  display: grid;
  grid-template-columns: minmax(140px, 0.35fr) minmax(0, 1fr);
  gap: 24px;
  padding: 20px 22px;
}

.data-row + .data-row {
  border-top: 1px solid var(--line);
}

.data-row span {
  color: #514a5a;
  line-height: 1.55;
}

.data-head {
  background: var(--dark);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 720;
  text-transform: uppercase;
}

.data-head span {
  color: #fff;
}

.policy-contact {
  padding: 44px !important;
  border: 0 !important;
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
}

.policy-contact h2,
.policy-contact p {
  color: #fff;
}

.policy-contact p {
  opacity: 0.68;
}

.policy-contact > a {
  display: inline-block;
  margin: 6px 0 22px;
  color: var(--blue);
  font-size: clamp(1.28rem, 3vw, 2rem);
  font-weight: 760;
  overflow-wrap: anywhere;
}

.policy-footer {
  border-top-color: rgba(255, 255, 255, 0.14);
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: grid;
    place-content: center;
    gap: 6px;
    justify-self: end;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 7px;
    background: var(--dark);
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-last-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(23, 19, 30, 0.15);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 13px 10px;
  }

  .header-action {
    display: none;
  }

  .hero-gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }

  .section-heading,
  .support-layout {
    grid-template-columns: 1fr;
  }

  .section-heading .eyebrow {
    margin-bottom: -12px;
  }

  .bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-match,
  .feature-rooms,
  .feature-chat,
  .feature-control {
    grid-column: span 1;
  }

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

  .safety-heading {
    position: static !important;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer > p {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }

  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-toc {
    position: static;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
  }

  .policy-toc nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 60px;
  }

  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    padding: 8px 8px 8px 12px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .hero,
  .hero-copy {
    min-height: 91svh;
  }

  .hero-copy {
    width: min(calc(100% - 28px), 1120px);
    padding-top: 116px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

  .age-mark {
    margin-bottom: 18px;
  }

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

  .hero-cue {
    display: none;
  }

  .portrait-a,
  .portrait-f {
    display: none;
  }

  .hero-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .chapter {
    padding-right: 18px;
    padding-left: 18px;
  }

  .section-heading {
    gap: 24px;
  }

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

  .feature {
    min-height: 360px;
  }

  .mood-orbit span {
    width: 82px;
    height: 82px;
  }

  .mood-orbit span:nth-child(2) {
    left: calc(50% - 45px);
    width: 96px;
    height: 96px;
  }

  .story {
    min-height: 410px;
    padding: 25px;
  }

  .voice-statement {
    min-height: 70svh;
  }

  .support-links a {
    grid-template-columns: 1fr auto;
  }

  .support-links span {
    grid-column: 1 / -1;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 18px;
  }

  .site-footer > p {
    grid-column: auto;
  }

  .policy-main {
    width: calc(100% - 32px);
    padding-top: 110px;
  }

  .policy-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 70px 0;
  }

  .policy-hero > img {
    justify-self: center;
    width: min(70%, 250px);
  }

  .policy-meta {
    gap: 20px 30px;
  }

  .policy-layout {
    padding-top: 48px;
  }

  .policy-toc nav {
    grid-template-columns: 1fr;
  }

  .data-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
  }

  .policy-contact {
    margin-right: -6px;
    margin-left: -6px;
    padding: 28px !important;
  }
}

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

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

  .js .reveal,
  .scrub-word {
    opacity: 1 !important;
    transform: none !important;
  }
}
