@charset "utf-8";

/* ============================================================
   MERE / NODI landing page
   The identity is carried by interval, contrast and restraint.
   ============================================================ */

@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400 600;
  font-stretch: 75% 100%;
  font-display: swap;
  src: url("../fonts/instrument-sans-var.woff2") format("woff2");
}

/* ---------- tokens ---------- */

:root {
  --paper: #f8f6f1;
  --ink: #11110f;
  --ink-soft: #4d4b46;
  --ink-faint: #6e6b65;
  --line: #d8d3ca;
  --well: #efebe4;
  --accent: #ef5a24;
  --accent-deep: #c84115;
  --accent-soft: rgba(239, 90, 36, 0.12);
  --wash-1: rgba(17, 17, 15, 0.035);
  --wash-2: rgba(17, 17, 15, 0.07);
  --wash-3: rgba(17, 17, 15, 0.14);
  --scrim: rgba(248, 246, 241, 0.9);

  /* The device. Identical in both themes, because it is a physical object.
     --lume is the face's warm white, oklch(0.96 0.035 90) from the face system. */
  --screen: #0a0a0a;
  --lume: #fbf1d8;

  --shadow-lift: 0 28px 80px -42px rgba(17, 17, 15, 0.38),
    0 8px 22px -16px rgba(17, 17, 15, 0.16);

  --r-ui: 10px;      /* interactive: buttons, inputs, summary */
  --r-surface: 18px; /* surfaces: media plates, panels */

  --sans: "Instrument Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;

  --gutter: clamp(1.25rem, 5vw, 3.5rem);
  --measure: 62ch;
  --nav-h: 64px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.55s;

  color-scheme: light;
}

:root[data-theme="dark"],
html.theme-dark {
  --paper: #11110f;
  --ink: #f8f6f1;
  --ink-soft: #cbc7bd;
  --ink-faint: #aaa69d;
  --line: #3a3833;
  --well: #1b1a17;
  --accent: #f36a36;
  --accent-deep: #ff8356;
  --accent-soft: rgba(243, 106, 54, 0.15);
  --wash-1: rgba(248, 246, 241, 0.04);
  --wash-2: rgba(248, 246, 241, 0.08);
  --wash-3: rgba(248, 246, 241, 0.15);
  --scrim: rgba(17, 17, 15, 0.9);
  --shadow-lift: 0 26px 70px -30px rgba(0, 0, 0, 0.85),
    0 4px 16px -8px rgba(0, 0, 0, 0.5);
  color-scheme: dark;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper: #11110f;
    --ink: #f8f6f1;
    --ink-soft: #cbc7bd;
    --ink-faint: #aaa69d;
    --line: #3a3833;
    --well: #1b1a17;
    --accent: #f36a36;
    --accent-deep: #ff8356;
    --accent-soft: rgba(243, 106, 54, 0.15);
    --wash-1: rgba(248, 246, 241, 0.04);
    --wash-2: rgba(248, 246, 241, 0.08);
    --wash-3: rgba(248, 246, 241, 0.15);
    --scrim: rgba(17, 17, 15, 0.9);
    --shadow-lift: 0 26px 70px -30px rgba(0, 0, 0, 0.85),
      0 4px 16px -8px rgba(0, 0, 0, 0.5);
    color-scheme: dark;
  }
}

/* semantic layers, never arbitrary values */
:root {
  --z-base: 0;
  --z-raised: 10;
  --z-sticky: 100;
  --z-nav: 200;
  --z-toast: 300;
}

/* ---------- reset ---------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-variation-settings: "wdth" 100, "wght" 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* Class-level display rules would otherwise beat the UA rule for [hidden]. */
[hidden] { display: none !important; }

h1, h2, h3, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

a { color: inherit; }

button, input, select, textarea {
  font: inherit;
  color: inherit;
  font-variation-settings: inherit;
}

::selection { background: var(--accent-soft); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

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

.skip-link {
  position: absolute;
  top: 0; left: var(--gutter);
  transform: translateY(-120%);
  z-index: var(--z-toast);
  background: var(--ink);
  color: var(--paper);
  padding: 0.7rem 1.1rem;
  border-radius: 0 0 var(--r-ui) var(--r-ui);
  text-decoration: none;
  font-size: 0.9rem;
}
.skip-link:focus-visible { transform: translateY(0); }

/* ---------- type ---------- */

.h-display,
.h-section {
  font-variation-settings: "wdth" 96, "wght" 500;
  line-height: 1.06;
  letter-spacing: -0.028em;
  text-wrap: balance;
}

.h-display { font-size: clamp(2.35rem, 5.1vw, 4.15rem); }
.h-section { font-size: clamp(1.95rem, 4.4vw, 3rem); line-height: 1.1; }

.h-item {
  font-size: clamp(1.15rem, 1.9vw, 1.4rem);
  font-variation-settings: "wdth" 100, "wght" 600;
  letter-spacing: -0.012em;
  line-height: 1.25;
}

.lede {
  font-size: clamp(1.09rem, 1.5vw, 1.3rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 34ch;
  text-wrap: pretty;
}

.body { color: var(--ink-soft); max-width: var(--measure); text-wrap: pretty; }
.body + .body { margin-top: 1.1em; }

.meta {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ---------- layout ---------- */

.shell {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section { position: relative; }

.band { padding-block: clamp(5rem, 11vw, 9.5rem); }
.band--tight { padding-block: clamp(3.75rem, 8vw, 6.5rem); }

.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* ---------- nav ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-nav);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease,
    backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: var(--scrim);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
}
@supports not (backdrop-filter: blur(1px)) {
  .nav.is-stuck { background: var(--paper); }
}

.nav__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}

.brand { display: flex; align-items: center; text-decoration: none; }
.brand svg { height: 22px; width: auto; color: var(--ink); }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
}
.nav__links a {
  text-decoration: none;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  padding: 0.4rem 0;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__right { display: flex; flex: 0 0 auto; align-items: center; gap: 0.5rem; }

/* ---------- buttons ---------- */

.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.7rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--r-ui);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 0.9375rem;
  font-variation-settings: "wdth" 100, "wght" 600;
  letter-spacing: 0.002em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.22s var(--ease), color 0.22s var(--ease),
    border-color 0.22s var(--ease), transform 0.12s ease;
}
/* the one deliberate orange: the CTA becomes the device's button on hover */
.btn:hover { --btn-bg: var(--accent-deep); --btn-fg: var(--ink); }
.btn:active { transform: translateY(1px); }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; transform: none; }
.btn[disabled]:hover { --btn-bg: var(--ink); --btn-fg: var(--paper); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover {
  --btn-bg: var(--wash-1);
  --btn-fg: var(--ink);
  border-color: var(--ink-faint);
}

.btn--sm { min-height: 44px; padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn--lg { min-height: 52px; padding: 0.85rem 1.7rem; font-size: 1rem; }
.btn--block { width: 100%; }

.theme-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--r-ui);
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease,
    transform 0.14s ease, box-shadow 0.28s var(--ease);
}
.theme-toggle:hover { color: var(--ink); border-color: var(--ink-faint); background: var(--wash-1); }
.theme-toggle:active { transform: scale(0.92); }
.theme-toggle svg { width: 17px; height: 17px; }
.theme-toggle .i-moon { display: none; }
:root[data-theme="dark"] .theme-toggle .i-moon,
html.theme-dark .theme-toggle .i-moon { display: block; }
:root[data-theme="dark"] .theme-toggle .i-sun,
html.theme-dark .theme-toggle .i-sun { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle .i-moon { display: block; }
  :root:not([data-theme="light"]) .theme-toggle .i-sun { display: none; }
}

/* Theme changes behave like a physical light switch. The next exposure
   spreads from the control that caused it instead of crossfading the page. */
::view-transition-old(root),
::view-transition-new(root) {
  animation: none;
  mix-blend-mode: normal;
}

::view-transition-old(root) { z-index: 1; }
::view-transition-new(root) { z-index: 2; }

html[data-theme-shift="dark"]::view-transition-new(root) {
  animation: mere-lights-out 640ms var(--ease) both;
}

html[data-theme-shift="light"]::view-transition-new(root) {
  animation: mere-lights-on 560ms var(--ease) both;
}

html.theme-is-switching .theme-toggle {
  box-shadow: 0 0 0 7px var(--accent-soft);
}

/* Fallback for browsers without the View Transitions API. The veil reaches
   full coverage before the palette changes, so no half-themed frame appears. */
.theme-wipe {
  position: fixed;
  inset: 0;
  z-index: 2147483646;
  pointer-events: none;
  clip-path: circle(0 at var(--theme-origin-x) var(--theme-origin-y));
  will-change: clip-path, opacity;
}

.theme-wipe--dark { background: #0d0e0e; }
.theme-wipe--light { background: #f7f5f0; }

.theme-wipe--cover {
  animation: mere-wipe-cover 430ms var(--ease) both;
}

.theme-wipe--release {
  animation: mere-wipe-release 190ms ease-out both;
}

@keyframes mere-lights-out {
  from {
    clip-path: circle(0 at var(--theme-origin-x) var(--theme-origin-y));
    filter: brightness(0.72);
  }
  to {
    clip-path: circle(150vmax at var(--theme-origin-x) var(--theme-origin-y));
    filter: brightness(1);
  }
}

@keyframes mere-lights-on {
  from {
    clip-path: circle(0 at var(--theme-origin-x) var(--theme-origin-y));
    filter: brightness(1.35);
  }
  to {
    clip-path: circle(150vmax at var(--theme-origin-x) var(--theme-origin-y));
    filter: brightness(1);
  }
}

@keyframes mere-wipe-cover {
  from { clip-path: circle(0 at var(--theme-origin-x) var(--theme-origin-y)); }
  to { clip-path: circle(150vmax at var(--theme-origin-x) var(--theme-origin-y)); }
}

@keyframes mere-wipe-release {
  from {
    clip-path: circle(150vmax at var(--theme-origin-x) var(--theme-origin-y));
    opacity: 1;
  }
  to {
    clip-path: circle(150vmax at var(--theme-origin-x) var(--theme-origin-y));
    opacity: 0;
  }
}

/* ---------- hero ---------- */

.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + clamp(1.25rem, 3vw, 2.25rem));
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.hero__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  width: 100%;
}

.hero__copy { max-width: 34rem; }
.hero__copy .lede { margin-top: 1.35rem; }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
}

/* The device floats on the page ground. It is height-capped as well as
   width-capped so it can never be what pushes the hero past one screen. */
.device {
  position: relative;
  aspect-ratio: 1167 / 1348;
  width: min(100%, 400px);
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 30px 46px rgba(23, 22, 16, 0.16));
}
:root[data-theme="dark"] .device,
html.theme-dark .device { filter: drop-shadow(0 30px 52px rgba(0, 0, 0, 0.62)); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .device {
    filter: drop-shadow(0 30px 52px rgba(0, 0, 0, 0.62));
  }
}

.device img { width: 100%; height: 100%; object-fit: contain; }

/* Live face, Face System 2.0. Sized to the render's measured screen rect and
   never given a background: the hero render ships with a blank screen, so the
   bezel, corner radius, glass edge and the screen's own grain stay photographic.
   Structure and values mirror brand/nodi-face so the two stay in step.
   The rect is measured from nodi-front-knob-repair.webp; re-measure if swapped. */
.device__face {
  position: absolute;
  left: 13.20%;
  top: 19.44%;
  width: 74.46%;
  height: 64.17%;
  background: none;
  overflow: visible;
}
.device__face path { fill: var(--lume); }

/* Only rendered when scripting is off, so the device is never blank-faced. */
.device__idle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.face__glow {
  filter: drop-shadow(0 0 3px rgba(251, 241, 216, 0.84))
    drop-shadow(0 0 12px rgba(236, 212, 171, 0.42))
    drop-shadow(0 0 28px rgba(220, 183, 131, 0.24));
}

/* The 56 × 98 px pebble apertures use their own centred coordinate space, so
   scaling this group gives the quiet, symmetric blink from Face System 2.0. */
.face__eye {
  transform-box: fill-box;
  transform-origin: center;
  /* The scheduler only adds a gesture class; the complete blink curve stays in
     CSS so both eyes close on the exact same frame. */
}

.face__eye.is-blinking {
  animation: nodi-idle-blink 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.face__eye-slot.is-looking {
  animation: nodi-idle-look 1350ms cubic-bezier(0.22, 1, 0.36, 1) both;
  will-change: transform;
}

@keyframes nodi-idle-blink {
  0%, 100% { transform: scaleY(1); }
  44%, 56% { transform: scaleY(0.04); }
}

@keyframes nodi-idle-look {
  0%, 100% { transform: translate(0, 0); }
  36%, 62% { transform: translate(var(--gaze-x), var(--gaze-y)); }
}

@media (prefers-reduced-motion: no-preference) {
  .face__glow { animation: face-breathe 3.2s ease-in-out infinite; }
  @keyframes face-breathe {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
  }
}
@media (prefers-reduced-motion: reduce) {
  .face__glow { animation: none; }
}

/* ---------- statement ---------- */

.statement__grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}
.statement__body { font-size: clamp(1.03rem, 1.25vw, 1.15rem); }

/* ---------- values ---------- */

.values { display: grid; gap: 0; }
.value {
  padding-block: clamp(2rem, 4vw, 2.75rem);
  border-top: 1px solid var(--line);
}
.value:first-child { border-top: 0; }
.value p {
  margin-top: 0.7rem;
  color: var(--ink-soft);
  max-width: 40ch;
  font-size: 1rem;
}

/* ---------- workday moments ---------- */

.moments { border-block: 1px solid var(--line); }
.moments__list {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.moment {
  display: grid;
  gap: 1.15rem;
  align-content: start;
}
.moment__media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--r-surface);
  background: var(--well);
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-lift);
}
.moment__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.moment__media:hover img { transform: scale(1.018); }
.moment__copy .h-item { max-width: 24ch; }
.moment__copy p {
  margin-top: 0.75rem;
  color: var(--ink-soft);
  max-width: 42ch;
}

/* ---------- philosophy ---------- */

.philosophy { text-align: center; }
.philosophy .h-section {
  max-width: 18ch;
  margin-inline: auto;
}
.philosophy__technology { white-space: nowrap; }
.philosophy__lettermark-trigger {
  position: relative;
  display: inline-block;
  /* The architectural n needs to occupy the same optical slot as the
     surrounding Archivo lowercase—not the smaller square SVG box. */
  width: 0.72em;
  height: 1.02em;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: transparent;
  color: currentColor;
  line-height: 0;
  vertical-align: -0.04em;
  cursor: pointer;
  appearance: none;
  touch-action: manipulation;
}
.philosophy__lettermark {
  position: absolute;
  inset-block: 0;
  left: -0.15em;
  display: block;
  width: 1.02em;
  height: 1.02em;
  color: currentColor;
  transform-origin: center;
  transition: transform 120ms ease-out, opacity 90ms linear;
}
.philosophy__lettermark-trigger.is-preparing .philosophy__lettermark {
  transform: scale(0.9);
}
.philosophy__lettermark-trigger.is-entering .philosophy__lettermark {
  opacity: 0;
  transform: scale(0.9);
}
.philosophy__body {
  margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-inline: auto;
  max-width: 54ch;
  color: var(--ink-soft);
  font-size: clamp(1.03rem, 1.25vw, 1.15rem);
}

/* ---------- hidden universe ---------- */

html.universe-scroll-locked {
  overscroll-behavior: none;
}

html.universe-scroll-locked body {
  overscroll-behavior: none;
  touch-action: none;
}

.universe-collapse-lines {
  position: fixed;
  inset: 0;
  z-index: 10002;
  width: 100%;
  height: 100%;
  max-width: none;
  pointer-events: none;
  contain: strict;
}

.universe-page-snapshot {
  position: fixed;
  inset: 0;
  z-index: 10001;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  contain: strict;
  will-change: opacity;
}

.universe-page-snapshot,
.universe-page-snapshot * {
  animation: none !important;
  transition: none !important;
  caret-color: transparent !important;
}

.universe-seed {
  position: fixed;
  z-index: 10003;
  pointer-events: none;
  color: var(--accent);
  transform-origin: center;
}

.universe-seed__mark {
  width: 100%;
  height: 100%;
  color: currentColor;
  transform-origin: center;
  will-change: transform, opacity;
}

.universe-seed__dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
}

.universe {
  position: fixed;
  inset: 0;
  z-index: 10000;
  isolation: isolate;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  contain: strict;
  will-change: opacity;
}

.universe.is-opening { pointer-events: auto; }

.universe.is-open {
  opacity: 1;
  pointer-events: auto;
}

.universe__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  touch-action: none;
  cursor: grab;
}

.universe__canvas.is-dragging { cursor: grabbing; }

.universe__close {
  position: absolute;
  top: max(1.25rem, env(safe-area-inset-top));
  right: max(1.25rem, env(safe-area-inset-right));
  z-index: 2;
  padding: 0.35rem 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.875rem;
  line-height: 1.2;
  font-variation-settings: "wdth" 100, "wght" 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  opacity: 0;
}

.universe.is-open .universe__close { opacity: 1; }

.universe-memory {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 3;
  display: flex;
  width: min(31rem, 42vw);
  padding: clamp(5.5rem, 9vh, 8rem) clamp(2rem, 4vw, 4rem) clamp(2.5rem, 5vw, 4.5rem);
  border-left: 1px solid var(--line);
  background: var(--paper);
  box-shadow: -28px 0 80px -54px rgba(0, 0, 0, 0.72);
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  transform: translateX(100%);
  pointer-events: none;
  transition: transform 0.65s var(--ease), opacity 0.3s ease;
}

.universe-memory.is-open {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.universe-memory__inner {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
}

.universe-memory__close {
  align-self: flex-start;
  margin-bottom: clamp(2.25rem, 6vh, 4.5rem);
  padding: 0.25rem 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.82rem;
  cursor: pointer;
}

.universe-memory__eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-variation-settings: "wdth" 100, "wght" 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.universe-memory__title {
  max-width: 10ch;
  margin-top: 1rem;
  color: var(--ink);
  font-size: clamp(2.3rem, 4.3vw, 4.6rem);
  font-variation-settings: "wdth" 100, "wght" 500;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-wrap: balance;
}

.universe-memory__lede {
  max-width: 38ch;
  margin-top: 1.5rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.55;
}

.universe-memory__map {
  margin: clamp(2rem, 5vh, 3.25rem) 0 0;
  border-top: 1px solid var(--line);
}

.universe-memory__map > div {
  display: grid;
  grid-template-columns: minmax(6.5rem, 0.72fr) minmax(0, 1.28fr);
  gap: 1.25rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--line);
}

.universe-memory__map dt {
  color: var(--ink);
  font-size: 0.88rem;
  font-variation-settings: "wdth" 100, "wght" 500;
}

.universe-memory__map dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

.universe-memory__summary {
  max-width: 40ch;
  margin-top: 2rem;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.6;
}

.universe-memory__summary strong {
  color: var(--ink);
  font-variation-settings: "wdth" 100, "wght" 600;
}

@media (max-width: 720px) {
  .universe-memory {
    inset: auto 0 0;
    width: 100%;
    max-height: min(74dvh, 42rem);
    padding: 1.5rem 1.25rem max(1.5rem, env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    border-left: 0;
    box-shadow: 0 -28px 80px -54px rgba(0, 0, 0, 0.72);
    overflow-y: auto;
    transform: translateY(100%);
  }

  .universe-memory.is-open { transform: translateY(0); }
  .universe-memory__inner { justify-content: flex-start; }
  .universe-memory__close { margin-bottom: 1.75rem; }
  .universe-memory__title { max-width: 12ch; font-size: clamp(2.35rem, 12vw, 3.6rem); }
  .universe-memory__lede { margin-top: 1.2rem; }
  .universe-memory__map { margin-top: 1.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  .universe-seed { display: none; }
  .universe.is-opening {
    opacity: 1;
    clip-path: none;
    pointer-events: auto;
  }
  .universe.is-opening .universe__close { opacity: 1; }
  .universe-memory { transition: none; }
}
/* ---------- waitlist ---------- */

.waitlist { background: var(--well); border-block: 1px solid var(--line); }
.waitlist__grid { display: grid; gap: clamp(2.25rem, 5vw, 4.5rem); align-items: start; }

.form { display: grid; gap: 1.1rem; max-width: 30rem; }
.field { display: grid; gap: 0.4rem; }
.field > label {
  font-size: 0.875rem;
  font-variation-settings: "wdth" 100, "wght" 600;
  color: var(--ink);
}
.field__hint { font-size: 0.8125rem; color: var(--ink-faint); }

.input, .select {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.85rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-ui);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
}
.input::placeholder { color: var(--ink-faint); opacity: 1; }
.input:hover, .select:hover { border-color: var(--ink-faint); }
.input:focus-visible, .select:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.select {
  padding-right: 2.4rem;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 1.1rem) 55%, calc(100% - 0.75rem) 55%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.field--error .input { border-color: #b04430; }
:root[data-theme="dark"] .field--error .input,
html.theme-dark .field--error .input { border-color: #e0705a; }
.field__error {
  font-size: 0.8125rem;
  color: #8f3524;
  font-variation-settings: "wdth" 100, "wght" 500;
}
:root[data-theme="dark"] .field__error,
html.theme-dark .field__error { color: #e0705a; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .field--error .input { border-color: #e0705a; }
  :root:not([data-theme="light"]) .field__error { color: #e0705a; }
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form__note { font-size: 0.8125rem; color: var(--ink-faint); max-width: 42ch; }
.form__note a { color: var(--ink-soft); }

.form__status {
  font-size: 0.9rem;
  color: #8f3524;
  min-height: 1.2em;
}
:root[data-theme="dark"] .form__status,
html.theme-dark .form__status { color: #e0705a; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .form__status { color: #e0705a; }
}

.done {
  display: grid;
  gap: 1rem;
  justify-items: start;
  max-width: 30rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--r-surface);
  background: var(--paper);
}
.done__mark { width: 30px; color: var(--accent); }
.done p { color: var(--ink-soft); }
.done__social { display: flex; flex-wrap: wrap; gap: 0.5rem; }

/* ---------- faq ---------- */

.faq { display: grid; margin-top: clamp(2rem, 4vw, 3rem); max-width: 52rem; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-of-type { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.15rem 0.25rem;
  cursor: pointer;
  list-style: none;
  font-variation-settings: "wdth" 100, "wght" 600;
  font-size: 1.03rem;
  border-radius: var(--r-ui);
  transition: color 0.2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent-deep); }
:root[data-theme="dark"] .faq summary:hover,
html.theme-dark .faq summary:hover { color: var(--accent); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .faq summary:hover { color: var(--accent); }
}
.faq__sign {
  flex: none;
  width: 13px; height: 13px;
  margin-top: 0.45em;
  position: relative;
}
.faq__sign::before, .faq__sign::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.faq__sign::before { inset: 6px 0 auto; height: 1.5px; }
.faq__sign::after { inset: 0 6px auto; width: 1.5px; height: 13px; }
.faq details[open] .faq__sign::after { transform: scaleY(0); opacity: 0; }
.faq__answer { padding: 0 0.25rem 1.4rem; color: var(--ink-soft); max-width: 58ch; }

/* ---------- footer ---------- */

.footer { border-top: 1px solid var(--line); padding-block: clamp(2.75rem, 6vw, 4rem); }
.footer__top {
  display: grid;
  gap: 2rem;
  padding-bottom: 2.25rem;
}
.footer__tag { color: var(--ink-soft); margin-top: 0.9rem; max-width: 26ch; }
.footer__cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; }
.footer h2 {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 400;
  margin-bottom: 0.9rem;
}
.footer li + li { margin-top: 0.5rem; }
.footer li#social-empty { color: var(--ink-faint); font-size: 0.9375rem; max-width: 20ch; }
.footer a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}
.footer a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.footer__base {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  font-size: 0.8125rem;
  color: var(--ink-faint);
}

/* ---------- setup notice (localhost only) ---------- */

.setup-note {
  position: fixed;
  left: 50%; bottom: 16px;
  transform: translateX(-50%);
  z-index: var(--z-toast);
  max-width: min(560px, calc(100vw - 32px));
  padding: 0.7rem 1rem;
  border: 1px solid var(--accent);
  border-radius: var(--r-ui);
  background: var(--paper);
  color: var(--ink);
  font-size: 0.8125rem;
  box-shadow: var(--shadow-lift);
}

/* ---------- reveal ---------- */

.js .rv {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js .rv.is-in { opacity: 1; transform: none; }
.js .rv-d1 { transition-delay: 0.07s; }
.js .rv-d2 { transition-delay: 0.14s; }
.js .rv-d3 { transition-delay: 0.21s; }

/* ---------- responsive ---------- */

@media (min-width: 720px) {
  .footer__cols { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 900px) {
  :root { --nav-h: 72px; }

  .hero__grid { grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.72fr); }
  .hero__copy { max-width: none; }
  .hero__copy .lede { max-width: 42ch; }
  .device {
    width: auto;
    height: min(64dvh, 600px);
    max-width: min(100%, 470px);
    margin-inline: 0 0 0 auto;
  }

  .statement__grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); align-items: end; }

  /* asymmetric on purpose: the first value carries more weight */
  .values { grid-template-columns: 1.25fr 1fr 1fr; gap: clamp(1.5rem, 3vw, 3rem); }
  .value {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-block: 1.6rem 0;
  }
  .value:first-child { border-top: 1px solid var(--line); }

  .moments__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 1.8vw, 1.5rem);
  }
  .moment { gap: 1rem; }
  .moment__copy .h-item { max-width: 19ch; }

  .waitlist__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }

  .footer__top { grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); gap: 4rem; }
}

@media (max-width: 899px) {
  .nav__links { display: none; }
}

@media (max-width: 420px) {
  .nav__right .btn { padding-inline: 0.9rem; font-size: 0.875rem; }
}

/* ---------- reduced motion ---------- */

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

@media print {
  .nav, .setup-note, .theme-toggle { display: none !important; }
  .js .rv { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   MERE brand rebuild
   The legacy rules above continue to support the waitlist and universe.
   These rules establish the new surface and take precedence.
   ============================================================ */

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
  font-variation-settings: "wdth" 100, "wght" 400;
}

.shell {
  max-width: 1440px;
  padding-inline: clamp(1.25rem, 4.6vw, 4.5rem);
}

.band { padding-block: clamp(6rem, 12vw, 11rem); }

.h-display,
.h-section,
.h-statement {
  margin: 0;
  color: var(--ink);
  font-variation-settings: "wdth" 100, "wght" 500;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.h-display {
  font-size: clamp(3rem, 5.7vw, 5.8rem);
  line-height: 0.98;
}

.h-section {
  font-size: clamp(2.2rem, 4.4vw, 4.4rem);
  line-height: 1.02;
}

.h-statement {
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.98;
}

.lede {
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.55;
}

.nav {
  height: 72px;
}

.nav__in { gap: 2rem; }

.brand {
  flex: 0 0 auto;
  width: clamp(92px, 8vw, 118px);
  height: auto;
  line-height: 0;
}

.brand__wordmark {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

:root[data-theme="dark"] .brand__wordmark,
html.theme-dark .brand__wordmark {
  filter: invert(1);
  mix-blend-mode: screen;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .brand__wordmark {
    filter: invert(1);
    mix-blend-mode: screen;
  }
}

.nav__links {
  margin-left: auto;
  gap: clamp(1.25rem, 2.5vw, 2.75rem);
}

.nav__links a {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.nav__links a::after { background: var(--ink); }

.btn {
  border-radius: 12px;
  font-variation-settings: "wdth" 100, "wght" 600;
}

.btn:hover {
  --btn-bg: var(--accent);
  --btn-fg: #11110f;
}

.theme-toggle { border-radius: 12px; }

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0.65rem 0.2rem;
  color: var(--ink);
  font-weight: 500;
  text-decoration-color: var(--line);
  text-underline-offset: 0.35em;
  transition: text-decoration-color 0.2s ease;
}

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

.hero {
  min-height: 100dvh;
  padding-top: calc(var(--nav-h) + clamp(2.5rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: clip;
}

.hero__grid {
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2.5rem, 7vw, 7rem);
}

.hero__copy { max-width: 47rem; }

.hero__title { max-width: 14.5ch; }

.hero__lede {
  max-width: 45ch;
  margin-top: clamp(1.4rem, 2.7vw, 2.2rem);
}

.hero__cta {
  align-items: center;
  margin-top: clamp(1.8rem, 3.5vw, 2.8rem);
  gap: 1.25rem;
}

.device--hero {
  width: min(82vw, 430px);
  filter: drop-shadow(0 36px 60px rgba(17, 17, 15, 0.16));
}

.face__arrival {
  opacity: 1;
  transform-origin: center;
}

.js .face__arrival {
  animation: mere-arrive 1.1s var(--ease) both;
}

@keyframes mere-arrive {
  from { opacity: 0.12; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.belief {
  border-block: 1px solid var(--line);
  padding-block: clamp(8rem, 16vw, 15rem);
}

.belief__in { display: grid; }

.belief__in .h-statement { max-width: 12ch; }

.belief__in p {
  max-width: 34ch;
  margin-top: clamp(2rem, 4vw, 3.5rem);
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.4vw, 1.25rem);
}

.section-intro { max-width: 48rem; }

.section-intro p,
.manifesto__copy p,
.context__copy > p,
.waitlist__copy p {
  max-width: 56ch;
  margin-top: 1.5rem;
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 1.25vw, 1.18rem);
}

.system__sequence {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: clamp(4rem, 8vw, 7rem);
}

.system__item {
  padding-block: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}

.system__item h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.028em;
}

.system__item p {
  max-width: 23ch;
  margin-top: 0.85rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.context {
  border-block: 1px solid var(--line);
}

.context__grid {
  display: grid;
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

.context__visuals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(0.75rem, 1.8vw, 1.3rem);
}

.context__media,
.context__support {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: var(--well);
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4 / 3;
}

.context__media img,
.context__support img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.context__media img { object-position: 56% center; }

.context__support img {
  object-position: 62% center;
}

.context__copy { max-width: 35rem; }

.context__states {
  margin: clamp(2.5rem, 5vw, 4.25rem) 0 0;
}

.context__note {
  max-width: 34rem;
  margin-top: 2rem;
  color: var(--ink-faint);
  font-size: 0.88rem;
}

.context__note + .context__states { margin-top: 0.9rem; }

.context__states > div {
  display: grid;
  grid-template-columns: minmax(5rem, 0.7fr) minmax(0, 1.4fr);
  gap: 1.5rem;
  padding-block: 1rem;
  border-top: 1px solid var(--line);
}

.context__states dt { font-weight: 500; }
.context__states dd { margin: 0; color: var(--ink-soft); }

.manifesto { min-height: 82dvh; display: flex; align-items: center; }

.manifesto__grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

.manifesto__copy {
  max-width: 64rem;
  margin-inline: auto;
  text-align: center;
}

.manifesto__copy .h-section {
  max-width: 18ch;
  margin-inline: auto;
}

.manifesto__copy p { margin-inline: auto; }

.presence-trigger {
  position: relative;
  display: inline-block;
  width: 0.88em;
  height: 0.88em;
  margin: 0 0.015em 0 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  line-height: 0;
  vertical-align: -0.055em;
  cursor: pointer;
  transition: color 0.25s ease, transform 0.18s ease;
  appearance: none;
  touch-action: manipulation;
}

.presence-trigger::after {
  content: "";
  position: absolute;
  inset: -0.12em;
}

.presence-trigger:hover { color: var(--accent); }
.presence-trigger:active { transform: scale(0.98); }
.presence-trigger:focus-visible { outline-offset: 0.08em; }

.presence-trigger__mark {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: currentColor;
  -webkit-mask: url("../img/mere-presence-mark-orange.png") center / contain no-repeat;
  mask: url("../img/mere-presence-mark-orange.png") center / contain no-repeat;
  transition: opacity 0.2s ease, transform 0.35s var(--ease);
}

@keyframes manifesto-mark-scroll {
  0%, 24%, 76%, 100% { color: var(--ink); }
  45%, 55% { color: var(--accent); }
}

@supports (animation-timeline: view()) {
  .manifesto__lettermark {
    animation: manifesto-mark-scroll 1ms linear both;
    animation-timeline: view();
    animation-range: entry 8% exit 92%;
  }
}

:root[data-theme="dark"] .presence-trigger__mark,
html.theme-dark .presence-trigger__mark {
  filter: none;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .presence-trigger__mark {
    filter: none;
  }
}

.presence-trigger.is-preparing .presence-trigger__mark { transform: scale(0.97); }
.presence-trigger.is-entering .presence-trigger__mark { opacity: 0; transform: scale(0.08); }
.presence-trigger.is-returning-swap .presence-trigger__mark { transition: none; }

.universe-seed__mark {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: currentColor;
  -webkit-mask: url("../img/mere-presence-mark-orange.png") center / contain no-repeat;
  mask: url("../img/mere-presence-mark-orange.png") center / contain no-repeat;
}

:root[data-theme="dark"] .universe-seed__mark,
html.theme-dark .universe-seed__mark {
  filter: none;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .universe-seed__mark {
    filter: none;
  }
}

.waitlist {
  background: var(--well);
  border-block: 1px solid var(--line);
}

.waitlist__grid {
  display: grid;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.waitlist__copy { max-width: 38rem; }

.form {
  max-width: 36rem;
  gap: 1.2rem;
}

.field { gap: 0.5rem; }

.field > label {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
}

.field__hint {
  margin-left: 0.35rem;
  color: var(--ink-faint);
  font-weight: 400;
}

.input,
.select {
  min-height: 54px;
  border-radius: 12px;
  background: var(--paper);
}

.done { padding: 0; }

.done h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.done p { max-width: 38ch; margin-top: 1rem; color: var(--ink-soft); }

.faq-layout { display: grid; gap: clamp(3rem, 7vw, 7rem); }

.faq { max-width: none; margin: 0; }

.faq details { border-color: var(--line); }

.faq summary {
  padding-block: 1.35rem;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}

.faq__answer {
  max-width: 58ch;
  padding-bottom: 1.5rem;
  color: var(--ink-soft);
}

.footer {
  padding-block: clamp(4rem, 8vw, 7rem) 2.25rem;
}

.footer__in { display: grid; gap: clamp(3rem, 7vw, 6rem); }

.footer__brand p {
  max-width: 24ch;
  margin-top: 1.25rem;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem clamp(1.5rem, 3vw, 3rem);
}

.footer__nav a {
  color: var(--ink-soft);
  text-decoration: none;
}

.footer__nav a:hover { color: var(--ink); }

.footer__base {
  display: grid;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--ink-faint);
  font-size: 0.82rem;
}

.js .rv,
.js .rv.is-in {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (min-width: 760px) {
  .system__sequence {
    grid-template-columns: 1.2fr 1fr 0.8fr;
    column-gap: clamp(2rem, 5vw, 5rem);
  }

  .system__item { padding-right: 1rem; }

  .footer__base {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
  }

  .device--hero {
    width: min(100%, 470px);
    height: min(69dvh, 670px);
    max-width: 470px;
    justify-self: end;
  }

  .belief__in { grid-template-columns: minmax(0, 1.5fr) minmax(18rem, 0.5fr); }
  .belief__in p { align-self: end; margin: 0 0 0 auto; }

  .context__grid { grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr); }

  .manifesto__grid { grid-template-columns: minmax(0, 1fr); }

  .waitlist__grid { grid-template-columns: minmax(0, 1fr) minmax(26rem, 0.85fr); }
  .faq-layout { grid-template-columns: minmax(16rem, 0.65fr) minmax(0, 1.35fr); }
}

@media (max-width: 899px) {
  .nav { height: 64px; }
  .nav__links { display: none; }
  .hero { min-height: auto; padding-top: calc(64px + 4.25rem); }
  .hero__grid { gap: 3rem; }
  .device--hero { justify-self: center; }
  .belief__in p { margin-top: 2rem; }
}

@media (max-width: 560px) {
  .shell { padding-inline: 1.25rem; }
  .nav__right .btn { min-height: 42px; padding-inline: 0.85rem; }
  .brand { width: 88px; }
  .h-display { font-size: clamp(2.7rem, 13vw, 4rem); }
  .hero__title { max-width: 13.5ch; }
  .hero__cta { align-items: flex-start; }
  .belief { padding-block: 7rem; }
  .context__visuals { grid-template-columns: 1fr; gap: 1rem; }
  .context__media img { object-position: 58% center; }
  .context__support img { object-position: 62% center; }
  .context__states > div { grid-template-columns: 5rem 1fr; gap: 1rem; }
  .manifesto { min-height: auto; }
  .footer__nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  .js .face__arrival { animation: none; }
  .face__eye.is-blinking { animation: none; }
  .face__eye-slot.is-looking { animation: none; }
  .presence-trigger__mark { transition: none; }
  .manifesto__lettermark { animation: none; color: var(--ink); }
  .theme-wipe { display: none; }
  ::view-transition-old(root),
  ::view-transition-new(root) { animation: none !important; }
}
