:root {
  --color-black: #000;
  --color-white: #fff;
  --color-yellow: #ffc527;
  --color-warm: #f7f3ea;
  --color-warm-2: #eee7da;
  --color-ink-soft: #292723;
  --color-muted: #615d53;
  --color-border: rgba(0, 0, 0, 0.12);
  --color-error: #b42318;
  --color-success: #0f6b3e;
  --shadow-small: 0 12px 35px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 28px 90px rgba(0, 0, 0, 0.16);
  --radius-small: 10px;
  --radius-medium: 22px;
  --radius-large: 34px;
  --container-width: 1320px;
  --reading-width: 850px;
  --header-height: 72px;
  --section-space: clamp(5rem, 11vw, 10rem);
  --mobile-gutter: 20px;
  --mobile-section-space: 72px;
  --mobile-section-space-small: 48px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --duration: 420ms;
  --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
  min-height: 100%;
  padding: 0;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100%;
  padding: 0;
  font-family: var(--font-sans);
  color: var(--color-black);
  background: var(--color-white);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
  overflow-wrap: anywhere;
}

p {
  margin: 0 0 1.15rem;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.2vw, 1.14rem);
}

h1,
h2,
h3 {
  margin: 0 0 1.1rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 9.8ch;
  font-size: clamp(4rem, 10.5vw, 9rem);
}

h2 {
  font-size: clamp(2.6rem, 6.2vw, 6.4rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  color: var(--color-black);
  background: var(--color-yellow);
  border-radius: 999px;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 2rem), var(--container-width));
  margin-inline: auto;
}

.narrow-copy {
  max-width: 1040px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  transition: background var(--duration) var(--ease), border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  position: relative;
  z-index: 101;
  width: 176px;
  height: 42px;
  overflow: visible;
  text-decoration: none;
}

.brand-logo {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  display: block;
  width: 176px;
  height: auto;
  max-width: 176px;
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%);
}

.nav-toggle {
  position: relative;
  z-index: 102;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 50%;
}

.nav-toggle span {
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--color-black);
  transition: transform var(--duration) var(--ease);
}

.nav-toggle span:first-child {
  transform: translateY(-4px);
}

.nav-toggle span:last-child {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.nav-menu {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.45rem;
  padding: 6rem 1.25rem 2rem;
  visibility: hidden;
  background: rgba(247, 243, 234, 0.96);
  opacity: 0;
  transform: translateY(-1rem);
  transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease), visibility var(--duration);
  backdrop-filter: blur(18px);
}

.nav-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.nav-menu a {
  padding: 0.72rem 0;
  font-size: clamp(1.7rem, 8vw, 4rem);
  font-weight: 820;
  line-height: 1;
  text-decoration: none;
}

.nav-menu a:hover {
  color: var(--color-muted);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.2rem;
  font-weight: 850;
  color: var(--color-black);
  text-decoration: none;
  cursor: pointer;
  background: var(--color-yellow);
  border-radius: 999px;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), background var(--duration) var(--ease);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}

.button.quiet {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.hero .button {
  min-height: 48px;
  padding: 0.78rem 1.08rem;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding: calc(var(--header-height) + 0.8rem) 0 1.5rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 45%, rgba(255, 197, 39, 0.18), transparent 34%),
    radial-gradient(ellipse at 82% 18%, rgba(238, 231, 218, 0.85), transparent 34%),
    linear-gradient(135deg, #fff 0%, var(--color-warm) 100%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, transparent 92%);
}

.hero-layout {
  position: relative;
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.kicker {
  margin-bottom: 0.55rem;
  font-size: 0.74rem;
  font-weight: 880;
  letter-spacing: 0.12em;
  color: var(--color-ink-soft);
  text-transform: uppercase;
}

.hero h1 {
  max-width: 10.8ch;
  margin-bottom: 0.8rem;
  font-size: clamp(3.6rem, 6.4vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.hero-line {
  max-width: 650px;
  margin-bottom: 0.85rem;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.22;
  color: var(--color-black);
}

.hero-body {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(1.02rem, 1.2vw, 1.16rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
}

.hero-device-scene {
  position: relative;
  display: grid;
  width: min(100%, 560px);
  min-height: 590px;
  place-items: center;
  isolation: isolate;
}

.hero-glow,
.hero-orb {
  position: absolute;
  z-index: -2;
  pointer-events: none;
}

.hero-glow {
  width: min(82vw, 520px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 197, 39, 0.34), rgba(255, 197, 39, 0.06) 48%, transparent 68%);
  filter: blur(16px);
}

.hero-orb {
  width: min(68vw, 430px);
  aspect-ratio: 1.05;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.62), rgba(238, 231, 218, 0.35));
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 44% 56% 50% 48%;
  transform: rotate(-10deg);
}

.hero-phone {
  position: relative;
  width: auto;
  height: min(70svh, 760px);
  max-width: min(100%, 390px);
  aspect-ratio: 430 / 860;
  padding: 0.72rem;
  overflow: hidden;
  background: linear-gradient(145deg, #282828 0%, #050505 54%, #1d1d1d 100%);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: clamp(34px, 4vw, 48px);
  box-shadow:
    0 34px 72px rgba(0, 0, 0, 0.22),
    0 12px 24px rgba(0, 0, 0, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  animation: heroPhoneFloat 7s var(--ease) infinite;
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-phone::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.16), transparent 28%, transparent 68%, rgba(255, 255, 255, 0.07));
  border-radius: inherit;
  mix-blend-mode: screen;
}

.hero-phone-top-detail {
  position: absolute;
  top: 1.06rem;
  left: 50%;
  z-index: 3;
  width: 94px;
  height: 25px;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  transform: translateX(-50%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-phone-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #111;
  border-radius: clamp(27px, 3.4vw, 39px);
}

.hero-phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-float {
  position: absolute;
  z-index: 3;
  max-width: 220px;
  padding: 0.72rem 0.9rem;
  color: var(--color-black);
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  font-weight: 780;
  line-height: 1.22;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(16px);
  animation: heroBubbleFloat 6.5s var(--ease) infinite;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.hero-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}

.hero-float-chat {
  top: 18%;
  left: 0;
  border-bottom-left-radius: 6px;
}

.hero-float-call {
  top: 32%;
  right: 1%;
  animation-delay: -1.8s;
}

.hero-float-interest {
  right: 6%;
  bottom: 21%;
  background: rgba(255, 197, 39, 0.9);
  animation-delay: -3.2s;
}

.hero-float-event {
  bottom: 13%;
  left: 8%;
  animation-delay: -4.5s;
}

.scroll-cue {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  display: grid;
  width: 32px;
  height: 52px;
  place-items: start center;
  padding-top: 0.6rem;
  border: 1px solid rgba(0, 0, 0, 0.28);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 5px;
  height: 5px;
  background: var(--color-black);
  border-radius: 50%;
  animation: scrollPulse 1.9s infinite;
}

.statement-section,
.editorial-section,
.story-section,
.communication-section,
.faq-section {
  padding: var(--section-space) 0;
}

.statement {
  font-size: clamp(2.5rem, 6vw, 6.6rem);
  line-height: 1.04;
  color: var(--color-black);
}

.draw-highlight {
  background-image: linear-gradient(var(--color-yellow), var(--color-yellow));
  background-repeat: no-repeat;
  background-position: 0 88%;
  background-size: 0% 0.18em;
  transition: background-size 900ms var(--ease);
}

.is-visible .draw-highlight,
.draw-highlight.is-visible {
  background-size: 100% 0.18em;
}

.editorial-grid,
.matching-layout,
.story-grid,
.learning-layout,
.safety-layout,
.partner-layout,
.waitlist-layout,
.faq-layout {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
}

.editorial-copy,
.story-copy,
.learning-copy,
.partner-copy {
  align-self: center;
}

.text-highlight {
  margin-top: 1.7rem;
  color: var(--color-black);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.28;
}

.about-app-showcase {
  position: relative;
  display: grid;
  width: min(100%, 650px);
  min-height: 590px;
  place-items: center;
  margin-inline: auto;
  overflow: visible;
  isolation: isolate;
  perspective: 1200px;
}

.about-showcase-glow,
.about-showcase-orb {
  position: absolute;
  pointer-events: none;
}

.about-showcase-glow {
  z-index: -1;
  width: min(78vw, 520px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 197, 39, 0.28), rgba(255, 197, 39, 0.06) 54%, transparent 72%);
  filter: blur(18px);
  animation: aboutGlow 9s var(--ease) infinite;
}

.about-showcase-orb {
  z-index: -2;
  width: min(64vw, 430px);
  aspect-ratio: 1.12;
  background:
    linear-gradient(rgba(0, 0, 0, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.025) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.66), rgba(238, 231, 218, 0.38));
  background-size: 34px 34px, 34px 34px, auto;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 48% 52% 44% 56%;
  transform: rotate(-8deg);
}

.about-phone-wrap {
  position: absolute;
  display: grid;
  justify-items: center;
  transition: transform var(--duration) var(--ease);
  transform-style: preserve-3d;
}

.about-phone-wrap--dm {
  z-index: 3;
  transform: translateY(18px);
}

.about-phone-wrap--chats {
  z-index: 2;
  transform: translate(-142px, -22px) rotate(-8deg) scale(0.82);
}

.about-phone-wrap--events {
  z-index: 1;
  transform: translate(144px, -8px) rotate(8deg) scale(0.82);
}

.about-app-showcase:hover .about-phone-wrap--dm {
  transform: translateY(8px);
}

.about-app-showcase:hover .about-phone-wrap--chats {
  transform: translate(-156px, -26px) rotate(-9deg) scale(0.82);
}

.about-app-showcase:hover .about-phone-wrap--events {
  transform: translate(158px, -10px) rotate(9deg) scale(0.82);
}

.about-phone {
  position: relative;
  width: clamp(220px, 21vw, 292px);
  aspect-ratio: 853 / 1844;
  padding: 0.38rem;
  overflow: hidden;
  background: linear-gradient(145deg, #2b2b2b 0%, #050505 55%, #202020 100%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: clamp(29px, 3.4vw, 42px);
  box-shadow:
    0 26px 58px rgba(0, 0, 0, 0.16),
    0 8px 20px rgba(0, 0, 0, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  animation: aboutPhoneFloat 7.4s var(--ease) infinite;
  will-change: transform;
}

.about-phone--chats,
.about-phone--events {
  width: clamp(190px, 17vw, 245px);
  animation-duration: 8.2s;
}

.about-phone--events {
  aspect-ratio: 720 / 1600;
  animation-delay: -2.4s;
}

.about-phone--chats {
  animation-delay: -1.2s;
}

.about-phone::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.13), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.06));
  border-radius: inherit;
  mix-blend-mode: screen;
}

.about-phone-island {
  position: absolute;
  top: 0.68rem;
  left: 50%;
  z-index: 3;
  width: 64px;
  height: 18px;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  transform: translateX(-50%);
}

.about-phone-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--color-white);
  border-radius: clamp(24px, 2.9vw, 35px);
}

.about-phone-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.about-showcase-label {
  position: absolute;
  z-index: 4;
  padding: 0.52rem 0.68rem;
  color: var(--color-black);
  font-size: 0.82rem;
  font-weight: 780;
  line-height: 1.1;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(16px);
}

.about-showcase-label::before {
  display: inline-block;
  width: 0.42rem;
  height: 0.42rem;
  margin-right: 0.35rem;
  vertical-align: 0.06rem;
  content: "";
  background: var(--color-yellow);
  border-radius: 50%;
}

.about-showcase-label--chat {
  top: 16%;
  left: 7%;
}

.about-showcase-label--events {
  right: 5%;
  bottom: 15%;
}

.about-mobile-label {
  display: none;
}

.matching-section {
  padding: var(--section-space) 0;
  color: var(--color-white);
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 197, 39, 0.14), transparent 25%),
    var(--color-black);
}

.matching-section p {
  color: rgba(255, 255, 255, 0.7);
}

.matching-section .kicker {
  color: var(--color-yellow);
}

.match-device {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  align-self: start;
}

.device-shell {
  max-width: 390px;
  min-height: 690px;
  margin-inline: auto;
  padding: 1rem;
  background: linear-gradient(145deg, #2a2a2a, #050505);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 46px;
  box-shadow: var(--shadow-medium);
}

.device-screen {
  padding: 1.1rem;
  color: var(--color-white);
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 197, 39, 0.22), transparent 30%),
    #181818;
  border-radius: 25px;
  min-height: 650px;
  transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.device-screen p,
.device-screen h3 {
  color: inherit;
}

.device-screen.is-changing {
  opacity: 0.35;
  transform: translateY(8px);
}

.screen-label {
  display: inline-block;
  margin-bottom: 0.8rem;
  font-size: 0.75rem;
  font-weight: 850;
  color: var(--color-yellow);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.interest-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.2rem 0;
}

.interest-cloud span,
.refined-tags span {
  padding: 0.5rem 0.72rem;
  font-size: 0.88rem;
  font-weight: 750;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.match-meter {
  height: 9px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.match-meter span {
  display: block;
  width: 78%;
  height: 100%;
  background: var(--color-yellow);
  border-radius: inherit;
}

.profile-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.7fr;
  gap: 0.6rem;
  margin-top: 2rem;
}

.profile-strip span {
  height: 130px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
  border-radius: 20px;
}

.timeline {
  display: grid;
  gap: 0.2rem;
  margin-top: 2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.timeline-step {
  position: relative;
  padding: 1.1rem 1rem 1.1rem 1.6rem;
  color: rgba(255, 255, 255, 0.64);
  text-align: left;
  cursor: pointer;
  background: transparent;
  transition: color var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.timeline-step::before {
  position: absolute;
  top: 1.45rem;
  left: -6px;
  width: 11px;
  height: 11px;
  content: "";
  background: #555;
  border-radius: 50%;
}

.timeline-step.is-active {
  color: var(--color-white);
  transform: translateX(0.35rem);
}

.timeline-step.is-active::before {
  background: var(--color-yellow);
  box-shadow: 0 0 0 8px rgba(255, 197, 39, 0.16);
}

.section-heading {
  max-width: 870px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.communication-section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.communication-section .section-heading {
  max-width: 760px;
  margin-bottom: clamp(1.8rem, 3.5vw, 3rem);
}

.communication-section .section-heading h2 {
  font-size: clamp(3.2rem, 5vw, 5.8rem);
}

.communication-section .section-heading p:not(.kicker) {
  max-width: 620px;
  color: var(--color-muted);
}

.comm-journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.2vw, 1rem);
  align-items: stretch;
}

.comm-progress {
  position: absolute;
  top: 2.2rem;
  right: 5%;
  left: 5%;
  height: 2px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.08);
}

.comm-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--color-yellow), rgba(255, 197, 39, 0.18));
  transition: width 1000ms var(--ease);
}

.comm-journey.is-animated .comm-progress span {
  width: 100%;
}

.comm-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 275px;
  padding: clamp(1rem, 1.6vw, 1.35rem);
  overflow: hidden;
  background: rgba(247, 243, 234, 0.78);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-medium);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease), background var(--duration) var(--ease);
}

.comm-stage::after {
  position: absolute;
  top: 2rem;
  right: -0.72rem;
  z-index: 2;
  width: 1.15rem;
  height: 1.15rem;
  content: "";
  border-top: 2px solid rgba(0, 0, 0, 0.22);
  border-right: 2px solid rgba(0, 0, 0, 0.22);
  transform: rotate(45deg);
}

.comm-stage:last-child::after {
  display: none;
}

.comm-journey.is-animated .comm-stage {
  opacity: 1;
  transform: translateY(0);
}

.comm-journey.is-animated .comm-stage:nth-of-type(2) { transition-delay: 120ms; }
.comm-journey.is-animated .comm-stage:nth-of-type(3) { transition-delay: 240ms; }
.comm-journey.is-animated .comm-stage:nth-of-type(4) { transition-delay: 360ms; }
.comm-journey.is-animated .comm-stage:nth-of-type(5) { transition-delay: 480ms; }

.comm-stage-chat {
  color: var(--color-white);
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 197, 39, 0.22), transparent 34%),
    #111;
}

.comm-stage-chat p,
.comm-stage-chat h3,
.comm-stage-chat .comm-step {
  color: var(--color-white);
}

.comm-step {
  display: inline-flex;
  width: max-content;
  margin-bottom: 0.65rem;
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: 880;
  letter-spacing: 0.1em;
}

.comm-stage h3 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
}

.comm-stage p {
  margin-bottom: 0;
  font-size: 0.94rem;
  line-height: 1.45;
}

.message-stack {
  display: grid;
  gap: 0.55rem;
  margin-top: auto;
}

.message-bubble {
  width: fit-content;
  max-width: 100%;
  padding: 0.68rem 0.78rem;
  color: var(--color-black) !important;
  background: var(--color-white);
  border-radius: 18px 18px 18px 5px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  opacity: 0;
  transform: translateY(8px);
}

.reply-bubble {
  justify-self: end;
  background: var(--color-yellow);
  border-radius: 18px 18px 5px 18px;
}

.comm-journey.is-animated .message-bubble {
  animation: messageIn 520ms var(--ease) forwards;
}

.comm-journey.is-animated .reply-bubble {
  animation-delay: 850ms;
}

.typing-line::after {
  display: inline-block;
  width: 0.45em;
  height: 1em;
  margin-left: 0.2em;
  vertical-align: -0.16em;
  content: "";
  background: var(--color-yellow);
  animation: caret 900ms steps(1) infinite;
}

.call-status,
.call-duration {
  font-size: 0.82rem;
  font-weight: 780;
}

.call-status {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  margin-bottom: 1rem;
}

.call-status span,
.video-status i {
  width: 0.55rem;
  height: 0.55rem;
  background: var(--color-yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 197, 39, 0.45);
  animation: statusPulse 1600ms ease-out infinite;
}

.voice-wave {
  display: flex;
  gap: 0.3rem;
  align-items: center;
  min-height: 54px;
  margin-top: auto;
}

.voice-wave i {
  display: block;
  width: 7px;
  height: 24px;
  background: var(--color-yellow);
  border-radius: 999px;
  animation: wave 1200ms ease-in-out infinite;
}

.voice-wave i:nth-child(2) { animation-delay: 120ms; }
.voice-wave i:nth-child(3) { animation-delay: 240ms; }
.voice-wave i:nth-child(4) { animation-delay: 360ms; }
.voice-wave i:nth-child(5) { animation-delay: 480ms; }

.call-duration {
  margin: 0.2rem 0 0.7rem;
  color: var(--color-black);
}

.video-preview {
  position: relative;
  min-height: 150px;
  margin-top: auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 197, 39, 0.2), transparent 38%),
    linear-gradient(145deg, #242424, #0d0d0d);
  border-radius: 18px;
}

.video-preview::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.12), transparent 35%);
  animation: videoBreath 4.8s var(--ease) infinite;
}

.video-status {
  position: absolute;
  top: 0.65rem;
  left: 0.7rem;
  z-index: 2;
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  padding: 0.34rem 0.52rem;
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 780;
  background: rgba(0, 0, 0, 0.34);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.video-person {
  position: absolute;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.8) 0 12%, transparent 12.5%),
    radial-gradient(circle at 50% 76%, rgba(255, 255, 255, 0.72) 0 24%, transparent 24.5%),
    linear-gradient(145deg, rgba(255, 197, 39, 0.72), rgba(255, 255, 255, 0.12));
}

.video-person.primary {
  inset: 2.4rem 2rem 3rem;
  border-radius: 28px;
  opacity: 0;
}

.video-person.pip {
  right: 0.75rem;
  bottom: 3.15rem;
  width: 52px;
  height: 66px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  opacity: 0;
}

.video-controls {
  position: absolute;
  right: 0;
  bottom: 0.6rem;
  left: 0;
  display: flex;
  gap: 0.45rem;
  justify-content: center;
  opacity: 0;
}

.video-controls span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 50%;
}

.camera-icon::before,
.mic-icon::before,
.end-call-icon::before {
  content: "";
  display: block;
  background: var(--color-black);
}

.camera-icon::before {
  width: 13px;
  height: 9px;
  border-radius: 3px;
}

.mic-icon::before {
  width: 8px;
  height: 14px;
  border-radius: 99px;
}

.end-call-icon {
  background: #df3b35 !important;
}

.end-call-icon::before {
  width: 14px;
  height: 6px;
  background: var(--color-white);
  border-radius: 99px 99px 4px 4px;
}

.comm-journey.is-animated .video-person.primary {
  animation: videoIn 650ms var(--ease) 720ms forwards;
}

.comm-journey.is-animated .video-person.pip {
  animation: pipIn 650ms var(--ease) 980ms forwards;
}

.comm-journey.is-animated .video-controls {
  animation: controlsIn 520ms var(--ease) 1180ms forwards;
}

.event-mini-visual {
  position: relative;
  min-height: 112px;
  margin: 0.1rem 0 0.85rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 197, 39, 0.34), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(238, 231, 218, 0.8));
  border-radius: 18px;
}

.event-badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  padding: 0.32rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 820;
  background: var(--color-yellow);
  border-radius: 999px;
  animation: badgePulse 2200ms ease-in-out infinite;
}

.game-table {
  position: absolute;
  right: 18%;
  bottom: 23%;
  left: 18%;
  height: 42px;
  background: rgba(0, 0, 0, 0.86);
  border-radius: 18px;
}

.game-table i {
  position: absolute;
  top: -12px;
  width: 22px;
  height: 22px;
  background: var(--color-yellow);
  border-radius: 50%;
}

.game-table i:nth-child(1) { left: 12%; }
.game-table i:nth-child(2) { left: 43%; }
.game-table i:nth-child(3) { right: 12%; }

.attendee-row {
  position: absolute;
  right: 0.75rem;
  bottom: 0.65rem;
  display: flex;
}

.attendee-row span {
  width: 22px;
  height: 22px;
  margin-left: -6px;
  background: var(--color-white);
  border: 2px solid var(--color-warm);
  border-radius: 50%;
  opacity: 0;
}

.comm-journey.is-animated .attendee-row span {
  animation: attendeeIn 480ms var(--ease) forwards;
}

.comm-journey.is-animated .attendee-row span:nth-child(2) { animation-delay: 180ms; }
.comm-journey.is-animated .attendee-row span:nth-child(3) { animation-delay: 360ms; }

.comm-stage-event strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
  line-height: 1.15;
}

.view-event-button {
  width: max-content;
  min-height: 36px;
  margin-top: auto;
  padding: 0.5rem 0.72rem;
  color: var(--color-black);
  font-size: 0.84rem;
  font-weight: 820;
  cursor: pointer;
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  transition: transform var(--duration) var(--ease), background var(--duration) var(--ease);
}

.view-event-button:hover {
  transform: translateY(-2px);
  background: var(--color-yellow);
}

.story-section.alt,
.learning-section,
.waitlist-section {
  padding: var(--section-space) 0;
  background: var(--color-warm);
}

.discovery-section {
  padding: clamp(4.5rem, 7vw, 6.25rem) 0;
}

.discovery-section .story-grid {
  align-items: center;
  gap: clamp(3rem, 5vw, 5rem);
}

.discovery-section .story-copy h2 {
  max-width: 10.5ch;
  font-size: clamp(3.2rem, 5vw, 5.7rem);
  line-height: 0.96;
}

.discovery-section .story-copy p {
  max-width: 620px;
}

.wide {
  min-height: 540px;
  border-radius: var(--radius-large);
}

.discovery-phone-scene {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-large);
  isolation: isolate;
  background:
    linear-gradient(rgba(0, 0, 0, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 48% 45%, rgba(255, 197, 39, 0.16), transparent 42%),
    linear-gradient(145deg, rgba(247, 243, 234, 0.9), rgba(255, 255, 255, 0.45));
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.discovery-phone-glow,
.discovery-phone-orb {
  position: absolute;
  pointer-events: none;
}

.discovery-phone-glow {
  z-index: -1;
  width: min(58vw, 390px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 197, 39, 0.35), rgba(255, 197, 39, 0.08) 52%, transparent 70%);
  filter: blur(18px);
  animation: discoveryGlow 8s var(--ease) infinite;
}

.discovery-phone-orb {
  z-index: -2;
  width: min(48vw, 330px);
  aspect-ratio: 1.12;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(238, 231, 218, 0.44));
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 48% 52% 43% 57%;
  transform: rotate(12deg);
}

.discovery-phone {
  position: relative;
  width: clamp(260px, 25vw, 340px);
  max-width: min(78vw, 340px);
  aspect-ratio: 862 / 1920;
  padding: 0.42rem;
  background: linear-gradient(145deg, #2b2b2b 0%, #050505 55%, #202020 100%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: clamp(34px, 4vw, 48px);
  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.16),
    0 8px 20px rgba(0, 0, 0, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform-style: preserve-3d;
  animation: discoveryPhoneFloat 7.5s var(--ease) infinite;
  will-change: transform;
}

.discovery-phone::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.14), transparent 30%, transparent 70%, rgba(255, 255, 255, 0.06));
  border-radius: inherit;
  mix-blend-mode: screen;
}

.discovery-phone-island {
  position: absolute;
  top: 0.74rem;
  left: 50%;
  z-index: 3;
  width: 70px;
  height: 19px;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  transform: translateX(-50%);
}

.discovery-phone-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--color-white);
  border-radius: clamp(28px, 3.2vw, 40px);
}

.discovery-phone-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.discovery-float {
  position: absolute;
  z-index: 3;
  padding: 0.52rem 0.68rem;
  color: var(--color-black);
  font-size: clamp(0.76rem, 0.9vw, 0.86rem);
  font-weight: 780;
  line-height: 1.1;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(16px);
  animation: discoveryLabelFloat 6.8s var(--ease) infinite;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.discovery-float::before {
  display: inline-block;
  width: 0.42rem;
  height: 0.42rem;
  margin-right: 0.36rem;
  vertical-align: 0.05rem;
  content: "";
  background: var(--color-yellow);
  border-radius: 50%;
}

.discovery-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}

.discovery-float-one {
  top: 18%;
  left: 12%;
}

.discovery-float-two {
  top: 34%;
  right: 13%;
  animation-delay: -2.1s;
}

.discovery-float-three {
  bottom: 18%;
  left: 16%;
  animation-delay: -4.2s;
}

.tag-marquee,
.refined-tags,
.collab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.tag-marquee span,
.refined-tags span {
  color: var(--color-black);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.conversation-stack {
  display: grid;
  gap: 0.65rem;
  align-self: center;
}

.conversation-stack div {
  padding: 1.2rem 1.5rem;
  font-size: clamp(1.3rem, 3vw, 2.4rem);
  font-weight: 850;
  background: var(--color-white);
  border-radius: 999px;
}

.conversation-stack div:nth-child(even) {
  margin-left: clamp(1rem, 7vw, 5rem);
  background: var(--color-black);
  color: var(--color-white);
}

.event-gallery {
  display: grid;
  gap: 1rem;
}

.event-tile {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  color: var(--color-white);
  text-decoration: none;
  background: #161616;
  border-radius: 32px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 700ms var(--ease),
    transform 0.45s ease,
    box-shadow 0.45s ease,
    filter 0.45s ease;
}

.event-tile img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms var(--ease), filter 0.45s ease;
}

.event-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18));
}

.event-tile.large::after {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.14));
}

.event-tile span {
  position: absolute;
  right: clamp(1.4rem, 3vw, 2rem);
  bottom: clamp(1.4rem, 3vw, 2rem);
  left: clamp(1.4rem, 3vw, 2rem);
  z-index: 2;
}

.event-tile strong,
.event-tile em {
  display: block;
}

.event-tile strong {
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  line-height: 1;
}

.event-tile em {
  max-width: 440px;
  margin-top: 0.6rem;
  font-style: normal;
  color: rgba(255, 255, 255, 0.86);
}

.event-gallery.is-visible .event-tile {
  opacity: 1;
  transform: translateY(0);
}

.event-gallery.is-visible .event-tile:nth-child(2) {
  transition-delay: 100ms;
}

.event-gallery.is-visible .event-tile:nth-child(3) {
  transition-delay: 200ms;
}

.event-tile:hover,
.event-tile:focus-visible {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
  filter: brightness(1.05);
}

.event-tile:hover img,
.event-tile:focus-visible img {
  transform: scale(1.03);
}

.event-note {
  max-width: 760px;
  margin-top: 2rem;
  color: var(--color-black);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.learning-showcase {
  position: relative;
  display: grid;
  width: min(100%, clamp(430px, 42vw, 640px));
  min-height: clamp(500px, 58vw, 650px);
  place-items: center;
  margin-inline: auto;
  overflow: visible;
  isolation: isolate;
  perspective: 1200px;
}

.learning-showcase::before {
  position: absolute;
  z-index: -1;
  width: min(82%, 520px);
  aspect-ratio: 1.18;
  content: "";
  background:
    linear-gradient(rgba(0, 0, 0, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 50% 48%, rgba(255, 197, 39, 0.22), rgba(255, 197, 39, 0.05) 56%, transparent 74%);
  background-size: 34px 34px, 34px 34px, auto;
  border-radius: 46% 54% 48% 52%;
  filter: blur(2px);
  transform: rotate(5deg);
}

.learning-phone-wrap {
  position: absolute;
  display: grid;
  justify-items: center;
  transform-style: preserve-3d;
  transition: transform var(--duration) var(--ease);
}

.learning-phone-wrap--main {
  z-index: 3;
  transform: translateY(18px);
}

.learning-phone-wrap--left {
  z-index: 2;
  transform: translate(-155px, -22px) rotate(-8deg) scale(0.82);
}

.learning-phone-wrap--right {
  z-index: 1;
  transform: translate(155px, 0) rotate(8deg) scale(0.82);
}

.learning-showcase:hover .learning-phone-wrap--main {
  transform: translateY(8px);
}

.learning-showcase:hover .learning-phone-wrap--left {
  transform: translate(-166px, -28px) rotate(-9deg) scale(0.82);
}

.learning-showcase:hover .learning-phone-wrap--right {
  transform: translate(166px, -4px) rotate(9deg) scale(0.82);
}

.learning-phone {
  position: relative;
  width: clamp(220px, 19vw, 290px);
  aspect-ratio: 780 / 1571;
  padding: 0.4rem;
  overflow: hidden;
  background: linear-gradient(145deg, #303030 0%, #070707 52%, #1f1f1f 100%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: clamp(30px, 3.4vw, 44px);
  box-shadow:
    0 28px 62px rgba(0, 0, 0, 0.18),
    0 10px 24px rgba(0, 0, 0, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  animation: aboutPhoneFloat 7.8s var(--ease) infinite;
  will-change: transform;
}

.learning-phone--secondary {
  width: clamp(184px, 16vw, 238px);
  animation-duration: 8.6s;
}

.learning-phone-wrap--left .learning-phone {
  animation-delay: -1.4s;
}

.learning-phone-wrap--right .learning-phone {
  animation-delay: -2.8s;
}

.learning-phone::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(116deg, rgba(255, 255, 255, 0.14), transparent 29%, transparent 74%, rgba(255, 255, 255, 0.07));
  border-radius: inherit;
  mix-blend-mode: screen;
}

.learning-phone-island {
  position: absolute;
  top: 0.68rem;
  left: 50%;
  z-index: 3;
  width: 58px;
  height: 17px;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  transform: translateX(-50%);
}

.learning-phone-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #f7f3ea;
  border-radius: clamp(24px, 2.9vw, 37px);
}

.learning-phone-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.learning-mobile-label {
  display: none;
}

.lesson-preview {
  padding: clamp(1.3rem, 4vw, 2rem);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-small);
}

.lesson-progress {
  height: 8px;
  margin-bottom: 2rem;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 999px;
}

.lesson-progress span {
  display: block;
  height: 100%;
  background: var(--color-yellow);
  border-radius: inherit;
}

.lesson-preview strong {
  display: block;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1;
}

.play-button {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  min-height: 50px;
  padding: 0.8rem 1rem;
  font-weight: 850;
  cursor: pointer;
  background: var(--color-white);
  border-radius: 999px;
}

.play-button span {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid var(--color-black);
}

.safety-section {
  padding: var(--section-space) 0;
  color: var(--color-white);
  background:
    radial-gradient(circle at 88% 22%, rgba(255, 197, 39, 0.12), transparent 28%),
    #070707;
}

.safety-section p,
.safety-section .kicker {
  color: rgba(255, 255, 255, 0.72);
}

.safety-section h2 {
  color: var(--color-white);
}

.principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.13);
}

.principles span {
  min-height: 120px;
  display: grid;
  place-items: center;
  color: var(--color-white);
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  font-weight: 850;
  background: #101010;
}

.quiet-panels {
  display: grid;
  gap: 0.8rem;
}

.quiet-panels p {
  margin: 0;
  padding: 1.2rem;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-medium);
}

.partner-section {
  padding: var(--section-space) 0;
}

.partner-layout {
  align-items: center;
}

.partner-photo {
  position: relative;
  width: 100%;
  max-height: 720px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: clamp(32px, 3.2vw, 40px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.15);
  isolation: isolate;
}

.partner-photo::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  pointer-events: none;
  content: "";
  background: linear-gradient(to top, rgba(41, 39, 35, 0.18), rgba(247, 243, 234, 0));
}

.partner-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform var(--duration) var(--ease);
}

.partner-photo:hover img {
  transform: scale(1.015);
}

.collab-list {
  padding: 0;
  list-style: none;
}

.collab-list li {
  padding: 0.55rem 0.8rem;
  font-weight: 760;
  background: var(--color-warm);
  border-radius: 999px;
}

.waitlist-section {
  position: relative;
  overflow: hidden;
}

.waitlist-section::before {
  position: absolute;
  inset: 0 0 auto auto;
  width: min(45vw, 520px);
  aspect-ratio: 1;
  content: "";
  background: radial-gradient(circle, rgba(255, 197, 39, 0.32), transparent 65%);
}

.waitlist-form,
.modal-panel {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(16px);
}

.form-row {
  display: grid;
  gap: 1rem;
}

.field {
  margin-bottom: 1rem;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 780;
}

label span {
  color: var(--color-muted);
  font-weight: 620;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.85rem 0.95rem;
  color: var(--color-black);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: var(--radius-small);
}

textarea {
  min-height: 126px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-yellow);
  outline: 3px solid rgba(255, 197, 39, 0.34);
}

.waitlist-more-toggle {
  display: inline-flex;
  margin: 0.2rem 0 1rem;
  padding: 0;
  color: var(--color-black);
  font-weight: 820;
  text-decoration: underline;
  text-underline-offset: 0.25em;
  cursor: pointer;
  background: transparent;
}

.waitlist-more-fields {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    max-height 320ms var(--ease),
    opacity 260ms var(--ease),
    transform 260ms var(--ease);
}

.waitlist-more-fields.is-open {
  max-height: 520px;
  opacity: 1;
  transform: translateY(0);
}

.checkbox-field {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.8rem;
  align-items: start;
  margin: 0.9rem 0 0.35rem;
}

.checkbox-field input {
  width: 22px;
  min-height: 22px;
  margin-top: 0.25rem;
  accent-color: var(--color-yellow);
}

.error-message {
  min-height: 1.25rem;
  margin: 0.28rem 0 0;
  color: var(--color-error);
  font-size: 0.9rem;
  font-weight: 720;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--color-error);
}

.success-message {
  margin: 1rem 0 0;
  padding: 1rem;
  color: var(--color-success);
  font-weight: 820;
  background: rgba(15, 107, 62, 0.08);
  border-radius: var(--radius-small);
  animation: successPop 500ms var(--ease);
}

.success-message:empty {
  display: none;
}

.faq-layout {
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--color-border);
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  position: relative;
  width: 100%;
  min-height: 70px;
  padding: 1.1rem 3rem 1.1rem 0;
  color: var(--color-black);
  text-align: left;
  cursor: pointer;
  background: transparent;
  font-weight: 850;
}

.faq-question::after,
.modal-close::before,
.modal-close::after {
  position: absolute;
  content: "";
  background: currentColor;
}

.faq-question::after {
  top: 50%;
  right: 0.3rem;
  width: 18px;
  height: 2px;
  transition: transform var(--duration) var(--ease);
}

.faq-question::before {
  position: absolute;
  top: calc(50% - 8px);
  right: calc(0.3rem + 8px);
  width: 2px;
  height: 18px;
  content: "";
  background: currentColor;
  transition: transform var(--duration) var(--ease);
}

.faq-question[aria-expanded="true"]::before {
  transform: rotate(90deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--duration) var(--ease);
}

.faq-answer > p {
  overflow: hidden;
}

.faq-answer.is-open {
  grid-template-rows: 1fr;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 820px);
  max-height: min(90svh, 820px);
  overflow-y: auto;
}

.modal-panel h2 {
  font-size: clamp(2rem, 5vw, 3.7rem);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  color: var(--color-black);
  cursor: pointer;
  background: var(--color-warm);
  border-radius: 50%;
}

.modal-close::before,
.modal-close::after {
  top: 20px;
  left: 11px;
  width: 20px;
  height: 2px;
}

.modal-close::before {
  transform: rotate(45deg);
}

.modal-close::after {
  transform: rotate(-45deg);
}

.site-footer {
  padding: clamp(3rem, 7vw, 6rem) 0 2rem;
  color: var(--color-white);
  background: var(--color-black);
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--color-yellow);
}

.footer-wordmark {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--color-white) !important;
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 880;
  line-height: 0.9;
}

.footer-layout {
  display: grid;
  gap: 2rem;
}

.site-footer nav,
.site-footer .footer-layout > div:not(:first-child) {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.site-footer h2 {
  margin-bottom: 0.4rem;
  color: var(--color-white);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-bottom p {
  max-width: 680px;
  font-size: 0.92rem;
}

.legal-main {
  padding: calc(var(--header-height) + 3rem) 0 var(--section-space);
  background: linear-gradient(180deg, var(--color-warm), var(--color-white));
}

.legal-shell {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
  display: none;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-medium);
}

.legal-toc h2 {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-toc a {
  display: block;
  padding: 0.35rem 0;
  color: var(--color-muted);
  text-decoration: none;
}

.legal-content {
  max-width: var(--reading-width);
}

.legal-content h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 8vw, 6.8rem);
}

.legal-content h2 {
  margin-top: 3rem;
  padding-top: 1rem;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  border-top: 1px solid var(--color-border);
}

.legal-content h3 {
  margin-top: 1.5rem;
  font-size: 1.05rem;
}

.legal-content ul {
  padding-left: 1.25rem;
  color: var(--color-muted);
}

.back-link {
  display: inline-flex;
  margin-bottom: 1.8rem;
  font-weight: 820;
  text-decoration: none;
}

.back-link::before {
  content: "<";
  margin-right: 0.5rem;
  color: var(--color-yellow);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 750ms var(--ease), transform 750ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes scrollPulse {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(22px); opacity: 0; }
}

@keyframes caret {
  50% { opacity: 0; }
}

@keyframes wave {
  0%, 100% { transform: scaleY(0.65); }
  50% { transform: scaleY(1.75); }
}

@keyframes messageIn {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes statusPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 197, 39, 0.42); }
  100% { box-shadow: 0 0 0 9px rgba(255, 197, 39, 0); }
}

@keyframes videoBreath {
  0%, 100% { opacity: 0.6; transform: translateX(-2%); }
  50% { opacity: 1; transform: translateX(2%); }
}

@keyframes videoIn {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes pipIn {
  0% { opacity: 0; transform: translate(12px, 8px); }
  100% { opacity: 1; transform: translate(0, 0); }
}

@keyframes controlsIn {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 197, 39, 0); }
  50% { box-shadow: 0 0 0 7px rgba(255, 197, 39, 0.18); }
}

@keyframes attendeeIn {
  0% { opacity: 0; transform: translateY(7px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes heroPhoneFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-1deg); }
  50% { transform: translate3d(0, -9px, 0) rotate(1deg); }
}

@keyframes heroBubbleFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -7px; }
}

@keyframes discoveryPhoneFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(1deg); }
  50% { transform: translate3d(0, -8px, 0) rotate(-1deg); }
}

@keyframes discoveryLabelFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -6px; }
}

@keyframes discoveryGlow {
  0%, 100% { transform: translate3d(-3%, 2%, 0) scale(0.98); opacity: 0.85; }
  50% { transform: translate3d(4%, -2%, 0) scale(1.04); opacity: 1; }
}

@keyframes aboutPhoneFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -7px; }
}

@keyframes aboutGlow {
  0%, 100% { transform: translate3d(3%, -2%, 0) scale(0.98); opacity: 0.84; }
  50% { transform: translate3d(-3%, 3%, 0) scale(1.04); opacity: 1; }
}

@keyframes successPop {
  0% { transform: scale(0.98); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@media (min-width: 700px) {
  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-gallery {
    grid-template-columns: 1.3fr 0.7fr;
  }

  .event-tile.large {
    grid-row: span 2;
    min-height: 620px;
  }
}

@media (max-width: 900px) {
  .comm-journey {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .comm-progress {
    display: none;
  }

  .comm-stage {
    min-height: 240px;
  }

  .comm-stage:nth-child(3)::after {
    display: none;
  }

  .about-app-showcase {
    width: min(100%, 470px);
    min-height: 520px;
  }

  .about-phone {
    width: clamp(205px, 28vw, 250px);
  }

  .about-phone--chats,
  .about-phone--events {
    width: clamp(176px, 23vw, 215px);
  }

  .about-phone-wrap--chats {
    transform: translate(-112px, -20px) rotate(-6deg) scale(0.84);
  }

  .about-phone-wrap--events {
    transform: translate(114px, -5px) rotate(6deg) scale(0.84);
  }

  .about-showcase-label {
    font-size: 0.76rem;
  }

  .learning-showcase {
    width: min(100%, 450px);
    min-height: 510px;
  }

  .learning-phone {
    width: clamp(214px, 31vw, 260px);
  }

  .learning-phone--secondary {
    width: clamp(178px, 26vw, 214px);
  }

  .learning-phone-wrap--left {
    transform: translate(-118px, -18px) rotate(-7deg) scale(0.84);
  }

  .learning-phone-wrap--right {
    transform: translate(118px, -2px) rotate(7deg) scale(0.84);
  }

  .learning-showcase:hover .learning-phone-wrap--left {
    transform: translate(-126px, -22px) rotate(-8deg) scale(0.84);
  }

  .learning-showcase:hover .learning-phone-wrap--right {
    transform: translate(126px, -5px) rotate(8deg) scale(0.84);
  }

  .partner-photo {
    max-height: 560px;
    aspect-ratio: 16 / 11;
    border-radius: 34px;
  }

  .discovery-section {
    padding: 4.5rem 0;
  }

  .discovery-phone-scene {
    min-height: 480px;
  }

  .discovery-phone {
    width: min(64vw, 290px);
  }

  .discovery-float-one {
    left: 8%;
  }

  .discovery-float-two {
    right: 8%;
  }
}

@media (min-width: 920px) {
  .nav-toggle {
    display: none;
  }

  body.nav-open {
    overflow: auto;
  }

  .nav-menu {
    position: static;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(0.7rem, 1.4vw, 1.3rem);
    padding: 0;
    visibility: visible;
    background: transparent;
    opacity: 1;
    transform: none;
    backdrop-filter: none;
  }

  .nav-menu a {
    padding: 0.35rem 0;
    font-size: 0.92rem;
    font-weight: 760;
  }

  .nav-menu .nav-cta {
    padding: 0.72rem 1rem;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .discovery-section .story-grid {
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(3rem, 4.5vw, 5rem);
  }

  .editorial-grid,
  .matching-layout,
  .story-grid,
  .learning-layout,
  .partner-layout,
  .waitlist-layout,
  .faq-layout,
  .legal-shell {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .story-grid.reverse > :first-child {
    order: 2;
  }

  .safety-layout {
    grid-template-columns: 0.9fr 1fr;
  }

  .quiet-panels {
    grid-column: 2;
  }

  .comm-journey {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-layout {
    grid-template-columns: 1.5fr 0.7fr 0.8fr 0.8fr;
  }

  .legal-toc {
    display: block;
  }
}

@media (max-height: 820px) and (min-width: 900px) {
  .hero {
    padding-top: calc(var(--header-height) + 0.45rem);
    padding-bottom: 1rem;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 5.4vw, 5.9rem);
    margin-bottom: 0.65rem;
  }

  .hero-line {
    margin-bottom: 0.65rem;
    font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  }

  .hero-body {
    font-size: 1.02rem;
  }

  .hero-actions {
    margin-top: 1rem;
  }

  .hero-device-scene {
    min-height: 500px;
  }

  .hero-phone {
    height: 62svh;
    max-width: 340px;
  }

  .hero-float {
    padding: 0.62rem 0.78rem;
    font-size: 0.82rem;
  }

  .hero-float-chat {
    left: 4%;
  }

  .hero-float-call {
    right: 5%;
  }
}

@media (max-height: 850px) and (min-width: 900px) {
  .communication-section {
    padding: clamp(3.1rem, 7vh, 4.6rem) 0;
  }

  .communication-section .section-heading {
    margin-bottom: 1.8rem;
  }

  .communication-section .section-heading h2 {
    font-size: clamp(2.9rem, 4.4vw, 4.9rem);
  }

  .comm-journey {
    gap: 0.75rem;
  }

  .comm-stage {
    min-height: 235px;
    padding: 0.95rem;
  }

  .video-preview {
    min-height: 128px;
  }

  .event-mini-visual {
    min-height: 92px;
  }

  .discovery-section {
    padding: clamp(2.8rem, 6vh, 4.4rem) 0;
  }

  .discovery-section .story-grid {
    gap: clamp(2.6rem, 4vw, 4rem);
  }

  .discovery-section .story-copy h2 {
    font-size: clamp(2.9rem, 4.5vw, 4.8rem);
  }

  .discovery-phone-scene {
    min-height: 450px;
  }

  .discovery-phone {
    width: clamp(250px, 22vw, 305px);
  }

  .discovery-float {
    padding: 0.46rem 0.6rem;
    font-size: 0.76rem;
  }

  .discovery-float-one {
    left: 14%;
  }

  .discovery-float-two {
    right: 14%;
  }

  .discovery-float-three {
    left: 18%;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 68px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 1.25rem);
    padding-bottom: 2rem;
  }

  .brand {
    width: 150px;
    height: 37px;
  }

  .brand-logo {
    width: 150px;
    max-width: 150px;
    transform: translateY(-50%);
  }

  .hero h1 {
    font-size: clamp(3.05rem, 15vw, 4.4rem);
    line-height: 0.96;
  }

  .about-app-showcase {
    display: flex;
    width: calc(100vw - 1rem);
    min-height: auto;
    gap: 1rem;
    justify-content: flex-start;
    margin: 1.75rem -0.5rem 0;
    padding: 0.5rem 1rem 1.1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-inline: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    border-radius: 0;
    perspective: none;
  }

  .about-app-showcase::-webkit-scrollbar {
    display: none;
  }

  .about-showcase-glow,
  .about-showcase-orb,
  .about-showcase-label {
    display: none;
  }

  .about-phone-wrap,
  .about-phone-wrap--dm,
  .about-phone-wrap--chats,
  .about-phone-wrap--events,
  .about-app-showcase:hover .about-phone-wrap--dm,
  .about-app-showcase:hover .about-phone-wrap--chats,
  .about-app-showcase:hover .about-phone-wrap--events {
    position: relative;
    flex: 0 0 min(76vw, 300px);
    transform: none;
    scroll-snap-align: center;
  }

  .about-phone {
    width: min(76vw, 300px);
    margin-inline: auto;
    animation: none;
  }

  .about-phone--chats,
  .about-phone--events {
    width: min(76vw, 300px);
  }

  .about-mobile-label {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.84rem;
    font-weight: 780;
    text-align: center;
  }

  .learning-showcase {
    width: min(92vw, 390px);
    min-height: clamp(430px, 112vw, 500px);
    margin-top: 1.5rem;
  }

  .learning-showcase::before {
    width: 94%;
  }

  .learning-phone {
    width: min(58vw, 230px);
    padding: 0.32rem;
    border-radius: clamp(28px, 8vw, 38px);
  }

  .learning-phone--secondary {
    width: min(48vw, 188px);
  }

  .learning-phone-island {
    top: 0.55rem;
    width: 46px;
    height: 14px;
  }

  .learning-phone-screen {
    border-radius: clamp(23px, 7vw, 32px);
  }

  .learning-phone-wrap--main,
  .learning-showcase:hover .learning-phone-wrap--main {
    transform: translateY(16px);
  }

  .learning-phone-wrap--left,
  .learning-showcase:hover .learning-phone-wrap--left {
    transform: translate(-78px, -18px) rotate(-8deg) scale(0.84);
  }

  .learning-phone-wrap--right,
  .learning-showcase:hover .learning-phone-wrap--right {
    transform: translate(78px, -4px) rotate(8deg) scale(0.84);
  }

  .communication-section {
    padding: 4rem 0;
  }

  .communication-section .section-heading h2 {
    font-size: clamp(2.75rem, 13vw, 4.1rem);
  }

  .comm-journey {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding-left: 1rem;
  }

  .comm-journey::before {
    position: absolute;
    top: 0.5rem;
    bottom: 0.5rem;
    left: 0.15rem;
    width: 2px;
    content: "";
    background: linear-gradient(var(--color-yellow), rgba(0, 0, 0, 0.08));
  }

  .comm-stage {
    min-height: 0;
    padding: 1rem;
  }

  .comm-stage::after {
    top: 1.2rem;
    right: auto;
    left: -1.34rem;
    width: 0.72rem;
    height: 0.72rem;
    background: var(--color-yellow);
    border: 3px solid var(--color-white);
    border-radius: 50%;
    transform: none;
  }

  .comm-stage:last-child::after {
    display: block;
  }

  .video-preview {
    min-height: 150px;
  }

  .event-mini-visual {
    min-height: 110px;
  }

  .hero-stage {
    margin-top: 0.5rem;
  }

  .hero-device-scene {
    width: 100%;
    min-height: 470px;
  }

  .hero-phone {
    width: min(82vw, 320px);
    height: auto;
    max-height: none;
    animation: none;
  }

  .hero-float {
    animation: none;
  }

  .hero-float-chat,
  .hero-float-interest {
    display: none;
  }

  .hero-float-call {
    top: 12%;
    right: 2%;
  }

  .hero-float-event {
    bottom: 12%;
    left: 1%;
  }

  .partner-photo {
    width: 100%;
    max-height: none;
    aspect-ratio: 4 / 3;
    border-radius: 28px;
  }

  .discovery-phone-scene {
    min-height: 455px;
    margin-bottom: 0.5rem;
  }

  .discovery-section .story-copy h2 {
    font-size: clamp(2.75rem, 13vw, 4.1rem);
  }

  .discovery-phone {
    width: min(78vw, 290px);
    animation: none;
  }

  .discovery-float {
    padding: 0.58rem 0.7rem;
    font-size: 0.8rem;
    animation: none;
  }

  .discovery-float-two {
    display: none;
  }

  .discovery-float-one {
    top: 12%;
    left: 0.75rem;
  }

  .discovery-float-three {
    right: 0.75rem;
    bottom: 13%;
    left: auto;
  }

  .hero-actions .button {
    width: 100%;
  }

}

@media (max-width: 900px) {
  .match-device {
    position: static;
    top: auto;
  }

  .modal {
    align-items: stretch;
    padding: max(0.75rem, env(safe-area-inset-top)) 0.75rem max(0.75rem, env(safe-area-inset-bottom));
  }

  .modal-panel {
    width: 100%;
    max-height: calc(100svh - 1.5rem);
    padding-top: 3.8rem;
    border-radius: 24px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 66px;
    --section-space: var(--mobile-section-space);
  }

  .shell {
    width: min(calc(100% - (var(--mobile-gutter) * 2)), var(--container-width));
  }

  p {
    font-size: clamp(1rem, 2.8vw, 1.1rem);
  }

  h2 {
    font-size: clamp(2.55rem, 10.8vw, 4rem);
    line-height: 1;
  }

  h3 {
    font-size: clamp(1.35rem, 6vw, 2rem);
  }

  .statement-section,
  .editorial-section,
  .story-section,
  .communication-section,
  .learning-section,
  .safety-section,
  .partner-section,
  .waitlist-section,
  .faq-section {
    padding: var(--mobile-section-space) 0;
  }

  .story-section.alt,
  .learning-section,
  .waitlist-section {
    padding: var(--mobile-section-space) 0;
  }

  .section-heading {
    margin-bottom: 2rem;
  }

  .statement {
    font-size: clamp(2.35rem, 11vw, 4rem);
  }

  .text-highlight {
    font-size: clamp(1.16rem, 4.8vw, 1.45rem);
  }

  .matching-section,
  .communication-section,
  .discovery-section,
  .safety-section {
    padding: var(--mobile-section-space) 0;
  }

  .matching-section,
  .timeline-step {
    scroll-margin-top: calc(var(--header-height) + 1.25rem);
  }

  .device-shell {
    width: min(100%, 350px);
    max-width: 350px;
    min-height: 0;
    padding: 0.72rem;
    border-radius: 36px;
  }

  .device-screen {
    min-height: 440px;
    padding: 1rem;
    border-radius: 25px;
  }

  .profile-strip span {
    height: 96px;
  }

  .matching-copy h2,
  .story-copy h2,
  .learning-copy h2,
  .partner-copy h2,
  .waitlist-copy h2,
  .faq-heading h2 {
    font-size: clamp(2.55rem, 10vw, 3.8rem);
    line-height: 1;
  }

  .timeline {
    margin-top: 1.4rem;
  }

  .timeline-step {
    min-height: 52px;
    padding: 0.95rem 0.8rem 0.95rem 1.45rem;
    color: rgba(255, 255, 255, 0.58);
    cursor: default;
    transition: color 280ms var(--ease), transform 280ms var(--ease);
  }

  .timeline-step::before {
    background: rgba(255, 255, 255, 0.28);
    transition: background 280ms var(--ease), box-shadow 280ms var(--ease);
  }

  .timeline-step.is-active {
    color: var(--color-white);
    transform: translateX(0.22rem);
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.12);
  }

  .timeline-step.is-active::before {
    background: var(--color-yellow);
    box-shadow: 0 0 0 8px rgba(255, 197, 39, 0.18), 0 0 24px rgba(255, 197, 39, 0.2);
  }

  .comm-journey {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding-left: 1rem;
  }

  .comm-journey::before {
    position: absolute;
    top: 0.5rem;
    bottom: 0.5rem;
    left: 0.15rem;
    width: 2px;
    content: "";
    background: linear-gradient(var(--color-yellow), rgba(0, 0, 0, 0.08));
  }

  .comm-progress {
    display: none;
  }

  .comm-stage {
    min-height: 0;
    padding: 1rem;
    opacity: 1;
    transform: none;
  }

  .comm-stage::after,
  .comm-stage:nth-child(3)::after,
  .comm-stage:last-child::after {
    top: 1.2rem;
    right: auto;
    left: -1.34rem;
    display: block;
    width: 0.72rem;
    height: 0.72rem;
    background: var(--color-yellow);
    border: 3px solid var(--color-white);
    border-radius: 50%;
    transform: none;
  }

  .message-bubble,
  .video-person.primary,
  .video-person.pip,
  .video-controls,
  .attendee-row span {
    opacity: 1;
    transform: none;
  }

  .video-preview {
    min-height: 150px;
  }

  .event-mini-visual {
    min-height: 112px;
  }

  .discovery-section .story-grid {
    gap: 2rem;
  }

  .discovery-phone-scene {
    min-height: 440px;
  }

  .conversation-stack div {
    padding: 0.95rem 1rem;
    font-size: clamp(1.18rem, 6vw, 1.8rem);
  }

  .conversation-stack div:nth-child(even) {
    margin-left: min(12vw, 2rem);
  }

  .event-gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .event-tile,
  .event-tile.large {
    min-height: 0;
    aspect-ratio: 16 / 11;
    border-radius: 24px;
  }

  .event-tile img {
    min-height: 0;
  }

  .event-tile::after,
  .event-tile.large::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.22));
  }

  .event-tile strong {
    font-size: clamp(1.28rem, 6.2vw, 1.8rem);
  }

  .event-tile em {
    font-size: 0.98rem;
  }

  .principles {
    grid-template-columns: 1fr 1fr;
  }

  .principles span {
    min-height: 86px;
    padding: 0.8rem;
    font-size: clamp(1.1rem, 5vw, 1.55rem);
    text-align: center;
  }

  .quiet-panels p {
    padding: 1rem;
  }

  .partner-photo {
    max-height: none;
    aspect-ratio: 4 / 3;
    border-radius: 28px;
  }

  .collab-list {
    gap: 0.5rem;
  }

  .collab-list li {
    padding: 0.52rem 0.68rem;
    font-size: 0.94rem;
  }

  .partner-copy .button,
  .submit-button,
  .modal-panel .button {
    width: 100%;
  }

  .waitlist-form,
  .modal-panel {
    padding: 1.1rem;
    border-radius: 24px;
  }

  .modal-panel {
    padding-top: 3.8rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  input,
  select,
  textarea {
    min-height: 54px;
    font-size: 16px;
  }

  .waitlist-more-toggle {
    min-height: 44px;
    align-items: center;
    margin-bottom: 0.75rem;
  }

  .checkbox-field {
    grid-template-columns: 22px 1fr;
    gap: 0.72rem;
  }

  .checkbox-field input {
    width: 22px;
    height: 22px;
    min-height: 22px;
  }

  .faq-layout {
    gap: 1.5rem;
  }

  .faq-question {
    min-height: 62px;
    padding: 1rem 2.65rem 1rem 0;
  }

  .site-footer {
    padding: 3rem 0 1.4rem;
  }

  .footer-layout {
    gap: 1.6rem;
  }

  .site-footer nav,
  .site-footer .footer-layout > div:not(:first-child) {
    gap: 0.2rem;
  }

  .site-footer a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
  }

  .footer-wordmark {
    margin-bottom: 0.45rem;
    font-size: clamp(2.45rem, 13vw, 4.2rem);
  }

  .footer-bottom {
    display: grid;
    gap: 0.8rem;
    margin-top: 2rem;
  }

  .legal-main {
    padding: calc(var(--header-height) + 1.5rem) 0 var(--mobile-section-space);
  }

  .legal-shell {
    gap: 1.5rem;
  }

  .legal-toc {
    position: static;
    display: block;
    padding: 0.9rem;
    border-radius: 18px;
  }

  .legal-toc a {
    min-height: 40px;
    padding: 0.45rem 0;
  }

  .legal-content {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .legal-content h1 {
    max-width: none;
    font-size: clamp(2.65rem, 12vw, 4.2rem);
  }

  .legal-content h2 {
    margin-top: 2.2rem;
    font-size: clamp(1.45rem, 6vw, 2rem);
    line-height: 1.1;
  }

  .legal-content p,
  .legal-content li {
    font-size: clamp(1rem, 3.6vw, 1.1rem);
  }

  .back-link {
    min-height: 44px;
    align-items: center;
  }

  .nav-menu {
    display: none;
  }

  .nav-menu.is-open {
    display: flex;
  }
}

@media (max-width: 640px) {
  .site-header {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(16px);
  }

  .nav {
    min-width: 0;
  }

  .brand {
    width: 144px;
    height: 36px;
  }

  .brand-logo {
    width: 144px;
    max-width: 144px;
  }

  .nav-toggle {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  }

  .nav-menu {
    inset: 0;
    display: none;
    justify-content: start;
    gap: 0.1rem;
    min-height: 100svh;
    padding: calc(var(--header-height) + 1.4rem) var(--mobile-gutter) 1.5rem;
    overflow-y: auto;
    background:
      radial-gradient(circle at 80% 16%, rgba(255, 197, 39, 0.28), transparent 32%),
      rgba(247, 243, 234, 0.98);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    min-height: 48px;
    padding: 0.5rem 0;
    font-size: clamp(1.55rem, 8vw, 2.7rem);
    line-height: 1;
  }

  .nav-menu .nav-cta {
    width: 100%;
    min-height: 54px;
    margin-top: 0.8rem;
    font-size: 1rem;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 1.25rem) 0 var(--mobile-section-space-small);
  }

  .hero-layout {
    gap: 1.6rem;
  }

  .hero h1 {
    max-width: 8.8ch;
    font-size: clamp(3rem, 13vw, 4.45rem);
    line-height: 0.96;
    letter-spacing: 0;
  }

  .hero-line {
    font-size: clamp(1.18rem, 5.2vw, 1.55rem);
  }

  .hero-body {
    font-size: 1.02rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 52px;
  }

  .hero-stage {
    margin-top: 0.2rem;
  }

  .hero-device-scene {
    width: 100%;
    min-height: clamp(410px, 112vw, 520px);
  }

  .hero-glow {
    width: min(92vw, 360px);
  }

  .hero-orb {
    width: min(82vw, 330px);
  }

  .hero-phone {
    width: min(78vw, 300px);
    height: auto;
    max-height: none;
    padding: 0.5rem;
    border-radius: 36px;
    animation: none;
  }

  .hero-phone-top-detail {
    top: 0.78rem;
    width: 66px;
    height: 18px;
  }

  .hero-phone-screen {
    border-radius: 28px;
  }

  .hero-float {
    max-width: min(48vw, 178px);
    padding: 0.56rem 0.68rem;
    font-size: 0.78rem;
    animation: none;
  }

  .hero-float-chat,
  .hero-float-interest {
    display: none;
  }

  .hero-float-call {
    top: 12%;
    right: 0;
  }

  .hero-float-event {
    bottom: 11%;
    left: 0;
  }

  .scroll-cue {
    display: none;
  }

  .about-app-showcase,
  .learning-showcase {
    display: flex;
    width: calc(100vw - var(--mobile-gutter));
    min-height: auto;
    gap: 1rem;
    justify-content: flex-start;
    margin: 1.75rem calc(var(--mobile-gutter) / -2) 0;
    padding: 0.5rem var(--mobile-gutter) 1.1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-inline: var(--mobile-gutter);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    border-radius: 0;
    perspective: none;
  }

  .about-app-showcase::-webkit-scrollbar,
  .learning-showcase::-webkit-scrollbar {
    display: none;
  }

  .about-showcase-glow,
  .about-showcase-orb,
  .about-showcase-label,
  .learning-showcase::before {
    display: none;
  }

  .about-phone-wrap,
  .about-phone-wrap--dm,
  .about-phone-wrap--chats,
  .about-phone-wrap--events,
  .about-app-showcase:hover .about-phone-wrap--dm,
  .about-app-showcase:hover .about-phone-wrap--chats,
  .about-app-showcase:hover .about-phone-wrap--events,
  .learning-phone-wrap,
  .learning-phone-wrap--main,
  .learning-phone-wrap--left,
  .learning-phone-wrap--right,
  .learning-showcase:hover .learning-phone-wrap--main,
  .learning-showcase:hover .learning-phone-wrap--left,
  .learning-showcase:hover .learning-phone-wrap--right {
    position: relative;
    flex: 0 0 min(84vw, 320px);
    transform: none;
    scroll-snap-align: center;
  }

  .about-phone,
  .about-phone--chats,
  .about-phone--events,
  .learning-phone,
  .learning-phone--secondary {
    width: min(82vw, 310px);
    margin-inline: auto;
    animation: none;
  }

  .about-mobile-label,
  .learning-mobile-label {
    display: block;
    margin-top: 0.75rem;
    color: var(--color-black);
    font-size: 0.85rem;
    font-weight: 780;
    text-align: center;
  }

  .learning-showcase {
    width: calc(100vw - var(--mobile-gutter));
  }

  .learning-phone {
    padding: 0.36rem;
    border-radius: 36px;
  }

  .learning-phone-screen {
    border-radius: 30px;
  }

  .discovery-phone-scene {
    min-height: 430px;
    margin-inline: calc(var(--mobile-gutter) / -2);
    border-radius: 28px;
  }

  .discovery-phone {
    width: min(74vw, 280px);
    animation: none;
  }

  .discovery-float {
    animation: none;
  }

  .discovery-float-two {
    display: none;
  }

  .discovery-float-one {
    top: 12%;
    left: 0.75rem;
  }

  .discovery-float-three {
    right: 0.75rem;
    bottom: 12%;
    left: auto;
  }

  .event-note {
    margin-top: 1.4rem;
  }

  .modal-close {
    top: 0.85rem;
    right: 0.85rem;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 430px) {
  :root {
    --mobile-gutter: 20px;
    --mobile-section-space: 66px;
    --mobile-section-space-small: 46px;
  }

  .hero h1 {
    max-width: 8.6ch;
    font-size: clamp(2.9rem, 13.4vw, 3.8rem);
  }

  .hero-line {
    font-size: clamp(1.14rem, 5.5vw, 1.38rem);
  }

  .hero-device-scene {
    min-height: clamp(390px, 116vw, 500px);
  }

  .hero-phone {
    width: min(80vw, 292px);
  }

  .event-tile,
  .event-tile.large {
    aspect-ratio: 4 / 3;
  }

  .partner-photo {
    aspect-ratio: 1 / 1;
  }

  .partner-photo img {
    object-position: center center;
  }
}

@media (max-width: 360px) {
  :root {
    --mobile-gutter: 18px;
  }

  .brand {
    width: 132px;
  }

  .brand-logo {
    width: 132px;
    max-width: 132px;
  }

  .hero h1 {
    font-size: clamp(2.68rem, 13vw, 3.25rem);
  }

  .hero-phone,
  .about-phone,
  .about-phone--chats,
  .about-phone--events,
  .learning-phone,
  .learning-phone--secondary {
    width: min(82vw, 286px);
  }

  .hero-float {
    display: none;
  }

  .principles {
    grid-template-columns: 1fr;
  }

  .event-tile span {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }
}

@media (max-height: 520px) and (max-width: 900px) {
  .nav-menu {
    padding-top: calc(var(--header-height) + 0.75rem);
  }

  .nav-menu a {
    min-height: 40px;
    font-size: clamp(1.15rem, 6vh, 1.8rem);
  }

  .hero {
    padding-bottom: 2rem;
  }

  .hero-device-scene {
    min-height: 360px;
  }

  .hero-phone {
    width: min(42vw, 220px);
  }
}

@media (hover: none) {
  .button:hover,
  .nav-cta:hover,
  .event-tile:hover,
  .event-tile:hover img,
  .partner-photo:hover img,
  .hero-float:hover,
  .discovery-float:hover,
  .view-event-button:hover {
    transform: none;
    filter: none;
    box-shadow: none;
  }

  .button:active,
  .nav-cta:active,
  .view-event-button:active,
  .faq-question:active {
    transform: scale(0.99);
  }
}

@media (max-width: 768px) {
  :root {
    --mobile-section-space: 58px;
    --mobile-section-space-small: 40px;
  }

  .statement-section,
  .editorial-section,
  .story-section,
  .communication-section,
  .learning-section,
  .safety-section,
  .partner-section,
  .waitlist-section,
  .faq-section,
  .matching-section,
  .discovery-section {
    padding-top: var(--mobile-section-space);
    padding-bottom: var(--mobile-section-space);
  }

  .hero {
    padding-top: calc(var(--header-height) + 0.75rem);
    padding-bottom: var(--mobile-section-space-small);
  }

  .hero-layout {
    gap: 1rem;
  }

  .hero-device-scene {
    min-height: clamp(320px, 86vw, 430px);
  }

  .hero-phone {
    width: min(64vw, 240px);
    height: auto;
    max-height: none;
    animation: heroPhoneFloat 7s var(--ease) infinite;
  }

  .hero-float,
  .hero-float-chat,
  .hero-float-call,
  .hero-float-interest,
  .hero-float-event {
    display: block;
    max-width: min(42vw, 150px);
    padding: 0.45rem 0.58rem;
    font-size: 0.72rem;
    animation: heroBubbleFloat 6.5s var(--ease) infinite;
  }

  .hero-float-chat {
    top: 14%;
    left: 0.25rem;
  }

  .hero-float-call {
    top: 25%;
    right: 0.2rem;
  }

  .hero-float-interest {
    right: 0.55rem;
    bottom: 24%;
  }

  .hero-float-event {
    bottom: 12%;
    left: 0.45rem;
  }

  .matching-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .matching-copy {
    order: 1;
  }

  .match-device {
    order: 2;
  }

  .device-shell {
    width: min(82vw, 280px);
    max-width: 280px;
  }

  .device-screen {
    min-height: 360px;
  }

  .profile-strip span {
    height: 76px;
  }

  .discovery-section .story-grid {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
  }

  .discovery-section .story-copy {
    order: 1;
  }

  .discovery-phone-scene {
    order: 2;
    min-height: clamp(330px, 82vw, 400px);
  }

  .discovery-phone {
    width: min(58vw, 225px);
    animation: discoveryPhoneFloat 7.5s var(--ease) infinite;
  }

  .discovery-float {
    animation: discoveryLabelFloat 6.8s var(--ease) infinite;
  }

  .about-app-showcase,
  .learning-showcase {
    display: grid;
    width: min(100%, 410px);
    min-height: clamp(350px, 88vw, 440px);
    margin: 1rem auto 0;
    padding: 0;
    overflow: visible;
    place-items: center;
    scroll-snap-type: none;
    perspective: 1200px;
  }

  .about-phone-wrap,
  .about-phone-wrap--dm,
  .about-phone-wrap--chats,
  .about-phone-wrap--events,
  .about-app-showcase:hover .about-phone-wrap--dm,
  .about-app-showcase:hover .about-phone-wrap--chats,
  .about-app-showcase:hover .about-phone-wrap--events,
  .learning-phone-wrap,
  .learning-phone-wrap--main,
  .learning-phone-wrap--left,
  .learning-phone-wrap--right,
  .learning-showcase:hover .learning-phone-wrap--main,
  .learning-showcase:hover .learning-phone-wrap--left,
  .learning-showcase:hover .learning-phone-wrap--right {
    position: absolute;
    flex: none;
    scroll-snap-align: none;
  }

  .about-phone-wrap--dm,
  .about-app-showcase:hover .about-phone-wrap--dm {
    z-index: 3;
    transform: translateY(10px);
  }

  .about-phone-wrap--chats,
  .about-app-showcase:hover .about-phone-wrap--chats {
    z-index: 2;
    transform: translate(-86px, -14px) rotate(-7deg) scale(0.82);
  }

  .about-phone-wrap--events,
  .about-app-showcase:hover .about-phone-wrap--events {
    z-index: 1;
    transform: translate(88px, -4px) rotate(7deg) scale(0.82);
  }

  .about-phone {
    width: min(50vw, 214px);
    animation: aboutPhoneFloat 7.4s var(--ease) infinite;
  }

  .about-phone--chats,
  .about-phone--events {
    width: min(42vw, 180px);
  }

  .about-mobile-label,
  .learning-mobile-label {
    display: none;
  }

  .learning-showcase {
    min-height: clamp(340px, 86vw, 420px);
  }

  .learning-phone-wrap--main,
  .learning-showcase:hover .learning-phone-wrap--main {
    z-index: 3;
    transform: translateY(10px);
  }

  .learning-phone-wrap--left,
  .learning-showcase:hover .learning-phone-wrap--left {
    z-index: 2;
    transform: translate(-88px, -14px) rotate(-8deg) scale(0.82);
  }

  .learning-phone-wrap--right,
  .learning-showcase:hover .learning-phone-wrap--right {
    z-index: 1;
    transform: translate(88px, -2px) rotate(8deg) scale(0.82);
  }

  .learning-phone {
    width: min(50vw, 214px);
    animation: aboutPhoneFloat 7.8s var(--ease) infinite;
  }

  .learning-phone--secondary {
    width: min(42vw, 180px);
  }

  .partner-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .partner-copy {
    display: contents;
  }

  .partner-copy .kicker {
    order: 1;
  }

  .partner-copy h2 {
    order: 2;
    margin-bottom: 0;
  }

  .partner-copy p:first-of-type {
    order: 3;
  }

  .partner-copy .collab-list {
    order: 4;
    margin-top: 0;
  }

  .partner-copy p:last-of-type {
    order: 5;
  }

  .partner-photo {
    order: 6;
    margin-top: 0.25rem;
  }

  .partner-copy .button {
    order: 7;
  }

  .site-footer {
    padding: 2rem 0 1rem;
  }

  .footer-layout {
    gap: 0.85rem;
  }

  .footer-wordmark {
    margin-bottom: 0.2rem;
    font-size: clamp(2.25rem, 10vw, 3.3rem);
  }

  .site-footer h2 {
    margin-bottom: 0.15rem;
  }

  .site-footer nav,
  .site-footer .footer-layout > div:not(:first-child) {
    gap: 0;
  }

  .site-footer a {
    min-height: 32px;
  }

  .footer-bottom {
    gap: 0.45rem;
    margin-top: 1.1rem;
    padding-top: 1rem;
  }
}

@media (max-width: 768px) and (max-height: 520px) {
  .hero-device-scene {
    min-height: 300px;
  }

  .hero-phone {
    width: min(34vw, 190px);
  }

  .hero-float {
    max-width: min(34vw, 132px);
    font-size: 0.68rem;
  }
}

@media (max-width: 919px) {
  .nav-menu {
    display: none;
  }

  .nav-menu.is-open {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-phone,
  .hero-float,
  .about-phone,
  .about-showcase-glow,
  .learning-phone,
  .voice-wave i,
  .video-preview::before,
  .event-badge,
  .discovery-phone,
  .discovery-float,
  .discovery-phone-glow {
    animation: none;
  }

  .comm-stage,
  .message-bubble,
  .video-person.primary,
  .video-person.pip,
  .video-controls,
  .attendee-row span {
    opacity: 1;
    transform: none;
  }

  .comm-progress span {
    width: 100%;
  }
}
