:root {
  --blush: #f6e9e6;
  --blush-deep: #efdcd8;
  --paper: #fffaf8;
  --ink: #2a1622;
  --ink-soft: rgba(42, 22, 34, 0.7);
  --ink-faint: rgba(42, 22, 34, 0.48);
  --rose: #f54264;
  --rose-deep: #d92f50;
  --rose-soft: #ffdde4;
  --violet: #7152e8;
  --violet-deep: #5838cf;
  --violet-soft: #e8e1ff;
  --sun: #ffc94d;
  --mint: #168f72;
  --room: #241019;
  --room-raised: #321722;
  --white: #fffdfd;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --page: 1240px;
  --gutter: clamp(22px, 4.5vw, 68px);
  --z-nav: 50;
}

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

html {
  scroll-behavior: smooth;
  background: var(--blush);
  color-scheme: light;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--blush);
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

h1,
h2,
h3,
p,
blockquote {
  margin: 0;
}

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

p {
  text-wrap: pretty;
}

::selection {
  background: rgba(245, 66, 100, 0.2);
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform 0.2s;
}

.skip-link:focus {
  transform: none;
}

.ambient-blobs {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.ambient-blobs i {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.38;
  animation: blob-drift 24s ease-in-out infinite alternate;
}

.ambient-blobs i:nth-child(1) {
  width: 44vw;
  height: 44vw;
  left: -14vw;
  top: -12vw;
  background: #ffc7ba;
}

.ambient-blobs i:nth-child(2) {
  width: 40vw;
  height: 40vw;
  right: -12vw;
  top: 22vh;
  background: #d5c6ff;
  animation-delay: -6s;
}

.ambient-blobs i:nth-child(3) {
  width: 30vw;
  height: 30vw;
  left: 30vw;
  bottom: -14vw;
  background: #ffdda2;
  animation-delay: -11s;
}

@keyframes blob-drift {
  to {
    transform: translate(4vw, 3vh) scale(1.08);
  }
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  min-height: 82px;
  padding: 16px max(var(--gutter), calc((100vw - var(--page)) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition:
    min-height 0.35s var(--ease),
    background 0.35s,
    box-shadow 0.35s;
}

.site-nav.is-scrolled {
  min-height: 66px;
  background: rgba(246, 233, 230, 0.86);
  box-shadow: 0 1px 0 rgba(42, 22, 34, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.site-nav nav {
  display: flex;
  gap: 28px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 600;
}

.site-nav nav a {
  transition: color 0.2s;
}

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

.nav-cta {
  justify-self: end;
  padding: 12px 21px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  transition:
    transform 0.3s var(--ease),
    background 0.25s;
}

.nav-cta:hover {
  background: var(--violet-deep);
  transform: translateY(-2px);
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.hero {
  width: min(100%, var(--page));
  min-height: 100svh;
  margin: 0 auto;
  padding: 124px var(--gutter) 76px;
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(390px, 500px);
  align-items: center;
  gap: clamp(36px, 6vw, 86px);
}

.hero-badge {
  width: fit-content;
  padding: 9px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(42, 22, 34, 0.08);
  border-radius: 999px;
  background: rgba(255, 253, 253, 0.82);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
  animation: pop-in 0.65s var(--ease) both;
}

.hero-badge svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--rose-deep);
  stroke-width: 2.3;
}

.hero h1 {
  margin-top: 24px;
  font-size: clamp(3rem, 5.5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 800;
  animation: rise-in 0.8s var(--ease) 0.08s both;
}

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

.hero h1 em {
  color: var(--violet-deep);
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 420;
  letter-spacing: -0.025em;
}

.hero-lede {
  max-width: 35em;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  animation: rise-in 0.8s var(--ease) 0.18s both;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 22px;
  animation: rise-in 0.8s var(--ease) 0.28s both;
}

.button {
  min-height: 56px;
  padding: 0 29px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 700;
  transition:
    transform 0.3s var(--ease),
    background 0.25s;
}

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

.button-primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 14px 8px -10px rgba(217, 47, 80, 0.48);
}

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

.text-link {
  padding-bottom: 3px;
  border-bottom: 2px solid rgba(42, 22, 34, 0.18);
  font-size: 0.88rem;
  font-weight: 700;
}

.text-link span {
  margin-left: 6px;
}

.truth-row {
  margin: 38px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 13px 20px;
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 600;
  animation: rise-in 0.8s var(--ease) 0.38s both;
}

.truth-row li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.truth-row i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
}

.hero-stage {
  position: relative;
  animation: rise-in 0.9s var(--ease) 0.16s both;
}

/* ---------------------------------------------------------------------------
   Hero: the anonymous conversation. A real, matched person is present in the
   frame but held out of focus; a live chat plays over them, faces hidden,
   on the 30-minute room timer.
--------------------------------------------------------------------------- */
.anon-card {
  position: relative;
  width: 100%;
  max-width: 470px;
  aspect-ratio: 5 / 6;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 30px;
  background: var(--room);
  box-shadow: 0 44px 84px -38px rgba(42, 22, 34, 0.62);
}

.anon-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px) saturate(1.08);
  transform: scale(1.12);
}

.anon-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 78% at 82% 4%, rgba(113, 82, 232, 0.32), transparent 55%),
    linear-gradient(180deg, rgba(20, 8, 14, 0.34) 0%, rgba(20, 8, 14, 0.12) 38%, rgba(20, 8, 14, 0.9) 100%);
}

.anon-top {
  position: absolute;
  z-index: 2;
  inset: 18px 18px auto 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.anon-badge,
.anon-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 700;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}

.anon-badge {
  background: rgba(20, 8, 14, 0.44);
  color: var(--white);
}

.anon-badge svg {
  width: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
}

.anon-timer {
  background: rgba(245, 66, 100, 0.24);
  color: #ff9aaf;
  font-style: normal;
  font-variant-numeric: tabular-nums;
}

.anon-timer i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff728c;
  box-shadow: 0 0 0 3px rgba(255, 114, 140, 0.2);
}

.anon-chat {
  position: absolute;
  z-index: 2;
  inset: auto 20px 94px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.anon-bubble {
  max-width: 84%;
  margin: 0;
  padding: 12px 15px;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--white);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.anon-them {
  align-self: flex-start;
  border-radius: 18px 18px 18px 6px;
  background: rgba(255, 255, 255, 0.18);
}

.anon-you {
  align-self: flex-end;
  border-radius: 18px 18px 6px 18px;
  background: var(--rose);
}

.anon-typing {
  display: flex;
  gap: 5px;
  width: fit-content;
  padding: 14px 15px;
}

.anon-typing i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  animation: typing-dot 1.2s ease-in-out infinite;
}

.anon-typing i:nth-child(2) {
  animation-delay: 0.15s;
}

.anon-typing i:nth-child(3) {
  animation-delay: 0.3s;
}

.anon-foot {
  position: absolute;
  z-index: 2;
  inset: auto 18px 18px 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1.4;
}

.anon-avas {
  display: flex;
  flex: 0 0 auto;
}

.anon-ava {
  width: 38px;
  height: 38px;
  overflow: hidden;
  border: 2px solid rgba(20, 8, 14, 0.55);
  border-radius: 50%;
}

.anon-ava + .anon-ava {
  margin-left: -14px;
}

.anon-ava img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px) saturate(1.05);
  transform: scale(1.12);
}

.room-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% -10%, rgba(113, 82, 232, 0.18), transparent 37%),
    radial-gradient(circle at 50% 110%, rgba(245, 66, 100, 0.16), transparent 40%), var(--room);
  box-shadow: 0 40px 70px -32px rgba(42, 22, 34, 0.62);
}

.room-card-head {
  padding: 5px 6px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.room-person {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lock-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.lock-mark svg,
.room-card-foot svg {
  width: 14px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2.2;
}

.room-person > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.room-person strong {
  color: var(--white);
  font-size: 0.76rem;
}

.room-person small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.62rem;
}

.room-timer {
  padding: 7px 11px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  background: rgba(245, 66, 100, 0.16);
  color: #ff9aaf;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.room-timer i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff728c;
  box-shadow: 0 0 0 3px rgba(255, 114, 140, 0.2);
}

.match-reason {
  margin: 14px 4px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  white-space: nowrap;
}

.match-reason span {
  margin-right: 3px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.58rem;
}

.match-reason b {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.55rem;
  font-weight: 600;
}

.chat {
  min-height: 400px;
  padding: 20px 6px 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.chat-row-you {
  justify-content: flex-end;
}

.avatar {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
}

.avatar-them {
  background: linear-gradient(135deg, #4c3d79, #7962b2);
}

.avatar-you {
  background: linear-gradient(135deg, var(--rose), #ff849b);
}

.bubble {
  position: relative;
  max-width: 78%;
  padding: 12px 15px;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.55;
}

.js .bubble,
.js .typing-row {
  opacity: 0;
  transform: translateY(14px) scale(0.92);
}

.js .chat.is-playing .bubble,
.js .chat.is-playing .typing-row {
  animation: bubble-in 0.55s var(--ease) forwards;
}

.js .chat.is-playing .chat-row:nth-child(2) .bubble {
  animation-delay: 0.65s;
}

.js .chat.is-playing .chat-row:nth-child(3) .bubble {
  animation-delay: 1.3s;
}

.js .chat.is-playing .chat-row:nth-child(4) .bubble {
  animation-delay: 1.95s;
}

.js .chat.is-playing .typing-row {
  animation-delay: 2.6s;
}

.bubble-them {
  border-radius: 18px 18px 18px 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #f8f3fa;
}

.bubble-you {
  border-radius: 18px 18px 6px 18px;
  background: var(--rose);
  color: var(--white);
}

.reaction {
  position: absolute;
  right: -9px;
  bottom: -12px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--room);
  color: #ff9aaf;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.typing {
  padding: 13px 15px;
  display: flex;
  gap: 5px;
  border-radius: 18px 18px 18px 6px;
  background: rgba(255, 255, 255, 0.1);
}

.typing i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.74);
  animation: typing-dot 1.2s ease-in-out infinite;
}

.typing i:nth-child(2) {
  animation-delay: 0.15s;
}

.typing i:nth-child(3) {
  animation-delay: 0.3s;
}

.room-card-foot {
  padding: 12px 6px 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.62rem;
  font-weight: 600;
}

.room-card-foot svg {
  width: 12px;
  stroke: rgba(255, 255, 255, 0.42);
}

.sticker {
  position: absolute;
  z-index: 3;
  padding: 10px 13px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 12px;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  box-shadow: 0 12px 8px -8px rgba(42, 22, 34, 0.26);
  animation: sticker-float 5s ease-in-out infinite alternate;
}

.sticker-hidden {
  top: -18px;
  right: -12px;
  background: var(--white);
  transform: rotate(4deg);
}

.sticker-hidden svg {
  width: 15px;
  fill: none;
  stroke: var(--violet-deep);
  stroke-width: 2.2;
}

/* real people around the anonymous room — Yoozu opens just one */
.hero-face {
  position: absolute;
  z-index: 4;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--paper);
  box-shadow: 0 16px 30px -12px rgba(42, 22, 34, 0.42);
  animation: sticker-float 6s ease-in-out infinite alternate;
}

.hero-face-1 {
  width: 84px;
  height: 84px;
  top: -28px;
  left: -30px;
}

.hero-face-2 {
  width: 70px;
  height: 70px;
  bottom: 44px;
  left: -34px;
  animation-delay: -2s;
}

.hero-face-3 {
  width: 78px;
  height: 78px;
  bottom: -16px;
  right: -22px;
  animation-delay: -4s;
}

@keyframes pop-in {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
}

@keyframes bubble-in {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes typing-dot {
  45% {
    opacity: 0.35;
    transform: translateY(-4px);
  }
}

@keyframes sticker-float {
  to {
    translate: 0 -9px;
  }
}

.ticker {
  position: relative;
  z-index: 2;
  margin: 8px 0 0;
  padding: 17px 0;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  transform: rotate(-1deg) scale(1.02);
}

.ticker-track {
  width: max-content;
  display: flex;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  animation: ticker-move 28s linear infinite;
}

.ticker-track span {
  padding-right: 34px;
}

.ticker-track b {
  padding: 0 24px;
  color: var(--sun);
}

@keyframes ticker-move {
  to {
    transform: translateX(-50%);
  }
}

.section-label {
  margin-bottom: 18px;
  color: var(--violet-deep);
  font-size: 0.74rem;
  font-weight: 700;
}

.fit-section {
  position: relative;
  padding: clamp(120px, 13vw, 190px) var(--gutter);
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(540px, 1.22fr);
  gap: clamp(64px, 8vw, 128px);
  align-items: center;
  background: var(--paper);
}

.fit-copy {
  justify-self: end;
  max-width: 500px;
}

.fit-copy h2,
.journey-heading h2,
.room-section-copy h2,
.reveal-copy h2,
.waitlist h2 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.fit-copy h2 span,
.journey-heading h2 span {
  color: var(--rose-deep);
}

.fit-copy > p:last-child,
.journey-heading > p:last-child,
.room-section-copy > p:last-child,
.reveal-copy > p:last-child {
  max-width: 54ch;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.75;
}

.fit-map {
  position: relative;
  min-height: 460px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(4px, 1.5vw, 18px);
}

/* ---------------------------------------------------------------------------
   Anonymous person card — the page's signature object.
   A dating-app profile card whose "photo" is a code-native silhouette held
   behind frosted glass: present as a person, withheld as an identity. The
   same object reappears at the reveal, where the frost clears.
--------------------------------------------------------------------------- */
.person-card {
  position: relative;
  width: 100%;
  max-width: 258px;
  border-radius: 26px;
  overflow: hidden;
  background: var(--room);
  box-shadow: 0 34px 60px -34px rgba(42, 22, 34, 0.55);
}

.pc-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  isolation: isolate;
}

.person-card[data-tone='you'] .pc-portrait {
  background: radial-gradient(116% 90% at 50% 12%, #ff9aac 0%, var(--rose) 46%, #b81f42 100%);
}

.person-card[data-tone='them'] .pc-portrait {
  background: radial-gradient(116% 90% at 50% 12%, #ad95ff 0%, var(--violet) 48%, #3f28a6 100%);
}

.pc-figure {
  position: absolute;
  left: 50%;
  bottom: -3%;
  width: 74%;
  translate: -50% 0;
  fill: rgba(255, 255, 255, 0.9);
  filter: blur(6px);
}

/* the real (but obscured) person: a frosted portrait photo over the tone.
   The silhouette below is the graceful fallback if the image fails. */
.pc-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(9px) saturate(1.06);
  transform: scale(1.12);
}

/* frosted anonymity veil + tone wash + bottom scrim so tags stay legible */
.pc-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20, 8, 14, 0.78));
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.person-card[data-tone='you'] .pc-portrait::after {
  background:
    linear-gradient(158deg, rgba(245, 66, 100, 0.36), transparent 56%),
    linear-gradient(180deg, transparent 40%, rgba(20, 8, 14, 0.8));
}

.person-card[data-tone='them'] .pc-portrait::after {
  background:
    linear-gradient(158deg, rgba(113, 82, 232, 0.38), transparent 56%),
    linear-gradient(180deg, transparent 40%, rgba(20, 8, 14, 0.8));
}

.pc-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(20, 8, 14, 0.42);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.58rem;
  font-weight: 700;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.pc-badge svg {
  width: 11px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
}

.pc-scrim {
  position: absolute;
  z-index: 2;
  inset: auto 0 0 0;
  padding: 16px 16px 15px;
  color: var(--white);
}

.pc-name {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pc-tags {
  margin-top: 9px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pc-tags b {
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.56rem;
  font-weight: 600;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

/* the two cards lean toward each other; the match closes the gap */
.fit-card-you {
  justify-self: end;
  rotate: -5deg;
  transition:
    rotate 0.7s var(--ease),
    translate 0.7s var(--ease);
}

.fit-card-them {
  justify-self: start;
  rotate: 5deg;
  transition:
    rotate 0.7s var(--ease),
    translate 0.7s var(--ease);
}

.fit-map.is-active .fit-card-you {
  rotate: -2deg;
  translate: 10px 0;
}

.fit-map.is-active .fit-card-them {
  rotate: 2deg;
  translate: -10px 0;
}

/* the bridge between the two cards */
.fit-bridge {
  position: relative;
  width: clamp(92px, 12vw, 148px);
  height: 150px;
  display: grid;
  place-items: center;
}

.fit-spark {
  position: absolute;
  top: 50%;
  left: 8%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 12px rgba(255, 201, 77, 0.8);
  opacity: 0;
}

.fit-map.is-active .fit-spark {
  animation: fit-travel 1.9s var(--ease) infinite;
}

.fit-spark:nth-child(2) {
  animation-delay: 0.63s;
}

.fit-spark:nth-child(3) {
  animation-delay: 1.26s;
}

@keyframes fit-travel {
  0% {
    left: 6%;
    opacity: 0;
    transform: translateY(-50%) scale(0.5);
  }
  22% {
    opacity: 1;
  }
  78% {
    opacity: 1;
  }
  100% {
    left: 94%;
    opacity: 0;
    transform: translateY(-50%) scale(1.15);
  }
}

.fit-node {
  position: relative;
  z-index: 2;
  width: clamp(96px, 11vw, 126px);
  height: clamp(96px, 11vw, 126px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 18px 30px -16px rgba(42, 22, 34, 0.62);
}

.fit-map.is-active .fit-node {
  animation: mutual-pop 0.75s var(--ease) both;
}

@keyframes mutual-pop {
  45% {
    transform: scale(1.09);
  }
}

.fit-node img {
  width: 32px;
  margin-bottom: 5px;
}

.fit-node b {
  font-size: 0.74rem;
  font-weight: 700;
}

.fit-node small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.55rem;
}

.journey {
  padding: clamp(110px, 12vw, 170px) var(--gutter);
  background: var(--blush);
}

.journey-heading {
  width: min(100%, var(--page));
  margin: 0 auto;
  text-align: center;
}

.journey-heading > p:last-child {
  margin-right: auto;
  margin-left: auto;
}

.journey-list {
  width: min(100%, 1080px);
  margin: 70px auto 0;
  padding: 0;
  border-top: 1px solid rgba(42, 22, 34, 0.13);
  list-style: none;
}

.journey-step {
  min-height: 220px;
  padding: 32px 0;
  display: grid;
  grid-template-columns: 70px minmax(260px, 0.8fr) minmax(300px, 1.2fr);
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid rgba(42, 22, 34, 0.13);
}

.step-number {
  align-self: start;
  color: var(--rose-deep);
  font-size: 0.75rem;
  font-weight: 700;
}

.journey-step h3 {
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  letter-spacing: -0.03em;
  font-weight: 800;
}

.journey-step > div:nth-child(2) p {
  max-width: 39ch;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.65;
}

.step-art {
  justify-self: end;
  width: min(100%, 400px);
  min-height: 142px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.preference-art {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 8px;
  background: var(--rose-soft);
}

.preference-art b {
  width: 100%;
  margin-bottom: 4px;
  color: var(--rose-deep);
  font-size: 0.7rem;
}

.preference-art i {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 600;
}

.preference-art i:first-of-type {
  background: var(--rose);
  color: var(--white);
}

.one-art {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background: var(--violet-soft);
}

.one-art i {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-style: normal;
  font-weight: 800;
}

.one-you {
  background: var(--rose);
}

.one-them {
  background: var(--violet);
}

.one-art span {
  width: 72px;
  height: 2px;
  background: var(--ink);
  opacity: 0.18;
}

.timer-art {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffedc7;
}

.timer-art strong {
  font-size: 2.2rem;
  font-variant-numeric: tabular-nums;
}

.timer-art span {
  color: var(--ink-soft);
  font-size: 0.65rem;
}

.room-section {
  padding: clamp(120px, 13vw, 190px) var(--gutter);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 80%, rgba(245, 66, 100, 0.12), transparent 32%),
    radial-gradient(circle at 88% 15%, rgba(113, 82, 232, 0.14), transparent 35%), var(--room);
  color: var(--white);
}

.room-section-copy {
  width: min(100%, 970px);
  margin: 0 auto;
  text-align: center;
}

.room-section .section-label {
  color: #ff9aaf;
}

.room-section-copy h2 span {
  color: #ff9aaf;
}

.room-section-copy > p:last-child {
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.65);
}

.conversation-strip {
  width: min(100%, 1120px);
  margin: 88px auto 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
}

.strip-message {
  padding: 23px 26px;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
}

.strip-them {
  border-radius: 20px 20px 20px 7px;
  background: rgba(113, 82, 232, 0.2);
}

.strip-you {
  border-radius: 20px 20px 7px 20px;
  background: rgba(245, 66, 100, 0.22);
}

.strip-timer {
  width: 112px;
  height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.strip-timer i {
  width: 6px;
  height: 6px;
  margin-bottom: 7px;
  border-radius: 50%;
  background: #ff728c;
  box-shadow: 0 0 12px rgba(255, 114, 140, 0.8);
}

.strip-timer strong {
  font-size: 1.15rem;
  font-variant-numeric: tabular-nums;
}

.strip-timer span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.58rem;
}

.room-aside {
  margin-top: 68px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  text-align: center;
}

.reveal-section {
  position: relative;
  padding: clamp(120px, 13vw, 190px) var(--gutter);
  overflow: hidden;
  background: var(--violet);
  color: var(--white);
  text-align: center;
}

.reveal-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.14), transparent 36%),
    radial-gradient(circle at 22% 80%, rgba(245, 66, 100, 0.18), transparent 34%);
  pointer-events: none;
}

.reveal-copy,
.reveal-machine,
.reveal-status {
  position: relative;
  z-index: 1;
}

.reveal-copy {
  width: min(100%, 830px);
  margin: 0 auto;
}

.reveal-section .section-label {
  color: var(--sun);
}

.reveal-copy h2 span {
  color: var(--sun);
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 420;
  letter-spacing: -0.02em;
}

.reveal-copy > p:last-child {
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.78);
}

.reveal-machine {
  margin: 78px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
}

.identity-face {
  position: relative;
  width: clamp(118px, 13vw, 166px);
  height: clamp(118px, 13vw, 166px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.32);
  border-radius: 28px;
  box-shadow: 0 20px 12px -14px rgba(24, 10, 43, 0.36);
}

.identity-them .identity-face {
  background: linear-gradient(145deg, #4c3b95, #8b70de);
}

.identity-you .identity-face {
  background: linear-gradient(145deg, var(--rose-deep), #ff8098);
}

/* the matched person's portrait fills the frame */
.id-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* their face is frosted out of focus until the mutual yes; yours stays clear */
.identity-them .id-photo {
  filter: blur(11px) saturate(1.05);
  transform: scale(1.16);
  transition:
    filter 0.85s var(--ease),
    transform 0.85s var(--ease);
}

.id-chip {
  position: absolute;
  z-index: 2;
  top: 9px;
  right: 9px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(20, 8, 14, 0.4);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.5rem;
  font-weight: 700;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  transition: opacity 0.5s var(--ease);
}

.id-chip svg {
  width: 9px;
  height: 9px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
}

.identity-them .identity-face::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(29, 15, 53, 0.45);
  backdrop-filter: blur(8px);
  transition:
    opacity 0.7s var(--ease),
    backdrop-filter 0.7s var(--ease);
}

.identity small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.7rem;
  font-weight: 600;
}

.consent-line {
  width: clamp(40px, 7vw, 110px);
  height: 3px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.consent-line::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: var(--sun);
  transform: scaleX(0);
  transition: transform 0.8s var(--ease);
}

.consent-line:first-of-type::after {
  transform-origin: right;
}

.consent-line:last-of-type::after {
  transform-origin: left;
}

.hold-reveal {
  position: relative;
  width: 112px;
  height: 112px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(34, 19, 65, 0.48);
  color: var(--white);
  cursor: pointer;
  touch-action: none;
}

.hold-reveal svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.hold-reveal circle {
  fill: none;
  stroke-width: 4;
}

.hold-track {
  stroke: rgba(255, 255, 255, 0.18);
}

.hold-progress {
  stroke: var(--sun);
  stroke-linecap: round;
  stroke-dasharray: 270.18;
  stroke-dashoffset: 270.18;
}

.hold-reveal span {
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.25;
}

.hold-active,
.hold-complete {
  display: none;
}

.hold-reveal.is-holding .hold-idle,
.hold-reveal.is-complete .hold-idle {
  display: none;
}

.hold-reveal.is-holding .hold-active,
.hold-reveal.is-complete .hold-complete {
  display: inline;
}

.reveal-machine.is-complete .identity-them .identity-face::after {
  opacity: 0;
  backdrop-filter: blur(0);
}

.reveal-machine.is-complete .identity-them .id-photo {
  filter: blur(0) saturate(1.05);
  transform: scale(1);
}

.reveal-machine.is-complete .id-chip {
  opacity: 0;
}

.reveal-machine.is-complete .consent-line::after {
  transform: scaleX(1);
}

.reveal-status {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 600;
}

.waitlist {
  padding: clamp(110px, 13vw, 180px) var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--rose);
  color: var(--white);
  text-align: center;
}

.waitlist > img {
  margin-bottom: 30px;
  filter: brightness(0) invert(1);
}

.waitlist > p {
  max-width: 46ch;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.7;
}

.waitlist-form {
  width: min(100%, 610px);
  margin-top: 36px;
}

.email-row {
  padding: 7px;
  display: flex;
  gap: 8px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 20px 12px -14px rgba(42, 22, 34, 0.34);
}

.email-row input {
  min-width: 0;
  flex: 1;
  padding: 0 20px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
}

.email-row input::placeholder {
  color: rgba(42, 22, 34, 0.58);
}

.email-row button {
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.email-row button:disabled,
.email-row input:disabled {
  opacity: 0.66;
  cursor: default;
}

.waitlist-extra {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.88);
  text-align: left;
}

.waitlist-extra summary {
  width: fit-content;
  margin: 0 auto;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
}

.waitlist-extra summary span {
  margin-left: 8px;
  opacity: 0.66;
}

.waitlist-extra > div {
  margin-top: 16px;
  padding: 18px;
  display: grid;
  gap: 8px;
  border-radius: 16px;
  background: rgba(42, 22, 34, 0.14);
}

.waitlist-extra label {
  font-size: 0.7rem;
  font-weight: 600;
}

.waitlist-extra textarea {
  width: 100%;
  margin-bottom: 8px;
  padding: 11px 13px;
  resize: vertical;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
}

.success-msg,
.error-msg {
  min-height: 22px;
  margin-top: 16px;
  font-size: 0.74rem;
}

.success-msg {
  display: none;
  flex-direction: column;
  gap: 3px;
}

.success-msg.show {
  display: flex;
}

.error-msg {
  color: #35111c;
  font-weight: 700;
}

.site-footer {
  min-height: 170px;
  padding: 42px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
}

.site-footer .brand {
  color: var(--white);
}

.site-footer > span {
  justify-self: end;
}

.js .reveal-up {
  opacity: 0.25;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}

.js .reveal-up.visible {
  opacity: 1;
  transform: none;
}

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

  .site-nav nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 116px;
    text-align: center;
  }

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

  .hero-badge,
  .hero-lede {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .truth-row {
    justify-content: center;
  }

  .hero-stage {
    width: min(100%, 500px);
    margin: 28px auto 20px;
  }

  .fit-section {
    grid-template-columns: 1fr;
  }

  .fit-copy {
    justify-self: center;
    max-width: 700px;
    text-align: center;
  }

  .fit-map {
    width: min(100%, 720px);
    margin: 0 auto;
  }

  .person-card {
    max-width: 230px;
  }

  .journey-step {
    grid-template-columns: 54px 1fr;
  }

  .step-art {
    grid-column: 2;
    justify-self: stretch;
    width: 100%;
    margin-top: 8px;
  }

  .conversation-strip {
    grid-template-columns: 1fr;
    width: min(100%, 620px);
  }

  .strip-timer {
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .site-nav {
    min-height: 70px;
  }

  .nav-cta {
    padding: 10px 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 90px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.5rem);
  }

  .hero-actions {
    flex-direction: column;
    gap: 17px;
  }

  .truth-row {
    flex-direction: column;
    align-items: center;
  }

  .hero-stage {
    margin-top: 48px;
  }

  .room-card {
    padding: 14px;
    border-radius: 24px;
  }

  .room-person small,
  .match-reason span {
    display: none;
  }

  .match-reason b:last-child {
    display: none;
  }

  .chat {
    min-height: 390px;
  }

  .sticker-hidden {
    right: -2px;
  }

  .hero-face-1 {
    width: 66px;
    height: 66px;
    top: -20px;
    left: -14px;
  }

  .hero-face-2 {
    display: none;
  }

  .hero-face-3 {
    width: 60px;
    height: 60px;
    right: -10px;
    bottom: -12px;
  }

  .fit-map {
    min-height: 0;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0;
  }

  .fit-card-you,
  .fit-card-them,
  .fit-map.is-active .fit-card-you,
  .fit-map.is-active .fit-card-them {
    justify-self: center;
    rotate: 0deg;
    translate: 0 0;
  }

  .person-card {
    max-width: 240px;
  }

  .fit-bridge {
    width: 100%;
    height: 92px;
  }

  .fit-spark {
    display: none;
  }

  .journey-step {
    grid-template-columns: 40px 1fr;
    gap: 14px;
  }

  .step-art {
    grid-column: 1 / -1;
  }

  .reveal-machine {
    margin-top: 60px;
  }

  .identity-face {
    border-radius: 20px;
  }

  .consent-line {
    width: 24px;
  }

  .hold-reveal {
    width: 88px;
    height: 88px;
  }

  .hold-reveal span {
    font-size: 0.58rem;
  }

  .email-row {
    padding: 8px;
    flex-direction: column;
    border-radius: 18px;
  }

  .email-row input {
    min-height: 48px;
    text-align: center;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 26px;
  }

  .site-footer p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@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-up,
  .js .bubble,
  .js .typing-row {
    opacity: 1;
    transform: none;
  }

  .ticker-track {
    transform: translateX(-12%);
  }
}
