@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/fonts/newsreader-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/fonts/newsreader-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  color-scheme: light;
  --paper-50: #fffdf8;
  --paper-100: #faf5eb;
  --paper-150: #f3ebdc;
  --paper-200: #e8ddca;
  --paper-300: #d6c7b3;
  --ink-900: #102a2d;
  --ink-800: #17383b;
  --ink-700: #225055;
  --ink-600: #345459;
  --ink-500: #566f73;
  --green-800: #064e3b;
  --green-700: #0c604c;
  --green-100: #dceae4;
  --blue-500: #6f90a4;
  --blue-100: #dfeaf0;
  --lavender-500: #8f86aa;
  --lavender-100: #ece7f1;
  --amber-500: #95651f;
  --amber-400: #c9944f;
  --amber-100: #f4dfbb;
  --white: #ffffff;
  --line: rgba(16, 42, 45, 0.14);
  --line-strong: rgba(16, 42, 45, 0.24);
  --surface: rgba(255, 253, 248, 0.78);
  --surface-solid: #fffdf8;
  --shadow-soft: 0 18px 50px rgba(16, 42, 45, 0.11);
  --shadow-crisp: 0 1px 0 rgba(16, 42, 45, 0.08), 0 22px 80px rgba(16, 42, 45, 0.12);
  --font-sans: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Newsreader", "Iowan Old Style", "New York", Georgia, "Times New Roman", serif;
  --container: 1180px;
  --container-wide: 1380px;
  --radius-card: 8px;
  --radius-control: 999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-quiet: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper-100);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(250, 245, 235, 0.95) 42rem, #f7efe4),
    repeating-linear-gradient(90deg, rgba(16, 42, 45, 0.025) 0 1px, transparent 1px 84px);
  color: var(--ink-900);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  opacity: 0.42;
  background:
    linear-gradient(115deg, rgba(213, 169, 106, 0.14), transparent 34%),
    linear-gradient(230deg, rgba(111, 144, 164, 0.12), transparent 44%),
    linear-gradient(0deg, rgba(255, 253, 248, 0), rgba(255, 253, 248, 0.88) 70%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(16, 42, 45, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 42, 45, 0.04) 1px, transparent 1px);
  background-size: 32px 32px, 32px 32px;
  mask-image: linear-gradient(180deg, black 0%, transparent 70%);
}

a {
  color: inherit;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  background: rgba(213, 169, 106, 0.28);
  color: var(--ink-900);
}

:focus-visible {
  outline: 2px solid var(--green-700);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  border: 1px solid var(--green-700);
  border-radius: var(--radius-control);
  background: var(--surface-solid);
  color: var(--green-800);
  padding: 0.75rem 1rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms var(--ease);
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 80;
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(255, 253, 248, 0.64));
  transition:
    background 280ms var(--ease),
    border-color 280ms var(--ease),
    box-shadow 280ms var(--ease),
    backdrop-filter 280ms var(--ease);
}

.site-header.is-condensed::before,
.legal-page .site-header::before {
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 10px 34px rgba(16, 42, 45, 0.07);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(100% - 32px, var(--container-wide));
  min-height: 88px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  transition: min-height 280ms var(--ease);
}

.site-header.is-condensed .header-inner,
.legal-page .header-inner {
  min-height: 68px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.68rem;
  min-height: 44px;
  color: var(--green-800);
  text-decoration: none;
}

.brand-mark {
  width: 30px;
  height: auto;
}

.brand-word {
  color: var(--green-800);
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.4rem, 1.4vw, 1.05rem);
}

.desktop-nav a,
.mobile-nav a,
.footer-links a,
.legal-toc a {
  text-decoration: none;
}

.desktop-nav a {
  border-radius: var(--radius-control);
  color: var(--ink-600);
  padding: 0.45rem 0.58rem;
  font-size: 0.86rem;
  font-weight: 800;
  transition:
    color 180ms var(--ease),
    background 180ms var(--ease);
}

.desktop-nav a:hover {
  background: rgba(6, 78, 59, 0.075);
  color: var(--green-800);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: rgba(255, 253, 248, 0.74);
  cursor: pointer;
  transition:
    background 180ms var(--ease),
    border-color 180ms var(--ease),
    transform 180ms var(--ease);
}

.menu-button:hover {
  border-color: var(--line-strong);
  background: var(--surface-solid);
}

.menu-button:active {
  transform: scale(0.96);
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--green-800);
  transition:
    transform 220ms var(--ease),
    opacity 180ms var(--ease);
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  top: 6px;
}

.menu-button[aria-expanded="true"] .menu-icon {
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-icon::before {
  transform: translateY(6px) rotate(90deg);
}

.menu-button[aria-expanded="true"] .menu-icon::after {
  opacity: 0;
}

.mobile-panel {
  position: fixed;
  top: 76px;
  right: 16px;
  left: 16px;
  z-index: 90;
  visibility: hidden;
  transform: translateY(-12px) scale(0.985);
  opacity: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  transition:
    opacity 240ms var(--ease),
    transform 240ms var(--ease),
    visibility 240ms var(--ease);
}

.mobile-panel.is-open {
  visibility: visible;
  transform: translateY(0) scale(1);
  opacity: 1;
}

.mobile-nav {
  display: grid;
  gap: 0.2rem;
  padding: 0.75rem;
}

.mobile-nav a {
  min-height: 46px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  color: var(--ink-800);
  padding: 0.7rem 0.85rem;
  font-weight: 850;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  background: rgba(6, 78, 59, 0.08);
  color: var(--green-800);
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  padding: 0.76rem 1.08rem;
  font-size: 0.9rem;
  font-weight: 880;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 160ms var(--ease),
    background 180ms var(--ease),
    border-color 180ms var(--ease),
    color 180ms var(--ease),
    box-shadow 180ms var(--ease);
}

.btn:active {
  transform: translateY(1px) scale(0.985);
}

.btn-primary {
  border-color: rgba(6, 78, 59, 0.22);
  background: var(--green-800);
  color: var(--paper-50);
  box-shadow: 0 12px 26px rgba(6, 78, 59, 0.16);
}

.btn-primary:hover {
  background: #043f31;
  box-shadow: 0 16px 34px rgba(6, 78, 59, 0.22);
}

.btn-secondary {
  border-color: rgba(6, 78, 59, 0.22);
  background: rgba(255, 253, 248, 0.72);
  color: var(--green-800);
}

.btn-secondary:hover {
  border-color: rgba(6, 78, 59, 0.36);
  background: var(--surface-solid);
}

.btn-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.section {
  position: relative;
  padding: clamp(4.8rem, 9vw, 8.2rem) 0;
}

.section-inner {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section-wide {
  width: min(100% - 32px, var(--container-wide));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--amber-500);
  font-size: 0.75rem;
  font-weight: 950;
  line-height: 1.25;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-kicker {
  margin: 0 0 0.85rem;
  color: var(--green-700);
  font-size: 0.82rem;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
.statement {
  color: var(--ink-900);
  font-family: var(--font-serif);
  font-weight: 680;
  letter-spacing: 0;
}

h1 {
  max-width: 930px;
  margin-bottom: 1.2rem;
  font-size: clamp(3rem, 6.1vw, 6.6rem);
  line-height: 0.94;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 5vw, 5.4rem);
  line-height: 0.99;
}

h3 {
  color: var(--ink-900);
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  line-height: 1.18;
}

.lead {
  max-width: 720px;
  color: var(--ink-600);
  font-size: clamp(1.06rem, 1.45vw, 1.22rem);
  line-height: 1.7;
}

.muted {
  color: var(--ink-500);
}

.hero {
  position: relative;
  min-height: min(940px, 100svh);
  padding: clamp(6.9rem, 8vw, 8.35rem) 0 clamp(3.2rem, 6vw, 5.6rem);
  overflow: clip;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.3), rgba(250, 245, 235, 0.78) 78%, rgba(247, 239, 228, 0.9)),
    linear-gradient(120deg, rgba(244, 223, 187, 0.62), transparent 34%),
    linear-gradient(240deg, rgba(223, 234, 240, 0.68), transparent 42%);
}

.hero::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 38%;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, transparent, rgba(255, 253, 248, 0.58)),
    repeating-linear-gradient(0deg, rgba(16, 42, 45, 0.04) 0 1px, transparent 1px 28px);
}

.ambient-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: none;
  opacity: 0.32;
  mix-blend-mode: multiply;
}

@media (min-width: 1600px) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .ambient-canvas {
    display: block;
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, var(--container-wide));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.78fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.85rem;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
  color: var(--ink-600);
  font-size: 0.9rem;
  font-weight: 800;
}

.trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-line span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-700);
  content: "";
}

.hero-note {
  max-width: 38rem;
  margin-top: 0.85rem;
  border: 1px solid rgba(16, 42, 45, 0.1);
  border-radius: var(--radius-card);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 8px 24px rgba(16, 42, 45, 0.055);
  padding: 0.72rem 0.85rem;
  color: var(--ink-600);
  font-size: 0.9rem;
}

.voice-ribbon {
  position: absolute;
  right: -7vw;
  bottom: 3vh;
  left: -8vw;
  z-index: 1;
  pointer-events: none;
  opacity: 0.88;
  mix-blend-mode: multiply;
}

.voice-ribbon path {
  fill: none;
  stroke-linecap: round;
}

.voice-ribbon .ribbon-glow {
  stroke: rgba(213, 169, 106, 0.2);
  stroke-width: 16;
  filter: blur(12px);
}

.voice-ribbon .ribbon-main {
  stroke: url(#ribbonGradient);
  stroke-width: 2.3;
  stroke-dasharray: 14 18;
  animation: ribbonTravel 26s linear infinite;
}

.voice-ribbon .ribbon-secondary {
  stroke: rgba(6, 78, 59, 0.2);
  stroke-width: 1;
  stroke-dasharray: 2 18;
  animation: ribbonTravel 36s linear infinite reverse;
}

@keyframes ribbonTravel {
  to {
    stroke-dashoffset: -360;
  }
}

.product-composition {
  position: relative;
  min-height: 650px;
  perspective: 1200px;
}

.phone-frame {
  position: absolute;
  right: clamp(0rem, 3vw, 2.2rem);
  top: 1.8rem;
  width: min(390px, 90vw);
  transform: rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transform-style: preserve-3d;
  border: 1px solid rgba(16, 42, 45, 0.18);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(232, 221, 202, 0.72)),
    var(--paper-100);
  box-shadow: var(--shadow-crisp);
  padding: 0.72rem;
  transition: transform 260ms var(--ease);
}

.phone-frame::before {
  position: absolute;
  inset: 13px;
  pointer-events: none;
  border: 1px solid rgba(16, 42, 45, 0.09);
  border-radius: 27px;
  content: "";
}

.phone-screen {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  border-radius: 27px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.88), rgba(250, 245, 235, 0.96)),
    linear-gradient(140deg, rgba(244, 223, 187, 0.58), transparent 38%),
    var(--paper-50);
  padding: 1.1rem;
}

.phone-screen::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: repeating-linear-gradient(180deg, transparent 0 31px, rgba(16, 42, 45, 0.035) 31px 32px);
}

.phone-screen > * {
  position: relative;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink-500);
  font-size: 0.74rem;
  font-weight: 900;
}

.screen-title {
  margin: 2.2rem 0 1rem;
  font-family: var(--font-serif);
  font-size: 2.15rem;
  line-height: 1;
}

.story-surface,
.playback-surface,
.consent-strip,
.device-choice {
  border: 1px solid rgba(16, 42, 45, 0.12);
  border-radius: var(--radius-card);
  background: rgba(255, 253, 248, 0.74);
}

.story-surface {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 1rem;
}

.story-surface::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(115deg, rgba(213, 169, 106, 0.2), transparent 42%),
    repeating-linear-gradient(180deg, transparent 0 28px, rgba(16, 42, 45, 0.06) 29px 30px);
}

.story-surface > * {
  position: relative;
}

.story-label,
.ui-label {
  margin: 0 0 0.45rem;
  color: var(--green-700);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-title {
  max-width: 14rem;
  margin: 0;
  color: var(--ink-900);
  font-family: var(--font-serif);
  font-size: 1.7rem;
  line-height: 1.08;
}

.story-meta {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  margin: 0;
  color: var(--ink-600);
  font-size: 0.85rem;
  font-weight: 800;
}

.device-choice {
  margin-top: 0.8rem;
  padding: 0.9rem;
}

.choice-row,
.playback-top,
.consent-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.voice-chip,
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: var(--radius-control);
  padding: 0.4rem 0.62rem;
  font-size: 0.75rem;
  font-weight: 900;
}

.voice-chip {
  background: var(--amber-100);
  color: #684514;
}

.status-chip {
  background: var(--green-100);
  color: var(--green-800);
}

.status-chip::before,
.voice-chip::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.playback-surface {
  margin-top: 0.8rem;
  padding: 0.95rem;
}

.play-button {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--green-800);
  color: var(--paper-50);
  box-shadow: 0 10px 24px rgba(6, 78, 59, 0.2);
}

.play-button[aria-pressed="true"] {
  background: var(--amber-500);
  color: var(--paper-50);
}

.play-button svg {
  width: 20px;
  height: 20px;
  margin-left: 2px;
}

.waveform {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 54px;
  margin-top: 1rem;
}

.waveform span {
  width: 5px;
  height: calc(12px + var(--h) * 1px);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green-700), var(--amber-400));
  opacity: 0.72;
  transform-origin: center;
  animation: wave 3s ease-in-out infinite;
  animation-delay: calc(var(--i) * -120ms);
  animation-play-state: paused;
}

.is-playing .waveform span,
.waveform.is-ambient span {
  animation-play-state: running;
}

@keyframes wave {
  0%,
  100% {
    transform: scaleY(0.78);
    opacity: 0.45;
  }

  50% {
    transform: scaleY(1.16);
    opacity: 0.9;
  }
}

.consent-strip {
  margin-top: 0.8rem;
  padding: 0.82rem 0.9rem;
  color: var(--ink-600);
  font-size: 0.83rem;
  font-weight: 800;
}

.demo-status {
  margin: 0.6rem 0 0;
  color: var(--ink-500);
  font-size: 0.78rem;
  font-weight: 800;
}

.floating-note {
  position: absolute;
  right: 58%;
  bottom: 5.5rem;
  width: min(260px, 52vw);
  display: none;
  border: 1px solid rgba(6, 78, 59, 0.2);
  border-radius: var(--radius-card);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  padding: 1rem;
}

.floating-note p {
  margin: 0;
  color: var(--ink-600);
  font-size: 0.88rem;
}

.floating-note strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink-900);
}

.scroll-cue {
  position: absolute;
  bottom: 1.45rem;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  color: var(--ink-500);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-cue::after {
  width: 1px;
  height: 42px;
  display: block;
  margin: 0.75rem auto 0;
  background: linear-gradient(180deg, rgba(6, 78, 59, 0.42), transparent);
  content: "";
}

.editorial-intro {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.52), rgba(232, 221, 202, 0.38), rgba(255, 253, 248, 0.62)),
    var(--paper-100);
}

.statement {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.55rem, 6vw, 6.25rem);
  line-height: 0.99;
}

.statement-support {
  max-width: 650px;
  margin: clamp(1.5rem, 3vw, 2.4rem) 0 0 auto;
  color: var(--ink-600);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.narrative-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 110px;
}

.steps-list {
  display: grid;
  gap: 1rem;
}

.step-row {
  position: relative;
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.25rem;
  border-top: 1px solid var(--line);
  padding: clamp(1.45rem, 3vw, 2.2rem) 0;
}

.step-number {
  color: var(--amber-500);
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  line-height: 0.9;
}

.step-row h3 {
  margin-bottom: 0.5rem;
}

.step-row p {
  max-width: 580px;
  margin-bottom: 0;
  color: var(--ink-600);
}

.step-ribbon {
  height: 46px;
  margin-top: 1.1rem;
  opacity: 0.86;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--line);
  box-shadow: 0 20px 70px rgba(16, 42, 45, 0.09);
}

.why-panel {
  position: relative;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background:
    var(--panel-art),
    linear-gradient(180deg, var(--paper-50), var(--paper-150));
  padding: clamp(1.25rem, 2.4vw, 2rem);
}

.why-panel::before {
  position: absolute;
  inset: 1rem;
  pointer-events: none;
  border: 1px solid rgba(16, 42, 45, 0.08);
  content: "";
}

.why-panel > * {
  position: relative;
}

.why-panel h3 {
  max-width: 13rem;
  margin-bottom: 0.65rem;
}

.why-panel p {
  margin-bottom: 0;
  color: var(--ink-600);
}

.product-section {
  overflow: clip;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.55), rgba(220, 234, 228, 0.36), rgba(255, 253, 248, 0.72)),
    var(--paper-100);
}

.product-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.experience-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 42, 45, 0.15);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(232, 221, 202, 0.58)),
    var(--paper-50);
  box-shadow: var(--shadow-crisp);
  padding: clamp(1rem, 2vw, 1.35rem);
}

.experience-frame::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(125deg, rgba(213, 169, 106, 0.15), transparent 36%, rgba(111, 144, 164, 0.1)),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(16, 42, 45, 0.035) 34px 35px);
}

.experience-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 1rem;
}

.library-pane,
.player-pane,
.safety-pane {
  border: 1px solid rgba(16, 42, 45, 0.12);
  border-radius: var(--radius-card);
  background: rgba(255, 253, 248, 0.76);
  padding: 1rem;
}

.library-pane {
  display: grid;
  gap: 0.75rem;
}

.story-option {
  border: 1px solid rgba(16, 42, 45, 0.1);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.62);
  padding: 0.85rem;
}

.story-option.is-selected {
  border-color: rgba(6, 78, 59, 0.35);
  background: rgba(220, 234, 228, 0.76);
}

.story-option p {
  margin: 0.25rem 0 0;
  color: var(--ink-500);
  font-size: 0.83rem;
}

.player-pane {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.player-heading {
  max-width: 26rem;
}

.player-heading h3 {
  margin-bottom: 0.6rem;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 3.15rem);
}

.player-heading p {
  color: var(--ink-600);
}

.experience-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.status-cell {
  border-top: 1px solid rgba(16, 42, 45, 0.12);
  padding-top: 0.85rem;
}

.status-cell strong {
  display: block;
  color: var(--ink-900);
  font-size: 0.94rem;
}

.status-cell span {
  color: var(--ink-500);
  font-size: 0.82rem;
}

.experience-frame .waveform {
  max-width: 420px;
}

.safety-pane {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.safety-pane p {
  margin: 0;
  color: var(--ink-600);
}

.safety-pane strong {
  color: var(--ink-900);
}

.trust-principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--line);
  box-shadow: 0 20px 70px rgba(16, 42, 45, 0.08);
}

.trust-principles .principle:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.principle {
  min-height: 180px;
  background:
    linear-gradient(160deg, rgba(255, 253, 248, 0.95), rgba(243, 235, 220, 0.76)),
    var(--paper-50);
  padding: clamp(1.15rem, 2vw, 1.7rem);
}

.principle h3 {
  margin-bottom: 0.55rem;
  font-size: 1.18rem;
}

.principle p {
  margin: 0;
  color: var(--ink-600);
}

.principle-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(6, 78, 59, 0.22);
  border-radius: 50%;
  color: var(--green-800);
  background: rgba(220, 234, 228, 0.6);
}

.principle-mark svg {
  width: 17px;
  height: 17px;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.text-link {
  color: var(--green-800);
  font-weight: 850;
  text-decoration-color: rgba(6, 78, 59, 0.35);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28em;
}

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

.beta-band {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(220, 234, 228, 0.82), rgba(244, 223, 187, 0.48), rgba(236, 231, 241, 0.56)),
    var(--paper-150);
}

.beta-inner {
  width: min(100% - 32px, var(--container-wide));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(2.4rem, 5vw, 4.2rem) 0;
}

.beta-inner h2 {
  max-width: 850px;
}

.beta-inner p {
  max-width: 760px;
  color: var(--ink-600);
}

.faq-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 2rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 8px 26px rgba(16, 42, 45, 0.045);
}

.faq-button {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: transparent;
  padding: 1rem 1.2rem;
  color: var(--ink-900);
  font-weight: 880;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 8px;
  left: 1px;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--green-800);
  content: "";
  transition: transform 180ms var(--ease);
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-button[aria-expanded="true"] .faq-icon::after {
  transform: rotate(0deg);
}

.faq-panel {
  overflow: hidden;
  max-height: none;
  opacity: 1;
}

.js .faq-panel {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    max-height 280ms var(--ease),
    opacity 220ms var(--ease),
    visibility 220ms var(--ease);
}

.js .faq-panel.is-open {
  opacity: 1;
  visibility: visible;
}

.faq-panel p {
  max-width: 820px;
  margin: 0;
  padding: 0 1.2rem 1.2rem;
  color: var(--ink-600);
}

.final-cta {
  min-height: 70svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.72), rgba(220, 234, 228, 0.48)),
    var(--paper-100);
}

.final-cta .section-inner {
  position: relative;
}

.final-mark {
  width: min(190px, 44vw);
  margin: 0 auto 2rem;
  opacity: 0.86;
}

.final-cta h2 {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.final-cta p {
  max-width: 640px;
  margin: 0 auto 1.7rem;
  color: var(--ink-600);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #f2e7d6;
  color: var(--ink-900);
}

.footer-inner {
  width: min(100% - 32px, var(--container-wide));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1fr);
  gap: 2rem;
  padding: 2rem 0;
}

.footer-brand p {
  max-width: 420px;
  margin: 0.9rem 0 0;
  color: var(--ink-600);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem 1.25rem;
  color: var(--ink-600);
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--green-800);
}

.footer-bottom {
  width: min(100% - 32px, var(--container-wide));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(16, 42, 45, 0.12);
  padding: 1.2rem 0 2rem;
  color: var(--ink-500);
  font-size: 0.84rem;
}

.reveal {
  opacity: 1;
}

.js .reveal {
  transform: translateY(22px);
  opacity: 0;
  transition:
    opacity 720ms var(--ease-quiet),
    transform 720ms var(--ease-quiet);
}

.js .reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.hero .reveal:nth-child(2) {
  transition-delay: 80ms;
}

.hero .reveal:nth-child(3) {
  transition-delay: 150ms;
}

.hero .reveal:nth-child(4) {
  transition-delay: 220ms;
}

.legal-page {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(250, 245, 235, 0.96) 28rem, #f7efe4 28rem),
    var(--paper-100);
  color: var(--ink-900);
}

.legal-page::before,
.legal-page::after {
  opacity: 0.16;
}

.legal-hero {
  padding: 8.2rem 0 3rem;
  color: var(--ink-900);
  background:
    linear-gradient(125deg, rgba(220, 234, 228, 0.64), transparent 40%),
    linear-gradient(240deg, rgba(244, 223, 187, 0.48), transparent 46%);
}

.legal-hero-inner,
.legal-shell {
  width: min(100% - 32px, 1080px);
  margin: 0 auto;
}

.legal-hero h1 {
  max-width: 820px;
  margin-bottom: 0.8rem;
  color: var(--ink-900);
  font-size: clamp(3rem, 7vw, 6.4rem);
}

.legal-hero p {
  max-width: 760px;
  color: var(--ink-600);
}

.updated {
  color: var(--amber-500) !important;
  font-weight: 850;
}

.legal-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
  padding: 2.5rem 0 5rem;
}

.legal-toc {
  position: sticky;
  top: 96px;
  border: 1px solid rgba(16, 42, 45, 0.14);
  border-radius: var(--radius-card);
  background: rgba(255, 253, 248, 0.82);
  padding: 1rem;
}

.legal-toc p {
  margin: 0 0 0.75rem;
  color: var(--ink-500);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-toc a {
  display: block;
  border-radius: 6px;
  color: var(--ink-700);
  padding: 0.35rem 0.45rem;
  font-size: 0.86rem;
  font-weight: 780;
}

.legal-toc a:hover {
  background: rgba(6, 78, 59, 0.08);
  color: var(--green-800);
}

.legal-content {
  border: 1px solid rgba(16, 42, 45, 0.13);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 18px 50px rgba(16, 42, 45, 0.09);
  padding: clamp(1.25rem, 3vw, 2.3rem);
}

.legal-content section {
  border-bottom: 1px solid rgba(16, 42, 45, 0.13);
  padding: 1.7rem 0;
}

.legal-content section:first-child {
  padding-top: 0;
}

.legal-content section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.legal-content h2 {
  margin: 0 0 0.75rem;
  color: var(--ink-900);
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1.1;
}

.legal-content p {
  margin: 0.8rem 0 0;
  color: #263f43;
}

.legal-content ul {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
}

.legal-content li {
  color: #263f43;
}

.legal-content li + li {
  margin-top: 0.45rem;
}

.legal-content a {
  color: var(--green-800);
  font-weight: 850;
  text-underline-offset: 0.22em;
}

.not-found {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 8rem 1rem 4rem;
  text-align: center;
}

.not-found h1 {
  margin-right: auto;
  margin-left: auto;
}

.not-found p {
  max-width: 620px;
  margin: 0 auto 1.5rem;
  color: var(--ink-600);
}

.launch-page {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 12% 12%, rgba(244, 223, 187, 0.72), transparent 34rem),
    radial-gradient(ellipse at 88% 10%, rgba(220, 234, 228, 0.84), transparent 32rem),
    linear-gradient(180deg, #fffdf8 0%, #faf5eb 58%, #f2e7d6 100%);
}

.js .launch-page .reveal,
.launch-page .reveal {
  transform: none;
  opacity: 1;
  transition: none;
}

.launch-page::before {
  opacity: 0.32;
}

.launch-page::after {
  opacity: 0.14;
}

.launch-header::before {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.95), rgba(255, 253, 248, 0.64));
}

.launch-main {
  overflow: clip;
}

.launch-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: clamp(7rem, 9vw, 9rem) 0 clamp(4rem, 7vw, 6rem);
}

.launch-hero::before {
  position: absolute;
  inset: 88px 0 auto;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(16, 42, 45, 0.12), transparent);
}

.launch-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 32%;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, transparent, rgba(250, 245, 235, 0.92)),
    repeating-linear-gradient(0deg, rgba(16, 42, 45, 0.04) 0 1px, transparent 1px 30px);
}

.launch-ribbon {
  position: absolute;
  right: -8vw;
  bottom: 7vh;
  left: -8vw;
  z-index: 1;
  pointer-events: none;
  opacity: 0.86;
  mix-blend-mode: multiply;
}

.launch-ribbon path {
  fill: none;
  stroke-linecap: round;
}

.launch-ribbon-glow {
  stroke: rgba(213, 169, 106, 0.18);
  stroke-width: 26;
  filter: blur(12px);
}

.launch-ribbon-line {
  stroke: url(#launchRibbonGradient);
  stroke-width: 2.4;
  stroke-dasharray: 14 20;
  animation: ribbonTravel 28s linear infinite;
}

.launch-hero-inner {
  position: relative;
  z-index: 3;
  width: min(100% - 32px, var(--container-wide));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.54fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.launch-copy h1 {
  max-width: 980px;
  margin-bottom: 1.2rem;
  font-size: clamp(3.35rem, 7.3vw, 7.6rem);
  line-height: 0.92;
}

.launch-copy .lead {
  max-width: 760px;
}

.launch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.launch-trust {
  margin: 1.25rem 0 0;
  color: var(--ink-600);
  font-size: 0.94rem;
  font-weight: 850;
}

.launch-countdown-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 42, 45, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(150deg, rgba(255, 253, 248, 0.96), rgba(244, 223, 187, 0.42)),
    var(--paper-50);
  box-shadow: var(--shadow-crisp);
  padding: clamp(1.2rem, 3vw, 2rem);
}

.launch-countdown-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, rgba(6, 78, 59, 0.1), transparent 34%),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(16, 42, 45, 0.04) 38px 39px);
}

.launch-countdown-panel > * {
  position: relative;
}

.panel-kicker {
  margin: 0 0 0.7rem;
  color: var(--green-700);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.launch-countdown-panel h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.4rem, 4vw, 4.1rem);
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.countdown-cell {
  min-height: 118px;
  display: grid;
  align-content: center;
  border: 1px solid rgba(16, 42, 45, 0.11);
  border-radius: var(--radius-card);
  background: rgba(255, 253, 248, 0.72);
  padding: 1rem;
}

.countdown-cell strong {
  display: block;
  color: var(--green-800);
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.countdown-cell span {
  margin-top: 0.5rem;
  color: var(--ink-600);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-date {
  margin: 1rem 0 0;
  color: var(--ink-600);
  font-size: 0.9rem;
  font-weight: 780;
}

.launch-editorial {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.76), rgba(220, 234, 228, 0.42)),
    var(--paper-100);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.launch-editorial-inner {
  width: min(100% - 32px, var(--container-wide));
  margin: 0 auto;
}

.launch-editorial h2 {
  max-width: 960px;
}

.launch-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--line);
  box-shadow: 0 20px 70px rgba(16, 42, 45, 0.075);
}

.launch-notes article {
  min-height: 250px;
  background:
    linear-gradient(155deg, rgba(255, 253, 248, 0.98), rgba(243, 235, 220, 0.78)),
    var(--paper-50);
  padding: clamp(1.2rem, 2.4vw, 2rem);
}

.launch-notes span {
  display: block;
  margin-bottom: 2.2rem;
  color: var(--amber-500);
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.9;
}

.launch-notes h3 {
  margin-bottom: 0.55rem;
}

.launch-notes p {
  margin: 0;
  color: var(--ink-600);
}

.launch-footer {
  background: #f6ecdc;
}

.gate-page {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse at 18% 8%, rgba(244, 223, 187, 0.82), transparent 30rem),
    radial-gradient(ellipse at 88% 12%, rgba(220, 234, 228, 0.92), transparent 34rem),
    linear-gradient(180deg, #fffdf8 0%, #faf5eb 54%, #efe2cf 100%);
}

.gate-page::before {
  opacity: 0.38;
}

.gate-page::after {
  opacity: 0.13;
}

.gate-main {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  isolation: isolate;
  padding: clamp(1rem, 2.5vw, 2rem);
}

.full-site-preview {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  filter: blur(5px);
  opacity: 0.58;
  transform: scale(1.018);
}

.full-site-preview::before {
  position: absolute;
  inset: 0;
  z-index: 4;
  content: "";
  background:
    radial-gradient(ellipse at center, rgba(255, 253, 248, 0.42), rgba(255, 253, 248, 0.8) 48%, rgba(255, 253, 248, 0.92) 100%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.24), rgba(250, 245, 235, 0.86));
}

.preview-header {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(16, 42, 45, 0.12);
  padding: 0 clamp(1.2rem, 4vw, 4.5rem);
}

.preview-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--green-800);
  font-family: var(--font-serif);
  font-size: 1.24rem;
  font-weight: 760;
}

.preview-brand img {
  width: 30px;
  height: auto;
}

.preview-nav {
  display: flex;
  gap: 2rem;
}

.preview-nav span {
  width: 86px;
  height: 10px;
  border-radius: 999px;
  background: rgba(16, 42, 45, 0.18);
}

.preview-hero {
  min-height: 670px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.48fr);
  align-items: center;
  gap: 5vw;
  padding: 4.5rem clamp(1.2rem, 4vw, 4.5rem);
}

.preview-copy p {
  color: var(--amber-500);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.preview-copy h2 {
  max-width: 820px;
  margin-bottom: 2rem;
  font-size: clamp(4rem, 8vw, 7.6rem);
  line-height: 0.92;
}

.preview-lines {
  display: grid;
  gap: 0.8rem;
  width: min(680px, 84%);
}

.preview-lines span {
  height: 12px;
  border-radius: 999px;
  background: rgba(16, 42, 45, 0.16);
}

.preview-lines span:nth-child(2) {
  width: 88%;
}

.preview-lines span:nth-child(3) {
  width: 62%;
}

.preview-device {
  border: 1px solid rgba(16, 42, 45, 0.16);
  border-radius: 34px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: var(--shadow-crisp);
  padding: 0.72rem;
}

.preview-device-screen {
  min-height: 520px;
  border-radius: 27px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(250, 245, 235, 0.98)),
    repeating-linear-gradient(180deg, transparent 0 31px, rgba(16, 42, 45, 0.055) 31px 32px);
  padding: 1.4rem;
}

.preview-device-screen span {
  display: block;
  width: 46%;
  height: 10px;
  border-radius: 999px;
  background: rgba(6, 78, 59, 0.22);
}

.preview-device-screen strong {
  display: block;
  margin: 3rem 0 1.4rem;
  color: var(--ink-900);
  font-family: var(--font-serif);
  font-size: 2.4rem;
  line-height: 1;
}

.preview-device-screen div {
  height: 112px;
  margin-top: 0.8rem;
  border: 1px solid rgba(16, 42, 45, 0.12);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.54);
}

.preview-bands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-top: 1px solid rgba(16, 42, 45, 0.1);
  background: rgba(16, 42, 45, 0.1);
}

.preview-bands article {
  min-height: 300px;
  background:
    linear-gradient(160deg, rgba(255, 253, 248, 0.98), rgba(243, 235, 220, 0.72)),
    var(--paper-50);
}

.gate-ribbon {
  position: fixed;
  right: -12vw;
  bottom: 6vh;
  left: -12vw;
  z-index: 1;
  pointer-events: none;
  opacity: 0.72;
  mix-blend-mode: multiply;
}

.gate-ribbon path {
  fill: none;
  stroke-linecap: round;
}

.gate-ribbon-glow {
  stroke: rgba(213, 169, 106, 0.24);
  stroke-width: 34;
  filter: blur(16px);
}

.gate-ribbon-line {
  stroke: url(#gateRibbonGradient);
  stroke-width: 2.6;
  stroke-dasharray: 14 20;
  animation: ribbonTravel 30s linear infinite;
}

.gate-card {
  position: relative;
  z-index: 3;
  width: min(100%, 760px);
  overflow: hidden;
  border: 1px solid rgba(16, 42, 45, 0.16);
  border-radius: 26px;
  background:
    linear-gradient(150deg, rgba(255, 253, 248, 0.94), rgba(250, 245, 235, 0.86)),
    rgba(255, 253, 248, 0.9);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.86) inset,
    0 34px 120px rgba(16, 42, 45, 0.18),
    0 14px 40px rgba(6, 78, 59, 0.08);
  padding: clamp(1.35rem, 4vw, 3rem);
  text-align: center;
  backdrop-filter: blur(24px);
}

.gate-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(ellipse at 50% 0%, rgba(244, 223, 187, 0.52), transparent 24rem),
    repeating-linear-gradient(90deg, transparent 0 40px, rgba(16, 42, 45, 0.035) 40px 41px);
}

.gate-logo-mark {
  width: 46px;
  height: auto;
  margin: 0 auto 0.35rem;
}

.gate-brand {
  margin: 0;
  color: var(--green-800);
  font-family: var(--font-serif);
  font-size: 1.32rem;
  font-weight: 760;
  line-height: 1;
}

.gate-eyebrow {
  margin: 1.8rem 0 0.8rem;
  color: var(--amber-500);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gate-card h1 {
  max-width: 640px;
  margin: 0 auto 0.9rem;
  font-size: clamp(2.45rem, 6vw, 5rem);
  line-height: 0.96;
}

.gate-copy {
  max-width: 500px;
  margin: 0 auto;
  color: var(--ink-600);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.gate-countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: clamp(1.5rem, 3vw, 2.2rem);
}

.gate-time-cell {
  min-height: 132px;
  display: grid;
  align-content: center;
  border: 1px solid rgba(16, 42, 45, 0.12);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.74);
  box-shadow: 0 10px 28px rgba(16, 42, 45, 0.055);
  padding: 0.9rem 0.65rem;
}

.gate-time-cell strong {
  display: block;
  color: var(--green-800);
  font-family: var(--font-serif);
  font-size: clamp(2.45rem, 6vw, 4.5rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.gate-time-cell span {
  margin-top: 0.55rem;
  color: var(--ink-600);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.gate-date {
  margin: 1.2rem 0 0;
  color: var(--ink-600);
  font-size: 0.88rem;
  font-weight: 780;
}

.gate-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.45rem;
}

.gate-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 1rem;
  margin-top: 1rem;
  color: var(--ink-600);
  font-size: 0.86rem;
  font-weight: 820;
}

.gate-legal-links a {
  text-decoration-color: rgba(6, 78, 59, 0.28);
  text-underline-offset: 0.25em;
}

.gate-legal-links a:hover {
  color: var(--green-800);
}

.gate-principles {
  position: fixed;
  right: 1.2rem;
  bottom: 1rem;
  left: 1.2rem;
  z-index: 3;
  margin: 0;
  color: rgba(16, 42, 45, 0.58);
  font-size: 0.82rem;
  font-weight: 850;
  text-align: center;
}

@media (max-width: 1020px) {
  .desktop-nav,
  .header-actions .btn-primary {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero-inner,
  .narrative-grid,
  .product-stage,
  .experience-layout,
  .launch-hero-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .phone-frame {
    right: 50%;
    transform: translateX(50%);
  }

  .floating-note {
    right: auto;
    left: 4%;
  }

  .sticky-copy {
    position: relative;
    top: auto;
  }

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

  .why-panel {
    min-height: 300px;
  }

  .beta-inner,
  .footer-inner,
  .legal-shell,
  .launch-notes {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .preview-nav {
    display: none;
  }

  .preview-hero {
    grid-template-columns: 1fr;
  }

  .preview-device {
    width: min(360px, 60vw);
    margin-left: auto;
    opacity: 0.68;
  }

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

  .launch-copy h1 {
    max-width: 820px;
  }

  .legal-toc {
    display: none;
  }
}

@media (max-width: 760px) {
  body {
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(250, 245, 235, 0.94)),
      var(--paper-100);
  }

  .header-inner {
    width: min(100% - 24px, var(--container-wide));
    min-height: 72px;
  }

  .site-header.is-condensed .header-inner,
  .legal-page .header-inner {
    min-height: 64px;
  }

  .brand-word {
    font-size: 1.05rem;
  }

  .brand-mark {
    width: 26px;
  }

  .section {
    padding: clamp(3.6rem, 14vw, 5.4rem) 0;
  }

  .section-inner,
  .section-wide,
  .hero-inner,
  .footer-inner,
  .footer-bottom,
  .beta-inner,
  .legal-hero-inner,
  .legal-shell,
  .launch-hero-inner,
  .launch-editorial-inner {
    width: min(100% - 24px, var(--container));
  }

  h1 {
    font-size: clamp(2.85rem, 14.5vw, 4.65rem);
  }

  h2,
  .statement {
    font-size: clamp(2.1rem, 10.5vw, 4rem);
  }

  .hero {
    padding-top: 6.6rem;
  }

  .launch-hero {
    padding-top: 6.8rem;
  }

  .launch-copy h1 {
    font-size: clamp(2.75rem, 13.2vw, 4.3rem);
  }

  .launch-copy .lead {
    font-size: 1rem;
    line-height: 1.62;
  }

  .launch-trust {
    display: none;
  }

  .hero-actions,
  .inline-links,
  .launch-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .inline-links .btn,
  .gate-actions .btn,
  .beta-inner .btn,
  .final-cta .btn,
  .launch-actions .btn {
    width: 100%;
  }

  .trust-line {
    display: grid;
    gap: 0.45rem;
  }

  .hero-note {
    margin-top: 1.55rem;
  }

  .voice-ribbon {
    right: -38vw;
    bottom: 22rem;
    left: -32vw;
    opacity: 0.5;
  }

  .launch-ribbon {
    right: -42vw;
    bottom: 28rem;
    left: -38vw;
    opacity: 0.44;
  }

  .launch-countdown-panel {
    padding: 1rem;
  }

  .countdown-grid {
    gap: 0.55rem;
  }

  .countdown-cell {
    min-height: 96px;
    padding: 0.8rem;
  }

  .launch-notes article {
    min-height: auto;
  }

  .launch-notes span {
    margin-bottom: 1.2rem;
  }

  .ambient-canvas {
    display: none;
  }

  .product-composition {
    min-height: 600px;
  }

  .phone-frame {
    width: min(350px, 100%);
  }

  .phone-screen {
    min-height: 560px;
  }

  .floating-note {
    bottom: 1.4rem;
    width: calc(100% - 2rem);
  }

  .scroll-cue {
    display: none;
  }

  .step-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .step-number {
    font-size: 2.2rem;
  }

  .status-grid,
  .trust-principles {
    grid-template-columns: 1fr;
  }

  .safety-pane {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-hero {
    padding-top: 7.2rem;
  }

  .legal-content {
    border-radius: var(--radius-card);
    padding: 1rem;
  }

  .footer-bottom {
    display: grid;
  }

  .gate-main {
    min-height: 100svh;
    align-items: start;
    padding: 5.7rem 0.75rem 3.8rem;
  }

  .preview-header {
    height: 72px;
    padding: 0 1rem;
  }

  .preview-hero {
    padding: 2.2rem 1rem;
  }

  .preview-copy h2 {
    font-size: clamp(3.2rem, 17vw, 5.2rem);
  }

  .preview-device,
  .preview-bands {
    display: none;
  }

  .gate-card {
    border-radius: 20px;
    padding: 1.1rem;
  }

  .gate-logo-mark {
    width: 38px;
  }

  .gate-eyebrow {
    margin-top: 1.25rem;
  }

  .gate-card h1 {
    font-size: clamp(2.18rem, 10.5vw, 3.45rem);
  }

  .gate-copy {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .gate-countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .gate-time-cell {
    min-height: 102px;
    border-radius: 12px;
  }

  .gate-actions {
    flex-direction: column;
  }

  .gate-legal-links {
    gap: 0.45rem 0.8rem;
  }

  .gate-ribbon {
    right: -52vw;
    bottom: 8rem;
    left: -52vw;
    opacity: 0.42;
  }

  .gate-principles {
    font-size: 0.75rem;
  }
}

@media (max-width: 390px) {
  .btn {
    padding-right: 0.9rem;
    padding-left: 0.9rem;
    font-size: 0.86rem;
  }

  .phone-screen {
    padding: 0.85rem;
  }

  .screen-title {
    font-size: 1.95rem;
  }

  .waveform span {
    width: 4px;
  }
}

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

  .ambient-canvas {
    display: none;
  }

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

  .voice-ribbon .ribbon-main,
  .voice-ribbon .ribbon-secondary,
  .waveform span {
    animation: none !important;
  }

  .phone-frame {
    transform: none !important;
  }
}

@media (max-width: 1020px) and (prefers-reduced-motion: reduce) {
  .phone-frame {
    transform: translateX(50%) !important;
  }
}

@media print {
  html,
  body,
  .legal-page {
    background: #ffffff !important;
    color: #000000 !important;
  }

  .site-header,
  .site-footer,
  .legal-toc,
  .skip-link {
    display: none !important;
  }

  .legal-hero,
  .legal-shell {
    width: 100%;
    padding: 0;
  }

  .legal-hero h1,
  .legal-hero p,
  .legal-content h2,
  .legal-content p,
  .legal-content li {
    color: #000000 !important;
  }

  .legal-content {
    border: 0;
    box-shadow: none;
    padding: 0;
  }
}
