:root {
  /* Color */
  --color-bg: #f4efe7;
  --color-surface: #fffdf8;
  --color-text: #1f211e;
  --color-muted: #68645e;
  --color-accent: #c85f32;
  --color-focus: #1565c0;
  --color-success: #476f4e;
  --color-warning: #a96d18;
  --color-danger: #a7352b;
  --color-line: #d7cfc4;
  --color-dark: #1d211e;
  --color-cream: #fff8ec;
  --color-moss: #6d785b;

  /* Typography */
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "Manrope", "Avenir Next", sans-serif;
  --font-mono: "DM Mono", "IBM Plex Mono", monospace;
  --text-xs: 0.7rem;
  --leading-xs: 1.35;
  --text-sm: 0.84rem;
  --leading-sm: 1.55;
  --text-base: clamp(1rem, 0.95rem + 0.2vw, 1.12rem);
  --leading-base: 1.7;
  --text-lg: clamp(1.25rem, 1.05rem + 0.8vw, 1.8rem);
  --leading-lg: 1.35;
  --text-xl: clamp(2.5rem, 1.75rem + 3vw, 5rem);
  --leading-xl: 0.96;
  --text-2xl: clamp(4rem, 2.2rem + 7vw, 9rem);
  --leading-2xl: 0.86;

  /* Spacing */
  --space-1: 0.375rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-6: 2.5rem;
  --space-8: 4rem;

  /* Radius and shadow */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 2rem;
  --shadow-sm: 0 6px 20px rgb(38 31 25 / 0.08);
  --shadow-md: 0 24px 70px rgb(38 31 25 / 0.14);
  --shadow-lg: 0 60px 120px rgb(12 16 13 / 0.25);

  /* Motion */
  --duration-fast: 160ms;
  --duration-base: 420ms;
  --duration-slow: 900ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.22, 1.35, 0.4, 1);

  --page-pad: clamp(1.25rem, 4vw, 4.5rem);
  --max-width: 1440px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-base);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

img,
svg {
  display: block;
}

.page-grain {
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  opacity: 0.19;
  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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.1'/%3E%3C/svg%3E");
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--color-text);
  color: var(--color-cream);
  transform: translateY(-160%);
  transition: transform var(--duration-fast);
}

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

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

.section-shell {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding-inline: var(--page-pad);
}

.site-header {
  position: relative;
  z-index: 90;
  width: min(100%, var(--max-width));
  margin-inline: auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--page-pad);
  border-bottom: 1px solid rgb(31 33 30 / 0.14);
}

.brand {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  text-decoration: none;
}

.brand img {
  border-radius: 0.6rem;
  box-shadow: 0 5px 14px rgb(31 33 30 / 0.14);
}

.brand span {
  font-family: var(--font-mono);
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.brand i {
  color: var(--color-accent);
  font-style: normal;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.75rem);
}

.site-nav a {
  position: relative;
  font-family: var(--font-mono);
  font-size: 0.69rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration-base) var(--ease-out);
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1rem;
  border: 1px solid var(--color-text);
  border-radius: 999px;
  transition:
    color var(--duration-fast),
    background var(--duration-fast),
    transform var(--duration-fast);
}

.nav-cta:hover {
  background: var(--color-text);
  color: var(--color-cream);
  transform: translateY(-2px);
}

.nav-cta:active {
  transform: translateY(0) scale(0.98);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 1px;
  background: var(--color-text);
  transition: transform var(--duration-base) var(--ease-out);
}

.hero {
  width: min(100%, var(--max-width));
  min-height: calc(100vh - 88px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: clamp(3rem, 5vw, 7rem);
  padding: clamp(4rem, 8vh, 7rem) var(--page-pad) clamp(5rem, 10vh, 9rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-number {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  margin: 0;
  color: var(--color-muted);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  line-height: var(--leading-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow span {
  min-width: 2rem;
  color: var(--color-accent);
}

.hero h1 {
  max-width: 850px;
  margin: 1.65rem 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(4rem, 6.7vw, 7.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.82;
}

.hero h1 em {
  display: block;
  margin-top: 0.12em;
  color: var(--color-accent);
  font-weight: 400;
}

.hero-lede {
  max-width: 600px;
  margin: 0;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.3vw, 1.28rem);
  line-height: 1.68;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem 0.85rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--font-mono);
  font-size: 0.73rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform var(--duration-fast),
    box-shadow var(--duration-fast),
    background var(--duration-fast);
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  transition: transform var(--duration-base) var(--ease-out);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 7px 7px 0 var(--color-accent);
}

.button:hover svg {
  transform: translateX(4px);
}

.button:active {
  transform: translateY(0);
  box-shadow: 3px 3px 0 var(--color-accent);
}

.button-dark {
  background: var(--color-text);
  color: var(--color-cream);
}

.text-link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-underline-offset: 0.35rem;
  transition: color var(--duration-fast);
}

.text-link:hover {
  color: var(--color-accent);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: clamp(3.5rem, 7vh, 6rem) 0 0;
  padding: 1.1rem 0 0;
  border-top: 1px solid var(--color-line);
}

.hero-proof div {
  min-width: 0;
  padding-right: 1rem;
}

.hero-proof div + div {
  padding-left: 1rem;
  border-left: 1px solid var(--color-line);
}

.hero-proof dt {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
}

.hero-proof dd {
  margin: 0.25rem 0 0;
  color: var(--color-muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.consensus-stage {
  position: relative;
  min-height: 720px;
  padding: 1.1rem;
  overflow: hidden;
  border-radius: 1px 1px 7rem 1px;
  background:
    linear-gradient(145deg, rgb(255 255 255 / 0.05), transparent 28%),
    var(--color-dark);
  color: var(--color-cream);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
  transform-style: preserve-3d;
  transition: transform var(--duration-base) var(--ease-out);
}

.consensus-stage::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgb(255 255 255 / 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.16) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.consensus-stage::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  right: -230px;
  bottom: -220px;
  border-radius: 50%;
  background: var(--color-accent);
  filter: blur(2px);
  opacity: 0.82;
}

.stage-topline {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  color: rgb(255 248 236 / 0.58);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.decision-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 560px;
  height: 560px;
  transform: translate(-50%, -54%);
  pointer-events: none;
}

.orbit {
  position: absolute;
  border: 1px solid rgb(255 248 236 / 0.18);
  border-radius: 50%;
  transition:
    border-color var(--duration-slow),
    transform var(--duration-slow) var(--ease-out);
}

.orbit-outer {
  inset: 0;
  border-style: dashed;
  animation: orbit-spin 36s linear infinite;
}

.orbit-inner {
  inset: 74px;
  border-color: rgb(200 95 50 / 0.55);
}

.consensus-stage[data-phase="1"] .orbit-inner {
  transform: scale(0.94);
  border-color: rgb(200 95 50 / 0.8);
}

.consensus-stage[data-phase="2"] .orbit-inner {
  transform: scale(0.82);
  border-color: var(--color-accent);
  box-shadow: 0 0 60px rgb(200 95 50 / 0.35);
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

.person {
  position: absolute;
  z-index: 4;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgb(255 248 236 / 0.26);
  border-radius: 50%;
  background: #2b2f2b;
  color: rgb(255 248 236 / 0.75);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  box-shadow: 0 9px 22px rgb(0 0 0 / 0.3);
  transition:
    transform var(--duration-slow) var(--ease-spring),
    color var(--duration-base),
    background var(--duration-base),
    border-color var(--duration-base);
}

.person-a { top: 7%; left: 10%; }
.person-b { top: 1%; right: 18%; }
.person-c { top: 48%; right: -2%; }
.person-d { bottom: 2%; right: 23%; }
.person-e { bottom: 16%; left: -1%; }

.consensus-stage[data-phase="1"] .person {
  border-color: rgb(200 95 50 / 0.55);
  color: var(--color-cream);
}

.consensus-stage[data-phase="1"] .person-a { transform: translate(25px, 20px); }
.consensus-stage[data-phase="1"] .person-b { transform: translate(-18px, 25px); }
.consensus-stage[data-phase="1"] .person-c { transform: translate(-25px, 0); }
.consensus-stage[data-phase="1"] .person-d { transform: translate(-16px, -24px); }
.consensus-stage[data-phase="1"] .person-e { transform: translate(26px, -10px); }

.consensus-stage[data-phase="2"] .person {
  background: var(--color-accent);
  border-color: #ea986d;
  color: #fff;
}

.consensus-stage[data-phase="2"] .person-a { transform: translate(74px, 68px); }
.consensus-stage[data-phase="2"] .person-b { transform: translate(-62px, 82px); }
.consensus-stage[data-phase="2"] .person-c { transform: translate(-84px, 0); }
.consensus-stage[data-phase="2"] .person-d { transform: translate(-48px, -71px); }
.consensus-stage[data-phase="2"] .person-e { transform: translate(73px, -35px); }

.phone-shell {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 286px;
  height: 572px;
  padding: 12px 17px 19px;
  overflow: hidden;
  border: 6px solid #10120f;
  border-radius: 42px;
  background: #f8f5ee;
  color: #292a27;
  box-shadow:
    0 40px 90px rgb(0 0 0 / 0.42),
    inset 0 0 0 1px rgb(255 255 255 / 0.5);
  transform: translate(-50%, -53%);
}

.phone-shell::before {
  content: "";
  position: absolute;
  z-index: 9;
  top: 8px;
  left: 50%;
  width: 76px;
  height: 20px;
  border-radius: 20px;
  background: #10120f;
  transform: translateX(-50%);
}

.phone-status,
.app-status {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.48rem;
  font-weight: 500;
}

.phone-status {
  padding: 0 5px;
  line-height: 25px;
}

.phone-wordmark {
  margin: 10px 2px 13px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
}

.phone-wordmark span,
.app-topbar b span {
  color: var(--color-accent);
}

.demo-slide {
  position: absolute;
  right: 17px;
  left: 17px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(32px) scale(0.98);
  transition:
    opacity var(--duration-base) var(--ease-out),
    transform var(--duration-base) var(--ease-out),
    visibility var(--duration-base);
}

.demo-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}

.phone-kicker {
  margin: 0;
  color: #8a847b;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-slide h2 {
  margin: 0.25rem 0 1rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.member-list {
  border-top: 1px solid #ddd7ce;
}

.member-list > div {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 0.65rem;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid #ddd7ce;
}

.member-list > div > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e8e2d9;
  font-family: var(--font-mono);
  font-size: 0.48rem;
}

.member-list p {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
}

.member-list small {
  color: #8a847b;
  font-family: var(--font-mono);
  font-size: 0.46rem;
  text-transform: uppercase;
}

.phone-action {
  min-height: 44px;
  display: grid;
  place-items: center;
  margin-top: 1rem;
  border-radius: 11px;
  background: #242622;
  color: #fffaf1;
  font-size: 0.62rem;
  font-weight: 600;
}

.swipe-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.swipe-header div {
  display: flex;
  flex-direction: column;
}

.swipe-header b {
  font-size: 0.64rem;
}

.swipe-header small,
.swipe-header > span {
  color: #8a847b;
  font-family: var(--font-mono);
  font-size: 0.43rem;
  letter-spacing: 0.06em;
}

.restaurant-card {
  overflow: hidden;
  border: 1px solid #d8d2c9;
  border-radius: 16px;
  background: #fffdfa;
  box-shadow: var(--shadow-sm);
}

.restaurant-art {
  position: relative;
  height: 225px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 28%, #f8bd69 0 5%, transparent 5.5%),
    linear-gradient(135deg, #382720, #a84b2d 53%, #deb27b);
}

.restaurant-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 47%, rgb(255 241 208 / 0.25) 48% 52%, transparent 53%),
    linear-gradient(rgb(255 255 255 / 0.08) 1px, transparent 1px);
  background-size: 100% 100%, 100% 32px;
}

.lamp {
  position: absolute;
  top: -6px;
  left: 42px;
  width: 2px;
  height: 80px;
  background: #281f1a;
}

.lamp::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 64px;
  height: 38px;
  border-radius: 50% 50% 12px 12px;
  background: #cf6638;
  transform: translateX(-50%);
  box-shadow: 0 18px 40px #ffbd60;
}

.table {
  position: absolute;
  right: -30px;
  bottom: -50px;
  width: 290px;
  height: 135px;
  border-radius: 50%;
  background: #33251e;
  box-shadow: 0 -8px 30px rgb(0 0 0 / 0.22);
}

.glass {
  position: absolute;
  bottom: 52px;
  width: 22px;
  height: 42px;
  border: 2px solid rgb(255 239 216 / 0.55);
  border-radius: 4px 4px 12px 12px;
}

.glass::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 3px;
  left: 2px;
  height: 15px;
  border-radius: 0 0 9px 9px;
  background: #922e20;
}

.glass-one { right: 70px; transform: rotate(8deg); }
.glass-two { right: 110px; transform: rotate(-10deg) scale(0.8); }

.restaurant-copy {
  padding: 0.8rem 0.85rem 1rem;
}

.restaurant-copy h2 {
  margin-bottom: 0.35rem;
  font-size: 1.55rem;
}

.restaurant-copy p {
  display: flex;
  gap: 0.3rem;
  align-items: center;
  margin: 0;
  color: #6f6a63;
  font-size: 0.5rem;
}

.restaurant-copy p i {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: currentColor;
}

.restaurant-copy small {
  display: block;
  margin-top: 0.7rem;
  color: #6f6a63;
  font-size: 0.48rem;
}

.swipe-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.75rem;
}

.swipe-actions span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid #d8d2c9;
  border-radius: 50%;
  background: #fffdfa;
  font-family: var(--font-body);
  font-size: 1.25rem;
}

.swipe-actions .pass { color: #a7352b; }
.swipe-actions .like { color: var(--color-accent); }

.demo-slide[data-slide="2"] {
  padding-top: 1.5rem;
  text-align: center;
}

.demo-slide[data-slide="2"] h2 {
  margin: 1.1rem 0 0.3rem;
  font-size: 2.4rem;
}

.match-seal {
  width: 134px;
  height: 134px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 1.5rem auto 0;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  outline: 1px dashed var(--color-accent);
  outline-offset: 7px;
}

.match-seal span {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 0.9;
}

.match-seal small {
  margin-top: 0.4rem;
  color: #79736a;
  font-family: var(--font-mono);
  font-size: 0.48rem;
  text-transform: uppercase;
}

.match-meta {
  margin: 0;
  color: #6f6a63;
  font-size: 0.62rem;
}

.match-detail {
  display: flex;
  justify-content: center;
  margin: 1.4rem 0 0;
  border-block: 1px solid #ddd7ce;
}

.match-detail span {
  flex: 1;
  padding: 0.65rem 0;
  font-family: var(--font-mono);
  font-size: 0.48rem;
}

.match-detail span + span {
  border-left: 1px solid #ddd7ce;
}

.stage-controls {
  position: absolute;
  z-index: 7;
  right: 1.1rem;
  bottom: 1.1rem;
  left: 1.1rem;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 0.75rem;
  align-items: center;
}

.stage-controls button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgb(255 248 236 / 0.22);
  border-radius: 50%;
  background: rgb(255 255 255 / 0.04);
  color: var(--color-cream);
  cursor: pointer;
  transition:
    background var(--duration-fast),
    transform var(--duration-fast);
}

.stage-controls button:hover {
  background: var(--color-accent);
  transform: scale(1.06);
}

.stage-controls button:active {
  transform: scale(0.94);
}

.stage-controls button:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.stage-controls svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.phase-label {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 0.35rem;
  color: var(--color-cream);
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.phase-progress {
  height: 2px;
  overflow: hidden;
  background: rgb(255 248 236 / 0.2);
}

.phase-progress i {
  display: block;
  width: 33.333%;
  height: 100%;
  background: var(--color-accent);
  transition: width var(--duration-base) var(--ease-out);
}

.consensus-stage[data-phase="1"] .phase-progress i { width: 66.666%; }
.consensus-stage[data-phase="2"] .phase-progress i { width: 100%; }

.friction-tape {
  overflow: hidden;
  border-block: 1px solid var(--color-text);
  background: var(--color-accent);
  color: #fff8ec;
  transform: rotate(-1.15deg) scale(1.02);
}

.tape-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: tape 34s linear infinite;
}

.tape-track span {
  padding: 1.05rem 1.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-style: italic;
  white-space: nowrap;
}

.tape-track i {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #fff8ec;
}

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

.pressure-section {
  padding-top: clamp(8rem, 13vw, 14rem);
  padding-bottom: clamp(7rem, 11vw, 12rem);
}

.section-number {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-line);
}

.section-number.light,
.eyebrow.light {
  color: rgb(255 248 236 / 0.55);
}

.pressure-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: clamp(4rem, 8vw, 10rem);
  align-items: end;
  padding-top: clamp(4rem, 8vw, 8rem);
}

.pressure-copy h2,
.experience-heading h2,
.protocol-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: var(--leading-xl);
}

.pressure-copy h2 em,
.experience-heading h2 em,
.beta-copy h2 em {
  color: var(--color-accent);
  font-weight: 400;
}

.pressure-copy > p {
  max-width: 520px;
  margin: 2rem 0 0;
  color: var(--color-muted);
}

.truth-instrument {
  position: relative;
  padding: clamp(1.5rem, 3vw, 3rem);
  border: 1px solid var(--color-text);
  background: var(--color-surface);
  box-shadow: 12px 12px 0 var(--color-text);
}

.instrument-heading {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-muted);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.instrument-heading span:last-child {
  color: var(--color-success);
}

.preference-row {
  display: grid;
  grid-template-columns: 160px 1fr 24px;
  gap: 1.1rem;
  align-items: center;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--color-line);
}

.preference-row > div:first-child {
  display: flex;
  flex-direction: column;
}

.preference-row b {
  font-size: 0.82rem;
}

.preference-row small {
  margin-top: 0.12rem;
  color: var(--color-muted);
  font-size: 0.61rem;
}

.preference-row strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  text-align: right;
}

.vote-bar {
  height: 5px;
  background: #e5dfd6;
}

.vote-bar i {
  display: block;
  width: var(--score);
  height: 100%;
  background: var(--color-accent);
  transform-origin: left;
  transition: transform 1s var(--ease-out);
}

.instrument-result {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  padding-top: 1.35rem;
}

.instrument-result p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.72rem;
}

.instrument-result b {
  color: var(--color-text);
}

.result-pulse {
  position: relative;
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--color-success);
}

.result-pulse::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid var(--color-success);
  border-radius: inherit;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  70%, 100% { transform: scale(1.8); opacity: 0; }
}

.protocol-section {
  padding: clamp(7rem, 11vw, 11rem) 0;
  overflow: hidden;
  background: var(--color-dark);
  color: var(--color-cream);
}

.protocol-section .section-number {
  border-color: rgb(255 248 236 / 0.18);
}

.protocol-intro {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 3rem;
  align-items: start;
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.protocol-intro > p {
  margin: 0;
  color: rgb(255 248 236 / 0.62);
  font-size: 0.88rem;
}

.protocol-intro h2 {
  font-size: clamp(3.4rem, 6vw, 7rem);
}

.protocol-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgb(255 248 236 / 0.2);
  list-style: none;
}

.protocol-list li {
  position: relative;
  display: grid;
  grid-template-columns: 80px 0.8fr 1fr 0.72fr;
  gap: 2rem;
  align-items: baseline;
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  border-bottom: 1px solid rgb(255 248 236 / 0.2);
  transition:
    padding var(--duration-base) var(--ease-out),
    color var(--duration-base);
}

.protocol-list li::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: var(--color-accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--duration-base) var(--ease-out);
}

.protocol-list li:hover::before {
  transform: scaleY(1);
}

.protocol-list li > * {
  position: relative;
  z-index: 1;
}

.protocol-index,
.protocol-note {
  color: rgb(255 248 236 / 0.48);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.protocol-list h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.7vw, 4.5rem);
  font-weight: 400;
  line-height: 0.9;
}

.protocol-list p {
  margin: 0;
  color: rgb(255 248 236 / 0.7);
  font-size: 0.85rem;
  line-height: 1.7;
}

.protocol-note {
  line-height: 1.6;
}

.protocol-list li:hover p,
.protocol-list li:hover .protocol-index,
.protocol-list li:hover .protocol-note {
  color: #fff8ec;
}

.experience-section {
  padding-top: clamp(7rem, 11vw, 12rem);
  padding-bottom: clamp(8rem, 13vw, 14rem);
}

.experience-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 3rem;
  align-items: end;
  padding: clamp(4rem, 7vw, 7rem) 0 clamp(6rem, 10vw, 10rem);
}

.experience-heading p {
  max-width: 420px;
  margin: 0;
  color: var(--color-muted);
}

.screen-gallery {
  display: flex;
  flex-direction: column;
  gap: clamp(8rem, 14vw, 15rem);
}

.screen-story {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(3rem, 8vw, 10rem);
  align-items: center;
}

.story-swipe {
  grid-template-columns: minmax(360px, 1.2fr) minmax(300px, 0.8fr);
}

.screen-copy {
  max-width: 500px;
}

.screen-copy > span {
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.screen-copy h3 {
  margin: 1.2rem 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.2vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.96;
}

.screen-copy p {
  max-width: 450px;
  margin: 0;
  color: var(--color-muted);
}

.app-frame {
  position: relative;
  width: min(100%, 372px);
  min-height: 680px;
  margin-inline: auto;
  padding: 18px 22px 28px;
  border: 8px solid #242622;
  border-radius: 56px;
  background: #f9f7f2;
  box-shadow:
    var(--shadow-lg),
    24px 24px 0 #d6cec2;
}

.story-circles .app-frame {
  transform: rotate(3deg);
}

.story-swipe .app-frame {
  transform: rotate(-3deg);
}

.story-match .app-frame {
  transform: rotate(2deg);
}

.app-frame::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 100px;
  height: 25px;
  border-radius: 30px;
  background: #242622;
  transform: translateX(-50%);
}

.app-status {
  margin: 1px 7px 23px;
  color: #242622;
  line-height: 22px;
}

.app-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.app-topbar i {
  font-size: 1.2rem;
  font-style: normal;
}

.app-frame > h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.app-frame > small {
  color: #89837b;
  font-family: var(--font-mono);
  font-size: 0.48rem;
  letter-spacing: 0.07em;
}

.app-label {
  display: flex;
  justify-content: space-between;
  margin: 2.1rem 0 0.8rem;
  color: #89837b;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.06em;
}

.app-label span {
  color: var(--color-accent);
}

.circle-card {
  display: grid;
  grid-template-columns: 45px 1fr auto;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 0.65rem;
  padding: 0.8rem;
  border: 1px solid #ded8cf;
  border-radius: 14px;
  background: #fff;
}

.circle-card > i {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #eeebe5;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-style: normal;
}

.circle-card div {
  display: flex;
  flex-direction: column;
}

.circle-card b {
  font-size: 0.71rem;
}

.circle-card small {
  color: #8c867e;
  font-family: var(--font-mono);
  font-size: 0.47rem;
}

.circle-card > span {
  color: #8c867e;
  font-size: 1.1rem;
}

.new-circle {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 0.7rem;
  border: 1px dashed #cfc7bb;
  border-radius: 14px;
  background: #f0ede7;
  color: #847e75;
  font-size: 1.1rem;
}

.new-circle b {
  margin-top: 0.25rem;
  color: #42423f;
  font-size: 0.67rem;
}

.new-circle small {
  font-size: 0.48rem;
}

.dark-frame {
  background: #f9f7f2;
}

.mini-session {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 0.7rem;
  align-items: center;
  margin-bottom: 0.8rem;
}

.mini-session > span {
  font-size: 1.3rem;
}

.mini-session div {
  display: flex;
  flex-direction: column;
}

.mini-session b {
  font-size: 0.67rem;
}

.mini-session small,
.mini-session i {
  color: #8c867e;
  font-family: var(--font-mono);
  font-size: 0.47rem;
  font-style: normal;
  letter-spacing: 0.05em;
}

.mini-restaurant {
  overflow: hidden;
  border: 1px solid #d9d3ca;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.mini-art {
  position: relative;
  height: 325px;
  background:
    radial-gradient(circle at 62% 26%, #f8bd69 0 5%, transparent 5.5%),
    linear-gradient(138deg, #392820, #b34f2e 54%, #dab27c);
}

.mini-art::before {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -65px;
  width: 330px;
  height: 170px;
  border-radius: 50%;
  background: #2b221e;
  box-shadow: 0 -8px 35px rgb(0 0 0 / 0.2);
}

.mini-art span {
  position: absolute;
  top: 0;
  left: 70px;
  width: 2px;
  height: 110px;
  background: #2b221e;
}

.mini-art span::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 90px;
  height: 50px;
  border-radius: 50% 50% 12px 12px;
  background: #ce6639;
  box-shadow: 0 20px 50px #ffbd60;
  transform: translateX(-50%);
}

.mini-restaurant > div:last-child {
  padding: 1rem 1.05rem 1.2rem;
}

.mini-restaurant h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
}

.mini-restaurant p {
  margin: 0.2rem 0 1rem;
  color: #777169;
  font-size: 0.55rem;
}

.mini-restaurant small {
  color: #777169;
  font-size: 0.5rem;
}

.mini-actions {
  display: flex;
  gap: 1.4rem;
  justify-content: center;
  margin-top: 1.2rem;
}

.mini-actions span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid #d9d3ca;
  border-radius: 50%;
  background: #fff;
  color: var(--color-danger);
  font-size: 1.45rem;
}

.mini-actions span:last-child {
  color: var(--color-accent);
}

.match-frame {
  overflow: hidden;
  text-align: center;
}

.match-frame > small {
  display: block;
  margin-top: 3.2rem;
  color: var(--color-accent);
}

.large-match-seal {
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 2rem auto;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  outline: 1px dashed var(--color-accent);
  outline-offset: 9px;
}

.large-match-seal span {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.9;
}

.large-match-seal small {
  margin-top: 0.5rem;
  color: #7d776f;
  font-family: var(--font-mono);
  font-size: 0.5rem;
}

.match-frame > h4 {
  font-size: 2.8rem;
}

.match-frame > p {
  margin: 0.35rem 0 1.4rem;
  color: #777169;
  font-size: 0.65rem;
}

.match-callout {
  display: flex;
  flex-direction: column;
  padding: 1.1rem;
  border-block: 1px solid #ddd7ce;
}

.match-callout b {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
}

.match-callout span {
  color: #777169;
  font-size: 0.55rem;
}

.match-frame button {
  width: 100%;
  min-height: 48px;
  margin-top: 1.2rem;
  border: 0;
  border-radius: 12px;
  background: #242622;
  color: #fff8ec;
  font-size: 0.67rem;
}

.match-frame button:disabled {
  cursor: default;
  opacity: 1;
}

.match-confetti i {
  position: absolute;
  width: 7px;
  height: 18px;
  background: var(--color-accent);
  transform: rotate(23deg);
}

.match-confetti i:nth-child(1) { top: 108px; left: 42px; }
.match-confetti i:nth-child(2) { top: 157px; right: 45px; background: var(--color-moss); transform: rotate(-37deg); }
.match-confetti i:nth-child(3) { top: 215px; left: 32px; height: 7px; border-radius: 50%; }
.match-confetti i:nth-child(4) { top: 92px; right: 93px; background: #d5a330; transform: rotate(62deg); }
.match-confetti i:nth-child(5) { top: 286px; right: 32px; height: 7px; border-radius: 50%; background: var(--color-moss); }

.circles-for-section {
  padding: clamp(7rem, 11vw, 11rem) 0;
  border-top: 1px solid var(--color-line);
  background: #e9e1d5;
}

.circle-scenarios {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(3rem, 6vw, 6rem);
  border-block: 1px solid var(--color-text);
}

.circle-scenarios article {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  transition:
    color var(--duration-base),
    background var(--duration-base),
    transform var(--duration-base) var(--ease-out);
}

.circle-scenarios article + article {
  border-left: 1px solid var(--color-text);
}

.circle-scenarios article:hover {
  z-index: 2;
  background: var(--color-accent);
  color: #fff8ec;
  transform: translateY(-10px);
}

.circle-scenarios article > span {
  font-family: var(--font-mono);
  font-size: 0.61rem;
  letter-spacing: 0.07em;
}

.circle-scenarios h3 {
  margin: auto 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3vw, 3.5rem);
  font-weight: 400;
  line-height: 0.95;
}

.circle-scenarios p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.76rem;
  line-height: 1.65;
  transition: color var(--duration-base);
}

.circle-scenarios article:hover p {
  color: rgb(255 248 236 / 0.78);
}

.beta-section {
  position: relative;
  min-height: 780px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 8rem var(--page-pad);
  background: var(--color-accent);
  color: #fff8ec;
  text-align: center;
}

.beta-copy {
  position: relative;
  z-index: 2;
  max-width: 920px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.beta-copy h2 {
  margin: 2rem 0;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: var(--leading-2xl);
}

.beta-copy h2 em {
  color: var(--color-dark);
}

.beta-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 0 0 2.5rem;
  color: rgb(255 248 236 / 0.8);
}

.button-light {
  background: #fff8ec;
  color: var(--color-dark);
}

.button-light:hover {
  box-shadow: 7px 7px 0 var(--color-dark);
}

.beta-note {
  margin-top: 1.2rem;
  color: rgb(255 248 236 / 0.66);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.beta-orbit,
.beta-orbit::before,
.beta-orbit::after {
  position: absolute;
  border: 1px solid rgb(255 248 236 / 0.25);
  border-radius: 50%;
}

.beta-orbit {
  width: min(85vw, 850px);
  aspect-ratio: 1;
  animation: orbit-spin 45s linear infinite reverse;
}

.beta-orbit::before,
.beta-orbit::after {
  content: "";
}

.beta-orbit::before { inset: 11%; border-style: dashed; }
.beta-orbit::after { inset: 25%; }

.beta-orbit i {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 4px solid var(--color-accent);
  border-radius: 50%;
  background: #fff8ec;
}

.beta-orbit i:nth-child(1) { top: 4%; left: 34%; }
.beta-orbit i:nth-child(2) { right: 2%; bottom: 31%; }
.beta-orbit i:nth-child(3) { bottom: 7%; left: 22%; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: clamp(4rem, 7vw, 7rem) var(--page-pad) 2rem;
  background: #111310;
  color: var(--color-cream);
}

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

.footer-brand > p {
  margin: 1.2rem 0 0;
  color: rgb(255 248 236 / 0.58);
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links span {
  margin-bottom: 0.65rem;
  color: rgb(255 248 236 / 0.42);
  font-family: var(--font-mono);
  font-size: 0.61rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  color: rgb(255 248 236 / 0.76);
  font-size: 0.78rem;
  text-decoration-color: transparent;
  text-underline-offset: 0.3rem;
  transition:
    color var(--duration-fast),
    text-decoration-color var(--duration-fast);
}

.footer-links a:hover {
  color: #fff8ec;
  text-decoration-color: var(--color-accent);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgb(255 248 236 / 0.16);
  color: rgb(255 248 236 / 0.38);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.noscript-note {
  position: fixed;
  z-index: 200;
  right: 1rem;
  bottom: 1rem;
  max-width: 340px;
  padding: 1rem;
  border: 1px solid var(--color-warning);
  background: var(--color-surface);
  color: var(--color-text);
  font-size: 0.75rem;
}

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

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.8fr);
    gap: 3rem;
  }

  .hero h1 {
    font-size: clamp(4rem, 7vw, 6rem);
  }

  .consensus-stage {
    min-height: 660px;
  }

  .decision-orbit {
    width: 490px;
    height: 490px;
  }

  .pressure-grid {
    gap: 4rem;
  }

  .protocol-list li {
    grid-template-columns: 60px 0.8fr 1fr;
  }

  .protocol-note {
    display: none;
  }

  .circle-scenarios {
    grid-template-columns: repeat(2, 1fr);
  }

  .circle-scenarios article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--color-text);
  }

  .circle-scenarios article:nth-child(4) {
    border-top: 1px solid var(--color-text);
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 74px;
  }

  .menu-toggle {
    z-index: 92;
    display: flex;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 91;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 7rem var(--page-pad);
    background: var(--color-bg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition:
      opacity var(--duration-base),
      visibility var(--duration-base),
      transform var(--duration-base) var(--ease-out);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    letter-spacing: -0.03em;
    text-transform: none;
  }

  .nav-cta {
    min-height: 52px;
    margin-top: 1rem;
    border: 0;
    border-radius: 0;
    background: var(--color-accent);
    color: #fff8ec;
    font-family: var(--font-mono) !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 4rem;
  }

  .hero-copy {
    max-width: 740px;
  }

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

  .consensus-stage {
    width: min(100%, 600px);
    min-height: 720px;
    margin-left: auto;
  }

  .pressure-grid,
  .experience-heading {
    grid-template-columns: 1fr;
  }

  .pressure-grid {
    align-items: start;
  }

  .truth-instrument {
    margin-right: 12px;
  }

  .protocol-intro {
    grid-template-columns: 1fr;
  }

  .protocol-list li {
    grid-template-columns: 44px 0.9fr 1.1fr;
    gap: 1rem;
  }

  .screen-story,
  .story-swipe {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .story-swipe .app-frame {
    grid-row: 2;
  }

  .screen-copy {
    max-width: 680px;
  }

  .app-frame {
    width: min(92%, 372px);
  }
}

@media (max-width: 620px) {
  :root {
    --page-pad: 1.25rem;
  }

  .friction-tape {
    width: calc(100% - 0.75rem);
    margin-inline: auto;
    transform: rotate(-1.15deg);
  }

  .hero {
    gap: 4rem;
    padding-top: 3rem;
    padding-bottom: 6rem;
  }

  .hero h1 {
    margin-top: 1.3rem;
    font-size: clamp(3.8rem, 18vw, 5.6rem);
    line-height: 0.84;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .text-link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-proof div {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 1rem;
    align-items: baseline;
    padding: 0.8rem 0;
  }

  .hero-proof div + div {
    padding-left: 0;
    border-top: 1px solid var(--color-line);
    border-left: 0;
  }

  .consensus-stage {
    width: calc(100% + 1.25rem);
    min-height: 640px;
    margin-left: 0;
    border-radius: 1px 1px 4rem 1px;
  }

  .decision-orbit {
    width: 420px;
    height: 420px;
    transform: translate(-50%, -58%);
  }

  .phone-shell {
    width: 258px;
    height: 520px;
    transform: translate(-50%, -57%) scale(0.94);
  }

  .person {
    width: 42px;
    height: 42px;
  }

  .stage-controls {
    grid-template-columns: 46px 1fr 46px;
  }

  .pressure-section,
  .experience-section {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .pressure-grid {
    padding-top: 3rem;
  }

  .truth-instrument {
    padding: 1.1rem;
    box-shadow: 8px 8px 0 var(--color-text);
  }

  .preference-row {
    grid-template-columns: 110px 1fr 18px;
    gap: 0.7rem;
  }

  .preference-row small {
    display: none;
  }

  .protocol-section {
    padding-block: 6rem;
  }

  .protocol-intro {
    padding-block: 3rem;
  }

  .protocol-list li {
    grid-template-columns: 38px 1fr;
    align-items: start;
    padding-block: 2.2rem;
  }

  .protocol-list p {
    grid-column: 2;
  }

  .experience-heading {
    padding-block: 3rem 6rem;
  }

  .screen-gallery {
    gap: 9rem;
  }

  .screen-story {
    gap: 3rem;
  }

  .app-frame {
    min-height: 620px;
    padding-inline: 18px;
    border-width: 6px;
    border-radius: 45px;
    box-shadow:
      0 38px 80px rgb(12 16 13 / 0.24),
      12px 12px 0 #d6cec2;
  }

  .mini-art {
    height: 280px;
  }

  .circle-scenarios {
    grid-template-columns: 1fr;
  }

  .circle-scenarios article {
    min-height: 250px;
  }

  .circle-scenarios article + article {
    border-top: 1px solid var(--color-text);
    border-left: 0;
  }

  .beta-section {
    min-height: 700px;
  }

  .beta-copy h2 {
    font-size: clamp(4rem, 20vw, 6.5rem);
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .consensus-stage {
    transform: none !important;
  }
}
