@font-face {
  font-family: "Heebo HL";
  src: url("assets/Heebo-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Secular HL";
  src: url("assets/SecularOne-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #fef0d5;
  --paper: #fff9ed;
  --paper-deep: #f8e5c2;
  --navy: #002f49;
  --navy-dark: #001d2e;
  --navy-soft: #0c405b;
  --blue: #669bbb;
  --blue-light: #dcebf2;
  --red: #c1121f;
  --maroon: #780001;
  --ink: #062d43;
  --line-dark: rgba(0, 47, 73, 0.16);
  --line-light: rgba(254, 240, 213, 0.16);
  --shadow: 0 28px 80px rgba(0, 29, 46, 0.18);
  --container: 1240px;
  --font-display: "Secular HL", "Heebo HL", system-ui, sans-serif;
  --font-body: "Heebo HL", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  background: var(--cream);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: var(--red);
  color: var(--cream);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--cream);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.scroll-meter {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: 3px;
  pointer-events: none;
}

.scroll-meter span {
  display: block;
  width: calc(var(--page-progress, 0) * 100%);
  height: 100%;
  background: var(--red);
  transform-origin: right center;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 47, 73, 0.08);
  background: rgba(254, 240, 213, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-nav.is-scrolled {
  background: rgba(254, 240, 213, 0.97);
  box-shadow: 0 8px 30px rgba(0, 29, 46, 0.08);
}

.site-nav__inner {
  width: min(var(--container), calc(100% - 48px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  color: var(--navy);
}

.brand__mark {
  width: 44px;
  height: 44px;
  overflow: hidden;
  flex: none;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  transform: scale(1.9);
  object-fit: contain;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  font-size: 15px;
  font-weight: 650;
}

.site-nav__links > a:not(.button) {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent;
}

.site-nav__links > a:not(.button):hover {
  border-bottom-color: var(--red);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  font-weight: 750;
  line-height: 1;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms ease;
}

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

.button--small {
  min-height: 44px;
  padding: 10px 18px;
  background: var(--navy);
  color: var(--cream);
}

.button--small:hover {
  background: var(--navy-soft);
  box-shadow: 0 8px 24px rgba(0, 47, 73, 0.16);
}

.button--primary {
  min-height: 58px;
  padding: 15px 26px;
  border-color: var(--red);
  background: var(--red);
  color: white;
  box-shadow: 0 12px 0 rgba(120, 0, 1, 0.13);
}

.button--primary:hover {
  background: var(--maroon);
  border-color: var(--maroon);
  box-shadow: 0 16px 30px rgba(120, 0, 1, 0.2);
}

.button__apple {
  width: 22px;
  height: 22px;
  flex: none;
}

.text-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--navy);
  font-weight: 700;
}

.text-link span {
  color: var(--red);
  transition: transform 180ms var(--ease);
}

.text-link:hover span {
  transform: translateY(3px);
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  padding: clamp(54px, 8vw, 112px) 24px clamp(72px, 8vw, 110px);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  top: 17%;
  right: -5vw;
  z-index: -1;
  width: clamp(120px, 18vw, 260px);
  height: clamp(120px, 18vw, 260px);
  border: 1px solid rgba(193, 18, 31, 0.22);
  border-radius: 50%;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 7%;
  left: -9vw;
  z-index: -1;
  width: clamp(230px, 35vw, 520px);
  height: 1px;
  background: rgba(0, 47, 73, 0.22);
  transform: rotate(-13deg);
}

.hero__inner {
  width: min(var(--container), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: clamp(54px, 8vw, 120px);
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(56px, 7.6vw, 112px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-wrap: balance;
}

.hero h1 em {
  display: inline-block;
  margin-top: 12px;
  color: var(--red);
  font-style: normal;
}

.hero__lede {
  max-width: 650px;
  margin: 32px 0 0;
  color: rgba(6, 45, 67, 0.8);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.55;
}

.hero__actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.hero__availability {
  margin: 20px 4px 0;
  color: rgba(6, 45, 67, 0.62);
  font-size: 14px;
}

.hero-product {
  position: relative;
  min-height: 690px;
  display: grid;
  place-items: center;
  direction: rtl;
}

.hero-product__fingerprint {
  position: absolute;
  top: -48px;
  left: -70px;
  width: 360px;
  height: 360px;
  overflow: hidden;
  opacity: 0.1;
  transform: translate3d(0, calc(var(--hero-shift, 0) * 45px), 0) rotate(-10deg);
}

.hero-product__fingerprint img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.8);
}

.hero-product__thread {
  position: absolute;
  top: 72px;
  right: 6%;
  width: 78%;
  height: 74%;
  border: 2px solid rgba(193, 18, 31, 0.4);
  border-left-color: transparent;
  border-radius: 46% 54% 42% 58%;
  transform: rotate(-9deg);
}

.demo-device {
  position: relative;
  z-index: 2;
  width: min(390px, 100%);
  min-height: 660px;
  padding: 18px;
  border: 1.5px solid var(--navy);
  border-radius: 42px;
  background: var(--paper);
  box-shadow: 22px 25px 0 rgba(0, 47, 73, 0.1), var(--shadow);
  transform: translate3d(0, calc(var(--hero-shift, 0) * -24px), 0) rotate(-1.5deg);
  transition: transform 80ms linear;
}

.demo-device__top {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px;
  direction: ltr;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
}

.demo-device__mini-logo {
  width: 34px;
  height: 34px;
  overflow: hidden;
}

.demo-device__mini-logo img {
  width: 100%;
  height: 100%;
  transform: scale(1.9);
}

.demo-device__heading {
  margin: 14px 2px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.demo-device__heading div {
  display: flex;
  flex-direction: column;
}

.demo-device__heading small {
  color: rgba(0, 47, 73, 0.55);
  font-size: 11px;
  font-weight: 700;
}

.demo-device__heading strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 400;
}

.demo-device__filter {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--navy);
}

.profile-card {
  overflow: hidden;
  border: 1px solid rgba(0, 47, 73, 0.12);
  border-radius: 28px;
  background: white;
  box-shadow: 0 16px 34px rgba(0, 47, 73, 0.12);
}

.portrait {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  isolation: isolate;
}

.portrait::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -24%;
  z-index: -1;
  width: 80%;
  height: 48%;
  border-radius: 50% 50% 0 0;
  background: var(--navy-soft);
  transform: rotate(-9deg);
}

.portrait--hero {
  height: 280px;
}

.portrait__sun {
  position: absolute;
  top: 24px;
  left: 28px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--cream);
  opacity: 0.94;
}

.portrait__arch {
  position: absolute;
  right: 9%;
  bottom: -24px;
  width: 74%;
  height: 86%;
  border: 16px solid var(--navy);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  opacity: 0.2;
}

.portrait__person {
  position: absolute;
  right: 50%;
  bottom: -22px;
  width: 170px;
  height: 208px;
  border-radius: 82px 82px 28px 28px;
  background: var(--navy);
  transform: translateX(50%);
}

.portrait__person::before {
  content: "";
  position: absolute;
  top: -60px;
  right: 50%;
  width: 112px;
  height: 125px;
  border-radius: 58% 42% 48% 52%;
  background: var(--paper-deep);
  transform: translateX(50%);
  box-shadow: 0 -20px 0 8px var(--navy);
}

.portrait__person i {
  position: absolute;
  top: -8px;
  right: 50%;
  width: 128px;
  height: 50px;
  border-radius: 50%;
  border-top: 16px solid var(--navy);
  transform: translateX(50%) rotate(7deg);
}

.portrait__demo {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(0, 47, 73, 0.55);
  color: white;
  font-size: 10px;
  font-weight: 700;
}

.profile-card__copy {
  padding: 17px 19px 19px;
}

.profile-card__name {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
}

.profile-card__name strong {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 400;
}

.profile-card__name span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 11px;
}

.profile-card__copy > p {
  margin: 1px 0 10px;
  color: rgba(0, 47, 73, 0.58);
  font-size: 12px;
}

.profile-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.profile-card__tags span {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--blue-light);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
}

.profile-card blockquote {
  margin: 12px 0 0;
  padding: 9px 11px;
  border-right: 2px solid var(--red);
  background: rgba(254, 240, 213, 0.55);
  color: var(--navy);
  font-size: 12px;
  line-height: 1.45;
}

.demo-actions {
  margin: 18px auto 3px;
  display: flex;
  justify-content: center;
  gap: 18px;
  direction: ltr;
}

.demo-action {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  background: var(--paper);
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.demo-action--no { color: var(--red); }
.demo-action--star { color: var(--blue); }
.demo-action--yes { color: #277a4a; }

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.story {
  position: relative;
  padding: clamp(90px, 11vw, 150px) 24px 0;
  overflow: clip;
  background: var(--navy-dark);
  color: var(--cream);
  isolation: isolate;
}

.story::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  width: 1px;
  height: 100%;
  background: rgba(254, 240, 213, 0.08);
}

.story__intro {
  width: min(var(--container), 100%);
  margin: 0 auto clamp(80px, 9vw, 130px);
}

.story__intro h2,
.feature-ledger h2,
.manifesto h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.story__intro h2 {
  max-width: 900px;
  font-size: clamp(48px, 7vw, 88px);
}

.story__intro > p:last-child {
  margin: 22px 0 0;
  color: rgba(254, 240, 213, 0.62);
  font-size: 18px;
}

.story__grid {
  width: min(var(--container), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-areas: "stage copy";
  grid-template-columns: minmax(370px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(70px, 9vw, 140px);
  direction: ltr;
}

.story-stage {
  grid-area: stage;
  position: sticky;
  top: 92px;
  height: calc(100svh - 116px);
  display: grid;
  place-items: center;
  direction: rtl;
}

.story-stage__halo {
  position: absolute;
  width: min(540px, 46vw);
  aspect-ratio: 1;
  border: 1px solid rgba(102, 155, 187, 0.25);
  border-radius: 50%;
}

.story-stage__halo::before,
.story-stage__halo::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(254, 240, 213, 0.08);
  border-radius: 50%;
}

.story-stage__halo::after {
  inset: 30%;
  border-color: rgba(193, 18, 31, 0.24);
}

.story-phone {
  position: relative;
  z-index: 2;
  width: min(350px, 82%);
  aspect-ratio: 0.515;
  max-height: calc(100svh - 145px);
  overflow: hidden;
  border: 1.5px solid rgba(254, 240, 213, 0.54);
  border-radius: 44px;
  background: var(--paper);
  box-shadow: 0 44px 90px rgba(0, 0, 0, 0.34), 12px 14px 0 rgba(102, 155, 187, 0.13);
  color: var(--navy);
}

.phone-status {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  height: 39px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 0 19px 7px;
  direction: ltr;
  background: var(--paper);
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
}

.phone-status span:last-child {
  font-size: 8px;
  letter-spacing: 1px;
}

.app-scenes {
  position: absolute;
  inset: 39px 0 14px;
  overflow: hidden;
}

.app-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 18px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px) scale(0.975);
  transition: opacity 420ms var(--ease), transform 520ms var(--ease);
}

.app-scene.is-active {
  z-index: 3;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.app-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--navy);
}

.app-bar span {
  font-family: var(--font-display);
  font-size: 22px;
}

.app-bar b {
  font-size: 10px;
}

.phone-handle {
  position: absolute;
  right: 50%;
  bottom: 6px;
  z-index: 20;
  width: 92px;
  height: 4px;
  border-radius: 99px;
  background: var(--navy);
  transform: translateX(50%);
}

.story-stage__caption {
  position: absolute;
  left: -6px;
  bottom: 38px;
  z-index: 5;
  width: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(254, 240, 213, 0.7);
  direction: ltr;
  font-size: 11px;
}

.story-stage__caption i {
  position: relative;
  width: 50px;
  height: 1px;
  overflow: hidden;
  background: rgba(254, 240, 213, 0.22);
}

.story-stage__caption i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: scaleX(var(--story-progress, 0));
  transform-origin: left center;
}

.story-stage__caption span {
  color: var(--red);
}

.story-copy {
  grid-area: copy;
  position: relative;
  direction: rtl;
}

.connection-line {
  position: absolute;
  top: 0;
  right: 1px;
  width: 2px;
  height: calc(100% - 50vh);
  background: rgba(254, 240, 213, 0.13);
}

.connection-line span {
  position: sticky;
  top: 50%;
  display: block;
  width: 2px;
  height: 22vh;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(193, 18, 31, 0.08);
}

.story-step {
  min-height: 88svh;
  padding: 18vh clamp(42px, 5vw, 72px) 16vh 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0.34;
  transform: translateX(-10px);
  transition: opacity 360ms ease, transform 420ms var(--ease);
}

.story-step.is-active {
  opacity: 1;
  transform: translateX(0);
}

.story-step__number {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.story-step__visual {
  display: none;
}

.story-step h3 {
  max-width: 570px;
  margin: 0;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(40px, 4.8vw, 67px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.story-step > p:last-child {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(254, 240, 213, 0.72);
  font-size: clamp(17px, 1.65vw, 21px);
  line-height: 1.7;
}

.setup-progress {
  margin: 12px 0 20px;
  display: flex;
  gap: 5px;
}

.setup-progress i {
  flex: 1;
  height: 4px;
  border-radius: 99px;
  background: var(--red);
}

.app-kicker {
  margin: 0 0 10px;
  color: rgba(0, 47, 73, 0.55);
  font-size: 11px;
  font-weight: 700;
}

.prompt-card {
  margin-bottom: 12px;
  padding: 17px;
  border-radius: 18px;
  background: var(--navy);
  color: var(--cream);
}

.prompt-card--blue {
  background: var(--blue-light);
  color: var(--navy);
}

.prompt-card small {
  display: block;
  margin-bottom: 8px;
  opacity: 0.64;
  font-size: 10px;
}

.prompt-card strong {
  display: block;
  font-size: 15px;
  line-height: 1.45;
}

.culture-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.culture-chips span,
.mini-filter-row span {
  padding: 6px 10px;
  border: 1px solid rgba(0, 47, 73, 0.16);
  border-radius: 999px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
}

.app-scene--discover {
  background: var(--cream);
}

.mini-filter-row {
  margin: 12px 0;
  display: flex;
  gap: 6px;
}

.mini-filter-row span:first-child {
  border-color: var(--red);
  color: var(--red);
}

.discover-card {
  overflow: hidden;
  border-radius: 21px;
  background: white;
  box-shadow: 0 12px 30px rgba(0, 47, 73, 0.13);
}

.portrait--discover {
  height: 268px;
}

.portrait--discover .portrait__person {
  transform: translateX(50%) scale(0.82);
  transform-origin: bottom center;
}

.discover-card__info {
  padding: 13px 15px 14px;
}

.discover-card__info > strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 400;
}

.discover-card__info strong i {
  display: inline-grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-family: var(--font-body);
  font-size: 9px;
  font-style: normal;
}

.discover-card__info > span {
  color: rgba(0, 47, 73, 0.58);
  font-size: 10px;
}

.discover-card__info p {
  margin: 9px 0 0;
  padding-top: 9px;
  border-top: 1px solid rgba(0, 47, 73, 0.09);
  color: var(--navy);
  font-size: 11px;
  line-height: 1.5;
}

.demo-actions--compact {
  margin-top: 14px;
}

.demo-actions--compact .demo-action {
  width: 44px;
  height: 44px;
  font-size: 20px;
}

.app-scene--match {
  padding: 38px 22px 22px;
  background: var(--navy);
  color: var(--cream);
  text-align: center;
}

.match-word {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 51px;
  line-height: 0.83;
}

.match-people {
  margin: 31px 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  direction: ltr;
}

.avatar {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  flex: none;
  border: 4px solid var(--paper);
  border-radius: 50%;
  color: white;
  font-family: var(--font-display);
  font-size: 28px;
}

.avatar--blue { background: var(--blue); }
.avatar--red { background: var(--red); }

.avatar--small {
  width: 42px;
  height: 42px;
  border-width: 2px;
  font-size: 17px;
}

.match-heart {
  position: relative;
  z-index: 3;
  width: 64px;
  height: 64px;
  margin: 0 -9px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--cream);
}

.match-heart img {
  width: 100%;
  height: 100%;
  transform: scale(1.85);
}

.match-context {
  padding: 16px;
  border: 1px solid var(--line-light);
  border-radius: 18px;
  background: rgba(254, 240, 213, 0.06);
}

.match-context small {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-weight: 700;
}

.match-context span {
  display: inline-block;
  margin: 3px;
  padding: 5px 8px;
  border-radius: 99px;
  background: rgba(254, 240, 213, 0.1);
  font-size: 10px;
}

.match-buttons {
  margin-top: 18px;
  display: grid;
  gap: 8px;
}

.match-buttons span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--cream);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 750;
}

.match-buttons span:first-child {
  border-color: var(--red);
  background: var(--red);
}

.app-scene--chat {
  background: var(--cream);
}

.chat-head {
  margin: -4px -3px 15px;
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid rgba(0, 47, 73, 0.09);
}

.chat-head div {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.chat-head strong {
  color: var(--navy);
  font-size: 14px;
}

.chat-head small {
  color: rgba(0, 47, 73, 0.55);
  font-size: 9px;
}

.chat-head small i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2a9a5f;
}

.chat-head > b {
  color: rgba(0, 47, 73, 0.5);
  letter-spacing: 2px;
}

.chat-date {
  margin-bottom: 15px;
  color: rgba(0, 47, 73, 0.45);
  font-size: 9px;
  text-align: center;
}

.bubble {
  width: fit-content;
  max-width: 81%;
  margin-bottom: 10px;
  padding: 10px 12px;
  border-radius: 15px;
  font-size: 12px;
  line-height: 1.45;
}

.bubble--them {
  margin-left: auto;
  border-top-right-radius: 4px;
  background: white;
  color: var(--navy);
}

.bubble--me {
  margin-right: auto;
  border-top-left-radius: 4px;
  background: var(--navy);
  color: var(--cream);
}

.read-state {
  margin: -5px 6px 9px 0;
  color: var(--blue);
  font-size: 9px;
  text-align: left;
  direction: rtl;
}

.typing-state {
  width: 52px;
  margin-left: auto;
  padding: 11px 10px;
  display: flex;
  justify-content: center;
  gap: 4px;
  border-radius: 14px 4px 14px 14px;
  background: white;
  direction: ltr;
}

.typing-state span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  animation: typing 1s infinite ease-in-out;
}

.typing-state span:nth-child(2) { animation-delay: 120ms; }
.typing-state span:nth-child(3) { animation-delay: 240ms; }

@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.45; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.chat-composer {
  position: absolute;
  right: 17px;
  bottom: 18px;
  left: 17px;
  min-height: 45px;
  padding: 5px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(0, 47, 73, 0.11);
  border-radius: 999px;
  background: white;
  color: rgba(0, 47, 73, 0.4);
  font-size: 11px;
}

.chat-composer b {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-size: 18px;
}

.app-scene--share {
  background: var(--paper);
}

.share-profile {
  padding: 8px 4px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(0, 47, 73, 0.1);
}

.share-profile div {
  display: flex;
  flex-direction: column;
}

.share-profile strong {
  color: var(--navy);
  font-size: 16px;
}

.share-profile small {
  color: rgba(0, 47, 73, 0.5);
  font-size: 10px;
}

.share-card {
  margin: 18px 0;
  padding: 17px;
  display: grid;
  grid-template-columns: 45px 1fr;
  align-items: center;
  column-gap: 11px;
  border-radius: 18px;
  background: var(--navy);
  color: var(--cream);
  direction: ltr;
  text-align: left;
}

.share-icon {
  grid-row: span 2;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-size: 24px;
}

.share-card small {
  color: rgba(254, 240, 213, 0.6);
  font-size: 9px;
}

.share-card strong {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.share-rules {
  margin: 0;
  padding: 0;
  list-style: none;
}

.share-rules li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid rgba(0, 47, 73, 0.08);
}

.share-rules li > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--navy);
  font-weight: 800;
}

.share-rules p {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.share-rules strong {
  color: var(--navy);
  font-size: 12px;
}

.share-rules small {
  color: rgba(0, 47, 73, 0.5);
  font-size: 9px;
}

.share-button {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  min-height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--red);
  color: white;
  font-size: 12px;
  font-weight: 800;
}

.app-scene--safety {
  padding-top: 34px;
  background: var(--cream);
  text-align: center;
}

.safety-shield {
  width: 82px;
  height: 90px;
  margin: 0 auto 15px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: white;
  clip-path: polygon(50% 0, 92% 16%, 88% 62%, 50% 100%, 12% 62%, 8% 16%);
}

.safety-shield span {
  font-size: 31px;
  font-weight: 850;
}

.app-scene--safety h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 400;
}

.app-scene--safety > p {
  margin: 5px auto 17px;
  color: rgba(0, 47, 73, 0.58);
  font-size: 10px;
}

.safety-menu {
  overflow: hidden;
  border: 1px solid rgba(0, 47, 73, 0.1);
  border-radius: 18px;
  background: white;
  text-align: right;
}

.safety-menu > span {
  min-height: 54px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid rgba(0, 47, 73, 0.08);
}

.safety-menu > span:last-child {
  border-bottom: 0;
}

.safety-menu i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(193, 18, 31, 0.09);
  color: var(--red);
  font-size: 17px;
  font-style: normal;
}

.safety-menu b {
  color: var(--navy);
  font-size: 12px;
}

.capture-banner {
  margin-top: 15px;
  padding: 13px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-radius: 16px;
  background: var(--navy);
  color: var(--cream);
  text-align: right;
}

.capture-banner > b {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 50%;
  background: var(--red);
}

.capture-banner > span {
  display: flex;
  flex-direction: column;
}

.capture-banner strong {
  font-size: 11px;
}

.capture-banner small {
  color: rgba(254, 240, 213, 0.62);
  font-size: 8px;
}

.feature-ledger {
  padding: clamp(90px, 12vw, 170px) 24px;
  background: var(--cream);
}

.feature-ledger__inner {
  width: min(var(--container), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: start;
}

.feature-ledger__heading {
  position: sticky;
  top: 120px;
}

.feature-ledger h2 {
  max-width: 500px;
  color: var(--navy);
  font-size: clamp(46px, 6vw, 78px);
}

.ledger-list {
  margin: 0;
  padding: 0 0 0 30px;
  display: grid;
  gap: 18px;
  list-style: none;
  counter-reset: ledger;
}

.ledger-list li {
  position: relative;
  min-height: 148px;
  padding: 30px 32px;
  display: grid;
  grid-template-columns: 42px minmax(145px, 0.42fr) minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 0 18px 48px rgba(0, 47, 73, 0.08);
}

.ledger-list li:nth-child(even) {
  transform: translateX(-30px);
}

.ledger-list li::after {
  content: "";
  position: absolute;
  top: -52px;
  left: -45px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: rgba(102, 155, 187, 0.12);
}

.ledger-list li:nth-child(2)::after,
.ledger-list li:nth-child(4)::after {
  background: rgba(193, 18, 31, 0.09);
}

.ledger-list span {
  position: relative;
  z-index: 1;
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  direction: ltr;
}

.ledger-list strong {
  position: relative;
  z-index: 1;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
}

.ledger-list p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(6, 45, 67, 0.66);
  font-size: 16px;
  line-height: 1.65;
}

.manifesto {
  position: relative;
  padding: clamp(100px, 14vw, 190px) 24px 0;
  overflow: hidden;
  background: var(--red);
  color: white;
  isolation: isolate;
}

.manifesto__inner {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  margin: 0 auto;
}

.manifesto .eyebrow {
  color: var(--cream);
  opacity: 0.7;
}

.manifesto h2 {
  max-width: 920px;
  font-size: clamp(58px, 8.7vw, 124px);
}

.manifesto__inner > p:last-child {
  max-width: 740px;
  margin: 38px 0 0;
  color: rgba(255, 255, 255, 0.77);
  font-size: clamp(19px, 2.1vw, 25px);
  line-height: 1.65;
}

.manifesto__heart {
  position: absolute;
  top: -120px;
  left: -90px;
  z-index: 1;
  width: clamp(460px, 62vw, 900px);
  height: clamp(460px, 62vw, 900px);
  overflow: hidden;
  opacity: 0.16;
  transform: rotate(-12deg);
}

.manifesto__heart img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
  transform: scale(1.85);
}

.manifesto__ticker {
  margin: clamp(85px, 11vw, 150px) -24px 0;
  padding: 20px 0 25px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  direction: ltr;
}

.manifesto__ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  color: white;
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 65px);
  line-height: 1;
  animation: ticker 23s linear infinite;
  will-change: transform;
}

.manifesto__ticker-group {
  min-width: max(100vw, 1120px);
  padding-inline: 17px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex: none;
  gap: 34px;
  white-space: nowrap;
}

.manifesto__ticker i {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 18px;
  font-style: normal;
}

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

.final-cta {
  padding: clamp(90px, 11vw, 150px) 24px;
  background: var(--navy);
  color: var(--cream);
}

.final-cta__inner {
  width: min(var(--container), 100%);
  margin: 0 auto;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.final-cta h2 {
  max-width: 790px;
  font-size: clamp(52px, 7.6vw, 102px);
}

.final-cta__inner > div:first-child > p:last-child {
  margin: 24px 0 0;
  color: rgba(254, 240, 213, 0.68);
  font-size: 19px;
}

.final-cta__action {
  min-width: 270px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 15px;
}

.final-cta__action small {
  color: rgba(254, 240, 213, 0.5);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.site-footer {
  padding: 68px 24px max(30px, env(safe-area-inset-bottom));
  background: var(--navy-dark);
  color: var(--cream);
}

.site-footer__inner,
.site-footer__bottom {
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.site-footer__inner {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 48px;
}

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

.site-footer__brand > p {
  max-width: 340px;
  margin: 13px 0 0;
  color: rgba(254, 240, 213, 0.55);
  font-size: 14px;
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 13px 38px;
  color: rgba(254, 240, 213, 0.66);
  font-size: 14px;
}

.site-footer__links a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}

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

.site-footer__bottom {
  margin-top: 58px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line-light);
  color: rgba(254, 240, 213, 0.43);
  font-size: 12px;
}

@media (max-width: 1040px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.72fr);
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(56px, 7.8vw, 82px);
  }

  .hero-product {
    min-height: 620px;
  }

  .demo-device {
    min-height: 610px;
  }

  .portrait--hero {
    height: 244px;
  }

  .story__grid {
    grid-template-columns: minmax(330px, 0.8fr) minmax(0, 1.2fr);
    gap: 55px;
  }

  .story-phone {
    width: min(325px, 90%);
  }

  .feature-ledger__inner {
    gap: 70px;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 72px;
  }

  .site-nav__inner {
    width: min(100% - 32px, var(--container));
    min-height: 68px;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
  }

  .brand__name {
    font-size: 19px;
  }

  .site-nav__links > a:not(.button) {
    display: none;
  }

  .button--small {
    min-height: 44px;
    padding: 10px 16px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding: 54px 20px 88px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .hero h1 {
    max-width: 680px;
    font-size: clamp(52px, 13.2vw, 88px);
  }

  .hero__lede {
    max-width: 620px;
  }

  .hero-product {
    min-height: 610px;
  }

  .demo-device {
    width: min(370px, calc(100vw - 58px));
  }

  .story {
    padding: 86px 0 0;
  }

  .story__intro {
    padding: 0 22px;
    margin-bottom: 64px;
  }

  .story__grid {
    width: 100%;
    display: block;
  }

  .story-stage {
    position: sticky;
    top: 68px;
    z-index: 20;
    width: 100%;
    height: 48svh;
    min-height: 300px;
    max-height: 430px;
    overflow: hidden;
    border-top: 1px solid rgba(254, 240, 213, 0.09);
    border-bottom: 1px solid rgba(254, 240, 213, 0.09);
    background: var(--navy-dark);
  }

  .story-stage__halo {
    width: min(520px, 100vw);
  }

  .story-phone {
    width: min(440px, calc(100vw - 36px));
    height: calc(48svh - 36px);
    min-height: 270px;
    max-height: 394px;
    aspect-ratio: auto;
    border-radius: 29px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.28);
  }

  .phone-status {
    height: 30px;
    padding-bottom: 4px;
  }

  .app-scenes {
    inset: 30px 0 10px;
  }

  .app-scene {
    padding: 13px 16px;
  }

  .phone-handle {
    bottom: 4px;
    width: 70px;
    height: 3px;
  }

  .story-stage__caption {
    display: none;
  }

  .story-copy {
    padding: 0 22px;
  }

  .connection-line {
    right: 22px;
  }

  .story-step {
    min-height: 74svh;
    padding: 14svh 36px 14svh 0;
  }

  .story-step h3 {
    font-size: clamp(38px, 10vw, 58px);
  }

  .story-step > p:last-child {
    font-size: 17px;
  }

  .app-bar span {
    font-size: 17px;
  }

  .setup-progress {
    margin: 8px 0 10px;
  }

  .app-kicker {
    display: none;
  }

  .prompt-card {
    margin-bottom: 8px;
    padding: 10px 13px;
    border-radius: 13px;
  }

  .prompt-card small {
    margin-bottom: 3px;
    font-size: 8px;
  }

  .prompt-card strong {
    font-size: 12px;
  }

  .culture-chips span,
  .mini-filter-row span {
    padding: 4px 7px;
    font-size: 8px;
  }

  .mini-filter-row {
    margin: 7px 0;
  }

  .discover-card {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    direction: ltr;
  }

  .portrait--discover {
    height: 190px;
  }

  .discover-card__info {
    padding: 14px;
    direction: rtl;
  }

  .discover-card__info > strong {
    font-size: 18px;
  }

  .demo-actions--compact {
    margin-top: 10px;
  }

  .demo-actions--compact .demo-action {
    width: 36px;
    height: 36px;
    font-size: 17px;
  }

  .app-scene--match {
    padding: 18px;
  }

  .match-word {
    font-size: 36px;
  }

  .match-people {
    margin: 12px 0;
  }

  .avatar {
    width: 59px;
    height: 59px;
    font-size: 21px;
  }

  .avatar--small {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .match-heart {
    width: 47px;
    height: 47px;
  }

  .match-context {
    padding: 9px;
  }

  .match-context small {
    margin-bottom: 4px;
    font-size: 9px;
  }

  .match-context span {
    padding: 3px 6px;
    font-size: 8px;
  }

  .match-buttons {
    margin-top: 10px;
    grid-template-columns: repeat(2, 1fr);
  }

  .match-buttons span {
    min-height: 34px;
    font-size: 10px;
  }

  .chat-head {
    margin-bottom: 8px;
    padding-bottom: 7px;
  }

  .chat-date {
    margin-bottom: 7px;
  }

  .bubble {
    max-width: 73%;
    margin-bottom: 6px;
    padding: 7px 9px;
    font-size: 10px;
  }

  .read-state {
    margin-bottom: 4px;
  }

  .typing-state {
    padding: 7px;
  }

  .chat-composer {
    right: 15px;
    bottom: 10px;
    left: 15px;
    min-height: 37px;
  }

  .chat-composer b {
    width: 27px;
    height: 27px;
  }

  .share-profile {
    padding: 0 0 8px;
  }

  .share-profile .avatar {
    width: 43px;
    height: 43px;
    border-width: 2px;
    font-size: 17px;
  }

  .share-card {
    margin: 8px 0;
    padding: 9px;
  }

  .share-icon {
    width: 35px;
    height: 35px;
  }

  .share-rules {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
  }

  .share-rules li {
    min-width: 0;
    padding: 8px 6px;
    flex-direction: column;
    gap: 4px;
    border: 1px solid rgba(0, 47, 73, 0.08);
    border-radius: 10px;
    text-align: center;
  }

  .share-rules li > span {
    width: 28px;
    height: 28px;
    font-size: 10px;
  }

  .share-rules small {
    display: none;
  }

  .share-button {
    right: 16px;
    bottom: 10px;
    left: 16px;
    min-height: 36px;
  }

  .app-scene--safety {
    padding-top: 15px;
  }

  .safety-shield {
    width: 54px;
    height: 58px;
    margin-bottom: 5px;
  }

  .safety-shield span {
    font-size: 21px;
  }

  .app-scene--safety h3 {
    font-size: 20px;
  }

  .app-scene--safety > p {
    margin: 1px auto 7px;
  }

  .safety-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .safety-menu > span {
    min-height: 60px;
    padding: 6px;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    border-bottom: 0;
    border-left: 1px solid rgba(0, 47, 73, 0.08);
    text-align: center;
  }

  .safety-menu > span:last-child {
    border-left: 0;
  }

  .safety-menu i {
    width: 26px;
    height: 26px;
    font-size: 14px;
  }

  .safety-menu b {
    font-size: 9px;
  }

  .capture-banner {
    margin-top: 8px;
    padding: 8px 10px;
  }

  .capture-banner > b {
    width: 30px;
    height: 30px;
  }

  .feature-ledger {
    padding: 95px 22px;
  }

  .feature-ledger__inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .feature-ledger__heading {
    position: static;
  }

  .ledger-list {
    padding-left: 24px;
  }

  .ledger-list li {
    grid-template-columns: 34px 100px 1fr;
    gap: 12px;
  }

  .manifesto {
    padding: 100px 22px 0;
  }

  .final-cta {
    padding: 90px 22px;
  }

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

  .final-cta__action {
    width: min(100%, 390px);
  }
}

@media (max-width: 560px) {
  .site-nav__inner {
    width: calc(100% - 24px);
    gap: 12px;
  }

  .brand__name {
    display: block;
    font-size: 16px;
  }

  .hero {
    padding: 34px 20px 68px;
  }

  .hero::before {
    display: none;
  }

  .hero__inner {
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(43px, 12vw, 52px);
    line-height: 0.98;
    text-wrap: balance;
  }

  .hero h1 em {
    margin-top: 8px;
  }

  .hero__lede {
    margin-top: 20px;
    font-size: 17px;
    line-height: 1.5;
  }

  .hero__actions {
    margin-top: 24px;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .text-link {
    align-self: center;
  }

  .hero__availability {
    margin-top: 14px;
    font-size: 13px;
    text-align: center;
  }

  .hero-product {
    min-height: 555px;
  }

  .demo-device {
    min-height: 555px;
    padding: 14px;
    border-radius: 34px;
    box-shadow: 13px 15px 0 rgba(0, 47, 73, 0.1), 0 22px 55px rgba(0, 29, 46, 0.17);
  }

  .demo-device__heading {
    margin: 8px 2px;
  }

  .portrait--hero {
    height: 225px;
  }

  .portrait__person {
    transform: translateX(50%) scale(0.86);
    transform-origin: bottom center;
  }

  .profile-card__copy {
    padding: 13px 15px 15px;
  }

  .profile-card__name strong {
    font-size: 22px;
  }

  .demo-actions {
    margin-top: 14px;
  }

  .demo-action {
    width: 43px;
    height: 43px;
    font-size: 20px;
  }

  .hero-product__fingerprint {
    left: -120px;
  }

  .story__intro h2 {
    font-size: clamp(43px, 12.5vw, 61px);
  }

  .story-stage {
    height: 45svh;
    min-height: 285px;
  }

  .story-phone {
    width: calc(100vw - 28px);
    height: calc(45svh - 25px);
    min-height: 260px;
    border-radius: 24px;
  }

  .story-step {
    min-height: 78svh;
    padding-left: 5px;
  }

  .story-step h3 {
    font-size: clamp(37px, 11vw, 52px);
  }

  .story-step > p:last-child {
    margin-top: 18px;
    line-height: 1.62;
  }

  .discover-card__info p {
    display: none;
  }

  .bubble:nth-of-type(4) {
    display: none;
  }

  .feature-ledger h2 {
    font-size: 48px;
  }

  .ledger-list li {
    min-height: 0;
    padding: 24px 22px;
    grid-template-columns: 30px 1fr;
    align-items: center;
    border-radius: 22px;
  }

  .ledger-list li:nth-child(even) {
    transform: none;
  }

  .ledger-list strong {
    font-size: 23px;
  }

  .ledger-list p {
    grid-column: 2;
    font-size: 15px;
  }

  .ledger-list {
    padding-left: 0;
    gap: 14px;
  }

  .manifesto h2 {
    font-size: clamp(53px, 15vw, 75px);
  }

  .manifesto__inner > p:last-child {
    margin-top: 28px;
    font-size: 18px;
  }

  .manifesto__heart {
    top: -150px;
    left: -250px;
  }

  .final-cta h2 {
    font-size: clamp(49px, 13vw, 70px);
  }

  .final-cta__inner {
    gap: 38px;
  }

  .site-footer__inner {
    flex-direction: column;
  }

  .site-footer__links {
    width: 100%;
    grid-template-columns: 1fr;
  }

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

/* The landing page uses only brand assets and factual diagrams. No fabricated
   profile photos, names, messages, distances, or verification states. */
.demo-device--brand {
  display: flex;
  flex-direction: column;
}

.brand-screen {
  min-height: 575px;
  padding: 42px 28px 28px;
  display: flex;
  flex: 1;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 35%, rgba(102, 155, 187, 0.22), transparent 42%),
    var(--navy);
  color: var(--cream);
  text-align: center;
}

.brand-screen > img {
  width: min(260px, 86%);
  padding: 17px 22px;
  border: 1px solid rgba(254, 240, 213, 0.16);
  border-radius: 22px;
  background: var(--paper);
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.16));
}

.brand-screen > p {
  margin: 12px 0 0;
  color: rgba(254, 240, 213, 0.7);
  font-size: 14px;
  font-weight: 650;
}

.brand-screen > strong {
  margin-top: 28px;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.15;
}

.fact-pair {
  min-height: 68%;
  margin: 18px 0 14px;
  display: grid;
  grid-template-rows: 1fr 1px 1fr;
  gap: 8px;
}

.fact-pair > span {
  min-width: 0;
  padding: 8px 14px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.fact-pair strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 74px);
  font-weight: 400;
  line-height: 1;
}

.fact-pair > span:last-child strong {
  color: var(--red);
}

.fact-pair small {
  color: rgba(0, 47, 73, 0.56);
  font-size: 13px;
  font-weight: 700;
}

.fact-pair > i {
  height: 1px;
  background: rgba(0, 47, 73, 0.12);
}

.app-scene--profile .culture-chips {
  justify-content: center;
}

.mutual-visual {
  min-height: 62%;
  display: grid;
  grid-template-columns: 1fr 52px 1fr;
  place-items: center;
  gap: 4px;
}

.mutual-visual span {
  width: 118px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 2px solid var(--blue);
  border-radius: 50%;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.mutual-visual span:last-child {
  border-color: var(--red);
}

.mutual-visual i {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--red);
  font-size: 19px;
  font-style: normal;
}

.scene-note {
  margin: 0;
  color: rgba(0, 47, 73, 0.58);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.app-scene--match .avatar {
  position: relative;
}

.app-scene--match .avatar::after {
  width: 26px;
  height: 26px;
  border: 2px solid rgba(254, 240, 213, 0.62);
  border-radius: 50%;
  content: "";
}

.capability-cloud {
  min-height: 76%;
  width: min(100%, 280px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  gap: 10px 12px;
}

.capability-cloud span {
  min-height: 38px;
  padding: 9px 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 47, 73, 0.16);
  border-radius: 999px;
  background: white;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.capability-cloud span:nth-child(2n) {
  border-color: rgba(193, 18, 31, 0.45);
}

.app-scene--share .share-card {
  margin-top: 38px;
}

.final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 720px);
  align-items: center;
  justify-content: center;
  gap: 44px;
  text-align: center;
}

.final-cta__copy {
  width: 100%;
}

.final-cta__copy > p:last-of-type {
  max-width: 650px;
  margin: 24px auto 0;
  color: rgba(254, 240, 213, 0.68);
  font-size: 19px;
}

.share-context {
  max-width: 650px;
  margin: 24px auto 0;
  padding: 15px 17px;
  border-right: 3px solid var(--blue);
  background: rgba(102, 155, 187, 0.1);
  text-align: right;
}

.share-context strong,
.share-context span {
  display: block;
}

.share-context span {
  margin-top: 3px;
  color: rgba(254, 240, 213, 0.62);
  font-size: 12px;
}

.beta-form {
  width: min(100%, 560px);
  justify-self: center;
  padding: 24px;
  border: 1px solid rgba(254, 240, 213, 0.16);
  border-radius: 24px;
  background: rgba(254, 240, 213, 0.06);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.16);
  text-align: right;
}

.beta-form fieldset {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  border: 0;
}

.beta-form legend,
.beta-form__email > span {
  margin-bottom: 8px;
  color: rgba(254, 240, 213, 0.7);
  font-size: 11px;
  font-weight: 800;
}

.beta-form legend {
  grid-column: 1 / -1;
}

.beta-form fieldset label {
  position: relative;
  min-height: 78px;
  cursor: pointer;
}

.beta-form fieldset input {
  position: absolute;
  opacity: 0;
}

.beta-form fieldset label > span {
  height: 100%;
  padding: 13px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(254, 240, 213, 0.18);
  border-radius: 15px;
  transition: border-color 160ms ease, background 160ms ease;
}

.beta-form fieldset input:checked + span {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--navy);
}

.beta-form fieldset label:has(input:focus-visible) > span,
.beta-form input:focus-visible,
.beta-form button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

.beta-form fieldset strong {
  font-size: 14px;
}

.beta-form fieldset small {
  margin-top: 2px;
  color: rgba(254, 240, 213, 0.55);
  font-size: 10px;
}

.beta-form fieldset input:checked + span small {
  color: rgba(0, 47, 73, 0.58);
}

.beta-form__email {
  margin-top: 17px;
  display: flex;
  flex-direction: column;
}

.beta-form__email input {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(254, 240, 213, 0.22);
  border-radius: 13px;
  background: rgba(254, 240, 213, 0.09);
  color: var(--cream);
}

.beta-form__email input::placeholder {
  color: rgba(254, 240, 213, 0.36);
}

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

.beta-form__consent {
  min-height: 44px;
  margin-top: 14px;
  padding-block: 5px;
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 9px;
  color: rgba(254, 240, 213, 0.62);
  font-size: 11px;
  line-height: 1.5;
}

.beta-form__consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--red);
}

.beta-form__consent a {
  color: var(--cream);
}

.beta-form > .button {
  width: 100%;
  margin-top: 18px;
  border: 0;
}

.beta-form > .button:disabled {
  opacity: 0.58;
  cursor: wait;
  transform: none;
}

.form-status {
  min-height: 20px;
  margin: 10px 0 0;
  color: rgba(254, 240, 213, 0.66);
  font-size: 11px;
  text-align: center;
}

.form-status.is-error {
  color: #ff9da5;
}

.form-status.is-success {
  color: #9ee4bc;
  font-weight: 800;
}

@media (max-width: 820px) {
  .brand-screen {
    min-height: 525px;
  }

  .story {
    padding-bottom: 0;
  }

  .story__intro {
    margin-bottom: 34px;
  }

  .js .story-stage {
    display: none;
  }

  .story-copy {
    padding: 0 16px 84px;
  }

  .connection-line {
    top: 0;
    right: 20px;
    bottom: 0;
    z-index: 0;
    width: 1px;
    height: auto;
    background: rgba(254, 240, 213, 0.16);
  }

  .connection-line span {
    position: absolute;
    top: 0;
    right: -1px;
    width: 3px;
    height: 100%;
    background: var(--red);
    box-shadow: none;
    transform: scaleY(var(--story-progress, 0));
    transform-origin: top center;
  }

  .story-step {
    position: relative;
    z-index: 1;
    min-height: calc(100svh - 68px);
    margin-right: 27px;
    padding: 42px 0 70px;
    display: grid;
    align-content: center;
    gap: 17px;
    opacity: 0.56;
    transform: translateY(24px);
    transition: opacity 360ms ease, transform 460ms var(--ease);
  }

  .story-step::before {
    content: "♥";
    position: absolute;
    top: 50%;
    right: -35px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(254, 240, 213, 0.36);
    border-radius: 50%;
    background: var(--navy-dark);
    color: rgba(254, 240, 213, 0.52);
    font-size: 11px;
    transform: translateY(-50%);
    transition: color 240ms ease, background 240ms ease, border-color 240ms ease, transform 360ms var(--ease);
  }

  .story-step.is-active {
    opacity: 1;
    transform: translateY(0);
  }

  .story-step.is-active::before {
    border-color: var(--red);
    background: var(--red);
    color: var(--cream);
    transform: translateY(-50%) scale(1.12);
  }

  .story-step__number {
    margin: 0;
  }

  .js .story-step__visual {
    position: relative;
    width: 100%;
    height: clamp(330px, 104vw, 410px);
    display: block;
    overflow: hidden;
    border: 1px solid rgba(254, 240, 213, 0.34);
    border-radius: 28px;
    background: var(--paper);
    box-shadow: 11px 13px 0 rgba(193, 18, 31, 0.13), 0 26px 60px rgba(0, 0, 0, 0.25);
    color: var(--navy);
    transform: rotate(-0.7deg);
    transition: transform 460ms var(--ease), box-shadow 460ms var(--ease);
  }

  .story-step:nth-of-type(even) .story-step__visual {
    box-shadow: -11px 13px 0 rgba(102, 155, 187, 0.15), 0 26px 60px rgba(0, 0, 0, 0.25);
    transform: rotate(0.7deg);
  }

  .story-step.is-active .story-step__visual {
    transform: rotate(0);
  }

  .story-step__visual .app-scene,
  .story-step__visual .app-scene.is-active {
    position: relative;
    inset: auto;
    width: 100%;
    height: 100%;
    opacity: 1;
    transform: none;
  }

  .story-step h3 {
    font-size: clamp(36px, 10vw, 50px);
  }

  .story-step > p:last-child {
    margin: 0;
    font-size: 16.5px;
    line-height: 1.62;
  }

  .final-cta__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .beta-form {
    width: min(100%, 430px);
    margin-inline: auto;
    justify-self: center;
  }

  .site-footer__links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

@media (max-width: 560px) {
  .brand-screen {
    min-height: 488px;
    padding: 28px 18px 20px;
  }

  .brand-screen > strong {
    font-size: 29px;
  }

  .fact-pair {
    min-height: 62%;
    margin: 8px 0;
  }

  .fact-pair > span {
    padding: 5px 9px;
  }

  .fact-pair strong {
    font-size: 43px;
  }

  .fact-pair small {
    font-size: 10px;
  }

  .mutual-visual span {
    width: 88px;
    font-size: 10px;
  }

  .mutual-visual {
    grid-template-columns: 1fr 42px 1fr;
  }

  .mutual-visual i {
    width: 42px;
    height: 42px;
  }

  .capability-cloud {
    width: min(100%, 244px);
    gap: 7px 8px;
  }

  .capability-cloud span {
    min-height: 33px;
    padding: 6px 10px;
    font-size: 10px;
  }

  .beta-form {
    padding: 18px;
  }
}

.hero__support {
  max-width: 610px;
  margin: 12px 0 0;
  color: rgba(6, 45, 67, 0.64);
  font-size: 16px;
  line-height: 1.65;
}

.problem {
  padding: clamp(88px, 11vw, 150px) 24px;
  background: var(--paper);
}

.problem__inner,
.different__inner,
.founder__inner,
.faq__inner {
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.problem__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.problem__heading {
  position: sticky;
  top: 120px;
}

.problem h2,
.different h2,
.founder h2,
.faq h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.problem h2 {
  font-size: clamp(48px, 6vw, 78px);
}

.problem__heading > p:last-child,
.feature-ledger__heading > p:last-child {
  max-width: 550px;
  margin: 24px 0 0;
  color: rgba(6, 45, 67, 0.64);
  font-size: 18px;
}

.problem__list,
.different__list,
.beta-benefits {
  margin: 0;
  padding: 0;
  list-style: none;
}

.problem__list {
  border-top: 1px solid var(--line-dark);
}

.problem__list li {
  position: relative;
  min-height: 108px;
  padding: 26px 58px 26px 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(23px, 2.4vw, 32px);
  line-height: 1.25;
}

.problem__list li::before {
  content: "×";
  position: absolute;
  top: 50%;
  right: 4px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(193, 18, 31, 0.32);
  border-radius: 50%;
  color: var(--red);
  font-family: var(--font-body);
  font-size: 24px;
  transform: translateY(-50%);
}

.different {
  padding: clamp(90px, 12vw, 170px) 24px;
  background: var(--navy);
  color: var(--cream);
}

.different__inner {
  display: grid;
  grid-template-columns: minmax(310px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(70px, 10vw, 145px);
}

.different h2 {
  color: var(--cream);
  font-size: clamp(50px, 6.8vw, 88px);
}

.different__list {
  counter-reset: different;
  border-top: 1px solid var(--line-light);
}

.different__list li {
  padding: 25px 0;
  display: grid;
  grid-template-columns: minmax(170px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  border-bottom: 1px solid var(--line-light);
}

.different__list strong {
  color: white;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.25;
}

.different__list span {
  color: rgba(254, 240, 213, 0.67);
  font-size: 16px;
  line-height: 1.65;
}

.founder {
  padding: clamp(90px, 12vw, 165px) 24px;
  background: var(--paper);
}

.founder__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(55px, 9vw, 130px);
}

.founder__portrait {
  position: relative;
  margin: 0;
}

.founder__portrait::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: 0;
  border: 1px solid rgba(193, 18, 31, 0.32);
}

.founder__portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  box-shadow: var(--shadow);
}

.founder h2 {
  font-size: clamp(52px, 6.8vw, 88px);
}

.founder__role {
  margin: 14px 0 30px;
  color: var(--red);
  font-size: 15px;
  font-weight: 800;
}

.founder__copy > p:not(.eyebrow, .founder__role) {
  max-width: 620px;
  margin: 0 0 18px;
  color: rgba(6, 45, 67, 0.72);
  font-size: 18px;
  line-height: 1.75;
}

.founder__proof {
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}

.founder__proof li {
  position: relative;
  padding: 0 28px 0 0;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.65;
}

.founder__proof li::before {
  content: "♥";
  position: absolute;
  top: 1px;
  right: 0;
  color: var(--red);
  font-size: 13px;
}

.faq {
  padding: clamp(90px, 11vw, 150px) 24px;
  background: var(--cream);
}

.faq__inner {
  display: grid;
  grid-template-columns: minmax(250px, 0.6fr) minmax(0, 1.4fr);
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.faq__heading {
  position: sticky;
  top: 120px;
}

.faq h2 {
  font-size: clamp(50px, 6vw, 78px);
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
}

.faq__grid article {
  min-height: 220px;
  padding: 30px;
  border-bottom: 1px solid var(--line-dark);
}

.faq__grid article:nth-child(odd) {
  border-left: 1px solid var(--line-dark);
}

.faq__grid h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.3;
}

.faq__grid p {
  margin: 14px 0 0;
  color: rgba(6, 45, 67, 0.65);
  font-size: 15px;
  line-height: 1.7;
}

.final-cta__inner {
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.72fr);
  align-items: center;
  justify-content: stretch;
  text-align: right;
}

.final-cta__copy > p:last-of-type {
  margin-inline: 0;
}

.beta-benefits {
  max-width: 680px;
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
}

.beta-benefits li {
  position: relative;
  min-height: 44px;
  padding: 8px 30px 8px 0;
  color: rgba(254, 240, 213, 0.83);
  font-size: 15px;
  line-height: 1.55;
}

.beta-benefits li::before {
  content: "✓";
  position: absolute;
  top: 10px;
  right: 0;
  color: var(--blue);
  font-weight: 900;
}

.beta-form--unified .beta-form__email {
  margin-top: 18px;
}

body.has-dialog {
  overflow: hidden;
}

.confirmation-dialog {
  position: fixed;
  inset: 0;
  z-index: 1000;
  padding: 20px;
  display: grid;
  place-items: center;
}

.confirmation-dialog[hidden] {
  display: none;
}

.confirmation-dialog__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 29, 46, 0.8);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.confirmation-dialog__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: 48px;
  border: 1px solid rgba(193, 18, 31, 0.2);
  border-radius: 26px;
  background: var(--paper);
  box-shadow: 0 32px 100px rgba(0, 29, 46, 0.35);
  color: var(--navy);
  text-align: center;
}

.confirmation-dialog__close {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--navy);
  font-size: 31px;
  line-height: 1;
  cursor: pointer;
}

.confirmation-dialog__close:hover {
  background: rgba(0, 47, 73, 0.07);
}

.confirmation-dialog__mark {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-size: 29px;
  font-weight: 900;
}

.confirmation-dialog h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 52px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.confirmation-dialog p {
  margin: 18px 0 28px;
  color: rgba(6, 45, 67, 0.68);
  line-height: 1.7;
}

.confirmation-dialog .button {
  min-width: 150px;
  border: 0;
}

@media (max-width: 1040px) {
  .problem__inner,
  .different__inner,
  .founder__inner,
  .faq__inner {
    gap: 56px;
  }

  .final-cta__inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  }
}

@media (max-width: 820px) {
  .problem__inner,
  .different__inner,
  .founder__inner,
  .faq__inner,
  .final-cta__inner {
    grid-template-columns: 1fr;
  }

  .problem__heading,
  .faq__heading {
    position: static;
  }

  .founder__portrait {
    max-width: 620px;
  }

  .founder__copy {
    max-width: 680px;
  }

  .final-cta__inner {
    align-items: stretch;
    text-align: right;
  }

  .beta-form {
    width: min(100%, 560px);
  }
}

@media (max-width: 560px) {
  .hero__support {
    font-size: 15px;
    text-align: center;
  }

  .problem,
  .different,
  .founder,
  .faq {
    padding: 78px 20px;
  }

  .problem__list li {
    min-height: 92px;
    padding-right: 50px;
    font-size: 22px;
  }

  .different__list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .different__list strong {
    font-size: 23px;
  }

  .founder__portrait::before {
    inset: 12px -10px -12px 10px;
  }

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

  .faq__grid article {
    min-height: 0;
    padding: 24px 0;
  }

  .faq__grid article:nth-child(odd) {
    border-left: 0;
  }

  .beta-benefits {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .confirmation-dialog__panel {
    padding: 44px 22px 28px;
    border-radius: 20px;
  }
}

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

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

  .story-step {
    opacity: 1;
    transform: none;
  }

  .connection-line span,
  .story-step__visual,
  .story-step:nth-of-type(even) .story-step__visual {
    transform: none;
  }

  .story-step.is-active::before {
    transform: translateY(-50%);
  }

  .hero-product__fingerprint,
  .demo-device {
    transform: none;
  }
}

@media print {
  .scroll-meter,
  .site-nav,
  .hero-product,
  .story-stage,
  .manifesto__ticker,
  .final-cta__action {
    display: none;
  }

  body,
  .story,
  .manifesto,
  .final-cta,
  .site-footer {
    background: white;
    color: black;
  }

  .story-step {
    min-height: 0;
    padding: 24px 0;
    opacity: 1;
    color: black;
  }
}
