:root {
  color-scheme: dark;
  --canvas: #06080a;
  --canvas-soft: #0a0d10;
  --surface: #0e1215;
  --surface-raised: #14191d;
  --parchment: #f2e8c8;
  --ink: #f7f2e3;
  --muted: #a5adb0;
  --quiet: #737c80;
  --gold: #c99346;
  --gold-bright: #e0b56d;
  --teal: #5fae89;
  --hairline: rgba(233, 239, 235, 0.13);
  --hairline-strong: rgba(233, 239, 235, 0.22);
  --room-light: 96 74 154;
  --room-evidence: 168 120 210;
  --room-ground: #0c0814;
  --room-art-opacity: 0.42;
  --nav-weight: 520;
  --ease-out-strong: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out-strong: cubic-bezier(0.645, 0.045, 0.355, 1);
  /* Film grain. A flat near-black field reads as a dead screen at this page length. */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  --content: 74rem;
  --reading: 43rem;
  --gutter: clamp(1rem, 4.5vw, 2.5rem);
  --radius-sm: 0.75rem;
  --radius: 1.25rem;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  --serif: ui-serif, "New York", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  /* One scale, no arbitrary values. */
  --z-grain: 1;
  --z-header: 50;
  --z-nav: 60;
  --z-skip: 100;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--canvas); overflow-x: clip; }
body {
  margin: 0;
  min-width: 20rem;
  overflow-x: clip;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::after {
  content: "";
  position: fixed;
  z-index: var(--z-grain);
  inset: 0;
  background-image: var(--grain);
  opacity: 0.055;
  pointer-events: none;
}
img { display: block; max-width: 100%; height: auto; }
figure { margin: 0; }
a { color: inherit; text-underline-offset: 0.2em; }
button, input { font: inherit; }
button, a, summary { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
[hidden] { display: none !important; }

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  color: var(--parchment);
  font-family: var(--serif);
  font-weight: 500;
  text-wrap: balance;
}
h1 {
  max-width: 9ch;
  margin-bottom: 1rem;
  font-size: clamp(2.75rem, 14.5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.052em;
}
h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(2.375rem, 11vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.038em;
}
p { color: var(--muted); }
strong { color: var(--parchment); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: var(--z-skip);
  left: 1rem;
  top: 0.5rem;
  transform: translateY(-160%);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--parchment);
  color: var(--canvas);
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }
/* Neutral, not brand gold: a gold ring on the gold CTA was nearly invisible. */
:focus-visible { outline: 3px solid #f4f7f5; outline-offset: 4px; }
/* These headings receive focus only to announce a new story state; they are not controls. */
h2[tabindex="-1"]:focus-visible { outline: none; }
::selection { background: rgba(242, 232, 200, 0.24); color: var(--ink); }
/* The sticky header is 4.25rem tall; without this every nav jump lands underneath it. */
[id] { scroll-margin-top: 5.5rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  border-bottom: 1px solid var(--hairline);
  background: rgba(6, 8, 10, 0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.site-header::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: auto 0 -1.25rem;
  height: 1.25rem;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 147, 70, 0.18), rgba(61, 112, 108, 0.07) 42%, transparent 72%);
  opacity: 0.72;
  pointer-events: none;
}
.header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 4.25rem;
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: 0.65rem var(--gutter);
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.brand {
  display: inline-flex;
  min-width: 0;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.625rem;
  color: var(--parchment);
  font-weight: 600;
  letter-spacing: -0.018em;
  text-decoration: none;
}
.brand img {
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.72rem;
  box-shadow: 0 0 0 1px rgba(242, 232, 200, 0.14), 0 0 1.4rem rgba(201, 147, 70, 0.16);
}
.brand span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.menu-toggle {
  flex: 0 0 auto;
  display: grid;
  width: 2.75rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0;
  place-items: center;
  border: 1px solid var(--hairline-strong);
  border-radius: 50%;
  background: var(--surface);
  color: var(--parchment);
  font-weight: var(--nav-weight);
}
.menu-icon {
  display: grid;
  width: 1.125rem;
  gap: 0.25rem;
}
.menu-icon-line {
  display: block;
  width: 100%;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
}
.primary-nav {
  position: fixed;
  z-index: var(--z-nav);
  inset: 4.7rem var(--gutter) auto;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.65rem;
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius);
  background: #0c1013;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.52);
}
.primary-nav.is-open { display: flex; }
.primary-nav a {
  display: flex;
  min-height: 2.875rem;
  padding: 0.55rem 0.75rem;
  align-items: center;
  border-radius: 0.7rem;
  color: var(--muted);
  font-weight: var(--nav-weight);
  text-decoration: none;
}
.primary-nav .nav-cta {
  justify-content: center;
  border: 1px solid transparent;
  background:
    linear-gradient(#11171a, #090d10) padding-box,
    linear-gradient(115deg, rgba(224, 181, 109, 0.78), rgba(65, 129, 122, 0.9), rgba(224, 181, 109, 0.48)) border-box;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 0 1.4rem rgba(65, 129, 122, 0.2);
  color: var(--parchment);
}

.section-shell {
  width: min(100%, var(--content));
  margin-inline: auto;
  padding: clamp(2.75rem, 10vw, 4.5rem) var(--gutter);
}
.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 680;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}
.button {
  display: inline-flex;
  min-height: 3.25rem;
  max-width: 100%;
  padding: 0.8rem 1.125rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
.button-gold { border-color: transparent; background: var(--gold); color: #080a0c; }
.button-launch {
  border-color: transparent;
  background:
    linear-gradient(#12191c, #080c0f) padding-box,
    linear-gradient(115deg, rgba(224, 181, 109, 0.82), rgba(65, 129, 122, 0.94), rgba(224, 181, 109, 0.5)) border-box;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.09), 0 0 1.5rem rgba(65, 129, 122, 0.22);
  color: var(--parchment);
}
.button-muted { background: var(--surface); color: var(--parchment); }

/* Real supplied device hardware wraps every product capture. */
.iphone-device {
  position: relative;
  aspect-ratio: 720 / 1410;
}
.iphone-device::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 12% -18%;
  border-radius: 50%;
  background: radial-gradient(ellipse, var(--device-halo, transparent), transparent 68%);
  pointer-events: none;
}
.iphone-screen-window {
  position: absolute;
  z-index: 1;
  inset: 3% 5.9% 2.6% 5.3%;
  overflow: hidden;
  border-radius: 11% / 5.4%;
  background: #000;
}
.iphone-frame {
  position: absolute;
  z-index: 4;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
  user-select: none;
}
.product-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: inherit;
  background: #000;
}

.hero {
  position: relative;
  display: block;
  --device-halo: rgba(62, 108, 106, 0.34);
  padding-top: clamp(2rem, 8vw, 3.75rem);
  padding-bottom: 0;
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 2%;
  left: 50%;
  width: min(36rem, 120vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, rgba(113, 78, 171, 0.18), rgba(43, 103, 99, 0.09) 42%, rgba(6, 8, 10, 0) 70%);
  transform: translateX(-50%);
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}
.hero-copy h1 {
  max-width: min(100%, 7.6ch);
  margin-inline: auto;
  font-size: clamp(2.65rem, 12.8vw, 3.95rem);
}
.hero-method {
  margin-bottom: 0.6rem;
  color: var(--parchment);
  font-family: var(--sans);
  font-size: clamp(1.05rem, 4.5vw, 1.3rem);
  font-weight: 500;
}
.hero-lede {
  max-width: min(100%, 20rem);
  margin: 0 auto 1.5rem;
  font-size: 1.03rem;
  text-wrap: balance;
}
.hero-cta { width: 100%; }
.hero-stage {
  position: relative;
  z-index: 1;
  isolation: isolate;
  width: min(calc(100% + var(--gutter)), 34rem);
  margin: 0.75rem auto 0;
  margin-right: calc(var(--gutter) * -1);
  overflow: hidden;
  overflow: clip;
}
.hero-stage::before,
.hero-stage::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.hero-stage::before {
  inset: 7% -7% 11%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 48% 43%, rgba(133, 91, 199, 0.24) 0%, rgba(70, 131, 122, 0.14) 34%, rgba(6, 8, 10, 0) 69%);
  opacity: 0.72;
  transform: scale(1);
}
.hero-stage::after {
  inset: 1% 2% 12%;
  background:
    radial-gradient(circle at 16% 29%, rgba(224, 181, 109, 0.92) 0 1px, transparent 2px),
    radial-gradient(circle at 80% 20%, rgba(149, 209, 190, 0.78) 0 1px, transparent 2px),
    radial-gradient(circle at 87% 50%, rgba(218, 191, 239, 0.72) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 20% 64%, rgba(149, 209, 190, 0.64) 0 1px, transparent 2px),
    radial-gradient(circle at 73% 78%, rgba(224, 181, 109, 0.78) 0 1px, transparent 2px);
  opacity: 0.66;
  transform-origin: 48% 43%;
}
.hero-axis {
  position: relative;
  z-index: 1;
  transform: translateX(10.6%);
}
.hero-product {
  position: relative;
  z-index: 1;
}
.hero-hand {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  margin-inline: auto;
}
.hero-screen-window {
  position: absolute;
  z-index: 2;
  top: 5.45%;
  left: 14.8%;
  width: 44.6%;
  height: 62.9%;
  overflow: hidden;
  border-radius: 13% / 6.5%;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.hero-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  background: #000;
  pointer-events: none;
  user-select: none;
}

.idea-section { max-width: 68rem; text-align: center; }
.idea-section h2 { max-width: 13ch; margin-inline: auto; }
.idea-lines {
  display: grid;
  gap: 0.7rem;
  margin-top: 2rem;
}
.idea-proof {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  background: var(--surface);
  isolation: isolate;
}
.idea-proof::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  /* Keep the room artwork vivid. Only the lower caption zone needs a scrim. */
  background: linear-gradient(to top, rgba(6, 8, 10, 0.78) 0%, rgba(6, 8, 10, 0.48) 28%, rgba(6, 8, 10, 0.12) 48%, transparent 62%);
  pointer-events: none;
}
.idea-proof-art {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transform-origin: center bottom;
}
.idea-proof figcaption {
  display: grid;
  min-height: 100%;
  margin: 0;
  padding: 1rem 1.1rem;
  place-items: end center;
  color: var(--parchment);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 4.3vw, 1.35rem);
  line-height: 1.18;
  text-align: center;
  text-shadow: 0 0.15rem 1rem rgba(0, 0, 0, 0.88);
}
.idea-answer {
  margin: 2rem 0 0;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 8vw, 3.25rem);
  line-height: 1.05;
}

.journey {
  position: relative;
  min-height: 0;
  overflow: clip;
  --device-halo: rgba(103, 76, 158, 0.4);
  background: var(--room-ground);
}
.journey[data-active-room="chess"] {
  --room-light: 96 74 154;
  --room-evidence: 168 120 210;
  --room-ground: #0c0814;
  --room-art-opacity: 0.42;
  --device-halo: rgba(103, 76, 158, 0.4);
}
.journey[data-active-room="blackjack"] {
  --room-light: 50 135 96;
  --room-evidence: 175 143 75;
  --room-ground: #06100b;
  --room-art-opacity: 0.38;
  --device-halo: rgba(48, 125, 87, 0.38);
}
.journey[data-active-room="poker"] {
  --room-light: 189 120 52;
  --room-evidence: 224 171 88;
  --room-ground: #120b07;
  --room-art-opacity: 0.36;
  --device-halo: rgba(177, 105, 43, 0.35);
}
.journey[data-active-room="progress"],
.journey[data-demo-state="complete"] {
  --room-light: 59 90 135;
  --room-evidence: 201 147 70;
  --room-ground: #070b13;
  --room-art-opacity: 0;
  --device-halo: rgba(55, 84, 128, 0.34);
}
.journey::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(circle at 50% 34%, rgb(var(--room-light) / 0.28) 0%, rgb(var(--room-light) / 0.19) 17%, rgb(var(--room-light) / 0.09) 36%, rgb(var(--room-light) / 0.025) 56%, transparent 75%),
    radial-gradient(ellipse at 50% 78%, rgb(var(--room-evidence) / 0.1) 0%, rgb(var(--room-evidence) / 0.055) 24%, rgb(var(--room-evidence) / 0.015) 48%, transparent 72%),
    linear-gradient(180deg, rgb(6 8 10 / 0.2) 0%, rgb(6 8 10 / 0.4) 34%, rgb(6 8 10 / 0.72) 72%, var(--canvas) 100%);
  pointer-events: none;
}
.journey[data-atmosphere="webgl"]::before { opacity: 0.58; }
.journey-legacy-target {
  position: absolute;
  inset: 0 auto auto 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.journey-atmosphere {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.journey[data-atmosphere="css"] .journey-atmosphere { display: none; }
.journey-shell {
  position: relative;
  z-index: 3;
  padding-block: clamp(2rem, 7vw, 3.5rem);
}
.journey-topline {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  min-height: 2.75rem;
  align-items: center;
  justify-items: center;
  gap: 0.35rem;
  text-align: center;
}
.journey-topline .eyebrow { grid-column: 1; margin-bottom: 0; }
.journey-skip {
  grid-column: 1;
  justify-self: center;
  min-width: 5.5rem;
  min-height: 2.75rem;
  padding: 0.5rem 0.875rem;
  border: 0;
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 650;
}
.journey-layout {
  display: grid;
  grid-template-areas:
    "story"
    "stage"
    "response";
  gap: 0.9rem;
  margin-top: 0.75rem;
}
.journey-response {
  grid-area: response;
  display: grid;
  min-width: 0;
  max-width: 30rem;
  min-height: 3.25rem;
  margin-inline: auto;
  align-content: start;
  text-align: center;
}
.journey-stage {
  position: relative;
  display: grid;
  z-index: 1;
  grid-area: stage;
  height: min(54svh, 32rem);
  min-height: 24rem;
  place-items: center;
}
.journey-room-art {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}
.journey-room-art > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 220ms var(--ease-in-out-strong);
}
.journey-room-art > img.is-active { opacity: var(--room-art-opacity); }
.journey-room-art > img[data-demo-art="chess"] { object-position: center 38%; }
.journey-room-art > img[data-demo-art="blackjack"] { object-position: center 46%; }
.journey-room-art > img[data-demo-art="poker"] { object-position: center 42%; }
.journey-device {
  position: relative;
  z-index: 1;
  width: auto;
  height: 100%;
  max-width: min(82vw, 22rem);
  margin-inline: auto;
}
.journey-screens {
  position: absolute;
  display: grid;
}
.journey-screen {
  grid-area: 1 / 1;
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  visibility: hidden;
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
  transition: opacity 180ms var(--ease-in-out-strong), filter 220ms var(--ease-in-out-strong), transform 220ms var(--ease-in-out-strong);
}
.journey-screen.is-active { opacity: 1; visibility: visible; }
.journey-screen[data-demo-screen="progress"] { object-position: center top; }
.journey[data-demo-state$="-feedback"] .journey-screen.is-active {
  filter: brightness(0.5) saturate(0.72);
  transform: scale(0.992);
}
.journey-screen-feedback {
  position: absolute;
  z-index: 3;
  right: 0.55rem;
  bottom: 8%;
  left: 0.55rem;
  padding: 0.7rem 0.75rem;
  border: 1px solid rgba(224, 181, 109, 0.34);
  border-radius: 0.8rem;
  background: rgba(6, 9, 11, 0.94);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 0.8rem 2rem rgba(0, 0, 0, 0.4);
  color: var(--parchment);
  text-align: left;
}
.journey-screen-feedback[hidden] { display: none; }
.journey-screen-feedback span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--gold-bright);
  font-size: 0.58rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.journey-screen-feedback p {
  margin: 0;
  color: var(--parchment);
  font-size: clamp(0.62rem, 2.5vw, 0.76rem);
  line-height: 1.35;
}
.journey-story {
  grid-area: story;
  min-width: 0;
  text-align: center;
}
.journey-copy-state { display: none; }
.journey-copy-state.is-active { display: block; }
.journey-copy-state h2 {
  max-width: 12ch;
  margin-inline: auto;
  font-size: clamp(2.2rem, 10vw, 3.75rem);
}
.journey-description {
  max-width: 30rem;
  margin: 0 auto;
  color: rgba(247, 242, 227, 0.88);
  font-family: var(--sans);
  font-size: clamp(0.94rem, 3.7vw, 1.08rem);
  line-height: 1.45;
  text-wrap: balance;
}
.room-note { margin: 0.55rem 0 0; color: var(--quiet); font-size: 0.72rem; }
.journey-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.25rem;
  max-width: 30rem;
  margin: 0.8rem auto 0;
  padding: 0.25rem;
  border-radius: var(--radius-sm);
  background: rgba(14, 18, 21, 0.88);
  color: var(--muted);
  font-size: clamp(0.62rem, 2.8vw, 0.76rem);
  font-weight: 650;
  text-align: center;
}
.journey-tabs span {
  min-width: 0;
  padding: 0.55rem 0.2rem;
  border-radius: 0.55rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.journey-tabs [aria-current="step"] {
  background: var(--surface-raised);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
  color: var(--parchment);
}
.journey-decisions {
  display: grid;
  min-height: 3.25rem;
  place-items: start center;
}
.journey-controls {
  display: grid;
  gap: 0.75rem;
}
.journey-controls .button { width: 100%; }
.journey button:not(:disabled) { cursor: pointer; }
.journey:is([data-demo-state$="-feedback"], [data-demo-state="progress"], [data-demo-state="complete"]) .journey-layout { row-gap: 0.5rem; }
.journey:is([data-demo-state$="-feedback"], [data-demo-state="progress"], [data-demo-state="complete"]) .journey-decisions { min-height: 0; }
.journey button:disabled {
  opacity: 0.55;
  color: var(--muted);
  cursor: not-allowed;
}
.journey-hotspot {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
  min-width: 11rem;
  min-height: 3.25rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(#151b1e, #090d0f) padding-box, linear-gradient(115deg, rgba(224, 181, 109, 0.92), rgba(72, 140, 132, 0.9), rgba(224, 181, 109, 0.58)) border-box;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 0.75rem 2.5rem rgba(0, 0, 0, 0.44), 0 0 1.5rem rgba(73, 139, 130, 0.18);
  color: var(--parchment);
  font-size: 0.86rem;
  font-weight: 680;
  line-height: 1.2;
  white-space: nowrap;
}
.journey-hotspot::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.journey-noscript {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}
.journey-noscript img {
  width: 100%;
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
}
.progress-device { width: min(68vw, 18rem); margin-inline: auto; }
.progress-screen-window .product-screen { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.orin-section {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: center;
}
.orin-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 14% 0;
  background: radial-gradient(circle at 50% 50%, rgba(61, 91, 91, 0.14), transparent 64%);
}
.orin-portrait-wrap {
  position: relative;
  width: min(78vw, 23rem);
  margin-inline: auto;
}
.orin-portrait-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.48);
}
.orin-orbit {
  position: absolute;
  inset: -7%;
  border: 1px solid rgba(201, 147, 70, 0.3);
  border-radius: 50%;
  pointer-events: none;
  user-select: none;
  transform-origin: center;
}
.orin-orbit::before, .orin-orbit::after {
  content: "";
  position: absolute;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--gold);
}
.orin-orbit::before { top: 19%; right: 5%; }
.orin-orbit::after { bottom: 12%; left: 9%; }
.orin-copy { max-width: 36rem; margin-inline: auto; text-align: center; }
.orin-copy p:not(.eyebrow) {
  margin-bottom: 0.35rem;
  color: var(--parchment);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 6vw, 2.15rem);
  line-height: 1.3;
}
.orin-copy .orin-last-line { margin-top: 1.1rem; color: var(--gold-bright); }

.progress-section {
  position: relative;
  overflow: clip;
  --device-halo: rgba(56, 96, 138, 0.38);
  background: #080b0e;
}
.progress-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 32%, rgba(44, 66, 93, 0.26), transparent 47%);
  pointer-events: none;
}
.progress-inner { position: relative; display: grid; gap: 2rem; align-items: center; }
.progress-copy { max-width: 39rem; margin-inline: auto; text-align: center; }
.progress-copy p:not(.eyebrow) {
  color: #c2c8ca;
  font-size: clamp(1.1rem, 4.8vw, 1.4rem);
  line-height: 1.7;
}
.progress-copy strong { color: var(--gold-bright); }
.pricing-section { max-width: 70rem; text-align: center; }
.pricing-heading { max-width: 50rem; margin-inline: auto; }
.pricing-heading h2 { font-size: clamp(2.375rem, 6vw, 3.5rem); }
.pricing-promise {
  max-width: 42rem;
  margin: 1.25rem auto 0;
  font-size: clamp(1rem, 4.2vw, 1.18rem);
  line-height: 1.65;
}
.pricing-offers { display: grid; gap: 1rem; margin-top: 2rem; align-items: start; }
.free-value, .plus-offer {
  min-width: 0;
  margin: 0;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  border-radius: clamp(1.25rem, 4vw, 2rem);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.free-value { background: var(--surface); text-align: left; }
.free-heading { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.free-heading h3 { margin: 0; font-size: 1.25rem; }
.free-price { margin: 0; color: var(--parchment); font: 500 2.5rem/1 var(--serif); }
.free-promise { margin: 0.75rem 0 0; font-size: 0.95rem; }
.free-value .plus-value-list { margin: 1rem 0; gap: 0.4rem; }
.free-value .plus-value-list li { font-size: 0.85rem; }
.free-note { margin: 0; font-size: 0.8rem; }
.plus-offer {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(201, 147, 70, 0.12), rgba(201, 147, 70, 0.05) 40%, transparent 72%),
    linear-gradient(145deg, #17140f, #131411 28%, #101313 58%, #0b0f12);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.plus-offer h3 {
  margin: 0;
  color: var(--parchment);
  font-family: var(--serif);
  font-size: clamp(1.9rem, 5vw, 2.5rem);
  font-weight: 500;
}
.plus-kicker { margin: 1.25rem 0 0; padding-top: 1.25rem; border-top: 1px solid var(--hairline); color: var(--parchment); font-size: 0.95rem; }
.plus-value-list {
  display: grid;
  gap: 0.65rem;
  width: fit-content;
  max-width: 100%;
  margin: 1rem auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
}
.plus-value-list li { position: relative; padding-left: 1.25rem; color: var(--parchment); font-size: 0.95rem; line-height: 1.5; }
.plus-value-list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0.1rem;
  width: 0.35rem;
  height: 0.35rem;
  border: 1px solid var(--gold-bright);
  transform: rotate(45deg);
  pointer-events: none;
}
.payment-options-description { margin: 0.75rem 0 1.25rem; color: var(--muted); font-size: 0.85rem; }
.billing-selector { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 24rem; padding: 0.25rem; margin: 0 auto; border: 1px solid var(--hairline); border-radius: 999px; background: var(--canvas); }
.billing-selector label { position: relative; display: grid; place-items: center; min-height: 44px; min-width: 0; border-radius: 999px; color: var(--muted); font-size: 0.85rem; cursor: pointer; }
.billing-selector input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; margin: 0; cursor: pointer; }
.billing-selector { position: relative; isolation: isolate; }
.billing-selector::before {
  content: "";
  position: absolute;
  inset: 0.25rem auto 0.25rem 0.25rem;
  width: calc((100% - 0.5rem) / 3);
  border-radius: 999px;
  background: var(--parchment);
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 180ms cubic-bezier(0.645, 0.045, 0.355, 1);
}
.billing-selector:has(#billing-monthly:checked)::before { transform: translateX(0); }
.billing-selector:has(#billing-lifetime:checked)::before { transform: translateX(200%); }
.billing-selector label:has(input:checked) { color: var(--canvas); }
.membership-option strong { animation: pricing-reveal 180ms cubic-bezier(0.215, 0.61, 0.355, 1); }
@keyframes pricing-reveal {
  from { opacity: 0; transform: translateY(3px); }
  to { opacity: 1; transform: translateY(0); }
}
.plus-offer:has(input:focus-visible) .billing-selector::before { transition: none; }
.plus-offer:has(input:focus-visible) .membership-option strong { animation: none; }
@media (prefers-reduced-motion: reduce) {
  .billing-selector::before { transition: none; }
  .membership-option strong { animation: none; }
}
.billing-selector label:has(input:focus-visible) { outline: 2px solid white; outline-offset: 3px; }
.membership-ledger {
  display: grid;
  margin-top: 1rem;
  min-height: 11.5rem;
}
.membership-option {
  display: none;
  min-width: 0;
  margin: 0;
  padding: 0.5rem 0;
  align-content: center;
  justify-items: center;
  text-align: center;
}
.plus-offer:has(#billing-monthly:checked) [data-plan="monthly"],
.plus-offer:has(#billing-annual:checked) [data-plan="annual"],
.plus-offer:has(#billing-lifetime:checked) [data-plan="lifetime"] { display: grid; }
.membership-option strong {
  color: var(--parchment);
  font-family: var(--serif);
  font-size: clamp(2.75rem, 9vw, 3.75rem);
  font-weight: 500;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.membership-option:nth-child(2) strong { color: var(--gold-bright); }
.plan-label {
  margin-bottom: 0.65rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
}
.membership-option .price-term {
  display: inline;
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  white-space: nowrap;
}
.billing-detail { margin: 0.75rem 0 0; color: var(--muted); font-size: 0.8rem; line-height: 1.65; }
.savings-label { color: var(--gold-bright); }
.pricing-note { max-width: 42rem; margin: 1.25rem auto 0; color: var(--muted); font-size: 0.78rem; }

.paid-comparison { margin-top: 1.5rem; text-align: left; }
.paid-comparison > summary {
  width: fit-content;
  min-height: 44px;
  margin-inline: auto;
  padding: 0.65rem 0.5rem;
  color: var(--parchment);
  cursor: pointer;
  font-size: 0.9rem;
}
.comparison-scroll-hint { margin: 1.5rem 0 0.75rem; font-size: 0.8rem; }
.comparison-scroll {
  position: relative;
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  border-block: 1px solid var(--hairline-strong);
}
.comparison-table {
  width: 100%;
  min-width: 58rem;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 0.86rem;
  line-height: 1.5;
}
.comparison-table th, .comparison-table td {
  padding: 1.25rem 1rem;
  border-bottom: 1px solid var(--hairline);
  text-align: center;
  vertical-align: middle;
  overflow-wrap: break-word;
}
.comparison-table tr > :first-child { text-align: left; }
.comparison-table th { color: var(--ink); font-weight: 600; }
.comparison-table th:first-child { width: 18%; }
.comparison-table td { color: var(--parchment); }
.comparison-table strong { font-weight: 600; font-variant-numeric: tabular-nums; }
.comparison-table span { display: block; margin-top: 0.35rem; color: var(--muted); font-weight: 400; }
.comparison-table .comparison-orin { background: var(--surface); }
.comparison-table thead .comparison-orin { color: var(--gold-bright); border-top: 2px solid var(--gold); }
.comparison-table thead a { display: block; min-height: 44px; text-decoration: none; }
.comparison-table td a { display: inline-flex; min-height: 44px; align-items: center; }
.comparison-table .comparison-na { color: var(--muted); }
.comparison-table tr:last-child > * { border-bottom: 0; }
.comparison-note { max-width: 65rem; margin: 1rem 0 0; font-size: 0.78rem; line-height: 1.65; }

.final-cta {
  position: relative;
  min-height: 32rem;
  display: grid;
  align-items: end;
  overflow: clip;
  background: var(--canvas);
}
.final-cta::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0 0 auto;
  height: 44%;
  background:
    linear-gradient(to bottom, #06080a 0%, rgba(6, 8, 10, 0) 100%),
    linear-gradient(to bottom, #06080a 0%, rgba(6, 8, 10, 0.96) 16%, rgba(6, 8, 10, 0.5) 58%, transparent 100%);
  pointer-events: none;
}
.final-cta::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6, 8, 10, 0.2) 20%, rgba(6, 8, 10, 0.72) 64%, rgba(6, 8, 10, 0.98) 100%);
  pointer-events: none;
}
.final-cta-art {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(0.78) contrast(0.88) brightness(0.84);
}
.final-cta-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 58rem);
  padding-bottom: calc(5.5rem + env(safe-area-inset-bottom));
  text-align: center;
}
.final-cta-icon { width: 5.25rem; margin: 0 auto 1.2rem; border-radius: 1.25rem; }
.final-cta h2 { margin-inline: auto; }
.final-cta .button { width: 100%; max-width: 24rem; }

.faq-section {
  display: grid;
  gap: 2rem;
  padding-top: clamp(2.5rem, 8vw, 4rem);
  padding-bottom: clamp(2.5rem, 8vw, 4rem);
}
.faq-heading { max-width: 34rem; margin-inline: auto; text-align: center; }
.faq-heading h2 { margin-bottom: 0; }
.faq-list {
  width: 100%;
  max-width: 48rem;
  border-top: 1px solid var(--hairline-strong);
}
.faq-list details { border-bottom: 1px solid var(--hairline-strong); }
.faq-list summary {
  position: relative;
  display: flex;
  min-height: 3.5rem;
  padding: 0.75rem 3rem 0.75rem 0;
  align-items: center;
  color: var(--parchment);
  cursor: pointer;
  font-size: clamp(1rem, 4.2vw, 1.16rem);
  font-weight: 540;
  line-height: 1.35;
  list-style: none;
  text-wrap: pretty;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.75rem;
  width: 1rem;
  height: 1.5px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: var(--gold-bright);
}
.faq-list summary::after { transform: translateY(-50%) rotate(90deg); }
.faq-list details[open] summary::before { transform: translateY(-50%) rotate(180deg); }
.faq-list details[open] summary::after {
  opacity: 0;
  transform: translateY(-50%) rotate(90deg) scaleX(0);
}
.faq-list details p {
  max-width: 43rem;
  margin: -0.2rem 0 1.35rem;
  padding-right: 2.75rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}
.faq-list details a { color: var(--parchment); }

.site-footer {
  display: grid;
  gap: 1.5rem;
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: 2.5rem var(--gutter) calc(2.5rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--hairline);
}
.footer-brand img { width: 2.25rem; height: 2.25rem; }
.site-footer > div p { margin: 0.4rem 0 0; font-size: 0.9rem; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 0.25rem 1rem; }
.site-footer nav a { display: inline-flex; min-height: 2.75rem; align-items: center; color: var(--muted); }
.copyright { margin: 0; color: var(--quiet); font-size: 0.82rem; }

/* Shared legal and support routes retain the same quiet system. */
.legal-page { min-height: 70vh; max-width: var(--reading); padding-top: 4rem; }
.legal-page > .eyebrow { text-align: center; }
.legal-page h1 { max-width: none; margin-inline: auto; font-size: clamp(2.75rem, 14vw, 5.5rem); text-align: center; }
.legal-page > .legal-lede {
  max-width: 39rem;
  margin: 0 auto 3rem;
  color: var(--parchment);
  font-size: 1.15rem;
  text-align: center;
}
.legal-page section { padding: 1.5rem 0; border-top: 1px solid var(--hairline); }
.legal-page section h2 {
  margin-bottom: 0.55rem;
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.legal-page section p:last-child { margin-bottom: 0; }
.legal-page a { color: var(--parchment); }
.support-page > .button { display: flex; width: fit-content; margin: -1rem auto 3rem; }
.support-grid { display: grid; }
.support-links { margin-top: 2rem; }

@media (hover: hover) and (pointer: fine) {
  .primary-nav a:hover, .site-footer a:hover { color: var(--parchment); }
  .button-gold:hover { background: var(--gold-bright); }
  .button-launch:hover {
    color: var(--parchment);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.12), 0 0 1.7rem rgba(65, 129, 122, 0.3);
  }
  .primary-nav .nav-cta:hover {
    color: var(--ink);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.11), 0 0 1.65rem rgba(65, 129, 122, 0.28);
  }
  .button-muted:hover { border-color: rgba(224, 181, 109, 0.5); }
  .faq-list summary:hover { color: var(--gold-bright); }
  .faq-list summary:hover::before,
  .faq-list summary:hover::after { background: var(--parchment); }
}

@media (min-width: 31rem) {
  .hero-cta { width: auto; }
}

@media (min-width: 48rem) {
  h1 { font-size: clamp(4.4rem, 7.8vw, 6rem); }
  .hero-copy h1 { font-size: clamp(4.4rem, 7.8vw, 6rem); }
  h2 { font-size: clamp(3.2rem, 5.7vw, 4.75rem); }
  .section-shell { padding-block: clamp(5.25rem, 7vw, 7rem); }
  .menu-toggle { display: none; }
  .primary-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .primary-nav a { padding-inline: 0.7rem; }
  .primary-nav .nav-cta { padding-inline: 1rem; }
  .hero {
    display: grid;
    min-height: calc(100svh - 4.25rem);
    grid-template-columns: minmax(0, 0.88fr) minmax(22rem, 1.12fr);
    gap: clamp(2rem, 5vw, 5.5rem);
    padding-top: clamp(1.75rem, 2.8vw, 2.75rem);
    padding-bottom: 0;
    align-items: start;
    text-align: left;
  }
  .hero-copy {
    margin-inline: 0;
    padding-top: clamp(0.5rem, 1.8vw, 1.75rem);
    align-self: start;
    text-align: left;
  }
  .hero-copy h1 { margin-inline: 0; }
  .hero-lede { margin-inline: 0; }
  .hero-stage {
    width: min(100%, 40rem);
    margin: 0;
    margin-right: calc((100vw - min(100vw, var(--content))) / -2 - var(--gutter));
    align-self: end;
    justify-self: end;
  }
  .hero-axis { transform: none; }
  .idea-section { min-height: auto; display: flex; flex-direction: column; justify-content: center; }
  .idea-lines { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .idea-proof { aspect-ratio: 3 / 2; }
  .idea-proof figcaption {
    padding: 1.5rem;
    place-items: end start;
    text-align: left;
  }
  .journey {
    min-height: 0;
    width: min(calc(100% - 3rem), 84rem);
    margin-block: clamp(2rem, 5vw, 4rem);
    margin-inline: auto;
    border-radius: clamp(1.5rem, 3vw, 2.5rem);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.11), 0 2rem 6rem rgba(0, 0, 0, 0.34);
  }
  .journey-topline {
    display: flex;
    justify-content: space-between;
    justify-items: initial;
    text-align: left;
  }
  .journey-topline .eyebrow,
  .journey-skip { grid-column: auto; justify-self: auto; }
  .journey-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(19rem, 0.72fr);
    grid-template-rows: auto 1fr;
    grid-template-areas:
      "story stage"
      "response stage";
    column-gap: clamp(3rem, 8vw, 7rem);
    row-gap: 1.5rem;
    align-items: center;
  }
  .journey-shell { padding-block: clamp(3rem, 5vw, 4.5rem); }
  .journey-story { align-self: start; padding-top: 2.5rem; text-align: left; }
  .journey-copy-state h2 { max-width: 12ch; margin-inline: 0; }
  .journey-description { margin-inline: 0; }
  .journey-tabs { margin-inline: 0; }
  .journey-stage { height: 36.5rem; min-height: 0; }
  .journey-device { width: min(100%, 20.5rem); height: auto; }
  .journey-response { align-self: start; margin-inline: 0; text-align: left; }
  .journey-decisions { place-items: start; }
  .journey-hotspot { margin-inline: 0; }
  .journey-noscript { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .progress-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(23rem, 0.78fr);
    gap: clamp(4rem, 9vw, 8rem);
  }
  .progress-device { width: min(100%, 23rem); }
  .orin-section { max-width: 68rem; grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1fr); gap: clamp(3rem, 7vw, 6rem); }
  .orin-portrait-wrap { width: min(100%, 21rem); }
  .orin-copy { margin-inline: 0; text-align: left; }
  .orin-copy p:not(.eyebrow) { font-size: clamp(1.7rem, 3vw, 2.35rem); }
  .progress-copy { margin-inline: 0; text-align: left; }
  .faq-section { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq-heading { position: static; max-width: 44rem; align-self: auto; text-align: center; }
  .faq-list { max-width: 52rem; margin-inline: auto; }
  .site-footer { grid-template-columns: 1fr auto; }
  .site-footer .copyright { grid-column: 1 / -1; }
  .support-grid { grid-template-columns: 1fr 1fr; column-gap: 2rem; }
}

@media (min-width: 64rem) {
  .hero-copy { align-self: center; padding-block: 0; }
  .hero-copy h1 { max-width: 100%; font-size: clamp(3rem, 5vw, 4.5rem); }
  .pricing-offers { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 1.5rem; align-items: stretch; }
  .free-value, .plus-offer { padding: 1.75rem; }
  .payment-options-description { margin: 0.5rem 0 1rem; }
  .membership-ledger { min-height: 8.5rem; margin-top: 0.25rem; }
  .membership-option { padding: 0.25rem 0; }
  .membership-option strong { font-size: 3rem; }
  .plan-label { margin-bottom: 0.25rem; }
  .billing-detail { margin-top: 0.35rem; line-height: 1.4; }
  .plus-kicker { margin-top: 0.5rem; padding-top: 1rem; }
  .plus-value-list { gap: 0.5rem; }
  .comparison-scroll-hint { display: none; }
  .comparison-scroll { margin-top: 2rem; }
  .idea-section,
  .pricing-section { padding-block: 4rem; }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding-block: 2.5rem;
  }
  .faq-heading {
    position: static;
    max-width: 44rem;
    margin-inline: auto;
    text-align: center;
  }
  .faq-list {
    display: block;
    max-width: 52rem;
    margin-inline: auto;
  }
  .faq-list summary {
    min-height: 4rem;
    padding-block: 0.95rem;
  }
  .final-cta { min-height: 42rem; }
  .final-cta-art { object-position: center 52%; }
}

@media (prefers-reduced-motion: no-preference) {
  .site-header::after {
    animation: header-arc-awaken 700ms 80ms var(--ease-out-strong) both;
    transform-origin: center top;
  }
  .hero-product {
    animation: hero-product-arrive 620ms 100ms var(--ease-out-strong) both;
  }
  .hero-stage::before {
    animation: hero-aura-wake 900ms 180ms var(--ease-out-strong) both;
  }
  .hero-stage::after {
    animation: hero-stars-gather 1100ms 260ms var(--ease-out-strong) both;
  }
  @keyframes header-arc-awaken {
    from { opacity: 0; transform: scaleX(0.82); }
    to { opacity: 0.72; transform: scaleX(1); }
  }
  @keyframes hero-product-arrive {
    from { opacity: 0; transform: translateY(0.625rem) scale(0.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
  @keyframes hero-aura-wake {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 0.72; transform: scale(1); }
  }
  @keyframes hero-stars-gather {
    from { opacity: 0; transform: rotate(-2deg) scale(0.96); }
    to { opacity: 0.66; transform: rotate(0) scale(1); }
  }
  .journey-copy-state.is-active {
    animation: journey-copy-in 280ms cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center bottom;
  }
  @keyframes journey-copy-in {
    from { opacity: 0; transform: translateY(0.4rem) scale(0.99); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
  .idea-proof[data-proof-motion] {
    opacity: 0;
    transform: translateY(0.75rem) scale(0.985);
    transform-origin: center bottom;
    transition: opacity 320ms cubic-bezier(0.16, 1, 0.3, 1), transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
  }
  .idea-proof[data-proof-seen="true"] {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  .orin-section[data-orin-motion] .orin-portrait-wrap,
  .orin-section[data-orin-motion] .orin-copy {
    opacity: 0;
    transition: opacity 280ms var(--ease-out-strong), transform 280ms var(--ease-out-strong);
  }
  .orin-section[data-orin-motion] .orin-portrait-wrap { transform: scale(0.98); }
  .orin-section[data-orin-motion] .orin-copy { transform: translateY(0.5rem); }
  .orin-section[data-orin-seen="true"] .orin-portrait-wrap,
  .orin-section[data-orin-seen="true"] .orin-copy {
    opacity: 1;
    transform: none;
  }
  .orin-orbit {
    animation: orin-orbit-turn 24s linear infinite;
    animation-play-state: paused;
  }
  .orin-section[data-orin-visible="true"] .orin-orbit { animation-play-state: running; }
  @keyframes orin-orbit-turn {
    to { transform: rotate(1turn); }
  }
  .journey-screen {
    transform: scale(0.98);
    transition-property: opacity, transform, visibility;
    transition-duration: 150ms, 150ms, 0s;
    transition-timing-function: var(--ease-in-out-strong), var(--ease-in-out-strong), linear;
    transition-delay: 0s, 0s, 150ms;
  }
  .journey-screen.is-active {
    transform: scale(1);
    transition-duration: 240ms, 240ms, 0s;
    transition-timing-function: var(--ease-out-strong), var(--ease-out-strong), linear;
    transition-delay: 0s;
  }
  .journey-hotspot {
    transition: transform 140ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .journey-hotspot:active { transform: scale(0.97); }
  .button, .primary-nav a, .menu-toggle {
    transition: background-color 140ms ease-out, border-color 140ms ease-out, color 140ms ease-out, transform 140ms ease-out;
  }
  .menu-icon-line {
    transition: opacity 160ms ease-out, transform 180ms cubic-bezier(0.32, 0.72, 0, 1);
  }
  .menu-toggle[aria-expanded="true"] .menu-icon-line:nth-child(1) { transform: translateY(0.34375rem) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-icon-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .menu-toggle[aria-expanded="true"] .menu-icon-line:nth-child(3) { transform: translateY(-0.34375rem) rotate(-45deg); }
  .button:active, .menu-toggle:active { transform: scale(0.96); }
  .faq-list summary { transition: color 140ms ease-out; }
  .faq-list summary::before,
  .faq-list summary::after {
    transition: background-color 140ms ease-out, opacity 140ms ease-out, transform 180ms var(--ease-out-strong);
  }
  .faq-list details[open] p { animation: faq-answer-in 220ms var(--ease-out-strong); }
  @keyframes faq-answer-in {
    from { opacity: 0; transform: translateY(-0.375rem); clip-path: inset(0 0 100% 0); }
    to { opacity: 1; transform: translateY(0); clip-path: inset(0); }
  }
  .journey[data-demo-state$="-feedback"] .journey-feedback {
    animation: journey-feedback-in 200ms var(--ease-out-strong);
  }
  @keyframes journey-feedback-in {
    from { opacity: 0; transform: translateY(-0.375rem); }
    to { opacity: 1; transform: translateY(0); }
  }
}

/* Mobile menu only: on desktop this nav is a static row and must never be faded out. */
@media (max-width: 47.99rem) {
  body::after { display: none; }
  .site-header {
    background: rgba(6, 8, 10, 0.98);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .primary-nav {
    transform-origin: top center;
    opacity: 0;
    transform: translateY(-0.5rem) scale(0.97);
    transition: opacity 180ms ease-out, transform 180ms cubic-bezier(0.32, 0.72, 0, 1), display 180ms allow-discrete;
  }
  .primary-nav.is-open { opacity: 1; transform: translateY(0) scale(1); }
  @starting-style {
    .primary-nav.is-open { opacity: 0; transform: translateY(-0.5rem) scale(0.97); }
  }
}

@media (min-width: 48rem) and (prefers-reduced-motion: no-preference) {
  .idea-proof:nth-child(2) { transition-delay: 70ms; }
  .idea-proof:nth-child(3) { transition-delay: 140ms; }
}

@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;
  }
  .journey-screen {
    transform: none !important;
    transition: opacity 120ms ease, visibility 0s linear 120ms !important;
  }
  .hero-product,
  .hero-stage::before,
  .hero-stage::after,
  .site-header::after {
    animation: none !important;
  }
  .journey-screen.is-active {
    transform: none !important;
    transition: opacity 120ms ease, visibility 0s linear 0s !important;
  }
  .journey-hotspot {
    transform: none !important;
    transition-property: opacity, color, background-color, border-color !important;
    transition-duration: 120ms !important;
    transition-timing-function: ease !important;
  }
  .journey-hotspot::after { animation: none !important; transform: none !important; }
  .journey-copy-state,
  .idea-proof {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
  }
  .menu-icon-line { transition: none !important; }
  .journey-room-art > img {
    transform: none !important;
    transition: opacity 120ms ease !important;
  }
  .journey-atmosphere { display: none; }
  .orin-orbit { animation: none !important; transform: none !important; }
  .orin-portrait-wrap,
  .orin-copy { opacity: 1 !important; transform: none !important; }
  .faq-list details p { animation: none !important; }
  .faq-list details[open] summary::after { opacity: 0; transform: translateY(-50%) rotate(90deg) scaleX(0); }
}
