@font-face {
  font-family: 'Elms Sans';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/elms-sans-latin-wght-normal.woff2') format('woff2-variations');
}

:root {
  color-scheme: light;
  --navy: #111b2e;
  --navy-raised: #17243a;
  --navy-light: #22314a;
  --coral: #ee825b;
  --coral-light: #f3a184;
  --ivory: #f6f0e9;
  --ivory-deep: #e9dfd4;
  --white: #fffdfa;
  --ink: #111a2b;
  --muted: #687079;
  --line: rgba(17, 27, 46, 0.16);
  --wordmark: 'Elms Sans', 'Avenir Next', 'Helvetica Neue', Arial, sans-serif;
  --serif: 'Iowan Old Style', 'Palatino Linotype', 'Book Antiqua', Baskerville, Georgia, serif;
  --sans: Inter, 'Avenir Next', 'Helvetica Neue', Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ivory);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--coral);
  content: '';
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.masthead {
  position: fixed;
  z-index: 30;
  top: 3px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 17px max(40px, calc((100vw - 1360px) / 2));
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition:
    opacity 260ms ease,
    color 300ms ease,
    background 300ms ease;
}

.experience-first .masthead {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.experience-first.is-demo-ready .masthead {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.masthead.is-dark {
  background: rgba(17, 27, 46, 0.68);
  color: var(--white);
}

.masthead-brand {
  display: flex;
  align-items: center;
  gap: 34px;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.wordmark-symbol {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
}

.wordmark-mark {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  transition: opacity 300ms ease;
}

.wordmark-mark-on-dark,
.wordmark-mark-on-coral {
  opacity: 0;
}

.wordmark-name {
  display: block;
  color: var(--navy);
  font-family: var(--wordmark);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
  transition: color 300ms ease;
}

.wordmark-tagline {
  margin: 0;
  padding-left: 34px;
  border-left: 1px solid var(--line);
  color: var(--navy);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
  white-space: nowrap;
  transition:
    color 300ms ease,
    border-color 300ms ease;
}

.masthead.is-dark .wordmark-mark-on-light {
  opacity: 0;
}

.masthead.is-dark .wordmark-mark-on-dark {
  opacity: 1;
}

.masthead.is-coral .wordmark-mark-on-light {
  opacity: 0;
}

.masthead.is-coral .wordmark-mark-on-coral {
  opacity: 1;
}

.masthead.is-dark .wordmark-name,
.masthead.is-dark .wordmark-tagline {
  color: var(--white);
}

.masthead.is-dark .wordmark-tagline {
  border-color: rgba(255, 255, 255, 0.28);
}

.masthead nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.masthead nav a {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.masthead nav a:first-child {
  padding: 10px 0 8px;
  border-bottom: 1px solid var(--coral);
}

.masthead .nav-cta {
  padding: 12px 16px;
  border: 1px solid var(--navy);
  transition:
    background 180ms ease,
    color 180ms ease;
}

.masthead.is-dark nav a:first-child {
  border-color: var(--coral-light);
}

.masthead.is-dark .nav-cta {
  border-color: rgba(255, 255, 255, 0.78);
}

.masthead.is-dark .nav-cta:hover {
  border-color: var(--coral-light);
  background: var(--coral-light);
  color: var(--navy);
}

.masthead .nav-cta:hover {
  background: var(--navy);
  color: var(--white);
}

@media (min-width: 721px) {
  .masthead.is-photo nav {
    color: var(--white);
    text-shadow: 0 1px 10px rgba(17, 27, 46, 0.28);
  }

  .masthead.is-photo nav a:first-child,
  .masthead.is-photo .nav-cta {
    border-color: var(--white);
  }

  .masthead.is-photo .nav-cta:hover {
    background: var(--white);
    color: var(--navy);
    text-shadow: none;
  }
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #fff;
}

.hero-layout {
  min-height: 100svh;
}

.hero-main {
  position: relative;
  z-index: 2;
  display: flex;
  width: 50%;
  min-height: 100svh;
  justify-content: center;
  flex-direction: column;
  padding: clamp(118px, 14vh, 155px) clamp(26px, 2.6vw, 40px) clamp(54px, 8vh, 84px)
    max(40px, calc((100vw - 1360px) / 2));
  color: var(--navy);
}

.hero-portrait {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #77746f;
  box-shadow: none;
}

.hero-portrait img {
  display: block;
  width: 100%;
  height: 100svh;
  min-height: 100%;
  object-fit: cover;
  object-position: 84% center;
}

.hero-photo-tagline,
.hero-photo-promise {
  display: none;
}

.eyebrow {
  margin: 0;
  color: var(--coral);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--coral-light);
}

.eyebrow-dark {
  color: var(--navy);
}

.hero-main > .eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-main > .eyebrow i {
  width: 1px;
  height: 22px;
  background: var(--coral);
}

h1,
h2,
h3,
h4,
p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 400;
}

h1 {
  max-width: 830px;
  margin: 32px 0 31px;
  font-size: clamp(50px, 4.9vw, 70px);
  letter-spacing: -0.048em;
  line-height: 0.96;
}

.hero h1 {
  color: var(--navy);
  font-size: clamp(48px, 4.25vw, 62px);
  text-shadow: none;
}

h1 span,
h1 em {
  display: block;
}

h1 em {
  color: var(--coral);
  font-weight: 400;
  line-height: 1.03;
}

.hero-lede {
  max-width: 700px;
  margin: 10px 0 48px;
  color: rgba(17, 27, 46, 0.88);
  font-size: clamp(15px, 1.18vw, 17px);
  line-height: 1.67;
}

.hero-lede strong {
  color: var(--navy);
  font-weight: 750;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 25px;
  border: 1px solid currentColor;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

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

.button-dark {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.button-dark:hover {
  border-color: var(--coral);
  background: var(--coral);
}

.text-link {
  font-family: var(--serif);
  font-size: 17px;
  text-decoration-color: var(--coral);
  text-underline-offset: 6px;
}

.text-link span {
  margin-left: 4px;
  color: var(--coral);
}

.technology {
  display: flex;
  min-height: 100svh;
  align-items: center;
  padding: clamp(108px, 14vh, 160px) max(48px, 5vw);
  background: var(--ivory);
}

.ai-advantages {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.42fr);
  grid-template-rows: auto auto;
  column-gap: clamp(54px, 7vw, 105px);
  row-gap: clamp(42px, 5vh, 66px);
  align-items: start;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.ai-advantages::before {
  display: none;
}

.advantage-heading {
  display: flex;
  grid-row: 1 / span 2;
  align-self: stretch;
  justify-content: center;
  flex-direction: column;
  padding-right: clamp(32px, 4vw, 64px);
  border-right: 1px solid var(--line);
}

.advantage-heading h2 {
  max-width: 450px;
  margin: 22px 0 0;
  font-size: clamp(52px, 5vw, 76px);
  letter-spacing: -0.04em;
  line-height: 0.93;
}

.ai-advantages ol {
  display: grid;
  grid-column: 2;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3.5vw, 58px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.ai-advantages li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 17px;
  align-self: start;
  padding: 0;
  border-bottom: 0;
}

.ai-advantages li > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-family: var(--serif);
  font-size: 13px;
}

.ai-advantages h3 {
  margin: 2px 0 11px;
  font-family: var(--serif);
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.12;
}

.ai-advantages li p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.6;
}

.human-note {
  display: grid;
  grid-column: 2;
  grid-template-columns: minmax(260px, 0.9fr) minmax(260px, 1.1fr);
  gap: clamp(34px, 5vw, 80px);
  align-items: start;
  margin: 0;
  padding-top: clamp(30px, 3vw, 42px);
  padding-left: 0;
  border-top: 1px solid var(--line);
  border-left: 0;
  color: var(--navy);
  line-height: 1.45;
}

.human-note strong,
.human-note span {
  display: block;
}

.human-note strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(22px, 1.9vw, 29px);
  font-weight: 600;
}

.human-note span {
  margin-top: 2px;
  color: var(--muted);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.6;
}

.clarifier {
  padding: clamp(100px, 11vw, 150px) max(40px, calc((100vw - 1280px) / 2));
  background: var(--coral);
  color: var(--navy);
}

.joining-heading {
  display: grid;
  grid-template-columns: 0.42fr 1.58fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}

.joining-heading h2 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(42px, 5.5vw, 72px);
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.joining-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.8vw, 25px);
  margin: clamp(75px, 8vw, 108px) 0 0;
  padding: 0;
  list-style: none;
}

.joining-steps::before {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: 3%;
  left: 3%;
  height: 1px;
  background: rgba(255, 253, 250, 0.34);
  box-shadow: 0 0 18px rgba(255, 253, 250, 0.2);
  content: '';
}

.joining-steps li {
  position: relative;
  z-index: 1;
  display: flex;
  aspect-ratio: 1;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(27px, 3vw, 43px);
  border: 1px solid rgba(17, 27, 46, 0.16);
  border-radius: 50%;
  background: radial-gradient(circle at 38% 28%, #fffdfa 0%, #f7f0e9 72%, #efdfd4 100%);
  box-shadow:
    inset 0 0 58px rgba(238, 130, 91, 0.1),
    0 20px 50px rgba(17, 27, 46, 0.07);
}

.joining-steps li:nth-child(even) {
  background: radial-gradient(
    circle at 38% 28%,
    rgba(255, 253, 250, 0.42) 0%,
    var(--coral-light) 74%,
    #ec8f6f 100%
  );
}

.joining-steps li:last-child {
  border-color: rgba(255, 255, 255, 0.14);
  background: radial-gradient(circle at 38% 28%, #2a3850 0%, var(--navy) 72%);
  color: var(--white);
  box-shadow:
    inset 0 0 62px rgba(255, 255, 255, 0.07),
    0 24px 58px rgba(17, 27, 46, 0.16);
}

.joining-steps span {
  position: absolute;
  top: 13%;
  left: 50%;
  font-family: var(--serif);
  font-size: 19px;
  transform: translateX(-50%);
}

.joining-steps h3 {
  width: 100%;
  margin: 18px 0 10px;
  font-size: clamp(24px, 2.2vw, 31px);
  letter-spacing: -0.03em;
  line-height: 0.98;
  text-align: center;
}

.joining-steps p {
  width: 100%;
  max-width: 190px;
  margin: 0 auto;
  color: rgba(17, 27, 46, 0.7);
  font-size: clamp(10px, 0.86vw, 12px);
  line-height: 1.5;
  text-align: center;
}

.joining-steps li:last-child p {
  color: rgba(255, 255, 255, 0.66);
}

.experience {
  position: relative;
  height: 650vh;
  background: var(--navy);
  color: var(--white);
}

.experience-stage {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.8fr);
  gap: clamp(48px, 8vw, 130px);
  align-items: center;
  width: min(1280px, calc(100% - 80px));
  height: 100svh;
  margin: 0 auto;
  overflow: hidden;
}

.experience-logo-flight {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  gap: clamp(15px, 2vw, 25px);
  width: max-content;
  color: var(--white);
  opacity: var(--flight-opacity, 1);
  pointer-events: none;
  transform: translate3d(calc(-50% + var(--flight-x, 0px)), calc(-50% + var(--flight-y, 0px)), 0)
    scale(var(--flight-scale, 1));
  transform-origin: center;
  will-change: transform, opacity;
}

.experience-logo-flight img {
  display: block;
  width: clamp(76px, 8vw, 112px);
  height: clamp(76px, 8vw, 112px);
}

.experience-logo-flight span {
  font-family: var(--wordmark);
  font-size: clamp(54px, 6vw, 84px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.experience-stage::before {
  position: absolute;
  top: 13%;
  right: 13%;
  width: min(32vw, 460px);
  height: min(32vw, 460px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: '';
  opacity: var(--phone-reveal, 1);
  transform: scale(var(--stage-scale, 0.78));
}

.story-copy {
  position: relative;
  z-index: 2;
  min-height: 620px;
  opacity: var(--story-opacity, 1);
  transform: translateY(var(--story-y, 0));
  will-change: opacity, transform;
}

.story-heading {
  position: absolute;
  top: 78px;
  left: 0;
}

.story-heading h2 {
  max-width: 500px;
  margin: 20px 0 0;
  font-size: clamp(48px, 5.2vw, 75px);
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.scene-stack {
  position: absolute;
  top: 295px;
  right: 0;
  bottom: 0;
  left: 0;
}

.scene-copy {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 520px;
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 240ms ease,
    transform 240ms ease;
}

.scene-copy.is-active {
  opacity: 1;
  transform: translateY(0);
}

.scene-copy span {
  color: var(--coral-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scene-copy h3 {
  max-width: 510px;
  margin: 19px 0 16px;
  font-size: clamp(34px, 3.4vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1;
}

.scene-copy p {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 253, 250, 0.64);
  font-size: 14px;
  line-height: 1.7;
}

.story-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  width: 265px;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--serif);
  font-size: 11px;
}

.progress-track {
  position: relative;
  width: 100%;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.progress-track i {
  position: absolute;
  inset: 0;
  background: var(--coral);
  transform: scaleX(var(--story-progress, 0));
  transform-origin: left;
}

.phone-wrap {
  position: relative;
  z-index: 2;
  justify-self: center;
  width: min(390px, 100%);
  opacity: var(--phone-reveal, 1);
  transform: translateY(var(--phone-reveal-y, 0)) scale(var(--phone-reveal-scale, 1));
  transform-origin: center;
  will-change: opacity, transform;
}

.phone-shadow {
  position: absolute;
  top: 10%;
  right: -25%;
  bottom: 5%;
  left: 6%;
  border-radius: 42%;
  background: rgba(0, 0, 0, 0.42);
  filter: blur(65px);
  transform: translateY(var(--shadow-shift, -15px));
}

.phone {
  position: relative;
  height: min(82svh, 790px);
  min-height: 620px;
  overflow: hidden;
  border: 7px solid #070d18;
  border-radius: 44px;
  background: #f7f2ec;
  color: var(--ink);
  box-shadow:
    0 50px 90px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  transform: translateY(var(--phone-shift, 6px));
}

.phone-topbar {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 30px;
  padding: 7px 22px 0;
  background: #f7f2ec;
  font-size: 9px;
  font-weight: 800;
}

.phone-island {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 78px;
  height: 20px;
  border-radius: 20px;
  background: #080d16;
  transform: translateX(-50%);
}

.phone-status {
  font-size: 6px;
  letter-spacing: 2px;
}

.app-header {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  height: 52px;
  padding: 7px 16px 8px;
  border-bottom: 1px solid rgba(17, 27, 46, 0.1);
  background: rgba(247, 242, 236, 0.94);
}

.app-mark {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--coral-light);
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
}

.app-mark-small {
  flex: 0 0 auto;
  width: 29px;
  height: 29px;
  font-size: 16px;
}

.app-brand {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 8px;
  opacity: var(--app-brand-opacity, 1);
}

.app-brand-mark {
  display: block;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
}

.app-header strong {
  font-family: var(--wordmark);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}

.app-online-dot {
  display: block;
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #58a47d;
}

.app-header button {
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 1px;
}

.phone-screen {
  position: relative;
  height: calc(100% - 138px);
  overflow: hidden;
}

.conversation-panel,
.match-panel {
  position: absolute;
  inset: 0;
}

.conversation-panel {
  padding: 15px 13px 48px;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  scrollbar-color: rgba(17, 27, 46, 0.3) transparent;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position, opacity;
}

.conversation-panel::-webkit-scrollbar {
  width: 4px;
}

.conversation-panel::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(17, 27, 46, 0.3);
}

.conversation-panel::-webkit-scrollbar-track {
  background: transparent;
}

.conversation-panel:focus-visible {
  outline: 2px solid rgba(238, 130, 91, 0.7);
  outline-offset: -3px;
}

.conversation-scroll-cue {
  position: absolute;
  z-index: 3;
  right: 10px;
  bottom: 8px;
  padding: 5px 7px;
  border: 1px solid rgba(17, 27, 46, 0.1);
  border-radius: 999px;
  background: rgba(247, 242, 236, 0.9);
  box-shadow: 0 3px 10px rgba(17, 27, 46, 0.08);
  color: #747a82;
  font-size: 6px;
  font-weight: 750;
  letter-spacing: 0.08em;
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
  transform: translateY(4px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.conversation-scroll-cue.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.phone-screen.has-view-switch .conversation-scroll-cue {
  bottom: 43px;
}

.phone-view-switch {
  position: absolute;
  z-index: 9;
  bottom: 7px;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr 0.64fr;
  width: 164px;
  padding: 3px;
  border: 1px solid rgba(17, 27, 46, 0.12);
  border-radius: 999px;
  background: rgba(247, 242, 236, 0.94);
  box-shadow: 0 5px 18px rgba(17, 27, 46, 0.13);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 7px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.phone-view-switch.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.phone-view-switch button {
  min-height: 27px;
  padding: 0 9px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #737982;
  font-size: 6.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
}

.phone-view-switch button.is-active {
  background: var(--navy);
  color: #fff;
}

.phone-view-switch button:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 1px;
}

.phone-screen.is-reviewing-conversation .conversation-panel {
  z-index: 2;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.phone-screen.is-reviewing-conversation .match-panel {
  opacity: 0 !important;
  pointer-events: none !important;
}

.day-stamp {
  margin: 0 0 13px;
  color: #90949b;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.message {
  width: fit-content;
  max-width: 84%;
  margin-bottom: 11px;
  opacity: var(--reveal, 1);
  transform: translateY(var(--reveal-y, 0)) scale(var(--reveal-scale, 1));
  transform-origin: bottom left;
}

.message p {
  margin: 0;
  padding: 10px 12px;
  border-radius: 5px 15px 15px 15px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(17, 27, 46, 0.05);
  font-size: 10px;
  line-height: 1.47;
}

.message-name {
  display: block;
  margin: 0 0 4px 8px;
  color: #8d7a70;
  font-size: 7px;
  font-weight: 700;
}

.message time {
  display: block;
  margin: 3px 7px 0;
  color: #999ca1;
  font-size: 6px;
}

.message.member {
  margin-left: auto;
  transform-origin: bottom right;
}

.message.member p {
  border-radius: 15px 5px 15px 15px;
  background: var(--navy);
  color: #fff;
}

.message.member time {
  text-align: right;
}

.signal-card {
  width: calc(100% - 12px);
  margin: 14px auto 0;
  padding: 14px;
  border: 1px solid rgba(238, 130, 91, 0.42);
  background: rgba(255, 255, 255, 0.65);
  opacity: var(--reveal, 1);
  transform: translateY(var(--reveal-y, 0));
}

.signal-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.signal-title span {
  color: var(--coral);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.signal-title i {
  width: 17px;
  height: 1px;
  background: var(--coral);
}

.signal-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.signal-chips span {
  padding: 5px 7px;
  border: 1px solid rgba(17, 27, 46, 0.12);
  border-radius: 20px;
  background: #fff;
  font-family: var(--serif);
  font-size: 8px;
}

.signal-card > p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 7px;
}

.match-panel {
  padding: 16px 18px 48px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 28%, rgba(238, 130, 91, 0.16), transparent 31%), #f7f2ec;
  opacity: var(--match-opacity, 0);
  transform: translateY(var(--match-y, 40px));
  will-change: transform, opacity;
}

.demo-control-label {
  position: absolute;
  z-index: 8;
  bottom: 22px;
  left: 0;
  margin: 0;
  color: rgba(255, 253, 250, 0.48);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.demo-replay {
  position: absolute;
  z-index: 9;
  right: 0;
  bottom: 17px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 253, 250, 0.35);
  background: rgba(17, 27, 46, 0.62);
  color: var(--white);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.demo-replay[hidden] {
  display: none;
}

.match-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--coral);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.match-kicker i {
  padding: 5px 7px;
  border: 1px solid rgba(17, 27, 46, 0.12);
  border-radius: 20px;
  color: #536b5f;
  font-style: normal;
  letter-spacing: 0.07em;
}

.match-gallery {
  margin: 16px auto 8px;
  text-align: center;
}

.profile-shot {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--navy);
}

.profile-shot img {
  position: absolute;
  top: 0;
  width: 300%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  transition: left 650ms cubic-bezier(0.65, 0, 0.35, 1);
}

.profile-shot-one img {
  left: 0;
}

.profile-shot-two img {
  left: -100%;
}

.profile-shot-three img {
  left: -200%;
}

.match-photo {
  width: 122px;
  height: 122px;
  margin: 0 auto;
  border: 1px solid rgba(17, 27, 46, 0.18);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(17, 27, 46, 0.13);
}

.photo-thumbnails {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: -13px;
}

.photo-thumbnails .profile-shot {
  width: 29px;
  height: 29px;
  border: 2px solid #f7f2ec;
  border-radius: 50%;
  box-shadow: 0 2px 7px rgba(17, 27, 46, 0.15);
}

.photo-thumbnails .is-active {
  outline: 1px solid var(--coral);
  outline-offset: 1px;
}

.match-gallery figcaption {
  margin-top: 5px;
  color: var(--muted);
  font-size: 6.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.match-name {
  text-align: center;
}

.match-name h4 {
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.match-name p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 8px;
}

.match-reason {
  margin-top: 17px;
  padding: 14px 0;
  border-top: 1px solid rgba(17, 27, 46, 0.13);
  border-bottom: 1px solid rgba(17, 27, 46, 0.13);
}

.match-reason > span {
  color: var(--coral);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.match-reason p {
  margin: 8px 0 10px;
  font-family: var(--serif);
  font-size: 12px;
  line-height: 1.42;
}

.match-reason div {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.match-reason i {
  padding: 4px 6px;
  border-radius: 20px;
  background: #ebe2d9;
  color: #5a626c;
  font-size: 7px;
  font-style: normal;
}

.match-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 14px 0;
}

.match-note p {
  margin: 0;
  padding: 9px 10px;
  border-radius: 4px 13px 13px 13px;
  background: #fff;
  font-size: 8.5px;
  line-height: 1.4;
}

.match-actions {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 7px;
}

.match-actions span,
.match-actions strong {
  display: grid;
  min-height: 39px;
  place-items: center;
  border: 1px solid rgba(17, 27, 46, 0.2);
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.match-actions strong {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.mutual-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 7px;
  text-align: center;
}

.mutual-note i {
  color: #5b8d74;
  font-style: normal;
}

.mutual-note span {
  display: block;
  max-width: 260px;
  margin: 4px auto 0;
  color: #7a7f86;
  line-height: 1.35;
}

.composer {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 8px 10px 10px 16px;
  border-top: 1px solid rgba(17, 27, 46, 0.1);
  background: #f7f2ec;
  color: #8d9299;
  font-size: 9px;
}

.composer i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 16px;
  font-style: normal;
}

.example-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  letter-spacing: 0.04em;
  text-align: center;
}

.principles {
  width: 100%;
  margin: 0;
  padding: clamp(105px, 12vw, 165px) max(48px, 5vw);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(44px, 6vw, 110px);
  margin-top: 0;
}

.principle-grid article {
  min-height: 275px;
  padding: 0;
}

.principle-grid article + article {
  padding-left: 0;
}

.principle-grid span {
  color: var(--coral);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.principle-grid h3 {
  max-width: 430px;
  margin: 50px 0 22px;
  font-size: clamp(38px, 3.6vw, 54px);
  letter-spacing: -0.025em;
  line-height: 1.04;
}

.principle-grid p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.7;
}

.payment {
  display: grid;
  grid-template-columns: 0.4fr 1.6fr;
  gap: 70px;
  padding: clamp(105px, 12vw, 165px) max(40px, calc((100vw - 1280px) / 2));
  background: var(--coral);
}

.payment h2 {
  max-width: 900px;
  margin: 0 0 46px;
  font-size: clamp(46px, 5.2vw, 72px);
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.access {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(70px, 10vw, 150px);
  width: min(1280px, calc(100% - 80px));
  margin: 0 auto;
  padding: clamp(110px, 13vw, 180px) 0;
}

.access-copy h2 {
  margin: 22px 0 28px;
  font-size: clamp(52px, 5.8vw, 82px);
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.access-copy > p:last-child {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.queue-form {
  align-self: center;
  padding: clamp(28px, 4vw, 47px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.32);
}

.queue-form-hero {
  width: min(100%, 620px);
  padding: 0;
  border: 0;
  background: transparent;
}

.queue-form-hero label {
  margin-bottom: 14px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(25px, 2.2vw, 33px);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.queue-form-hero .queue-input-row input {
  border-color: var(--navy);
  background: rgba(255, 255, 255, 0.86);
}

.queue-form-hero .queue-input-row button {
  border-color: var(--coral);
  background: var(--coral);
}

.queue-form-hero .queue-input-row button:hover {
  border-color: var(--coral-light);
  background: var(--coral-light);
  color: var(--navy);
}

.queue-form-hero .queue-note {
  color: rgba(17, 27, 46, 0.76);
}

.queue-form-hero .queue-success strong,
.queue-form-hero .queue-success span {
  color: var(--navy);
}

.access-action {
  align-self: center;
}

.access-action p {
  max-width: 390px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.queue-form label {
  display: block;
  margin-bottom: 25px;
  font-family: var(--serif);
  font-size: clamp(31px, 3.6vw, 47px);
  line-height: 1.02;
}

.queue-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.queue-input-row input {
  min-width: 0;
  min-height: 64px;
  padding: 0 18px;
  border: 1px solid var(--navy);
  border-right: 0;
  border-radius: 0;
  outline: 0;
  background: rgba(255, 255, 255, 0.5);
  color: var(--navy);
  font-size: 15px;
}

.queue-input-row input:focus {
  box-shadow: inset 0 0 0 2px var(--coral);
}

.queue-input-row button {
  min-height: 64px;
  padding: 0 23px;
  border: 1px solid var(--navy);
  border-radius: 0;
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.queue-input-row button:hover {
  border-color: var(--coral);
  background: var(--coral);
}

.queue-input-row button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.queue-note,
.queue-error {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.queue-error {
  color: #9a321d;
  font-weight: 700;
}

.queue-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.queue-success p,
.queue-success strong,
.queue-success span {
  display: block;
}

.queue-success p {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.queue-success strong {
  font-family: var(--serif);
  font-size: clamp(45px, 6vw, 72px);
  font-weight: 400;
  line-height: 0.95;
}

.queue-success span {
  margin-top: 17px;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 46px max(40px, calc((100vw - 1280px) / 2));
  background: var(--navy);
  color: rgba(255, 255, 255, 0.52);
  font-size: 8px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-wordmark img {
  display: block;
  width: 36px;
}

.footer-wordmark span {
  color: var(--white);
  font-family: var(--wordmark);
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: lowercase;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.site-footer nav a {
  text-decoration-color: var(--coral);
  text-underline-offset: 4px;
}

.site-footer > span {
  grid-column: 3;
  text-align: right;
}

.button:focus-visible,
.text-link:focus-visible,
.masthead a:focus-visible,
.queue-input-row button:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid var(--coral-light);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .hero-main {
    width: 50%;
  }

  .hero-portrait {
    left: 50%;
  }

  .ai-advantages {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 42px;
    width: min(760px, 100%);
  }

  .advantage-heading {
    display: block;
    grid-row: auto;
    padding-right: 0;
    padding-bottom: 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .human-note {
    display: block;
    grid-column: auto;
    padding-top: 24px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .ai-advantages ol {
    grid-column: auto;
  }

  .joining-steps {
    grid-template-columns: repeat(2, 1fr);
    width: min(620px, 100%);
    margin-right: auto;
    margin-left: auto;
  }

  .joining-steps::before {
    display: none;
  }

  .experience-stage {
    grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.7fr);
    gap: 45px;
  }

  .story-copy {
    min-height: 590px;
  }

  .story-heading h2 {
    font-size: 54px;
  }

  .scene-stack {
    top: 245px;
  }

  .phone {
    min-height: 590px;
  }

  .payment {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .access {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .access-copy {
    max-width: 720px;
  }
}

@media (max-width: 720px) {
  .masthead {
    top: 3px;
    gap: 12px;
    width: 100%;
    padding: 11px 16px;
    border-radius: 0;
  }

  .masthead-brand {
    gap: 16px;
  }

  .wordmark {
    gap: 7px;
  }

  .wordmark-symbol {
    width: 32px;
    height: 32px;
  }

  .wordmark-name {
    font-size: 26px;
  }

  .wordmark-tagline {
    display: none;
  }

  .masthead nav {
    gap: 0;
  }

  .masthead nav a:first-child {
    display: none;
  }

  .masthead .nav-cta {
    padding: 10px 11px;
    font-size: 8px;
  }

  .hero {
    min-height: auto;
    overflow: visible;
  }

  .hero-layout {
    min-height: auto;
  }

  .hero-portrait {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    height: 62svh;
    min-height: 460px;
  }

  .hero-photo-tagline {
    position: absolute;
    z-index: 2;
    top: clamp(28px, 7vw, 46px);
    right: 18px;
    left: 18px;
    display: block;
    margin: 0;
    color: var(--navy);
    font-family: var(--serif);
    font-size: clamp(35px, 9.2vw, 42px);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 1;
  }

  .hero-portrait::after {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    left: 0;
    height: 42%;
    background: linear-gradient(
      180deg,
      rgba(255, 253, 250, 0.92) 0%,
      rgba(255, 253, 250, 0.72) 48%,
      rgba(255, 253, 250, 0) 100%
    );
    content: '';
    pointer-events: none;
  }

  .hero-photo-promise {
    position: absolute;
    z-index: 2;
    right: 18px;
    bottom: clamp(25px, 7vw, 42px);
    left: 18px;
    display: grid;
    gap: 9px;
    margin: 0;
    color: var(--navy);
  }

  .hero-photo-promise strong {
    color: var(--coral);
    font-family: var(--serif);
    font-size: clamp(31px, 8.7vw, 39px);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1;
  }

  .hero-photo-promise span {
    max-width: 330px;
    font-size: 13px;
    line-height: 1.45;
  }

  .hero-portrait::before {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    height: 36%;
    background: linear-gradient(
      0deg,
      rgba(255, 253, 250, 0.94) 0%,
      rgba(255, 253, 250, 0.7) 48%,
      rgba(255, 253, 250, 0) 100%
    );
    content: '';
    pointer-events: none;
  }

  .hero-main {
    width: 100%;
    min-height: auto;
    padding: 102px 18px 56px;
  }

  .hero-portrait img {
    height: 100%;
    min-height: 460px;
    object-position: 84% center;
  }

  .hero-main > .eyebrow {
    gap: 11px;
    font-size: 8px;
  }

  .hero-main > .eyebrow i {
    height: 17px;
  }

  h1 {
    margin: 22px 0 22px;
    font-size: clamp(45px, 13.2vw, 57px);
    line-height: 0.97;
  }

  .hero-lede {
    margin: 8px 0 32px;
    font-size: 14px;
    line-height: 1.58;
  }

  .ai-advantages {
    gap: 34px;
    padding: 0;
  }

  .technology {
    min-height: auto;
    padding: 110px 18px 90px;
  }

  .ai-advantages ol {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ai-advantages li {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
  }

  .ai-advantages li:last-child {
    border-bottom: 0;
  }

  .advantage-heading h2 {
    font-size: clamp(48px, 14vw, 62px);
  }

  .human-note {
    padding-left: 0;
  }

  .clarifier {
    padding: 92px 18px 105px;
  }

  .joining-heading {
    grid-template-columns: 1fr;
    gap: 23px;
  }

  .joining-heading h2 {
    max-width: 540px;
    font-size: clamp(43px, 13.5vw, 61px);
  }

  .joining-steps {
    grid-template-columns: 1fr;
    gap: 16px;
    width: min(310px, 100%);
    margin: 65px auto 0;
  }

  .joining-steps::before {
    top: 3%;
    right: auto;
    bottom: 3%;
    left: 50%;
    width: 1px;
    height: auto;
  }

  .joining-steps li {
    width: 100%;
    padding: 42px;
  }

  .joining-steps h3 {
    font-size: 30px;
  }

  .joining-steps p {
    max-width: 205px;
    font-size: 11px;
  }

  .experience {
    z-index: 40;
    height: 700vh;
  }

  .experience-stage {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(180px, 23dvh) minmax(0, 1fr);
    gap: 8px;
    align-items: start;
    width: calc(100% - 20px);
    height: 100dvh;
    padding: calc(10px + env(safe-area-inset-top)) 0 8px;
  }

  .experience-logo-flight {
    gap: 12px;
  }

  .experience-logo-flight img {
    width: clamp(62px, 18vw, 82px);
    height: clamp(62px, 18vw, 82px);
  }

  .experience-logo-flight span {
    font-size: clamp(43px, 13vw, 60px);
  }

  .experience-stage::before {
    display: none;
  }

  .story-copy {
    min-height: 0;
  }

  .story-heading {
    position: relative;
    top: auto;
  }

  .story-heading h2 {
    margin-top: 10px;
    font-size: clamp(20px, 6.2vw, 25px);
    letter-spacing: -0.04em;
    white-space: nowrap;
  }

  .scene-stack {
    top: 72px;
  }

  .scene-copy h3 {
    margin: 8px 0;
    font-size: 25px;
  }

  .scene-copy p {
    max-width: 94%;
    font-size: 11px;
    line-height: 1.48;
  }

  .scene-copy span {
    font-size: 7px;
  }

  .story-progress {
    display: none;
  }

  .phone-wrap {
    width: min(390px, 94vw);
    height: 100%;
  }

  .phone {
    height: 100%;
    min-height: 0;
    border-width: 5px;
    border-radius: 34px;
  }

  .phone-topbar {
    height: 25px;
  }

  .phone-island {
    width: 64px;
    height: 17px;
  }

  .app-header {
    height: 44px;
    padding: 5px 12px 6px;
  }

  .app-brand {
    gap: 6px;
  }

  .app-brand-mark {
    width: 24px;
    height: 24px;
  }

  .app-header strong {
    font-size: 17px;
  }

  .app-online-dot {
    width: 5px;
    height: 5px;
  }

  .phone-screen {
    height: calc(100% - 115px);
  }

  .conversation-panel {
    padding-top: 10px;
  }

  .composer {
    height: 46px;
  }

  .composer i {
    width: 29px;
    height: 29px;
  }

  .message p {
    padding: 8px 10px;
    font-size: 8.5px;
  }

  .message {
    margin-bottom: 8px;
  }

  .signal-card {
    padding: 11px;
  }

  .match-panel {
    padding: 13px 16px 48px;
  }

  .match-gallery {
    margin: 8px auto 4px;
  }

  .match-photo {
    width: 78px;
    height: 78px;
  }

  .photo-thumbnails {
    margin-top: -10px;
  }

  .photo-thumbnails .profile-shot {
    width: 23px;
    height: 23px;
  }

  .match-name h4 {
    font-size: 22px;
  }

  .match-reason {
    margin-top: 10px;
    padding: 10px 0;
  }

  .match-note {
    margin: 9px 0;
  }

  .mutual-note {
    margin-top: 7px;
  }

  .example-note {
    display: none;
  }

  .demo-control-label {
    display: none;
  }

  .demo-replay {
    top: calc(12px + env(safe-area-inset-top));
    right: 2px;
    bottom: auto;
  }

  .principles,
  .access {
    width: 100%;
  }

  .principles {
    padding: 86px 18px;
  }

  .principle-grid {
    grid-template-columns: 1fr;
    gap: 52px;
    margin-top: 0;
  }

  .principle-grid article,
  .principle-grid article + article {
    min-height: 0;
    padding: 0;
    border-right: 0;
    border-bottom: 0;
  }

  .principle-grid h3 {
    margin-top: 28px;
    font-size: clamp(38px, 11vw, 48px);
  }

  .payment {
    padding: 100px 18px;
  }

  .payment h2 {
    font-size: 42px;
  }

  .access {
    grid-template-columns: 1fr;
    gap: 55px;
    padding: 100px 18px;
  }

  .access-copy h2 {
    font-size: 53px;
  }

  .queue-form {
    padding: 26px 18px;
  }

  .queue-form-hero {
    padding: 0;
  }

  .queue-form-hero label {
    font-size: 25px;
  }

  .queue-input-row {
    grid-template-columns: 1fr;
  }

  .queue-input-row input {
    border-right: 1px solid var(--navy);
    border-bottom: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 42px 18px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .site-footer > span {
    grid-column: 1;
    text-align: left;
  }
}

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

  .button,
  .scene-copy,
  .profile-shot img {
    transition: none;
  }

  .experience {
    height: auto;
    padding: 95px 0;
  }

  .experience-stage {
    position: relative;
    grid-template-columns: 1fr 390px;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .experience-logo-flight,
  .demo-control-label,
  .demo-replay {
    display: none;
  }

  .experience-first .masthead {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .story-copy {
    min-height: 0;
  }

  .story-heading,
  .scene-stack,
  .scene-copy {
    position: relative;
    top: auto;
  }

  .scene-stack {
    display: grid;
    gap: 45px;
    margin-top: 60px;
  }

  .scene-copy {
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 1;
    transform: none;
  }

  .story-progress {
    display: none;
  }

  .phone-wrap {
    align-self: start;
    opacity: 1;
    transform: none;
  }

  .phone {
    transform: none;
  }

  .message,
  .signal-card {
    opacity: 1;
    transform: none;
  }

  .conversation-panel {
    opacity: 0 !important;
  }

  .match-panel {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 720px) and (prefers-reduced-motion: reduce) {
  .experience-stage {
    display: flex;
    flex-direction: column;
    gap: 55px;
    padding: 0;
  }

  .phone-wrap {
    width: min(350px, 94vw);
  }
}

/* Split-screen app carousel */

body {
  background: #fffafa;
}

.masthead {
  position: fixed;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  width: 100%;
  padding: 14px max(24px, calc((100vw - 1320px) / 2));
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--navy);
  transform: none;
  transition: box-shadow 360ms ease;
}

.masthead::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(135deg, rgba(238, 130, 91, 0.96), rgba(243, 161, 132, 0.92));
  content: '';
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms ease;
  will-change: opacity;
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.masthead > * {
  position: relative;
  z-index: 1;
}

.masthead.is-scrolled {
  box-shadow: 0 8px 28px rgba(88, 43, 28, 0.14);
}

.masthead.is-scrolled::before {
  opacity: 1;
}

.masthead .wordmark {
  justify-self: start;
}

.masthead .wordmark-symbol {
  width: 42px;
  height: 42px;
}

.masthead .wordmark-symbol img {
  display: block;
  width: 100%;
  height: 100%;
}

.masthead .wordmark-name,
.masthead .wordmark-tagline {
  color: var(--navy);
}

.masthead .wordmark-tagline {
  justify-self: center;
  padding: 0;
  border: 0;
  color: rgba(17, 27, 46, 0.9);
  font-size: clamp(18px, 1.35vw, 21px);
  font-weight: 650;
  letter-spacing: -0.01em;
}

.masthead .nav-cta {
  justify-self: end;
  padding: 13px 18px 12px;
  border: 1px solid var(--navy);
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.masthead .nav-cta:hover {
  border-color: var(--coral);
  background: var(--coral);
  color: var(--white);
}

.experience {
  height: auto;
  min-height: 100svh;
  overflow: hidden;
  background: #fffafa;
}

.experience-stage {
  position: relative;
  top: auto;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.72fr);
  gap: clamp(42px, 6vw, 96px);
  width: min(1320px, calc(100% - 64px));
  min-height: 100svh;
  height: auto;
  padding: 98px 0 30px;
  overflow: visible;
}

.experience-stage::before {
  top: 14%;
  right: 7%;
  width: min(35vw, 490px);
  height: min(35vw, 490px);
  border-color: rgba(17, 27, 46, 0.07);
  opacity: 1;
  transform: none;
}

.story-copy {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  min-height: 610px;
  padding: clamp(34px, 6vh, 66px) 0 8px;
  opacity: 1;
  transform: none;
}

.scene-stack {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  flex: 1;
  min-height: 390px;
}

.scene-copy {
  inset: 0 auto auto 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 650px;
  min-height: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px);
  transition:
    opacity 280ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.scene-copy.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.scene-copy h1,
.scene-copy h2 {
  max-width: 640px;
  margin: 0 0 21px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(49px, 5.2vw, 76px);
  font-weight: 400;
  letter-spacing: -0.046em;
  line-height: 0.96;
}

.scene-copy h1 del,
.scene-copy h2 del {
  color: var(--coral);
  text-decoration-color: var(--coral);
  text-decoration-thickness: 2px;
}

.scene-copy h2 em {
  color: var(--coral);
  font-style: normal;
}

.scene-copy > p {
  max-width: 560px;
  margin: 0;
  color: rgba(17, 27, 46, 0.64);
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.7;
}

.scene-copy > strong {
  margin-top: 24px;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.5;
}

.scene-copy > small {
  margin-top: 13px;
  color: rgba(17, 27, 46, 0.46);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.slide-download {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 330px);
  min-height: 54px;
  margin-top: 28px;
  padding: 0 19px;
  border-radius: 5px;
  background: var(--navy);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.slide-download::after {
  content: '→';
  font-size: 17px;
}

.carousel-footer {
  display: grid;
  grid-template-columns: minmax(170px, 260px) auto;
  gap: 32px;
  align-items: center;
  width: min(100%, 560px);
  margin-top: auto;
}

.carousel-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.carousel-progress button {
  position: relative;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
}

.carousel-progress button::before {
  position: absolute;
  top: 8px;
  right: 0;
  left: 0;
  height: 2px;
  background: rgba(17, 27, 46, 0.16);
  content: '';
  transition: background 180ms ease;
}

.carousel-progress button:hover::before,
.carousel-progress button:focus-visible::before {
  background: rgba(17, 27, 46, 0.46);
}

.carousel-progress button.is-active::before {
  background: var(--coral);
}

.carousel-actions {
  display: flex;
  gap: 8px;
}

.carousel-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 46px;
  min-height: 46px;
  padding: 0 15px;
  border: 1px solid rgba(17, 27, 46, 0.26);
  background: transparent;
  color: var(--navy);
}

.carousel-actions button:disabled {
  opacity: 0.28;
}

.carousel-actions .carousel-next {
  min-width: 146px;
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phone-wrap {
  width: min(390px, 100%);
  opacity: 1;
  transform: none;
}

.phone-shadow {
  background: rgba(17, 27, 46, 0.18);
}

.phone {
  height: min(78svh, 720px);
  min-height: 560px;
  transform: none;
}

.example-note {
  color: rgba(17, 27, 46, 0.42);
}

.app-brand {
  opacity: 1;
}

.message,
.signal-card {
  opacity: 0;
  transform: translateY(15px) scale(0.98);
  transition:
    opacity 260ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.message:not(.is-visible),
.signal-card:not(.is-visible) {
  display: none;
}

.message.is-visible,
.signal-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.conversation-panel {
  z-index: 2;
  opacity: 1;
  transition: opacity 220ms ease;
}

.conversation-panel.is-hidden {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.match-panel {
  z-index: 1;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  opacity: 0;
  pointer-events: none;
  transform: translateY(22px);
  transition:
    opacity 260ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-overflow-scrolling: touch;
}

.match-panel.is-visible {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.match-name h3 {
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.photo-thumbnails button {
  padding: 0;
}

.download-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(55px, 8vw, 130px);
  align-items: center;
  width: 100%;
  padding: clamp(86px, 10vw, 140px) max(32px, calc((100vw - 1240px) / 2));
  background: var(--ivory);
  color: var(--navy);
}

.download-copy h2 {
  margin: 17px 0;
  font-size: clamp(48px, 5.5vw, 74px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.download-copy > p:last-child {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.store-panel {
  display: grid;
  gap: 14px;
}

.store-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.store-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 13px;
  align-items: center;
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(17, 27, 46, 0.16);
  border-radius: 0;
  color: var(--navy);
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.store-link-apple {
  background: var(--navy);
  color: var(--white);
}

.store-link-apple:hover {
  background: var(--navy-light);
}

.store-link-android {
  background: var(--white);
  color: var(--navy);
}

.store-link-android:hover {
  background: var(--coral-light);
}

.store-icon {
  font-size: 30px;
  line-height: 1;
}

.store-icon-play {
  font-size: 21px;
}

.store-link span:nth-child(2) {
  display: grid;
  gap: 3px;
}

.store-link small {
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.store-link strong {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
}

.store-link i {
  font-size: 8px;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-link-apple > i,
.store-link-android > i {
  font-size: 18px;
}

.testflight-status {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.beta-dialog {
  width: min(620px, calc(100vw - 32px));
  max-height: min(760px, calc(100dvh - 32px));
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 22px;
  background: transparent;
  color: var(--navy);
  box-shadow: 0 30px 90px rgba(17, 27, 46, 0.24);
}

.beta-dialog::backdrop {
  background: rgba(17, 27, 46, 0.48);
  backdrop-filter: blur(8px);
}

.beta-dialog-card {
  position: relative;
  padding: 46px;
  border: 1px solid rgba(17, 27, 46, 0.12);
  border-radius: inherit;
  background: #fffafa;
}

.beta-dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(17, 27, 46, 0.18);
  border-radius: 50%;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.beta-form h2 {
  max-width: 500px;
  margin: 9px 50px 20px 0;
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 56px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.beta-dialog-intro,
.beta-success > p:not(.eyebrow) {
  margin: 0 0 28px;
  color: rgba(17, 27, 46, 0.78);
  font-size: 18px;
  line-height: 1.58;
}

.beta-form label:not(.beta-honeypot) {
  display: block;
  margin-bottom: 9px;
  font-size: 16px;
  font-weight: 700;
}

.beta-form input[type='email'] {
  width: 100%;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid rgba(17, 27, 46, 0.26);
  border-radius: 11px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-size: 18px;
}

.beta-form input[type='email']:focus {
  border-color: var(--coral);
  outline: 3px solid rgba(238, 130, 91, 0.22);
}

.beta-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.beta-privacy-note {
  margin: 16px 0 0;
  color: rgba(17, 27, 46, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.beta-privacy-note a {
  color: inherit;
  text-underline-offset: 3px;
}

.beta-form-error {
  margin: 15px 0 0;
  color: #9c321f;
  font-size: 15px;
  font-weight: 650;
}

.beta-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  margin-top: 24px;
  padding: 12px 20px;
  border: 0;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  font: inherit;
  font-size: 16px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}

.beta-submit:hover {
  background: var(--navy-light);
}

.beta-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.beta-success {
  outline: none;
}

@media (max-width: 980px) {
  .masthead {
    grid-template-columns: 1fr auto;
  }

  .masthead .wordmark-tagline {
    display: none;
  }

  .experience-stage {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
    gap: 30px;
    width: calc(100% - 40px);
  }

  .story-copy {
    min-height: 560px;
  }

  .scene-copy h1,
  .scene-copy h2 {
    font-size: clamp(43px, 6vw, 58px);
  }

  .carousel-footer {
    grid-template-columns: minmax(120px, 1fr) auto;
    gap: 18px;
  }

  .carousel-actions .carousel-next {
    min-width: 122px;
  }

  .download-section {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

@media (max-width: 720px) {
  .masthead {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    grid-template-columns: 1fr auto;
    width: 100%;
    margin: 0;
    padding: 12px 15px;
    border-radius: 0;
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .masthead .wordmark-symbol {
    width: 30px;
    height: 30px;
  }

  .masthead .wordmark-name {
    font-size: 25px;
  }

  .masthead .nav-cta {
    padding: 10px 12px 9px;
    font-size: 12px;
  }

  .experience {
    min-height: 100dvh;
  }

  .experience-stage {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(430px, 60dvh);
    gap: 6px;
    align-items: start;
    width: calc(100% - 20px);
    min-height: 100dvh;
    height: auto;
    padding: 76px 0 8px;
  }

  .experience-stage::before {
    display: none;
  }

  .story-copy {
    min-height: 0;
    height: auto;
    padding: 8px 6px 0;
  }

  .scene-stack {
    flex: 0 0 205px;
    min-height: 205px;
  }

  .scene-copy {
    min-height: 0;
  }

  .scene-copy h1,
  .scene-copy h2 {
    margin: 9px 0 8px;
    font-size: clamp(30px, 9.5vw, 40px);
    line-height: 0.96;
  }

  .scene-copy > p {
    display: -webkit-box;
    max-width: 100%;
    overflow: hidden;
    font-size: 10.5px;
    line-height: 1.48;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .scene-copy > strong {
    margin-top: 8px;
    font-size: 10px;
  }

  .scene-copy > small {
    display: none;
  }

  .slide-download {
    display: inline-flex;
    width: min(100%, 265px);
    min-height: 38px;
    margin-top: 10px;
    padding: 0 13px;
    font-size: 7.5px;
  }

  .slide-download::after {
    font-size: 13px;
  }

  .carousel-footer {
    grid-template-columns: minmax(100px, 1fr) auto;
    gap: 12px;
    align-items: end;
    width: 100%;
    margin-top: 5px;
  }

  .carousel-progress {
    gap: 5px;
  }

  .carousel-actions button {
    min-width: 35px;
    min-height: 35px;
    padding: 0 10px;
  }

  .carousel-actions .carousel-next {
    min-width: 96px;
    font-size: 7px;
  }

  .phone-wrap {
    width: min(390px, 94vw);
    height: 100%;
  }

  .phone {
    height: 100%;
    min-height: 0;
    border-width: 5px;
    border-radius: 34px;
  }

  .download-section {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 86px 18px 76px;
  }

  .download-copy h2 {
    font-size: 49px;
  }

  .store-links {
    grid-template-columns: 1fr;
  }

  .store-link {
    min-height: 84px;
  }

  .beta-dialog-card {
    padding: 36px 22px 28px;
  }

  .beta-dialog-close {
    top: 14px;
    right: 14px;
  }

  .beta-form h2 {
    margin-right: 38px;
    font-size: clamp(36px, 11vw, 48px);
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 42px 18px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .site-footer > span {
    grid-column: 1;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scene-copy,
  .message,
  .signal-card,
  .conversation-panel,
  .match-panel {
    transition: none;
  }
}
