:root {
  --paper: #f0e9d7;
  --canvas: #f0e9d7;
  --canvas-warm: #f3d4c6;
  --paper-deep: #f3d4c6;
  --ink: #393e41;
  --ink-secondary: #747b7e;
  --muted: #747b7e;
  --copper: #fe5f55;
  --copper-dark: #fe5f55;
  --red: #fe5f55;
  --ember: #ff6b61;
  --amber: #ff9a8f;
  --blue: #81a4cd;
  --lime: #81a4cd;
  --night: #242829;
  --night-card: #393e41;
  --line: rgba(57, 62, 65, 0.2);
  --card-radius: 28px;
  --button-radius: 18px;
  --pop-shadow: 3px 4px 0 var(--ink);
  --serif: ui-serif, "New York", "SF Pro Serif", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --mono: "SF Mono", SFMono-Regular, ui-monospace, Menlo, Monaco, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

button,
input {
  font: inherit;
}

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

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: 0.12;
  pointer-events: none;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4.5vw;
  border-bottom: 1px solid var(--line);
}

.wordmark,
.footer-wordmark {
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.1em;
}

.wordmark span,
.footer-wordmark span {
  color: var(--copper);
}

.desktop-nav {
  display: flex;
  gap: 2.2rem;
  margin-left: 6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.desktop-nav a:hover {
  color: var(--copper-dark);
}

.mini-cta,
.eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mini-cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  border: 1px solid var(--ink);
  border-radius: 100px;
  background: rgba(240, 233, 215, 0.72);
}

.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(254, 95, 85, 0.17);
  animation: blink 1.8s ease-in-out infinite;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 3vw;
  padding: 130px 4.5vw 70px;
  background:
    radial-gradient(circle at 75% 45%, rgba(129, 164, 205, 0.38), transparent 27%),
    linear-gradient(140deg, var(--paper) 0%, #f6f0e1 52%, #d8e2ed 100%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 42px;
  background: var(--ink);
  clip-path: polygon(0 56%, 10% 40%, 21% 70%, 35% 34%, 48% 64%, 61% 42%, 76% 75%, 89% 38%, 100% 57%, 100% 100%, 0 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.dual-copy h2,
.convergence h2,
.vienna h2,
.waitlist h2 {
  margin: 1.6rem 0 1.5rem;
  font-size: clamp(4rem, 7.25vw, 8.5rem);
  font-weight: 500;
  line-height: 0.87;
  letter-spacing: -0.08em;
}

.hero h1 em,
.section-heading h2 em,
.dual-copy h2 em,
.convergence h2 em,
.vienna h2 em,
.waitlist h2 em {
  color: var(--copper-dark);
  font-family: var(--serif);
  font-weight: 400;
}

.hero-lede {
  max-width: 530px;
  margin: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.45;
  letter-spacing: -0.03em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 2rem;
}

.button {
  border: 0;
  border-radius: 100px;
  padding: 1rem 1.25rem 1rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

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

.button-dark {
  color: var(--paper);
  background: var(--ink);
}

.button-copper {
  color: var(--paper);
  background: var(--copper-dark);
}

.button span {
  font-size: 1.2rem;
}

.button span svg {
  display: block;
  width: 22px;
  height: 22px;
}

.text-link {
  font-size: 0.86rem;
  font-weight: 600;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.25rem;
}

.microcopy {
  margin: 1.2rem 0 0 0.2rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
}

.hero-stage {
  position: relative;
  height: min(750px, 78vh);
}

.phone {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: min(370px, 36vw);
  aspect-ratio: 0.505;
  padding: 9px;
  transform: translate(-46%, -50%) rotate(5deg);
  border: 2px solid var(--ink);
  border-radius: 55px;
  background: #30363a;
  box-shadow: 30px 40px 80px rgba(57, 62, 65, 0.3), 7px 8px 0 rgba(57, 62, 65, 0.9);
}

.phone-island {
  position: absolute;
  z-index: 10;
  top: 20px;
  left: 50%;
  width: 30%;
  height: 23px;
  transform: translateX(-50%);
  border-radius: 20px;
  background: var(--ink);
}

.phone-screen,
.convergence-map {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 46px;
  background: #d7e1ec;
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(57, 62, 65, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 62, 65, 0.1) 1px, transparent 1px);
  background-size: 33px 33px;
  transform: rotate(8deg) scale(1.3);
}

.map-street,
.converge-road {
  position: absolute;
  height: 12px;
  border: 1px solid rgba(57, 62, 65, 0.1);
  background: rgba(240, 233, 215, 0.65);
}

.street-one {
  width: 140%;
  left: -20%;
  top: 33%;
  transform: rotate(-21deg);
}

.street-two {
  width: 120%;
  left: 0;
  top: 63%;
  transform: rotate(42deg);
}

.street-three {
  width: 100%;
  left: -25%;
  top: 18%;
  transform: rotate(76deg);
}

.phone-top {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-wordmark {
  font-family: var(--serif);
  font-size: 1.8rem;
  letter-spacing: -0.1em;
}

.freshness {
  padding: 0.35rem 0.55rem;
  border-radius: 50px;
  background: var(--lime);
  font-family: var(--mono);
  font-size: 0.46rem;
  font-weight: 500;
  text-transform: uppercase;
}

.map-label {
  position: absolute;
  color: rgba(57, 62, 65, 0.52);
  font-family: var(--mono);
  font-size: 0.44rem;
  text-transform: uppercase;
}

.label-seven {
  top: 17%;
  left: 37%;
}

.label-museum {
  top: 42%;
  right: 10%;
}

.label-canal {
  top: 55%;
  left: 7%;
  transform: rotate(-30deg);
}

.person-pin {
  position: absolute;
  z-index: 4;
  width: 43px;
  height: 43px;
  padding: 3px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 4px 12px rgba(57, 62, 65, 0.28);
  cursor: pointer;
}

.person-pin img {
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.pin-a {
  top: 25%;
  left: 20%;
}

.pin-b {
  top: 20%;
  right: 17%;
}

.pin-c {
  top: 47%;
  right: 11%;
}

.pulse {
  position: absolute;
  z-index: -1;
  inset: -11px;
  border: 2px solid var(--red);
  border-radius: 50%;
  animation: pinPulse 2s ease-out infinite;
}

.avatar-fallback {
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #5e7fa7;
  color: white;
  font-family: var(--serif);
}

.active-card {
  position: absolute;
  z-index: 5;
  left: 13px;
  right: 13px;
  bottom: 12px;
  padding: 6px;
  border-radius: 27px;
  background: #f7f1e2;
  box-shadow: 0 10px 35px rgba(57, 62, 65, 0.22);
}

.active-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--paper-deep);
}

.active-card-image > img {
  height: 100%;
  object-fit: cover;
}

.peek-photo {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 83px;
  height: 105px;
  overflow: hidden;
  border: 2px solid white;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(57, 62, 65, 0.28);
  transition: width 0.35s ease, height 0.35s ease;
}

.peek-photo:hover {
  width: calc(100% - 18px);
  height: calc(100% - 18px);
}

.peek-photo img {
  height: 100%;
  object-fit: cover;
}

.peek-photo span {
  position: absolute;
  bottom: 5px;
  left: 6px;
  padding: 0.15rem 0.3rem;
  border-radius: 4px;
  color: white;
  background: rgba(57, 62, 65, 0.72);
  font-family: var(--mono);
  font-size: 0.36rem;
  text-transform: uppercase;
}

.card-status {
  position: absolute;
  left: 8px;
  bottom: 8px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.5rem;
  border-radius: 30px;
  background: rgba(240, 233, 215, 0.9);
  font-family: var(--mono);
  font-size: 0.42rem;
  text-transform: uppercase;
}

.card-status .live-dot {
  width: 4px;
  height: 4px;
  flex-basis: 4px;
  box-shadow: none;
}

.active-card-copy {
  padding: 0.7rem 0.45rem 0.25rem;
}

.active-card-copy > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.active-card-copy strong {
  font-size: 0.86rem;
}

.active-card-copy > div span {
  font-family: var(--mono);
  font-size: 0.42rem;
  text-transform: uppercase;
}

.active-card-copy p {
  margin: 0.4rem 0 0.7rem;
  font-family: var(--serif);
  font-size: 0.82rem;
  line-height: 1.2;
}

.active-card-copy button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border: 0;
  border-radius: 50px;
  padding: 0.65rem 0.8rem;
  color: white;
  background: var(--ink);
  font-size: 0.58rem;
  font-weight: 600;
  cursor: pointer;
}

.float-note {
  position: absolute;
  z-index: 4;
  padding: 0.8rem 1rem;
  border: 1px solid var(--ink);
  background: var(--lime);
  font-family: var(--mono);
  font-size: 0.63rem;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 var(--ink);
}

.float-note strong {
  font-size: 1.2rem;
}

.note-one {
  top: 18%;
  right: 1%;
  transform: rotate(7deg);
}

.note-two {
  bottom: 19%;
  left: 0;
  background: #f7f1e2;
  transform: rotate(-6deg);
}

.note-two span {
  color: var(--red);
}

.scribble,
.hand-note {
  position: absolute;
  z-index: 5;
  font-family: var(--serif);
  font-style: italic;
  color: var(--copper-dark);
  transform: rotate(-10deg);
}

.scribble-one {
  top: 12%;
  left: 2%;
  font-size: 1.4rem;
}

.ticker {
  overflow: hidden;
  padding: 1rem 0;
  color: var(--paper);
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.ticker div {
  width: max-content;
  display: flex;
  gap: 2rem;
  align-items: center;
  animation: ticker 22s linear infinite;
}

.ticker span {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.ticker i {
  color: var(--copper);
  font-style: normal;
  font-size: 1.3rem;
}

.section-pad {
  padding: 9rem 4.5vw;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 5rem;
}

.section-heading h2,
.dual-copy h2,
.convergence h2,
.vienna h2,
.waitlist h2 {
  font-size: clamp(3.8rem, 6.7vw, 7.5rem);
  margin: 0;
}

.section-heading p,
.dual-copy > p,
.convergence-copy > p,
.vienna-copy > p {
  margin: 0 0 0.5rem;
  max-width: 340px;
  font-size: 0.95rem;
  line-height: 1.55;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.step-card {
  min-height: 660px;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border: 1px solid var(--ink);
  border-radius: 28px;
  overflow: hidden;
}

.step-capture {
  background: var(--copper);
}

.step-signal {
  background: #b9cde2;
}

.step-meet {
  background: var(--ink);
  color: var(--paper);
}

.step-number {
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
}

.capture-stack,
.signal-visual,
.mini-route {
  position: relative;
  flex: 1;
  min-height: 400px;
}

.capture-main,
.capture-back {
  position: absolute;
  overflow: hidden;
  border: 4px solid #f7f1e2;
  background: var(--paper);
  box-shadow: 7px 8px 0 rgba(57, 62, 65, 0.9);
}

.capture-main {
  top: 2.5rem;
  left: 5%;
  width: 70%;
  height: 300px;
  transform: rotate(-5deg);
}

.capture-back {
  right: 4%;
  bottom: 1rem;
  width: 55%;
  height: 220px;
  transform: rotate(8deg);
}

.capture-main img,
.capture-back img {
  height: 100%;
  object-fit: cover;
}

.capture-main span,
.capture-back span {
  position: absolute;
  left: 0.4rem;
  bottom: 0.4rem;
  padding: 0.2rem 0.35rem;
  color: white;
  background: var(--ink);
  font-family: var(--mono);
  font-size: 0.55rem;
  text-transform: uppercase;
}

.capture-flash {
  position: absolute;
  z-index: 4;
  right: 7%;
  top: 12%;
  color: var(--lime);
  font-size: 4rem;
  line-height: 1;
}

.step-copy {
  padding: 1.2rem 0.3rem 0.4rem;
  border-top: 1px solid currentColor;
}

.step-copy h3 {
  margin: 0 0 0.7rem;
  font-size: 1.8rem;
  letter-spacing: -0.06em;
}

.step-copy p {
  max-width: 310px;
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
}

.prompt-card {
  position: absolute;
  top: 16%;
  left: 6%;
  right: 6%;
  padding: 1.5rem;
  border: 1px solid var(--ink);
  border-radius: 20px;
  background: #f7f1e2;
  box-shadow: 8px 9px 0 var(--ink);
  transform: rotate(-3deg);
}

.prompt-card span {
  font-family: var(--mono);
  font-size: 0.55rem;
  text-transform: uppercase;
}

.prompt-card p {
  margin: 4rem 0 0.5rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.prompt-card strong {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2vw, 2.1rem);
  font-weight: 400;
  line-height: 1.1;
}

.signal-button {
  position: absolute;
  z-index: 4;
  right: 4%;
  bottom: 12%;
  border: 2px solid var(--ink);
  border-radius: 100%;
  width: 120px;
  height: 120px;
  background: var(--lime);
  font-weight: 600;
  transform: rotate(9deg);
  cursor: pointer;
  box-shadow: 6px 6px 0 var(--ink);
}

.signal-button:hover {
  animation: wiggle 0.5s ease;
}

.signal-line {
  position: absolute;
  height: 2px;
  background: var(--ink);
  transform-origin: left;
}

.line-a {
  width: 60px;
  right: 8%;
  bottom: 44%;
  transform: rotate(20deg);
}

.line-b {
  width: 45px;
  right: 1%;
  bottom: 39%;
  transform: rotate(-10deg);
}

.mini-route {
  background-image:
    linear-gradient(rgba(241, 234, 223, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241, 234, 223, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

.route-city {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(241, 234, 223, 0.12);
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: -0.09em;
}

.route-line {
  position: absolute;
  top: 50%;
  left: 17%;
  width: 66%;
  height: 30%;
  border: 2px dashed var(--copper);
  border-bottom: 0;
  border-radius: 100% 100% 0 0;
  transform: rotate(-6deg);
}

.route-person {
  position: absolute;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper);
  text-align: center;
  font-family: var(--mono);
  font-size: 0.47rem;
  text-transform: uppercase;
}

.route-person b {
  color: var(--copper-dark);
  font-size: 0.55rem;
}

.route-person-a {
  left: 9%;
  bottom: 18%;
}

.route-person-b {
  right: 7%;
  bottom: 28%;
}

.venue {
  position: absolute;
  top: 35%;
  left: 50%;
  width: 150px;
  padding: 1rem;
  transform: translateX(-50%) rotate(-3deg);
  border-radius: 14px;
  color: var(--ink);
  background: var(--lime);
  box-shadow: 5px 5px 0 var(--copper);
}

.venue span,
.venue small {
  display: block;
  font-family: var(--mono);
  font-size: 0.42rem;
  text-transform: uppercase;
}

.venue strong {
  display: block;
  margin: 0.25rem 0 0.6rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
}

.manifesto {
  padding: 8rem 4.5vw;
  color: var(--paper);
  background: var(--ink);
}

.manifesto-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7rem;
}

.kicker-light {
  color: var(--lime);
}

.manifesto-side {
  margin: 0;
  color: rgba(241, 234, 223, 0.6);
  font-family: var(--mono);
  font-size: 0.7rem;
  line-height: 1.6;
  text-transform: uppercase;
}

.manifesto-lines p {
  margin: 0;
  padding: 0.35rem 0 0.65rem;
  border-bottom: 1px solid rgba(241, 234, 223, 0.2);
  font-size: clamp(3.7rem, 8.8vw, 10rem);
  line-height: 0.95;
  letter-spacing: -0.08em;
}

.manifesto-lines p:nth-child(2) {
  padding-left: 8vw;
}

.manifesto-lines p:nth-child(3) {
  padding-left: 20vw;
}

.manifesto-lines span {
  color: rgba(241, 234, 223, 0.27);
}

.manifesto-lines em {
  color: var(--copper);
  font-family: var(--serif);
  font-weight: 400;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 7rem;
  background: rgba(241, 234, 223, 0.2);
}

.manifesto-grid article {
  min-height: 245px;
  padding: 1.5rem;
  background: var(--ink);
}

.manifesto-grid span {
  color: var(--copper);
  font-family: var(--mono);
  font-size: 0.65rem;
}

.manifesto-grid h3 {
  margin: 3rem 0 0.8rem;
  font-size: 1.7rem;
  letter-spacing: -0.05em;
}

.manifesto-grid p {
  max-width: 320px;
  margin: 0;
  color: rgba(241, 234, 223, 0.58);
  font-size: 0.82rem;
  line-height: 1.55;
}

.dual-camera {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 8vw;
  align-items: center;
  min-height: 900px;
}

.dual-copy h2 {
  margin: 1.6rem 0 2rem;
}

.trust-list {
  display: grid;
  gap: 0.75rem;
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.trust-list li {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.trust-list span {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-right: 0.6rem;
  border-radius: 50%;
  color: var(--paper);
  background: var(--copper-dark);
}

.dual-visual {
  position: relative;
  height: 700px;
}

.photo-frame {
  position: absolute;
  overflow: hidden;
  padding: 10px 10px 58px;
  background: #f7f1e2;
  box-shadow: 16px 20px 40px rgba(57, 62, 65, 0.22);
}

.photo-frame img {
  height: 100%;
  object-fit: cover;
}

.photo-frame span {
  position: absolute;
  bottom: 17px;
  left: 15px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
}

.frame-front {
  z-index: 2;
  left: 3%;
  top: 7%;
  width: 54%;
  height: 77%;
  transform: rotate(-6deg);
}

.frame-back {
  right: 1%;
  bottom: 2%;
  width: 55%;
  height: 70%;
  transform: rotate(7deg);
}

.hand-note {
  top: 1%;
  right: 7%;
  font-size: 1.3rem;
}

.convergence {
  min-height: 820px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5vw;
  padding: 2.5rem 2.5rem 2.5rem 4.5vw;
  color: var(--paper);
  background: var(--copper);
}

.convergence-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.convergence h2 {
  margin: 1.7rem 0 2rem;
}

.convergence h2 em {
  color: var(--ink);
}

.convergence-copy > p {
  margin-bottom: 2rem;
  color: rgba(241, 234, 223, 0.78);
}

.convergence-map {
  border: 2px solid var(--ink);
  border-radius: 34px;
  background: #b9cde2;
}

.road-a {
  top: 40%;
  left: -10%;
  width: 120%;
  transform: rotate(18deg);
}

.road-b {
  top: 52%;
  left: -10%;
  width: 120%;
  transform: rotate(-36deg);
}

.converge-pin {
  position: absolute;
  z-index: 3;
  width: 75px;
  height: 75px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--mono);
  font-size: 0.52rem;
  text-align: center;
  text-transform: uppercase;
  transition: all 1.3s cubic-bezier(0.2, 0.85, 0.25, 1);
}

.converge-pin b {
  color: var(--copper-dark);
}

.converge-a {
  left: 14%;
  bottom: 17%;
}

.converge-b {
  right: 13%;
  top: 15%;
}

.meet-line {
  position: absolute;
  z-index: 2;
  height: 2px;
  border-top: 2px dashed var(--copper-dark);
  transform-origin: left center;
  opacity: 0.8;
  transition: opacity 0.4s ease;
}

.meet-line-a {
  left: 21%;
  bottom: 26%;
  width: 40%;
  transform: rotate(-40deg);
}

.meet-line-b {
  left: 56%;
  top: 29%;
  width: 30%;
  transform: rotate(135deg);
}

.meet-point {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: 165px;
  padding: 1rem;
  transform: translate(-50%, -50%) rotate(-4deg);
  border: 2px solid var(--ink);
  border-radius: 15px;
  color: var(--ink);
  background: var(--lime);
  box-shadow: 7px 8px 0 var(--ink);
  text-align: center;
  transition: transform 0.6s ease;
}

.meet-point span {
  display: block;
  font-size: 1.8rem;
}

.meet-point strong {
  display: block;
  margin: 0.2rem 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.meet-point small {
  font-family: var(--mono);
  font-size: 0.45rem;
  text-transform: uppercase;
}

.match-flash {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.4) rotate(-8deg);
  padding: 1.2rem 1.8rem;
  border: 2px solid var(--ink);
  color: var(--paper);
  background: var(--copper-dark);
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
  transition: all 0.5s ease 1s;
}

.convergence-map.is-converged .converge-a,
.convergence-map.is-converged .converge-b {
  top: calc(50% - 37px);
  left: calc(50% - 37px);
  right: auto;
  bottom: auto;
  opacity: 0;
  transform: scale(0.4);
}

.convergence-map.is-converged .meet-line {
  opacity: 0;
}

.convergence-map.is-converged .meet-point {
  transform: translate(-50%, -50%) rotate(4deg) scale(1.1);
}

.convergence-map.is-converged .match-flash {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotate(-8deg);
}

.vienna {
  background: var(--paper-deep);
}

.vienna-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 5vw;
  padding: 4.5vw;
  border: 2px solid var(--ink);
  border-radius: 35px;
  background: var(--paper);
  box-shadow: 10px 11px 0 var(--ink);
}

.vienna h2 {
  margin: 1.6rem 0 2rem;
}

.districts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.districts span {
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--ink);
  border-radius: 50px;
  font-family: var(--mono);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.unlock {
  position: relative;
  min-height: 500px;
  padding: 1.2rem;
  overflow: hidden;
  border-radius: 25px;
  color: var(--paper);
  background: var(--ink);
}

.unlock-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.counter {
  position: relative;
  z-index: 2;
  margin-top: 3rem;
  color: var(--lime);
  font-family: var(--serif);
  font-size: clamp(4.5rem, 8vw, 8.5rem);
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.counter small {
  display: block;
  margin-top: 1.3rem;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.progress {
  position: relative;
  z-index: 2;
  height: 8px;
  margin-top: 2rem;
  overflow: hidden;
  border: 1px solid rgba(241, 234, 223, 0.45);
  border-radius: 50px;
}

.progress span {
  display: block;
  /* Live unlock share; script.js sets the real width from database counts. */
  width: 0%;
  height: 100%;
  background: var(--copper);
  animation: load 1.8s ease-out both;
}

.waitlist {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 760px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 60%, rgba(129, 164, 205, 0.52), transparent 30%),
    var(--paper);
}

.waitlist h2 {
  margin: 2rem 0 2.7rem;
}

.waitlist-sticker {
  position: absolute;
  top: 13%;
  right: 12%;
  width: 115px;
  height: 115px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1;
  transform: rotate(12deg);
  box-shadow: 5px 5px 0 var(--ink);
}

.waitlist-form {
  width: min(580px, 100%);
  display: flex;
  gap: 0.5rem;
  padding: 0.4rem;
  border: 2px solid var(--ink);
  border-radius: 100px;
  background: rgba(240, 233, 215, 0.84);
}

.waitlist-form input {
  flex: 1;
  min-width: 0;
  padding: 0.8rem 1rem;
  border: 0;
  outline: 0;
  background: transparent;
}

.waitlist-form button {
  display: flex;
  gap: 1.4rem;
  align-items: center;
  border: 0;
  border-radius: 100px;
  padding: 0.9rem 1.2rem;
  color: var(--paper);
  background: var(--ink);
  font-weight: 600;
  cursor: pointer;
}

.form-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.form-confirmation {
  width: 100%;
  padding: 1rem;
  font-weight: 600;
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 2rem;
  align-items: end;
  padding: 3rem 4.5vw;
  color: var(--paper);
  background: var(--ink);
}

footer p,
.copyright {
  margin: 0;
  color: rgba(241, 234, 223, 0.55);
  font-family: var(--mono);
  font-size: 0.6rem;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 1rem;
  font-family: var(--mono);
  font-size: 0.6rem;
  text-transform: uppercase;
}

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

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 0.8s ease forwards;
}

.reveal:nth-child(2) { animation-delay: 0.08s; }
.reveal:nth-child(3) { animation-delay: 0.16s; }
.reveal:nth-child(4) { animation-delay: 0.24s; }
.reveal:nth-child(5) { animation-delay: 0.3s; }
.hero-stage.reveal { animation-delay: 0.18s; }

@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes blink {
  50% { opacity: 0.5; transform: scale(0.8); }
}

@keyframes pinPulse {
  0% { transform: scale(0.65); opacity: 1; }
  100% { transform: scale(1.45); opacity: 0; }
}

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

@keyframes wiggle {
  25% { transform: rotate(3deg); }
  75% { transform: rotate(15deg); }
}

@keyframes load {
  from { width: 0; }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr 1fr;
  }

  .phone {
    width: min(350px, 42vw);
  }

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

  .section-heading p {
    grid-column: 2;
  }

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

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

  .convergence {
    grid-template-columns: 1fr;
    padding: 5rem 4.5vw;
  }

  .convergence-map {
    height: 640px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 70px;
    padding: 0 1rem;
  }

  .desktop-nav {
    display: none;
  }

  .mini-cta {
    font-size: 0.55rem;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 110px 1rem 80px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 18vw, 6.5rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .hero-stage {
    height: 700px;
    margin-top: 1rem;
  }

  .phone {
    width: min(340px, 82vw);
  }

  .note-one {
    right: 0;
  }

  .note-two {
    left: 0;
    bottom: 7%;
  }

  .section-pad,
  .manifesto {
    padding: 6rem 1rem;
  }

  .section-heading {
    display: block;
    margin-bottom: 3rem;
  }

  .section-heading h2,
  .dual-copy h2,
  .convergence h2,
  .vienna h2,
  .waitlist h2 {
    margin: 1.5rem 0;
    font-size: clamp(3.6rem, 16vw, 5.5rem);
  }

  .steps,
  .manifesto-grid,
  .dual-camera,
  .vienna-card {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 600px;
  }

  .step-meet {
    grid-column: auto;
  }

  .manifesto-top {
    display: block;
    margin-bottom: 4rem;
  }

  .manifesto-side {
    margin-top: 1rem;
  }

  .manifesto-lines p {
    padding-left: 0 !important;
    font-size: clamp(3.3rem, 15vw, 5rem);
  }

  .manifesto-grid {
    margin-top: 4rem;
  }

  .dual-camera {
    gap: 3rem;
  }

  .dual-visual {
    height: 570px;
  }

  .frame-front {
    width: 62%;
  }

  .frame-back {
    width: 62%;
  }

  .convergence {
    min-height: auto;
    padding: 5rem 1rem 1rem;
  }

  .convergence-map {
    height: 560px;
  }

  .meet-line-a {
    left: 15%;
    width: 44%;
  }

  .meet-line-b {
    left: 55%;
  }

  .vienna-card {
    padding: 1rem;
  }

  .unlock {
    min-height: 420px;
  }

  .waitlist {
    min-height: 680px;
  }

  .waitlist-sticker {
    top: 8%;
    right: 4%;
    width: 85px;
    height: 85px;
    font-size: 1rem;
  }

  .waitlist-form {
    flex-direction: column;
    border-radius: 25px;
  }

  .waitlist-form button {
    justify-content: space-between;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 3rem 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Three-chapter edition */
.three-page-site .site-header {
  position: fixed;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(240, 233, 215, 0.82);
}

.chapter-nav a {
  display: flex;
  gap: 0.5rem;
}

.chapter-nav span {
  color: var(--copper);
  font-family: var(--mono);
  font-size: 0.62rem;
}

.page-chapter {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.chapter-label {
  position: absolute;
  z-index: 6;
  top: 112px;
  left: 4.5vw;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.three-page-site .hero {
  min-height: 100svh;
}

.chapter-next {
  position: absolute;
  z-index: 8;
  right: 4.5vw;
  bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compact-how {
  display: grid;
  align-content: center;
  padding: 8rem 4.5vw 5.5rem;
  color: var(--paper);
  background: var(--ink);
}

.compact-how .chapter-label {
  color: rgba(240, 233, 215, 0.45);
}


.compact-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 2rem;
}

.compact-heading h2,
.launch-copy h2 {
  margin: 1.1rem 0 0;
  font-size: clamp(3.7rem, 6.4vw, 7rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.08em;
}

.compact-heading h2 em,
.launch-copy h2 em,
.launch-form h3 em {
  color: var(--copper);
  font-family: var(--serif);
  font-weight: 400;
}

.compact-manifesto {
  padding-bottom: 0.4rem;
}

.compact-manifesto p {
  margin: 0;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(240, 233, 215, 0.18);
  color: var(--copper);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.8rem);
  font-style: italic;
  line-height: 1;
}

.compact-manifesto span {
  color: rgba(240, 233, 215, 0.34);
  font-family: var(--sans);
  font-style: normal;
  letter-spacing: -0.06em;
}

.compact-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.compact-step {
  min-height: 320px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0.8rem;
  padding: 0.7rem;
  border: 1px solid rgba(240, 233, 215, 0.27);
  border-radius: 22px;
  background: rgba(240, 233, 215, 0.045);
}

.compact-step-visual {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  border-radius: 16px;
  color: var(--ink);
  background: var(--paper-deep);
}

.dual-snap img {
  position: absolute;
  height: 72%;
  object-fit: cover;
  border: 3px solid var(--paper);
}

.dual-snap img:first-child {
  top: 8%;
  left: 7%;
  width: 68%;
  transform: rotate(-5deg);
}

.dual-snap img:nth-child(2) {
  right: 5%;
  bottom: 7%;
  width: 55%;
  transform: rotate(7deg);
}

.dual-snap > span {
  position: absolute;
  z-index: 3;
  left: 0.6rem;
  bottom: 0.6rem;
  padding: 0.35rem 0.5rem;
  border-radius: 40px;
  background: var(--lime);
  font-family: var(--mono);
  font-size: 0.42rem;
  text-transform: uppercase;
}

.true-self {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
  background: var(--paper);
}

.true-self small {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  font-family: var(--mono);
  font-size: 0.45rem;
  text-transform: uppercase;
}

.true-self > span {
  color: var(--muted);
  font-size: 0.65rem;
}

.true-self strong {
  margin-top: 0.4rem;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.4vw, 1.5rem);
  font-weight: 400;
  line-height: 1.1;
}

.true-self button {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  border: 1px solid var(--ink);
  border-radius: 100px;
  padding: 0.5rem 0.7rem;
  color: var(--paper);
  background: var(--copper);
  font-size: 0.55rem;
  font-weight: 600;
}

.route-snap {
  background-color: #b9cde2;
  background-image:
    linear-gradient(rgba(57, 62, 65, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 62, 65, 0.1) 1px, transparent 1px);
  background-size: 22px 22px;
}

.route-snap .route-line {
  top: 49%;
  left: 13%;
  width: 72%;
  border-color: var(--copper);
}

.route-snap .route-person {
  width: 48px;
  height: 48px;
}

.route-snap .route-person-a {
  left: 5%;
  bottom: 15%;
}

.route-snap .route-person-b {
  right: 5%;
  bottom: 28%;
}

.route-snap .venue {
  top: 28%;
  width: 130px;
  padding: 0.75rem;
  background: var(--copper);
  box-shadow: 4px 4px 0 var(--ink);
}

.compact-step-copy {
  display: flex;
  flex-direction: column;
  padding: 0.45rem 0.2rem;
}

.compact-step-copy b {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 0.5rem;
  font-weight: 500;
  text-transform: uppercase;
}

.compact-step-copy h3 {
  margin: auto 0 0.7rem;
  font-size: clamp(1.15rem, 1.55vw, 1.7rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.compact-step-copy p {
  margin: 0;
  color: rgba(240, 233, 215, 0.55);
  font-size: 0.67rem;
  line-height: 1.45;
}

.trust-ribbon {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.2rem;
  color: rgba(240, 233, 215, 0.55);
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-ribbon i {
  color: var(--copper);
  font-style: normal;
}

.chapter-next-light {
  color: var(--paper);
}

.launch-page {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 5vw;
  align-content: center;
  padding: 9rem 4.5vw 7rem;
  background:
    radial-gradient(circle at 80% 25%, rgba(129, 164, 205, 0.45), transparent 25%),
    var(--paper);
}

.launch-copy h2 {
  margin: 1.3rem 0 1.7rem;
}

.launch-copy > p {
  max-width: 390px;
  font-size: 0.92rem;
  line-height: 1.55;
}

.launch-panel {
  display: grid;
  grid-template-rows: 1fr auto;
  border: 2px solid var(--ink);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 9px 10px 0 var(--ink);
}

.compact-unlock {
  min-height: 300px;
  border-radius: 0;
}

.compact-unlock .counter {
  font-size: clamp(4.5rem, 7vw, 7.5rem);
}

.launch-form {
  padding: 1.4rem;
  background: var(--paper);
}

.launch-form h3 {
  max-width: 590px;
  margin: 0.7rem 0 1.2rem;
  font-size: clamp(2.1rem, 3.4vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.launch-form .waitlist-form {
  width: 100%;
}

.chapter-footer {
  position: absolute;
  left: 4.5vw;
  right: 4.5vw;
  bottom: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.chapter-footer p,
.chapter-footer div {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.52rem;
  text-transform: uppercase;
}

.chapter-footer div {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

@media (max-width: 1100px) {
  .compact-step {
    display: block;
  }

  .compact-step-visual {
    min-height: 230px;
  }

  .compact-step-copy {
    min-height: 145px;
    padding-top: 0.8rem;
  }
}

@media (max-width: 760px) {
  .three-page-site .site-header {
    height: 70px;
  }

  .page-chapter {
    min-height: auto;
  }

  .chapter-label {
    top: 88px;
    left: 1rem;
  }

  .three-page-site .hero {
    min-height: 1450px;
  }

  .chapter-next {
    right: 1rem;
    bottom: 1.2rem;
  }

  .compact-how {
    display: block;
    padding: 8rem 1rem 5.5rem;
  }

  .compact-heading,
  .compact-steps,
  .launch-page {
    grid-template-columns: 1fr;
  }

  .compact-heading {
    display: block;
    margin-bottom: 2rem;
  }

  .compact-heading h2,
  .launch-copy h2 {
    font-size: clamp(3.7rem, 16vw, 5.5rem);
  }

  .compact-manifesto {
    margin-top: 2rem;
  }

  .compact-step {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 310px;
  }

  .compact-step-visual {
    min-height: 285px;
  }

  .compact-step-copy {
    min-height: 0;
  }

  .trust-ribbon {
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 2rem 0 1rem;
  }

  .launch-page {
    display: block;
    padding: 8rem 1rem 9rem;
  }

  .launch-panel {
    margin-top: 2.5rem;
  }

  .chapter-footer {
    left: 1rem;
    right: 1rem;
    bottom: 1.2rem;
    grid-template-columns: auto 1fr;
  }

  .chapter-footer p {
    display: none;
  }

  .chapter-footer div {
    display: grid;
    gap: 0.3rem;
    text-align: right;
  }
}

@media (max-width: 480px) {
  .compact-step {
    display: block;
  }

  .compact-step-visual {
    min-height: 250px;
  }

  .compact-step-copy {
    min-height: 155px;
  }
}

.three-page-site .hero-actions .button-dark,
.three-page-site .hero-actions .button-copper,
.three-page-site .launch-form .waitlist-form button,
.three-page-site .active-card-copy button {
  color: var(--ink);
  background: var(--red);
}

/* Final viewport-fit overrides: keep desktop/tablet chapters inside one view. */
@media (min-width: 761px) {
  html {
    scroll-snap-type: y mandatory;
  }

  .three-page-site .page-chapter {
    height: 100svh;
    min-height: 0;
    max-height: 100svh;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .three-page-site .page-chapter > .chapter-label {
    display: none;
  }

  .three-page-site .hero,
  .three-page-site .compact-how,
  .three-page-site .launch-page {
    padding:
      clamp(92px, 11svh, 116px)
      clamp(20px, 3.8vw, 72px)
      clamp(28px, 4.8svh, 52px);
  }

  .three-page-site .hero {
    min-height: 0;
    height: 100svh;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    gap: clamp(2rem, 5vw, 6.5rem);
  }

  .three-page-site .hero h1 {
    font-size: clamp(4rem, min(6vw, 12svh), 7rem);
    line-height: 0.88;
  }

  .three-page-site .hero-stage {
    height: min(68svh, 610px);
  }

  .three-page-site .phone {
    width: min(22vw, 305px);
    min-width: 260px;
  }

  .three-page-site .active-card-image {
    height: min(27svh, 210px);
  }

  .three-page-site .compact-how {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    align-content: stretch;
    row-gap: clamp(12px, 2.2svh, 22px);
  }

  .three-page-site .compact-heading {
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
    gap: clamp(2rem, 6vw, 7rem);
    margin-bottom: 0;
  }

  .three-page-site .compact-heading h2 {
    color: var(--canvas);
    font-size: clamp(3rem, min(5.2vw, 9svh), 5.7rem);
    line-height: 0.9;
  }

  .three-page-site .compact-manifesto p {
    padding: clamp(0.32rem, 0.9svh, 0.55rem) 0;
    font-size: clamp(1rem, min(1.65vw, 2.8svh), 1.55rem);
  }

  .three-page-site .compact-steps {
    min-height: 0;
    height: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: clamp(0.65rem, 1.2vw, 1rem);
  }

  .three-page-site .compact-step {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    min-height: 0;
    height: 100%;
    padding: clamp(0.55rem, 1.1svh, 0.75rem);
    border-color: rgba(240, 233, 215, 0.16);
    box-shadow: none;
  }

  .three-page-site .compact-step-visual {
    min-height: 0;
    height: 100%;
    border-color: transparent;
    box-shadow: none;
  }

  .three-page-site .compact-step-copy {
    min-height: 0;
    padding-top: 0.35rem;
  }

  .three-page-site .compact-step-copy h3 {
    margin: auto 0 0.55rem;
    font-size: clamp(1.1rem, min(1.55vw, 3.1svh), 1.55rem);
    color: var(--canvas);
  }

  .three-page-site .compact-step-copy p {
    font-size: clamp(0.64rem, min(0.78vw, 1.7svh), 0.76rem);
    line-height: 1.34;
  }

  .three-page-site .true-self strong {
    font-size: clamp(1.15rem, min(1.8vw, 3.7svh), 1.7rem);
  }

  .three-page-site .trust-ribbon {
    margin-top: 0;
    font-size: clamp(0.66rem, min(0.9vw, 1.6svh), 0.82rem);
  }

  .three-page-site .chapter-next {
    bottom: clamp(16px, 2.6svh, 26px);
  }

  .three-page-site .launch-page {
    grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.08fr);
    align-content: center;
  }

  .three-page-site .launch-copy h2 {
    font-size: clamp(3.1rem, min(5.4vw, 9svh), 6rem);
    line-height: 0.9;
  }

  .three-page-site .launch-copy > p {
    font-size: clamp(0.9rem, min(1.05vw, 2svh), 1rem);
  }

  .three-page-site .compact-unlock {
    min-height: min(34svh, 300px);
  }

  .three-page-site .compact-unlock .counter {
    font-size: clamp(4rem, min(6.2vw, 10svh), 6.6rem);
  }

  .three-page-site .launch-form {
    padding: clamp(1rem, 2.1svh, 1.4rem);
  }

  .three-page-site .launch-form h3 {
    font-size: clamp(2rem, min(3vw, 5svh), 3.25rem);
  }

  .three-page-site .chapter-footer {
    bottom: clamp(14px, 2.2svh, 24px);
  }
}

@media (min-width: 761px) and (max-height: 760px) {
  .three-page-site .site-header {
    height: 64px;
  }

  .three-page-site .wordmark,
  .three-page-site .footer-wordmark {
    font-size: 30px;
  }

  .three-page-site .mini-cta {
    min-height: 40px;
  }

  .three-page-site .hero,
  .three-page-site .compact-how,
  .three-page-site .launch-page {
    padding-top: 76px;
    padding-bottom: 24px;
  }

  .three-page-site .hero .eyebrow,
  .three-page-site .microcopy,
  .three-page-site .trust-ribbon,
  .three-page-site .chapter-next {
    display: none;
  }

  .three-page-site .hero h1 {
    font-size: clamp(3.4rem, min(5.4vw, 11svh), 5.8rem);
  }

  .three-page-site .button,
  .three-page-site .waitlist-form button {
    min-height: 52px;
  }

  .three-page-site .hero-stage {
    height: min(70svh, 520px);
  }

  .three-page-site .phone {
    width: min(20vw, 260px);
    min-width: 230px;
  }

  .three-page-site .active-card-image {
    height: min(24svh, 170px);
  }

  .three-page-site .compact-heading h2 {
    font-size: clamp(2.7rem, min(4.7vw, 8.6svh), 4.8rem);
  }

  .three-page-site .compact-heading {
    gap: 3rem;
  }

  .three-page-site .compact-step-copy h3 {
    font-size: clamp(1rem, min(1.35vw, 2.8svh), 1.35rem);
  }

  .three-page-site .compact-step-copy p {
    font-size: 0.64rem;
  }

  .three-page-site .launch-copy h2 {
    font-size: clamp(2.8rem, min(4.8vw, 8.4svh), 5rem);
  }

  .three-page-site .compact-unlock {
    min-height: 250px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-snap-type: none;
  }

  .three-page-site .page-chapter {
    height: auto;
    max-height: none;
    overflow: visible;
    scroll-snap-align: none;
  }
}

/* Final consistency polish */
@media (min-width: 761px) {
  .three-page-site .slide-title {
    margin: 0;
    color: var(--canvas);
    font-family: var(--sans);
    font-size: clamp(4.3rem, min(7vw, 12svh), 7.6rem);
    font-weight: 900;
    line-height: 0.86;
    letter-spacing: -0.085em;
  }

  .three-page-site .hero .slide-title,
  .three-page-site .launch-page .slide-title {
    color: var(--ink);
  }

  .three-page-site .slide-subtitle {
    margin: 0.75rem 0 0;
    color: rgba(240, 233, 215, 0.66);
    font-size: clamp(1.45rem, min(2.1vw, 4.1svh), 2.15rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.045em;
    word-spacing: 0.08em;
  }

  .three-page-site .slide-subtitle em {
    color: var(--red);
    font-style: normal;
  }

  .three-page-site .hero .slide-subtitle,
  .three-page-site .launch-page .slide-subtitle {
    color: var(--ink);
    font-size: clamp(2.4rem, min(4.3vw, 7.4svh), 4.8rem);
  }

  .three-page-site .compact-heading h2 {
    color: var(--canvas);
  }

  .three-page-site .compact-heading {
    align-items: start;
  }

  .three-page-site .compact-manifesto {
    align-self: end;
  }

  .three-page-site .hero h1,
  .three-page-site .launch-copy h2 {
    font-size: clamp(4.3rem, min(7vw, 12svh), 7.6rem);
  }

  .three-page-site .hero-lede {
    margin-top: 1.4rem;
  }
}

/* Viewport-fitted slide behavior */
@media (min-width: 761px) {
  html {
    scroll-snap-type: y mandatory;
  }

  .three-page-site .page-chapter {
    height: 100svh;
    min-height: 620px;
    max-height: 100svh;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .three-page-site .hero,
  .three-page-site .compact-how,
  .three-page-site .launch-page {
    padding:
      clamp(92px, 11svh, 116px)
      clamp(20px, 3.8vw, 72px)
      clamp(28px, 4.8svh, 52px);
  }

  .three-page-site .hero {
    min-height: 620px;
    height: 100svh;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    gap: clamp(2rem, 5vw, 6.5rem);
  }

  .three-page-site .hero h1 {
    font-size: clamp(4rem, min(6vw, 12svh), 7rem);
    line-height: 0.88;
  }

  .three-page-site .hero-stage {
    height: min(68svh, 610px);
  }

  .three-page-site .phone {
    width: min(22vw, 305px);
    min-width: 260px;
  }

  .three-page-site .active-card-image {
    height: min(27svh, 210px);
  }

  .three-page-site .compact-how {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    align-content: stretch;
    row-gap: clamp(12px, 2.2svh, 22px);
  }

  .three-page-site .compact-how .chapter-label,
  .three-page-site .launch-page .chapter-label {
    top: clamp(88px, 10svh, 108px);
  }

  .three-page-site .compact-heading {
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
    gap: clamp(2rem, 6vw, 7rem);
    margin-bottom: 0;
  }

  .three-page-site .compact-heading h2 {
    font-size: clamp(3rem, min(5.2vw, 9svh), 5.7rem);
    line-height: 0.9;
  }

  .three-page-site .compact-manifesto p {
    padding: clamp(0.32rem, 0.9svh, 0.55rem) 0;
    font-size: clamp(1rem, min(1.65vw, 2.8svh), 1.55rem);
  }

  .three-page-site .compact-steps {
    min-height: 0;
    height: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .three-page-site .compact-step {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    min-height: 0;
    height: 100%;
    padding: clamp(0.55rem, 1.1svh, 0.75rem);
  }

  .three-page-site .compact-step-visual {
    min-height: 0;
    height: 100%;
  }

  .three-page-site .compact-step-copy {
    min-height: 0;
    padding-top: 0.35rem;
  }

  .three-page-site .compact-step-copy h3 {
    margin: auto 0 0.55rem;
    font-size: clamp(1.1rem, min(1.55vw, 3.1svh), 1.55rem);
  }

  .three-page-site .compact-step-copy p {
    font-size: clamp(0.64rem, min(0.78vw, 1.7svh), 0.76rem);
    line-height: 1.34;
  }

  .three-page-site .true-self strong {
    font-size: clamp(1.15rem, min(1.8vw, 3.7svh), 1.7rem);
  }

  .three-page-site .trust-ribbon {
    margin-top: 0;
    font-size: clamp(0.66rem, min(0.9vw, 1.6svh), 0.82rem);
  }

  .three-page-site .chapter-next {
    bottom: clamp(16px, 2.6svh, 26px);
  }

  .three-page-site .launch-page {
    grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.08fr);
    align-content: center;
  }

  .three-page-site .launch-copy h2 {
    font-size: clamp(3.1rem, min(5.4vw, 9svh), 6rem);
    line-height: 0.9;
  }

  .three-page-site .launch-copy > p {
    font-size: clamp(0.9rem, min(1.05vw, 2svh), 1rem);
  }

  .three-page-site .compact-unlock {
    min-height: min(34svh, 300px);
  }

  .three-page-site .compact-unlock .counter {
    font-size: clamp(4rem, min(6.2vw, 10svh), 6.6rem);
  }

  .three-page-site .launch-form {
    padding: clamp(1rem, 2.1svh, 1.4rem);
  }

  .three-page-site .launch-form h3 {
    font-size: clamp(2rem, min(3vw, 5svh), 3.25rem);
  }

  .three-page-site .chapter-footer {
    bottom: clamp(14px, 2.2svh, 24px);
  }
}

@media (min-width: 761px) and (max-height: 760px) {
  .three-page-site .site-header {
    height: 64px;
  }

  .three-page-site .wordmark,
  .three-page-site .footer-wordmark {
    font-size: 30px;
  }

  .three-page-site .mini-cta {
    min-height: 40px;
  }

  .three-page-site .hero,
  .three-page-site .compact-how,
  .three-page-site .launch-page {
    padding-top: 76px;
    padding-bottom: 24px;
  }

  .three-page-site .hero .eyebrow,
  .three-page-site .microcopy,
  .three-page-site .trust-ribbon,
  .three-page-site .chapter-next {
    display: none;
  }

  .three-page-site .hero h1 {
    font-size: clamp(3.4rem, min(5.4vw, 11svh), 5.8rem);
  }

  .three-page-site .button,
  .three-page-site .waitlist-form button {
    min-height: 52px;
  }

  .three-page-site .hero-stage {
    height: min(70svh, 520px);
  }

  .three-page-site .phone {
    width: min(20vw, 260px);
    min-width: 230px;
  }

  .three-page-site .active-card-image {
    height: min(24svh, 170px);
  }

  .three-page-site .compact-heading h2 {
    font-size: clamp(2.7rem, min(4.7vw, 8.6svh), 4.8rem);
  }

  .three-page-site .compact-heading {
    gap: 3rem;
  }

  .three-page-site .compact-step-copy h3 {
    font-size: clamp(1rem, min(1.35vw, 2.8svh), 1.35rem);
  }

  .three-page-site .compact-step-copy p {
    font-size: 0.64rem;
  }

  .three-page-site .launch-copy h2 {
    font-size: clamp(2.8rem, min(4.8vw, 8.4svh), 5rem);
  }

  .three-page-site .compact-unlock {
    min-height: 250px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-snap-type: none;
  }

  .three-page-site .page-chapter {
    height: auto;
    max-height: none;
    overflow: visible;
    scroll-snap-align: none;
  }
}

/* Professional hierarchy cleanup */
.three-page-site .hero {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  padding: 112px clamp(20px, 3.8vw, 72px) 58px;
}

.three-page-site .hero .chapter-label,
.three-page-site .hero .chapter-next,
.three-page-site .hero .scribble,
.three-page-site .hero .float-note {
  display: none;
}

.three-page-site .hero-copy {
  max-width: 760px;
}

.three-page-site .hero .eyebrow {
  width: fit-content;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
  padding: 0.45rem 0.72rem;
  border: 1px solid rgba(57, 62, 65, 0.14);
  border-radius: 999px;
  color: var(--ink-secondary);
  background: rgba(240, 233, 215, 0.62);
  font-size: 14px;
}

.three-page-site .hero h1 {
  max-width: 820px;
  margin: 0 0 1.45rem;
  font-size: clamp(4.1rem, 6.35vw, 7.25rem);
  line-height: 0.88;
  letter-spacing: -0.085em;
}

.three-page-site .hero-lede {
  max-width: 560px;
  color: rgba(57, 62, 65, 0.92);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
}

.three-page-site .hero-actions {
  gap: 1.35rem;
  margin-top: 2.1rem;
}

.three-page-site .hero-stage {
  min-height: 0;
  height: clamp(560px, 68vh, 680px);
}

.three-page-site .phone {
  width: clamp(270px, 24vw, 330px);
  transform: translate(-50%, -50%) rotate(3deg);
}

.three-page-site .active-card-image {
  height: 220px;
}

.three-page-site .active-card-copy {
  padding: 0.62rem 0.45rem 0.18rem;
}

.three-page-site .active-card-copy p {
  margin-bottom: 0.55rem;
}

.three-page-site .microcopy {
  margin-top: 1.15rem;
  color: var(--ink-secondary);
  font-size: 14px;
}

@media (min-width: 1500px) {
  .three-page-site .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
  }

  .three-page-site .hero-stage {
    height: 650px;
  }
}

@media (max-width: 980px) {
  .three-page-site .hero {
    grid-template-columns: 1fr;
    align-content: start;
    min-height: auto;
  }

  .three-page-site .hero-stage {
    height: 640px;
    margin-top: 1.8rem;
  }
}

@media (max-width: 760px) {
  .three-page-site .hero {
    min-height: auto;
    padding: 96px 20px 40px;
  }

  .three-page-site .hero .eyebrow {
    margin-bottom: 1rem;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 14px;
  }

  .three-page-site .hero h1 {
    font-size: clamp(3.7rem, 14.5vw, 5.25rem);
    line-height: 0.9;
  }

  .three-page-site .hero-stage {
    height: 610px;
    margin-top: 1.5rem;
  }

  .three-page-site .phone {
    width: min(315px, 78vw);
  }

  .three-page-site .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* App design token alignment */
.three-page-site {
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--canvas) 0 54%, var(--canvas-warm) 100%);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
}

.three-page-site .noise {
  opacity: 0.05;
  mix-blend-mode: multiply;
}

.three-page-site .site-header {
  height: 76px;
  padding: 0 20px;
  background: rgba(240, 233, 215, 0.92);
  border-bottom: 1px solid rgba(57, 62, 65, 0.12);
  backdrop-filter: blur(12px);
}

.three-page-site .wordmark,
.three-page-site .footer-wordmark,
.three-page-site .app-wordmark {
  color: #111;
  font-family: var(--sans);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.three-page-site .wordmark span,
.three-page-site .footer-wordmark span,
.three-page-site .app-wordmark span {
  color: #111;
}

.three-page-site .app-wordmark {
  font-size: 26px;
}

.three-page-site .desktop-nav,
.three-page-site .eyebrow,
.three-page-site .kicker,
.three-page-site .microcopy,
.three-page-site .chapter-label,
.three-page-site .chapter-next,
.three-page-site .freshness,
.three-page-site .map-label,
.three-page-site .card-status,
.three-page-site .float-note,
.three-page-site .active-card-copy > div span,
.three-page-site .compact-step-copy b,
.three-page-site .true-self small,
.three-page-site .trust-ribbon,
.three-page-site .unlock-top,
.three-page-site .counter small,
.three-page-site .form-note,
.three-page-site .chapter-footer p,
.three-page-site .chapter-footer div {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
}

.three-page-site .desktop-nav {
  gap: 1.7rem;
  margin-left: 4rem;
  font-size: 13px;
}

.three-page-site .chapter-nav span,
.three-page-site .live-dot,
.three-page-site .note-two span,
.three-page-site .trust-ribbon i {
  color: var(--red);
}

.three-page-site .mini-cta,
.three-page-site .button,
.three-page-site .waitlist-form button,
.three-page-site .active-card-copy button,
.three-page-site .true-self button {
  min-height: 54px;
  border-radius: var(--button-radius);
  box-shadow: var(--pop-shadow);
  font-size: 17px;
  font-weight: 700;
}

.three-page-site .button,
.three-page-site .waitlist-form button {
  min-height: 60px;
}

.three-page-site .button-dark,
.three-page-site .button-copper {
  color: var(--ink);
  background: var(--red);
}

.three-page-site .mini-cta {
  min-height: 44px;
  padding: 0.6rem 0.95rem;
  border: 1px solid var(--ink);
  background: var(--canvas);
  box-shadow: none;
  font-size: 13px;
}

.three-page-site .button:hover,
.three-page-site .signal-button:hover {
  transform: translate(1px, 1px);
}

.three-page-site .hero {
  min-height: 100svh;
  padding: 112px 20px 64px;
  background:
    radial-gradient(circle at 95% 12%, rgba(255, 107, 97, 0.22), transparent 22%),
    linear-gradient(180deg, var(--canvas) 0 52%, var(--canvas-warm) 100%);
}

.three-page-site .hero::after {
  display: none;
}

.three-page-site .hero-copy {
  max-width: 650px;
}

.three-page-site .hero h1,
.three-page-site .compact-heading h2,
.three-page-site .launch-copy h2,
.three-page-site .launch-form h3 {
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: -0.075em;
}

.three-page-site .hero h1 {
  margin-top: 1.2rem;
  font-size: clamp(4.3rem, 8vw, 8.9rem);
  line-height: 0.82;
}

.three-page-site .hero h1 em,
.three-page-site .compact-heading h2 em,
.three-page-site .launch-copy h2 em,
.three-page-site .launch-form h3 em {
  color: var(--red);
  font-family: inherit;
  font-style: normal;
  font-weight: 800;
}

.three-page-site .hero-lede,
.three-page-site .launch-copy > p,
.three-page-site .compact-step-copy p {
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: -0.025em;
}

.three-page-site .microcopy,
.three-page-site .chapter-label {
  color: var(--ink-secondary);
  font-size: 13px;
}

.three-page-site .hero-stage {
  height: min(690px, 74vh);
}

.three-page-site .phone {
  width: min(365px, 34vw);
  border: 2px solid #111;
  border-radius: 38px;
  background: var(--night);
  box-shadow: 3px 4px 0 #111;
}

.three-page-site .phone-screen {
  border-radius: 30px;
  background:
    radial-gradient(circle at 85% 4%, rgba(255, 107, 97, 0.16), transparent 20%),
    var(--night);
}

.three-page-site .phone-island {
  top: 17px;
  height: 20px;
  background: #111;
}

.three-page-site .phone-screen .map-grid {
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(240, 233, 215, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 233, 215, 0.12) 1px, transparent 1px);
}

.three-page-site .map-street,
.three-page-site .converge-road {
  border: 0;
  background: rgba(240, 233, 215, 0.14);
}

.three-page-site .map-label {
  color: rgba(240, 233, 215, 0.38);
}

.three-page-site .freshness,
.three-page-site .dual-snap > span {
  color: var(--ink);
  background: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.three-page-site .active-card,
.three-page-site .float-note,
.three-page-site .compact-step,
.three-page-site .compact-step-visual,
.three-page-site .launch-panel,
.three-page-site .waitlist-form,
.three-page-site .districts span,
.three-page-site .photo-frame,
.three-page-site .prompt-card,
.three-page-site .meet-point,
.three-page-site .venue {
  border: 1px solid var(--ink);
  border-radius: var(--card-radius);
  box-shadow: var(--pop-shadow);
}

.three-page-site .active-card {
  background: var(--night-card);
  color: var(--canvas);
}

.three-page-site .active-card-image {
  border-radius: 22px;
}

.three-page-site .active-card-copy strong,
.three-page-site .active-card-copy button,
.three-page-site .compact-step-copy h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.three-page-site .active-card-copy p,
.three-page-site .true-self strong,
.three-page-site .scribble {
  font-family: var(--serif);
  font-weight: 500;
}

.three-page-site .active-card-copy p {
  color: rgba(240, 233, 215, 0.88);
  font-size: 16px;
}

.three-page-site .active-card-copy > div span {
  color: rgba(240, 233, 215, 0.62);
  font-size: 13px;
}

.three-page-site .active-card-copy button {
  min-height: 54px;
  color: var(--ink);
  background: var(--red);
}

.three-page-site .person-pin {
  width: 45px;
  height: 45px;
  border: 3px solid var(--ember);
  background: var(--red);
  box-shadow: 3px 4px 0 rgba(17, 17, 17, 0.82);
}

.three-page-site .pulse {
  border-color: var(--ember);
}

.three-page-site .card-status {
  color: var(--ink);
  background: var(--canvas);
  font-size: 13px;
}

.three-page-site .peek-photo {
  border-radius: 18px;
  box-shadow: var(--pop-shadow);
}

.three-page-site .float-note {
  color: var(--ink);
  background: var(--blue);
}

.three-page-site .note-two {
  background: var(--canvas);
}

.three-page-site .compact-how {
  color: var(--canvas);
  background:
    radial-gradient(circle at 8% 92%, rgba(255, 107, 97, 0.16), transparent 28%),
    var(--night);
}

.three-page-site .compact-how .chapter-label,
.three-page-site .kicker-light,
.three-page-site .compact-step-copy b {
  color: var(--blue);
}

.three-page-site .compact-manifesto p {
  color: var(--canvas);
  border-bottom-color: rgba(240, 233, 215, 0.12);
  font-family: var(--sans);
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.065em;
}

.three-page-site .compact-manifesto span {
  color: rgba(240, 233, 215, 0.35);
}

.three-page-site .compact-step {
  background: var(--night-card);
}

.three-page-site .compact-step-visual {
  border-radius: 22px;
  background: var(--canvas);
  box-shadow: none;
}

.three-page-site .compact-step-copy p {
  color: rgba(240, 233, 215, 0.68);
}

.three-page-site .true-self {
  color: var(--ink);
  background: var(--canvas);
}

.three-page-site .true-self small,
.three-page-site .true-self > span {
  color: var(--ink-secondary);
  font-size: 13px;
  font-weight: 600;
}

.three-page-site .true-self strong {
  font-size: 27px;
  line-height: 1.05;
}

.three-page-site .true-self button,
.three-page-site .route-snap .venue {
  background: var(--ember);
}

.three-page-site .route-snap {
  background-color: var(--blue);
}

.three-page-site .route-snap .route-line {
  border-color: var(--red);
}

.three-page-site .route-person {
  color: var(--ink);
  background: var(--canvas);
  box-shadow: var(--pop-shadow);
}

.three-page-site .venue,
.three-page-site .route-snap .venue {
  color: var(--ink);
  border-radius: 18px;
}

.three-page-site .venue strong {
  font-family: var(--serif);
}

.three-page-site .trust-ribbon {
  color: rgba(240, 233, 215, 0.62);
  font-size: 13px;
}

.three-page-site .launch-page {
  background:
    radial-gradient(circle at 95% 12%, rgba(255, 107, 97, 0.18), transparent 24%),
    linear-gradient(180deg, var(--canvas) 0 55%, var(--canvas-warm) 100%);
}

.three-page-site .launch-panel {
  background: var(--canvas);
  box-shadow: var(--pop-shadow);
}

.three-page-site .unlock {
  background: var(--night);
}

.three-page-site .counter {
  color: var(--blue);
  font-family: var(--sans);
  font-weight: 800;
}

.three-page-site .progress {
  border-color: rgba(240, 233, 215, 0.35);
}

.three-page-site .progress span {
  background: var(--red);
}

.three-page-site .launch-form {
  background: var(--canvas);
}

.three-page-site .waitlist-form {
  min-height: 60px;
  border-width: 2px;
  background: var(--canvas);
  box-shadow: none;
}

.three-page-site .waitlist-form input {
  color: var(--ink);
  font-size: 19px;
  font-weight: 600;
}

.three-page-site .waitlist-form button {
  color: var(--ink);
  background: var(--red);
  box-shadow: none;
}

.three-page-site .chapter-footer {
  border-top-color: rgba(57, 62, 65, 0.14);
}

@media (max-width: 760px) {
  .three-page-site .site-header {
    height: 68px;
    padding: 0 20px;
  }

  .three-page-site .wordmark,
  .three-page-site .footer-wordmark {
    font-size: 34px;
  }

  .three-page-site .hero {
    min-height: 1320px;
    padding: 100px 20px 64px;
  }

  .three-page-site .hero h1 {
    font-size: clamp(4rem, 17vw, 6.2rem);
  }

  .three-page-site .phone {
    width: min(340px, 82vw);
  }

  .three-page-site .compact-how,
  .three-page-site .launch-page {
    padding-left: 20px;
    padding-right: 20px;
  }

  .three-page-site .compact-step-copy h3 {
    font-size: 22px;
  }
}

.three-page-site .hero-actions .button-dark,
.three-page-site .hero-actions .button-copper,
.three-page-site .launch-form .waitlist-form button,
.three-page-site .active-card-copy button {
  color: var(--ink);
  background: var(--red);
}
/* Final viewport-fit overrides: keep desktop/tablet chapters inside one view. */
@media (min-width: 761px) {
  html {
    scroll-snap-type: y mandatory;
  }

  .three-page-site .page-chapter {
    height: 100svh;
    min-height: 620px;
    max-height: 100svh;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .three-page-site .hero,
  .three-page-site .compact-how,
  .three-page-site .launch-page {
    padding:
      clamp(92px, 11svh, 116px)
      clamp(20px, 3.8vw, 72px)
      clamp(28px, 4.8svh, 52px);
  }

  .three-page-site .hero {
    min-height: 620px;
    height: 100svh;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    gap: clamp(2rem, 5vw, 6.5rem);
  }

  .three-page-site .hero h1 {
    font-size: clamp(4rem, min(6vw, 12svh), 7rem);
    line-height: 0.88;
  }

  .three-page-site .hero-stage {
    height: min(68svh, 610px);
  }

  .three-page-site .phone {
    width: min(22vw, 305px);
    min-width: 260px;
  }

  .three-page-site .active-card-image {
    height: min(27svh, 210px);
  }

  .three-page-site .compact-how {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    align-content: stretch;
    row-gap: clamp(12px, 2.2svh, 22px);
  }

  .three-page-site .compact-how .chapter-label,
  .three-page-site .launch-page .chapter-label {
    top: clamp(88px, 10svh, 108px);
  }

  .three-page-site .compact-heading {
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
    gap: clamp(2rem, 6vw, 7rem);
    margin-bottom: 0;
  }

  .three-page-site .compact-heading h2 {
    font-size: clamp(3rem, min(5.2vw, 9svh), 5.7rem);
    line-height: 0.9;
  }

  .three-page-site .compact-manifesto p {
    padding: clamp(0.32rem, 0.9svh, 0.55rem) 0;
    font-size: clamp(1rem, min(1.65vw, 2.8svh), 1.55rem);
  }

  .three-page-site .compact-steps {
    min-height: 0;
    height: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .three-page-site .compact-step {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    min-height: 0;
    height: 100%;
    padding: clamp(0.55rem, 1.1svh, 0.75rem);
  }

  .three-page-site .compact-step-visual {
    min-height: 0;
    height: 100%;
  }

  .three-page-site .compact-step-copy {
    min-height: 0;
    padding-top: 0.35rem;
  }

  .three-page-site .compact-step-copy h3 {
    margin: auto 0 0.55rem;
    font-size: clamp(1.1rem, min(1.55vw, 3.1svh), 1.55rem);
  }

  .three-page-site .compact-step-copy p {
    font-size: clamp(0.64rem, min(0.78vw, 1.7svh), 0.76rem);
    line-height: 1.34;
  }

  .three-page-site .true-self strong {
    font-size: clamp(1.15rem, min(1.8vw, 3.7svh), 1.7rem);
  }

  .three-page-site .trust-ribbon {
    margin-top: 0;
    font-size: clamp(0.66rem, min(0.9vw, 1.6svh), 0.82rem);
  }

  .three-page-site .chapter-next {
    bottom: clamp(16px, 2.6svh, 26px);
  }

  .three-page-site .launch-page {
    grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.08fr);
    align-content: center;
  }

  .three-page-site .launch-copy h2 {
    font-size: clamp(3.1rem, min(5.4vw, 9svh), 6rem);
    line-height: 0.9;
  }

  .three-page-site .launch-copy > p {
    font-size: clamp(0.9rem, min(1.05vw, 2svh), 1rem);
  }

  .three-page-site .compact-unlock {
    min-height: min(34svh, 300px);
  }

  .three-page-site .compact-unlock .counter {
    font-size: clamp(4rem, min(6.2vw, 10svh), 6.6rem);
  }

  .three-page-site .launch-form {
    padding: clamp(1rem, 2.1svh, 1.4rem);
  }

  .three-page-site .launch-form h3 {
    font-size: clamp(2rem, min(3vw, 5svh), 3.25rem);
  }

  .three-page-site .chapter-footer {
    bottom: clamp(14px, 2.2svh, 24px);
  }
}

@media (min-width: 761px) and (max-height: 760px) {
  .three-page-site .site-header {
    height: 64px;
  }

  .three-page-site .wordmark,
  .three-page-site .footer-wordmark {
    font-size: 30px;
  }

  .three-page-site .mini-cta {
    min-height: 40px;
  }

  .three-page-site .hero,
  .three-page-site .compact-how,
  .three-page-site .launch-page {
    padding-top: 76px;
    padding-bottom: 24px;
  }

  .three-page-site .hero .eyebrow,
  .three-page-site .microcopy,
  .three-page-site .trust-ribbon,
  .three-page-site .chapter-next {
    display: none;
  }

  .three-page-site .hero h1 {
    font-size: clamp(3.4rem, min(5.4vw, 11svh), 5.8rem);
  }

  .three-page-site .button,
  .three-page-site .waitlist-form button {
    min-height: 52px;
  }

  .three-page-site .hero-stage {
    height: min(70svh, 520px);
  }

  .three-page-site .phone {
    width: min(20vw, 260px);
    min-width: 230px;
  }

  .three-page-site .active-card-image {
    height: min(24svh, 170px);
  }

  .three-page-site .compact-heading h2 {
    font-size: clamp(2.7rem, min(4.7vw, 8.6svh), 4.8rem);
  }

  .three-page-site .compact-heading {
    gap: 3rem;
  }

  .three-page-site .compact-step-copy h3 {
    font-size: clamp(1rem, min(1.35vw, 2.8svh), 1.35rem);
  }

  .three-page-site .compact-step-copy p {
    font-size: 0.64rem;
  }

  .three-page-site .launch-copy h2 {
    font-size: clamp(2.8rem, min(4.8vw, 8.4svh), 5rem);
  }

  .three-page-site .compact-unlock {
    min-height: 250px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-snap-type: none;
  }

  .three-page-site .page-chapter {
    height: auto;
    max-height: none;
    overflow: visible;
    scroll-snap-align: none;
  }
}
/* eof-final-polish */
@media (min-width: 761px) {
  .three-page-site .compact-heading h2 {
    color: var(--canvas);
  }

  .three-page-site .chapter-nav {
    gap: 2.1rem;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  .three-page-site .chapter-nav a {
    align-items: baseline;
    gap: 0.42rem;
    line-height: 1;
  }

  .three-page-site .chapter-nav span {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
  }

  .three-page-site .launch-page {
    align-items: start;
    padding-bottom: clamp(74px, 12svh, 96px);
  }

  .three-page-site .launch-panel {
    align-self: start;
    max-height: calc(100svh - 76px - 84px);
  }

  .three-page-site .compact-unlock {
    min-height: clamp(180px, 28svh, 250px);
  }

  .three-page-site .launch-form h3 {
    margin-bottom: 0.85rem;
  }

  .three-page-site .chapter-footer {
    bottom: clamp(18px, 3svh, 28px);
  }
}

/* final-short-viewport-authority */
@media (min-width: 761px) {
  .three-page-site .page-chapter,
  .three-page-site .hero {
    height: 100svh;
    min-height: 0;
    max-height: 100svh;
  }

  .three-page-site .launch-panel {
    max-height: calc(100svh - 160px);
  }

  .three-page-site .compact-unlock {
    min-height: clamp(180px, 28svh, 250px);
  }
}

/* Simple canonical breakpoints: standard laptop + phone */
html {
  scroll-snap-type: y mandatory;
}

.three-page-site {
  --header-h: 72px;
}

.three-page-site .site-header {
  height: var(--header-h);
}

.three-page-site .page-chapter {
  min-height: 720px;
  height: 100vh;
  max-height: none;
  overflow: hidden;
  scroll-snap-align: start;
}

.three-page-site .hero,
.three-page-site .compact-how,
.three-page-site .launch-page {
  padding: 108px 56px 56px;
}

.three-page-site .slide-title,
.three-page-site .hero h1,
.three-page-site .compact-heading h2,
.three-page-site .launch-copy h2 {
  font-size: 76px;
  line-height: 0.92;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.three-page-site .slide-subtitle {
  margin-top: 12px;
  font-size: 34px;
  line-height: 1.04;
  letter-spacing: -0.035em;
  word-spacing: 0;
}

.three-page-site .hero .slide-subtitle,
.three-page-site .launch-page .slide-subtitle {
  font-size: 52px;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.three-page-site .hero {
  grid-template-columns: minmax(0, 0.95fr) 410px;
  gap: 72px;
}

.three-page-site .hero-stage {
  height: 610px;
}

.three-page-site .phone {
  width: 300px;
  min-width: 0;
}

.three-page-site .active-card-image {
  height: 205px;
}

.three-page-site .compact-how {
  display: grid;
  grid-template-rows: 190px 1fr;
  row-gap: 26px;
}

.three-page-site .compact-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: 72px;
  align-items: start;
  margin: 0;
}

.three-page-site .compact-manifesto {
  align-self: end;
}

.three-page-site .compact-manifesto p {
  padding: 8px 0;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.three-page-site .compact-steps {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.three-page-site .compact-step {
  min-height: 0;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 12px;
  padding: 12px;
  box-shadow: none;
}

.three-page-site .compact-step-visual {
  min-height: 0;
  height: 100%;
}

.three-page-site .compact-step-copy {
  min-height: 0;
  padding-top: 6px;
}

.three-page-site .compact-step-copy h3 {
  margin: auto 0 8px;
  font-size: 23px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.three-page-site .compact-step-copy p {
  font-size: 12px;
  line-height: 1.35;
}

.three-page-site .true-self strong {
  font-size: 25px;
  line-height: 1.08;
}

.three-page-site .trust-ribbon,
.three-page-site .chapter-next {
  display: none;
}

.three-page-site .launch-page {
  grid-template-columns: 0.78fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.three-page-site .launch-copy > p {
  max-width: 440px;
  font-size: 17px;
  line-height: 1.42;
}

.three-page-site .districts {
  margin-top: 30px;
}

.three-page-site .launch-panel {
  align-self: start;
  max-height: none;
}

.three-page-site .compact-unlock {
  min-height: 260px;
}

.three-page-site .compact-unlock .counter {
  font-size: 86px;
  line-height: 0.85;
}

.three-page-site .launch-form {
  padding: 24px;
}

.three-page-site .launch-form h3 {
  margin: 8px 0 18px;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.045em;
}

.three-page-site .chapter-footer {
  left: 56px;
  right: 56px;
  bottom: 24px;
}

.three-page-site .reveal {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

@media (max-width: 900px) {
  html {
    scroll-snap-type: none;
  }

  .three-page-site {
    --header-h: 68px;
  }

  .three-page-site .page-chapter {
    height: auto;
    min-height: auto;
    max-height: none;
    overflow: visible;
    scroll-snap-align: none;
  }

  .three-page-site .hero,
  .three-page-site .compact-how,
  .three-page-site .launch-page {
    display: block;
    padding: 96px 20px 48px;
  }

  .three-page-site .slide-title,
  .three-page-site .hero h1,
  .three-page-site .compact-heading h2,
  .three-page-site .launch-copy h2 {
    font-size: 58px;
    line-height: 0.92;
    letter-spacing: -0.055em;
  }

  .three-page-site .slide-subtitle,
  .three-page-site .hero .slide-subtitle,
  .three-page-site .launch-page .slide-subtitle {
    font-size: 34px;
    line-height: 1.03;
    letter-spacing: -0.04em;
  }

  .three-page-site .hero-stage {
    height: 620px;
    margin-top: 28px;
  }

  .three-page-site .phone {
    width: min(315px, 78vw);
  }

  .three-page-site .compact-heading {
    display: block;
  }

  .three-page-site .compact-manifesto {
    margin-top: 24px;
  }

  .three-page-site .compact-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .three-page-site .compact-step {
    min-height: 280px;
  }

  .three-page-site .compact-step-copy h3 {
    font-size: 24px;
  }

  .three-page-site .launch-panel {
    margin-top: 34px;
  }

  .three-page-site .compact-unlock {
    min-height: 240px;
  }

  .three-page-site .compact-unlock .counter {
    font-size: 72px;
  }

  .three-page-site .launch-form h3 {
    font-size: 32px;
  }

  .three-page-site .chapter-footer {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 44px;
  }
}

/* Industry-standard responsive layer: fluid type, fluid grids, bounded containers. */
html {
  scroll-snap-type: none !important;
  scroll-padding-top: var(--header-h);
}

.three-page-site {
  --header-h: clamp(64px, 5.2vw, 88px);
  --page-max: 1760px;
  --page-gutter: clamp(24px, 4vw, 72px);
  --section-pad-top: clamp(48px, 7svh, 96px);
  --section-pad-bottom: clamp(44px, 7svh, 88px);
  --h1-fluid: clamp(3.35rem, 5.2vw, 6.4rem);
  --h2-fluid: clamp(2rem, 3vw, 4rem);
  --sub-fluid: clamp(1.25rem, 1.75vw, 2.45rem);
  --body-fluid: clamp(0.98rem, 0.95vw, 1.15rem);
  --caption-fluid: clamp(0.75rem, 0.72vw, 0.92rem);
}

.three-page-site .site-header {
  height: var(--header-h);
  padding-inline: var(--page-gutter);
}

.three-page-site .wordmark,
.three-page-site .footer-wordmark {
  font-size: clamp(2rem, 2vw, 2.7rem);
}

.three-page-site .chapter-nav {
  gap: clamp(1.2rem, 2.3vw, 3rem);
}

.three-page-site .chapter-nav a,
.three-page-site .chapter-nav span {
  font-size: clamp(0.86rem, 0.78vw, 1.04rem) !important;
  line-height: 1;
}

.three-page-site .mini-cta {
  padding: clamp(0.66rem, 0.8vw, 0.9rem) clamp(0.9rem, 1.6vw, 1.45rem);
  font-size: clamp(0.76rem, 0.76vw, 0.95rem);
}

.three-page-site main {
  background: linear-gradient(140deg, var(--canvas) 0%, #f8f1df 45%, var(--canvas-warm) 100%);
}

.three-page-site .page-chapter {
  width: min(100%, var(--page-max));
  height: auto !important;
  min-height: 100svh !important;
  max-height: none !important;
  margin-inline: auto;
  overflow: visible !important;
  scroll-snap-align: none !important;
}

.three-page-site .hero,
.three-page-site .compact-how,
.three-page-site .launch-page {
  padding: calc(var(--header-h) + var(--section-pad-top)) var(--page-gutter) var(--section-pad-bottom) !important;
}

.three-page-site .slide-title,
.three-page-site .hero h1,
.three-page-site .compact-heading h2,
.three-page-site .launch-copy h2 {
  font-size: var(--h1-fluid) !important;
  line-height: 0.92 !important;
  letter-spacing: -0.055em !important;
  font-weight: 900;
}

.three-page-site .slide-subtitle,
.three-page-site .hero .slide-subtitle,
.three-page-site .launch-page .slide-subtitle {
  max-width: 13.5ch;
  margin-top: clamp(8px, 1.1vw, 16px);
  font-size: var(--h2-fluid) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.04em !important;
}

.three-page-site .compact-heading .slide-subtitle {
  max-width: 28ch;
  font-size: var(--sub-fluid) !important;
}

.three-page-site .hero-lede,
.three-page-site .launch-copy > p {
  max-width: 34rem;
  font-size: var(--body-fluid) !important;
  line-height: 1.45;
}

.three-page-site .kicker,
.three-page-site .eyebrow,
.three-page-site .compact-step-copy b {
  font-size: var(--caption-fluid);
}

.three-page-site .hero {
  display: grid !important;
  grid-template-columns: minmax(420px, 0.95fr) minmax(280px, 0.72fr);
  gap: clamp(40px, 5vw, 96px);
  align-items: center;
}

.three-page-site .hero::after {
  display: none !important;
}

.three-page-site .hero-copy {
  max-width: 660px;
}

.three-page-site .hero-stage {
  height: min(62svh, 640px) !important;
  min-height: 400px;
}

.three-page-site .hero-stage .phone {
  left: 50%;
  width: clamp(235px, 17vw, 330px) !important;
  transform: translate(-50%, -50%) rotate(4deg);
}

.three-page-site .hero-actions {
  gap: clamp(24px, 2.5vw, 48px);
  flex-wrap: wrap;
}

.three-page-site .button,
.three-page-site .waitlist-form button {
  min-height: clamp(52px, 4vw, 64px);
  padding-inline: clamp(18px, 1.7vw, 28px);
  border-radius: var(--button-radius);
  font-size: clamp(0.95rem, 0.92vw, 1.14rem);
  box-shadow: var(--pop-shadow);
}

.three-page-site .compact-how {
  display: grid !important;
  grid-template-rows: auto minmax(290px, 1fr);
  row-gap: clamp(24px, 3.8svh, 48px);
  background: var(--night);
}

.three-page-site .compact-heading {
  display: grid !important;
  grid-template-columns: minmax(360px, 0.9fr) minmax(340px, 0.7fr);
  gap: clamp(36px, 5vw, 88px);
  align-items: end;
}

.three-page-site .compact-manifesto {
  align-self: end;
  opacity: 0.78;
}

.three-page-site .compact-manifesto p {
  padding-block: clamp(5px, 0.55vw, 9px);
  font-size: clamp(1rem, 1.15vw, 1.35rem);
  line-height: 1.1;
}

.three-page-site .compact-steps {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.5vw, 28px);
  height: auto !important;
  min-height: clamp(300px, 34svh, 420px);
}

.three-page-site .compact-step {
  display: grid !important;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(14px, 1.4vw, 24px);
  min-height: 0 !important;
  height: 100%;
  padding: clamp(14px, 1.35vw, 22px);
}

.three-page-site .compact-step-visual {
  min-height: 0 !important;
  height: 100%;
}

.three-page-site .compact-step-copy {
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6px 2px 8px 0;
}

.three-page-site .compact-step-copy b {
  margin-bottom: auto;
  color: var(--blue);
  letter-spacing: -0.01em;
}

.three-page-site .compact-step-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 1.4vw, 1.8rem);
  line-height: 0.98;
}

.three-page-site .compact-step-copy p {
  max-width: 16rem;
  font-size: clamp(0.82rem, 0.78vw, 0.98rem);
  line-height: 1.35;
}

.three-page-site .true-self strong {
  font-size: clamp(1.32rem, 1.5vw, 2rem);
}

.three-page-site .launch-page {
  display: grid !important;
  grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 0.98fr);
  gap: clamp(44px, 5vw, 96px);
  align-items: center;
}

.three-page-site .launch-copy {
  max-width: 660px;
}

.three-page-site .launch-copy .slide-subtitle {
  max-width: 16ch;
}

.three-page-site .districts {
  gap: clamp(9px, 1vw, 14px);
  margin-top: clamp(26px, 2.4vw, 38px);
}

.three-page-site .districts span {
  padding: clamp(9px, 0.78vw, 13px) clamp(13px, 1.1vw, 18px);
  font-size: clamp(0.72rem, 0.72vw, 0.9rem);
}

.three-page-site .launch-panel {
  width: 100%;
  max-width: min(720px, 100%);
  justify-self: end;
  align-self: center;
}

.three-page-site .compact-unlock {
  min-height: clamp(205px, 24svh, 300px) !important;
}

.three-page-site .compact-unlock .counter {
  font-size: clamp(4.2rem, 4.8vw, 7rem) !important;
}

.three-page-site .launch-form h3 {
  font-size: clamp(1.7rem, 2.2vw, 3rem);
}

.three-page-site .chapter-footer {
  left: var(--page-gutter);
  right: var(--page-gutter);
  bottom: clamp(18px, 2vw, 32px);
}

@media (max-width: 1180px) {
  .three-page-site {
    --page-gutter: clamp(22px, 3.4vw, 48px);
    --h1-fluid: clamp(3.1rem, 6.2vw, 5rem);
    --h2-fluid: clamp(1.8rem, 4vw, 3.2rem);
  }

  .three-page-site .hero {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.55fr);
  }

  .three-page-site .compact-heading {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .three-page-site .compact-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .three-page-site .compact-step {
    grid-template-columns: 1fr;
  }

  .three-page-site .compact-step-visual {
    max-height: 220px;
  }

  .three-page-site .launch-page {
    grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  }
}

@media (max-width: 820px) {
  .three-page-site {
    --header-h: 72px;
    --page-gutter: 22px;
    --section-pad-top: 34px;
    --section-pad-bottom: 56px;
    --h1-fluid: clamp(3.15rem, 14vw, 4.8rem);
    --h2-fluid: clamp(2rem, 9vw, 3rem);
  }

  .three-page-site .desktop-nav {
    display: none;
  }

  .three-page-site .mini-cta {
    font-size: 0.72rem;
  }

  .three-page-site .page-chapter {
    min-height: auto !important;
  }

  .three-page-site .hero,
  .three-page-site .compact-how,
  .three-page-site .launch-page {
    display: block !important;
    padding: calc(var(--header-h) + var(--section-pad-top)) var(--page-gutter) var(--section-pad-bottom) !important;
  }

  .three-page-site .slide-subtitle,
  .three-page-site .hero .slide-subtitle,
  .three-page-site .launch-page .slide-subtitle {
    max-width: 12ch;
  }

  .three-page-site .hero-stage {
    height: 560px !important;
    min-height: 0;
    margin-top: 44px;
  }

  .three-page-site .hero-stage .phone {
    width: min(300px, 78vw) !important;
  }

  .three-page-site .compact-heading,
  .three-page-site .compact-steps {
    display: block !important;
  }

  .three-page-site .compact-manifesto {
    margin-top: 28px;
  }

  .three-page-site .compact-steps {
    min-height: 0;
    margin-top: 32px;
  }

  .three-page-site .compact-step {
    display: grid !important;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    min-height: 300px !important;
    margin-bottom: 18px;
  }

  .three-page-site .launch-panel {
    margin-top: 38px;
    max-width: none;
  }

  .three-page-site .chapter-footer {
    position: static;
    margin-top: 44px;
  }
}

/* Definitive responsive scale. This must remain the final layer. */
html {
  scroll-snap-type: none !important;
  scroll-padding-top: var(--header-h);
}

.three-page-site {
  --header-h: clamp(64px, 5.2vw, 88px);
  --page-max: 1760px;
  --page-gutter: clamp(24px, 4vw, 72px);
  --section-pad-top: clamp(40px, 6svh, 88px);
  --section-pad-bottom: clamp(40px, 6svh, 84px);
  --h1-fluid: clamp(3.25rem, 5.1vw, 6.25rem);
  --h2-fluid: clamp(2rem, 3vw, 3.9rem);
  --sub-fluid: clamp(1.25rem, 1.7vw, 2.35rem);
  --body-fluid: clamp(0.98rem, 0.92vw, 1.14rem);
  --caption-fluid: clamp(0.75rem, 0.7vw, 0.9rem);
}

.three-page-site .site-header {
  height: var(--header-h);
  padding-inline: var(--page-gutter);
}

.three-page-site .wordmark,
.three-page-site .footer-wordmark {
  font-size: clamp(2rem, 2vw, 2.7rem);
}

.three-page-site .chapter-nav {
  gap: clamp(1.2rem, 2.3vw, 3rem);
}

.three-page-site .chapter-nav a,
.three-page-site .chapter-nav span {
  font-size: clamp(0.86rem, 0.78vw, 1.04rem) !important;
  line-height: 1;
}

.three-page-site .mini-cta {
  padding: clamp(0.66rem, 0.8vw, 0.9rem) clamp(0.9rem, 1.6vw, 1.45rem);
  font-size: clamp(0.76rem, 0.76vw, 0.95rem);
}

.three-page-site .page-chapter {
  width: min(100%, var(--page-max));
  height: auto !important;
  min-height: 100svh !important;
  max-height: none !important;
  margin-inline: auto;
  overflow: visible !important;
  scroll-snap-align: none !important;
}

.three-page-site .hero,
.three-page-site .compact-how,
.three-page-site .launch-page {
  padding: calc(var(--header-h) + var(--section-pad-top)) var(--page-gutter) var(--section-pad-bottom) !important;
}

.three-page-site .slide-title,
.three-page-site .hero h1,
.three-page-site .compact-heading h2,
.three-page-site .launch-copy h2 {
  font-size: var(--h1-fluid) !important;
  line-height: 0.92 !important;
  letter-spacing: -0.055em !important;
  font-weight: 900;
}

.three-page-site .slide-subtitle,
.three-page-site .hero .slide-subtitle,
.three-page-site .launch-page .slide-subtitle {
  max-width: 13.5ch;
  margin-top: clamp(8px, 1.1vw, 16px);
  font-size: var(--h2-fluid) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.04em !important;
}

.three-page-site .compact-heading .slide-subtitle {
  max-width: 28ch;
  font-size: var(--sub-fluid) !important;
}

.three-page-site .hero-lede,
.three-page-site .launch-copy > p {
  max-width: 34rem;
  font-size: var(--body-fluid) !important;
  line-height: 1.45;
}

.three-page-site .kicker,
.three-page-site .eyebrow,
.three-page-site .compact-step-copy b {
  font-size: var(--caption-fluid);
}

.three-page-site .hero {
  display: grid !important;
  grid-template-columns: minmax(420px, 0.95fr) minmax(280px, 0.72fr);
  gap: clamp(40px, 5vw, 96px);
  align-items: center;
}

.three-page-site .hero::after {
  display: none !important;
}

.three-page-site .hero-copy {
  max-width: 660px;
}

.three-page-site .hero-stage {
  height: min(62svh, 640px) !important;
  min-height: 400px;
}

.three-page-site .hero-stage .phone {
  left: 50%;
  width: clamp(235px, 17vw, 330px) !important;
  transform: translate(-50%, -50%) rotate(4deg);
}

.three-page-site .hero-actions {
  gap: clamp(24px, 2.5vw, 48px);
  flex-wrap: wrap;
}

.three-page-site .button,
.three-page-site .waitlist-form button {
  min-height: clamp(52px, 4vw, 64px);
  padding-inline: clamp(18px, 1.7vw, 28px);
  border-radius: var(--button-radius);
  font-size: clamp(0.95rem, 0.92vw, 1.14rem);
  box-shadow: var(--pop-shadow);
}

.three-page-site .compact-how {
  display: grid !important;
  grid-template-rows: auto minmax(290px, 1fr);
  row-gap: clamp(24px, 3.8svh, 48px);
  background: var(--night);
}

.three-page-site .compact-heading {
  display: grid !important;
  grid-template-columns: minmax(360px, 0.9fr) minmax(340px, 0.7fr);
  gap: clamp(36px, 5vw, 88px);
  align-items: end;
}

.three-page-site .compact-manifesto {
  align-self: end;
  opacity: 0.78;
}

.three-page-site .compact-manifesto p {
  padding-block: clamp(5px, 0.55vw, 9px);
  font-size: clamp(1rem, 1.15vw, 1.35rem);
  line-height: 1.1;
}

.three-page-site .compact-steps {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.5vw, 28px);
  height: auto !important;
  min-height: clamp(300px, 34svh, 420px);
}

.three-page-site .compact-step {
  display: grid !important;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(14px, 1.4vw, 24px);
  min-height: 0 !important;
  height: 100%;
  padding: clamp(14px, 1.35vw, 22px);
}

.three-page-site .compact-step-visual {
  min-height: 0 !important;
  height: 100%;
}

.three-page-site .compact-step-copy {
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6px 2px 8px 0;
}

.three-page-site .compact-step-copy b {
  margin-bottom: auto;
  color: var(--blue);
  letter-spacing: -0.01em;
}

.three-page-site .compact-step-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 1.4vw, 1.8rem);
  line-height: 0.98;
}

.three-page-site .compact-step-copy p {
  max-width: 16rem;
  font-size: clamp(0.82rem, 0.78vw, 0.98rem);
  line-height: 1.35;
}

.three-page-site .true-self strong {
  font-size: clamp(1.32rem, 1.5vw, 2rem);
}

.three-page-site .launch-page {
  display: grid !important;
  grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 0.98fr);
  gap: clamp(44px, 5vw, 96px);
  align-items: center;
}

.three-page-site .launch-copy {
  max-width: 660px;
}

.three-page-site .launch-copy .slide-subtitle {
  max-width: 16ch;
}

.three-page-site .districts {
  gap: clamp(9px, 1vw, 14px);
  margin-top: clamp(26px, 2.4vw, 38px);
}

.three-page-site .districts span {
  padding: clamp(9px, 0.78vw, 13px) clamp(13px, 1.1vw, 18px);
  font-size: clamp(0.72rem, 0.72vw, 0.9rem);
}

.three-page-site .launch-panel {
  width: 100%;
  max-width: min(720px, 100%);
  justify-self: end;
  align-self: center;
}

.three-page-site .compact-unlock {
  min-height: clamp(205px, 24svh, 300px) !important;
}

.three-page-site .compact-unlock .counter {
  font-size: clamp(4.2rem, 4.8vw, 7rem) !important;
}

.three-page-site .launch-form h3 {
  font-size: clamp(1.7rem, 2.2vw, 3rem);
}

.three-page-site .chapter-footer {
  left: var(--page-gutter);
  right: var(--page-gutter);
  bottom: clamp(18px, 2vw, 32px);
}

@media (max-width: 1180px) {
  .three-page-site {
    --page-gutter: clamp(22px, 3.4vw, 48px);
    --h1-fluid: clamp(3.1rem, 6.2vw, 5rem);
    --h2-fluid: clamp(1.8rem, 4vw, 3.2rem);
  }

  .three-page-site .hero {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.55fr);
  }

  .three-page-site .compact-heading {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .three-page-site .compact-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .three-page-site .compact-step {
    grid-template-columns: 1fr;
  }

  .three-page-site .compact-step-visual {
    max-height: 220px;
  }

  .three-page-site .launch-page {
    grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  }
}

@media (max-width: 820px) {
  .three-page-site {
    --header-h: 72px;
    --page-gutter: 22px;
    --section-pad-top: 34px;
    --section-pad-bottom: 56px;
    --h1-fluid: clamp(3.15rem, 14vw, 4.8rem);
    --h2-fluid: clamp(2rem, 9vw, 3rem);
  }

  .three-page-site .desktop-nav {
    display: none;
  }

  .three-page-site .mini-cta {
    font-size: 0.72rem;
  }

  .three-page-site .page-chapter {
    min-height: auto !important;
  }

  .three-page-site .hero,
  .three-page-site .compact-how,
  .three-page-site .launch-page {
    display: block !important;
    padding: calc(var(--header-h) + var(--section-pad-top)) var(--page-gutter) var(--section-pad-bottom) !important;
  }

  .three-page-site .slide-subtitle,
  .three-page-site .hero .slide-subtitle,
  .three-page-site .launch-page .slide-subtitle {
    max-width: 12ch;
  }

  .three-page-site .hero-stage {
    height: 560px !important;
    min-height: 0;
    margin-top: 44px;
  }

  .three-page-site .hero-stage .phone {
    width: min(300px, 78vw) !important;
  }

  .three-page-site .compact-heading,
  .three-page-site .compact-steps {
    display: block !important;
  }

  .three-page-site .compact-manifesto {
    margin-top: 28px;
  }

  .three-page-site .compact-steps {
    min-height: 0;
    margin-top: 32px;
  }

  .three-page-site .compact-step {
    display: grid !important;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    min-height: 300px !important;
    margin-bottom: 18px;
  }

  .three-page-site .launch-panel {
    margin-top: 38px;
    max-width: none;
  }

  .three-page-site .chapter-footer {
    position: static;
    margin-top: 44px;
  }
}

/* Evaluator polish pass: clearer hierarchy, fewer competing elements. */
main::after {
  content: "";
  display: block;
  height: 88px;
  background: linear-gradient(180deg, var(--canvas-warm), var(--canvas));
}

.three-page-site .hero::after {
  display: none !important;
}

.three-page-site .hero,
.three-page-site .compact-how,
.three-page-site .launch-page {
  max-width: 1440px;
  margin: 0 auto;
}

/* Mission beat between the hero and the mechanics: states why the timing
   matters before How it works explains what to do about it. */
.statement-band {
  display: grid;
  justify-items: center;
  /* Matches the How it works background so the two dark chapters read as one
     region rather than an accidental two-tone seam. */
  background: #1d2324;
  color: var(--paper);
  /* Asymmetric: this now continues the dark region below the cards rather than
     opening it, so the top only needs to clear How it works' own bottom
     padding. The bottom stays generous, since that edge meets the light
     Vienna chapter. */
  padding:
    clamp(20px, 4svh, 48px)
    clamp(24px, 5vw, 72px)
    clamp(72px, 13svh, 132px);
}

/* Centred, unlike the left-aligned chapters around it: the contrast is what
   makes this read as a statement moment rather than a competing section
   heading sharing the same left edge as "How it works" below. */
.statement-inner {
  width: min(100%, var(--layout-max));
  margin-inline: auto;
  text-align: center;
}

.statement-lead {
  max-width: 24ch;
  margin: 0 auto;
  font-size: clamp(2.1rem, 4.2vw, 3.9rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.statement-lead em {
  color: var(--copper);
  font-family: var(--serif);
  font-style: normal;
  font-weight: 400;
}

.statement-support {
  max-width: 44ch;
  margin: clamp(1.2rem, 2.6svh, 2rem) auto 0;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: rgba(240, 233, 215, 0.66);
}

@media (max-width: 760px) {
  .three-page-site .statement-band {
    /* Matches the 20px gutter the mobile chapters use. Asymmetric like the
       desktop band: the top only continues the dark How it works region, so
       it stays close to the cards, while the bottom edge meets the light
       Vienna chapter and needs the room. */
    padding: clamp(30px, 4.5svh, 48px) 20px clamp(52px, 8svh, 76px);
  }
}

.three-page-site .hero {
  grid-template-columns: minmax(480px, 0.86fr) minmax(320px, 0.74fr);
  gap: 52px;
}

.three-page-site .hero-copy {
  max-width: 580px;
}

.three-page-site .hero .slide-title,
.three-page-site .compact-heading .slide-title,
.three-page-site .launch-copy .slide-title {
  margin-top: 14px;
  margin-bottom: 14px;
}

.three-page-site .hero-lede {
  max-width: 520px;
  margin-top: 22px;
  color: var(--ink);
}

.three-page-site .hero-actions {
  gap: 34px;
  margin-top: 30px;
}

.three-page-site .hero-stage {
  height: 560px !important;
}

.three-page-site .hero-stage .phone {
  left: 46%;
  width: 270px !important;
  transform: translate(-50%, -50%) rotate(4deg);
}

.three-page-site .float-note,
.three-page-site .scribble {
  opacity: 0.72;
}

.three-page-site .button-dark,
.three-page-site .launch-form .waitlist-form button {
  min-height: 58px;
  border-radius: var(--button-radius);
  box-shadow: var(--pop-shadow);
}

.three-page-site .text-link {
  color: var(--ink-secondary);
}

.three-page-site .compact-how {
  grid-template-rows: auto 350px;
  row-gap: 26px;
  padding-top: 104px !important;
}

.three-page-site .compact-heading {
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.62fr);
  gap: 56px;
  align-items: end;
}

.three-page-site .compact-heading .slide-subtitle {
  max-width: 520px;
  color: rgba(240, 233, 215, 0.72);
}

.three-page-site .compact-heading .slide-subtitle em {
  color: var(--red);
}

.three-page-site .compact-manifesto {
  align-self: end;
  opacity: 0.78;
}

.three-page-site .compact-manifesto p {
  padding: 7px 0;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.three-page-site .compact-steps {
  height: 350px;
  gap: 18px;
}

.three-page-site .compact-step {
  gap: 18px;
  padding: 14px;
  border-radius: 24px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.three-page-site .compact-step-copy {
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6px 4px 10px 0;
}

.three-page-site .compact-step-copy b {
  margin-bottom: auto;
  font-size: 11px;
  letter-spacing: -0.01em;
  color: var(--blue);
}

.three-page-site .compact-step-copy h3 {
  margin: 0 0 10px;
  font-size: 25px;
  line-height: 0.98;
}

.three-page-site .compact-step-copy p {
  max-width: 220px;
  font-size: 13px;
  line-height: 1.35;
}

.three-page-site .true-self strong {
  font-size: 24px;
}

.three-page-site .dual-snap span {
  left: 18px;
  right: 18px;
  width: auto;
  text-align: center;
}

.three-page-site .launch-page {
  grid-template-columns: minmax(440px, 0.86fr) minmax(540px, 0.94fr);
  gap: 60px;
  align-items: center;
  padding-bottom: 112px !important;
}

.three-page-site .launch-copy {
  max-width: 600px;
  align-self: center;
}

.three-page-site .launch-copy .slide-subtitle {
  max-width: 640px;
}

.three-page-site .launch-copy > p {
  max-width: 500px;
  margin-top: 24px;
  font-size: 18px;
}

.three-page-site .districts {
  gap: 12px;
  margin-top: 34px;
}

.three-page-site .districts span {
  padding: 12px 17px;
  font-size: 12px;
}

.three-page-site .launch-panel {
  width: 100%;
  max-width: 650px;
  justify-self: end;
  border-width: 2px;
}

.three-page-site .compact-unlock {
  min-height: 230px !important;
}

.three-page-site .compact-unlock .counter {
  font-size: 76px !important;
}

.three-page-site .launch-form {
  padding: 24px;
}

.three-page-site .launch-form h3 {
  max-width: 560px;
  font-size: 34px;
}

.three-page-site .waitlist-form {
  border-width: 2px;
}

.three-page-site .waitlist-form input {
  font-size: 17px;
}

.three-page-site .chapter-footer {
  bottom: 28px;
  opacity: 0.78;
}

@media (max-width: 900px) {
  main::after {
    display: none;
  }

  .three-page-site .hero,
  .three-page-site .compact-how,
  .three-page-site .launch-page {
    max-width: none;
  }

  .three-page-site .hero-copy {
    max-width: none;
  }

  .three-page-site .hero-actions {
    align-items: flex-start;
    gap: 24px;
  }

  .three-page-site .hero-stage .phone {
    left: 50%;
    width: min(300px, 76vw) !important;
  }

  .three-page-site .compact-how {
    padding-top: 96px !important;
  }

  .three-page-site .compact-heading .slide-subtitle {
    max-width: none;
  }

  .three-page-site .compact-step-copy {
    padding-right: 0;
  }

  .three-page-site .launch-page {
    padding-bottom: 54px !important;
  }

  .three-page-site .launch-panel {
    max-width: none;
  }
}

/* Final simple layout: standard laptop + phone, no dynamic slide scaling. */
html {
  scroll-snap-type: none !important;
}

.three-page-site {
  --header-h: 72px;
}

.three-page-site .page-chapter {
  height: auto !important;
  min-height: 900px !important;
  max-height: none !important;
  overflow: visible !important;
  scroll-snap-align: none !important;
}

.three-page-site .hero,
.three-page-site .compact-how,
.three-page-site .launch-page {
  padding: 112px 56px 72px !important;
}

.three-page-site .slide-title,
.three-page-site .hero h1,
.three-page-site .compact-heading h2,
.three-page-site .launch-copy h2 {
  font-size: 72px !important;
  line-height: 0.94 !important;
  letter-spacing: -0.045em !important;
  font-weight: 900;
}

.three-page-site .slide-subtitle {
  margin-top: 12px;
  font-size: 32px !important;
  line-height: 1.08 !important;
  letter-spacing: -0.025em !important;
  word-spacing: 0;
}

.three-page-site .hero .slide-subtitle,
.three-page-site .launch-page .slide-subtitle {
  max-width: 620px;
  font-size: 48px !important;
  line-height: 1.04 !important;
  letter-spacing: -0.03em !important;
}

.three-page-site .hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 72px;
  align-items: center;
}

.three-page-site .hero-stage {
  height: 610px !important;
}

.three-page-site .phone {
  width: 300px !important;
  min-width: 0 !important;
}

.three-page-site .active-card-image {
  height: 205px !important;
}

.three-page-site .compact-how {
  display: grid !important;
  grid-template-rows: auto 390px;
  row-gap: 32px;
}

.three-page-site .compact-heading {
  display: grid !important;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: 72px;
  align-items: start;
  margin: 0;
}

.three-page-site .compact-manifesto {
  align-self: end;
}

.three-page-site .compact-steps {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  height: 390px;
}

.three-page-site .compact-step {
  min-height: 0 !important;
  height: 100%;
  display: grid !important;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 12px;
  padding: 12px;
}

.three-page-site .compact-step-visual {
  min-height: 0 !important;
  height: 100%;
}

.three-page-site .launch-page {
  display: grid !important;
  grid-template-columns: minmax(420px, 0.78fr) minmax(600px, 1.1fr);
  gap: 72px;
  align-items: center;
}

.three-page-site .launch-copy {
  max-width: 560px;
}

.three-page-site .launch-copy > p {
  max-width: 480px;
  font-size: 17px;
  line-height: 1.45;
}

.three-page-site .launch-panel {
  align-self: center;
  max-height: none !important;
}

.three-page-site .compact-unlock {
  min-height: 260px !important;
}

.three-page-site .compact-unlock .counter {
  font-size: 86px !important;
  line-height: 0.85;
}

.three-page-site .chapter-footer {
  left: 56px;
  right: 56px;
  bottom: 24px;
}

@media (max-width: 900px) {
  .three-page-site .page-chapter {
    min-height: auto !important;
  }

  .three-page-site .hero,
  .three-page-site .compact-how,
  .three-page-site .launch-page {
    display: block !important;
    padding: 96px 20px 48px !important;
  }

  .three-page-site .slide-title,
  .three-page-site .hero h1,
  .three-page-site .compact-heading h2,
  .three-page-site .launch-copy h2 {
    font-size: 58px !important;
    line-height: 0.94 !important;
    letter-spacing: -0.045em !important;
  }

  .three-page-site .slide-subtitle,
  .three-page-site .hero .slide-subtitle,
  .three-page-site .launch-page .slide-subtitle {
    font-size: 34px !important;
    line-height: 1.06 !important;
    letter-spacing: -0.025em !important;
  }

  .three-page-site .hero-stage {
    height: 620px !important;
    margin-top: 28px;
  }

  .three-page-site .phone {
    width: min(315px, 78vw) !important;
  }

  .three-page-site .compact-heading {
    display: block !important;
  }

  .three-page-site .compact-steps {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 16px;
    height: auto;
    margin-top: 28px;
  }

  .three-page-site .compact-step {
    min-height: 280px !important;
  }

  .three-page-site .launch-panel {
    margin-top: 34px;
  }

  .three-page-site .chapter-footer {
    position: static;
    margin-top: 44px;
  }
}
/* EOF responsive authority: overrides legacy fixed slide sizing. */
html {
  scroll-snap-type: none !important;
  scroll-padding-top: var(--header-h);
}

.three-page-site {
  --header-h: clamp(64px, 5.2vw, 88px);
  --page-max: 1760px;
  --page-gutter: clamp(24px, 4vw, 72px);
  --section-pad-top: clamp(40px, 6svh, 88px);
  --section-pad-bottom: clamp(40px, 6svh, 84px);
  --h1-fluid: clamp(3.25rem, 5.1vw, 6.25rem);
  --h2-fluid: clamp(2rem, 3vw, 3.9rem);
  --sub-fluid: clamp(1.25rem, 1.7vw, 2.35rem);
  --body-fluid: clamp(0.98rem, 0.92vw, 1.14rem);
  --caption-fluid: clamp(0.75rem, 0.7vw, 0.9rem);
}

.three-page-site .site-header {
  height: var(--header-h);
  padding-inline: var(--page-gutter);
}

.three-page-site .chapter-nav a,
.three-page-site .chapter-nav span {
  font-size: clamp(0.86rem, 0.78vw, 1.04rem) !important;
  line-height: 1;
}

.three-page-site .page-chapter {
  width: min(100%, var(--page-max));
  height: auto !important;
  min-height: 100svh !important;
  max-height: none !important;
  margin-inline: auto;
  overflow: visible !important;
  scroll-snap-align: none !important;
}

.three-page-site .hero,
.three-page-site .compact-how,
.three-page-site .launch-page {
  padding: calc(var(--header-h) + var(--section-pad-top)) var(--page-gutter) var(--section-pad-bottom) !important;
}

.three-page-site .slide-title,
.three-page-site .hero h1,
.three-page-site .compact-heading h2,
.three-page-site .launch-copy h2 {
  font-size: var(--h1-fluid) !important;
  line-height: 0.92 !important;
  letter-spacing: -0.055em !important;
}

.three-page-site .slide-subtitle,
.three-page-site .hero .slide-subtitle,
.three-page-site .launch-page .slide-subtitle {
  max-width: 13.5ch;
  font-size: var(--h2-fluid) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.04em !important;
}

.three-page-site .compact-heading .slide-subtitle {
  max-width: 28ch;
  font-size: var(--sub-fluid) !important;
}

.three-page-site .hero-lede,
.three-page-site .launch-copy > p {
  max-width: 34rem;
  font-size: var(--body-fluid) !important;
  line-height: 1.45;
}

.three-page-site .hero {
  display: grid !important;
  grid-template-columns: minmax(420px, 0.95fr) minmax(280px, 0.72fr);
  gap: clamp(40px, 5vw, 96px);
  align-items: center;
}

.three-page-site .hero::after {
  display: none !important;
}

.three-page-site .hero-stage {
  height: min(62svh, 640px) !important;
  min-height: 400px;
}

.three-page-site .hero-stage .phone {
  left: 50%;
  width: clamp(235px, 17vw, 330px) !important;
  transform: translate(-50%, -50%) rotate(4deg);
}

.three-page-site .button,
.three-page-site .waitlist-form button {
  min-height: clamp(52px, 4vw, 64px);
  padding-inline: clamp(18px, 1.7vw, 28px);
  font-size: clamp(0.95rem, 0.92vw, 1.14rem);
}

.three-page-site .compact-how {
  display: grid !important;
  grid-template-rows: auto minmax(290px, 1fr);
  row-gap: clamp(24px, 3.8svh, 48px);
}

.three-page-site .compact-heading {
  display: grid !important;
  grid-template-columns: minmax(360px, 0.9fr) minmax(340px, 0.7fr);
  gap: clamp(36px, 5vw, 88px);
  align-items: end;
}

.three-page-site .compact-steps {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.5vw, 28px);
  height: auto !important;
  min-height: clamp(300px, 34svh, 420px);
}

.three-page-site .compact-step {
  display: grid !important;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(14px, 1.4vw, 24px);
  min-height: 0 !important;
  height: 100%;
  padding: clamp(14px, 1.35vw, 22px);
}

.three-page-site .compact-step-copy h3 {
  font-size: clamp(1.25rem, 1.4vw, 1.8rem);
}

.three-page-site .compact-step-copy p {
  font-size: clamp(0.82rem, 0.78vw, 0.98rem);
}

.three-page-site .true-self strong {
  font-size: clamp(1.32rem, 1.5vw, 2rem);
}

.three-page-site .launch-page {
  display: grid !important;
  grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 0.98fr);
  gap: clamp(44px, 5vw, 96px);
  align-items: center;
}

.three-page-site .launch-panel {
  width: 100%;
  max-width: min(720px, 100%);
  justify-self: end;
}

.three-page-site .compact-unlock {
  min-height: clamp(205px, 24svh, 300px) !important;
}

.three-page-site .compact-unlock .counter {
  font-size: clamp(4.2rem, 4.8vw, 7rem) !important;
}

.three-page-site .launch-form h3 {
  font-size: clamp(1.7rem, 2.2vw, 3rem);
}

@media (max-width: 1180px) {
  .three-page-site {
    --page-gutter: clamp(22px, 3.4vw, 48px);
    --h1-fluid: clamp(3.1rem, 6.2vw, 5rem);
    --h2-fluid: clamp(1.8rem, 4vw, 3.2rem);
  }

  .three-page-site .compact-heading {
    grid-template-columns: minmax(0, 1fr);
  }

  .three-page-site .compact-step {
    grid-template-columns: 1fr;
  }

  .three-page-site .compact-step-visual {
    max-height: 220px;
  }
}

@media (max-width: 820px) {
  .three-page-site {
    --header-h: 72px;
    --page-gutter: 22px;
    --section-pad-top: 34px;
    --section-pad-bottom: 56px;
    --h1-fluid: clamp(3.15rem, 14vw, 4.8rem);
    --h2-fluid: clamp(2rem, 9vw, 3rem);
  }

  .three-page-site .desktop-nav {
    display: none;
  }

  .three-page-site .page-chapter {
    min-height: auto !important;
  }

  .three-page-site .hero,
  .three-page-site .compact-how,
  .three-page-site .launch-page {
    display: block !important;
    padding: calc(var(--header-h) + var(--section-pad-top)) var(--page-gutter) var(--section-pad-bottom) !important;
  }

  .three-page-site .hero-stage {
    height: 560px !important;
    min-height: 0;
    margin-top: 44px;
  }

  .three-page-site .hero-stage .phone {
    width: min(300px, 78vw) !important;
  }

  .three-page-site .compact-heading,
  .three-page-site .compact-steps {
    display: block !important;
  }

  .three-page-site .compact-step {
    display: grid !important;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    min-height: 300px !important;
    margin-bottom: 18px;
  }

  .three-page-site .launch-panel {
    margin-top: 38px;
  }
}

.three-page-site .chapter-footer {
  position: static !important;
  grid-column: 1 / -1;
  margin-top: clamp(32px, 5svh, 72px);
  padding-top: 20px;
}

/* The app name is also an adverb, so "Now opens in Vienna" can read as
   "currently, it opens". Running copy marks the name up with <b class="brand">
   so it carries the wordmark's weight and its red dot, which together read as
   the logotype rather than as the adverb. */
.three-page-site .brand {
  font-weight: 900;
}

/* The dot is the wordmark's, so it uses the same token as the header mark. It
   is decorative and aria-hidden in the markup: without that, a screen reader
   treats it as a full stop and drops sentence-ending prosody mid-sentence. */
.three-page-site .brand span {
  color: var(--red);
}
