body { -webkit-user-select: none; user-select: none; }
input, textarea, [contenteditable="true"] { -webkit-user-select: text; user-select: text; }

@font-face {
  font-family: "Space Grotesk";
  src: url("/fonts/space-grotesk-latin-wght.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
}
/* Public release explorer */
.release-launcher {
  position: relative;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 10px;
  overflow: hidden;
  border: 1px solid rgba(83, 218, 162, .25);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(83, 218, 162, .1), rgba(88, 199, 239, .035)), rgba(4, 15, 12, .82);
  color: var(--text);
  box-shadow: inset 0 1px rgba(255, 255, 255, .035), 0 12px 30px -24px rgba(83, 218, 162, .8);
  transition: transform .24s var(--ease), border-color .24s ease, background .24s ease, box-shadow .24s ease;
}
.release-launcher::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(100deg, transparent 20%, rgba(121, 239, 188, .1) 48%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .5s ease;
}
.release-launcher:hover {
  transform: translateY(-2px);
  border-color: rgba(121, 239, 188, .55);
  background: linear-gradient(135deg, rgba(83, 218, 162, .15), rgba(88, 199, 239, .055)), rgba(4, 15, 12, .9);
  box-shadow: inset 0 1px rgba(255, 255, 255, .05), 0 16px 34px -24px rgba(83, 218, 162, .9);
}
.release-launcher:hover::after { transform: translateX(120%); }
.release-launcher-signal {
  position: relative;
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 0 5px rgba(83, 218, 162, .08), 0 0 16px rgba(83, 218, 162, .75);
}
.release-launcher-signal::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(121, 239, 188, .35);
  border-radius: inherit;
  animation: release-ping 2.2s ease-out infinite;
}
@keyframes release-ping {
  0%, 35% { opacity: 0; transform: scale(.65); }
  55% { opacity: 1; }
  100% { opacity: 0; transform: scale(1.45); }
}
.release-launcher-copy { min-width: 0; display: grid; gap: 0; text-align: left; line-height: 1.05; }
.release-launcher-copy small {
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: .12em;
  white-space: nowrap;
}
.release-launcher-copy strong {
  color: var(--accent-bright);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: -.015em;
  white-space: nowrap;
}
.release-launcher-arrow { color: var(--cyan); font-size: 13px; transition: transform .24s ease; }
.release-launcher:hover .release-launcher-arrow { transform: translate(2px, -2px); }

.release-explorer {
  width: min(1000px, calc(100% - 34px));
  max-width: none;
  height: min(760px, calc(100vh - 42px));
  max-height: none;
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(83, 218, 162, .28);
  border-radius: 28px;
  background: #071410;
  color: var(--text);
  box-shadow: 0 60px 160px -35px rgba(0, 0, 0, .96), 0 0 90px -60px rgba(83, 218, 162, .8);
}
.release-explorer::backdrop {
  background: rgba(1, 7, 5, .84);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.release-explorer-surface { height: 100%; display: grid; grid-template-rows: auto minmax(0, 1fr); }
.release-explorer-header {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 28px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(480px circle at 6% -20%, rgba(83, 218, 162, .14), transparent 65%),
    linear-gradient(110deg, rgba(14, 37, 30, .98), rgba(7, 20, 16, .98));
}
.release-explorer-header::after {
  content: "";
  position: absolute;
  right: 95px;
  bottom: -1px;
  width: 150px;
  height: 34px;
  opacity: .3;
  background: linear-gradient(155deg, transparent 0 46%, var(--cyan) 47% 48%, transparent 49% 61%, var(--accent) 62% 63%, transparent 64%);
}
.release-explorer-identity { position: relative; z-index: 1; display: flex; align-items: flex-start; gap: 15px; }
.release-explorer-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--accent-bright), var(--accent));
  color: #03130d;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 12px 36px -18px rgba(83, 218, 162, .9);
}
.release-explorer-eyebrow { margin: 0 0 4px; color: var(--accent); font-family: var(--font-mono); font-size: 9px; letter-spacing: .14em; }
.release-explorer-title { margin: 0; font-family: var(--font-display); font-size: clamp(25px, 3vw, 34px); font-weight: 600; letter-spacing: -.035em; line-height: 1.05; }
.release-explorer-description { max-width: 640px; margin: 7px 0 0; color: var(--text-dim); font-size: 12px; line-height: 1.5; }
.release-explorer-close {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(3, 13, 10, .74);
  color: var(--text-dim);
  font-size: 23px;
  line-height: 1;
  transition: color .2s ease, border-color .2s ease, transform .2s ease, background .2s ease;
}
.release-explorer-close:hover { transform: rotate(7deg); border-color: var(--accent); background: rgba(83, 218, 162, .08); color: var(--accent-bright); }
.release-explorer-actions { position: relative; z-index: 2; display: flex; align-items: center; gap: 9px; }
.release-explorer-language { min-width: 44px; height: 40px; padding: 0 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(3,13,10,.74); color: var(--accent-bright); font-family: var(--font-mono); font-size: 10px; font-weight: 600; }
.release-explorer-language:hover { border-color: var(--accent); background: rgba(83,218,162,.08); }
.release-explorer-body { min-height: 0; display: grid; grid-template-columns: 310px minmax(0, 1fr); }
.release-explorer-rail {
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  border-right: 1px solid var(--line);
  background: #06110f;
}
.release-rail-header { min-height: 51px; display: flex; align-items: center; justify-content: space-between; padding: 0 22px; border-bottom: 1px solid var(--line-soft); }
.release-rail-label { color: var(--text-faint); font-family: var(--font-mono); font-size: 9px; font-weight: 600; letter-spacing: .12em; }
.release-rail-pulse { width: 34px; height: 10px; background: linear-gradient(155deg, transparent 0 20%, var(--cyan) 21% 25%, transparent 26% 48%, var(--accent) 49% 53%, transparent 54%); opacity: .55; }
.release-index { overflow: auto; padding: 10px; scrollbar-color: rgba(83, 218, 162, .3) transparent; }
.release-index-item {
  position: relative;
  width: 100%;
  min-height: 78px;
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 7px;
  padding: 12px 11px 12px 7px;
  border: 1px solid transparent;
  border-radius: 13px;
  background: transparent;
  color: var(--text-dim);
  text-align: left;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.release-index-item:hover { transform: translateX(2px); border-color: var(--line); background: rgba(83, 218, 162, .035); color: var(--text); }
.release-index-item.is-selected { border-color: rgba(83, 218, 162, .28); background: linear-gradient(105deg, rgba(83, 218, 162, .11), rgba(88, 199, 239, .025)); color: var(--text); }
.release-index-marker {
  position: relative;
  width: 7px;
  height: 7px;
  margin: 5px auto 0;
  border: 1px solid var(--text-faint);
  border-radius: 50%;
}
.release-index-marker::after { content: ""; position: absolute; top: 10px; bottom: -62px; left: 2px; width: 1px; background: var(--line); }
.release-index-item:last-child .release-index-marker::after { display: none; }
.release-index-item.is-current .release-index-marker { border-color: var(--accent); background: var(--accent); box-shadow: 0 0 0 4px rgba(83, 218, 162, .09); }
.release-index-copy { min-width: 0; display: grid; grid-template-columns: 1fr auto; gap: 2px 9px; }
.release-index-copy strong { color: var(--accent-bright); font-family: var(--font-mono); font-size: 10px; }
.release-index-copy small { color: var(--text-faint); font-size: 9px; white-space: nowrap; }
.release-index-copy > span { grid-column: 1 / -1; overflow: hidden; color: inherit; font-size: 11px; line-height: 1.35; text-overflow: ellipsis; white-space: nowrap; }
.release-rail-footer { padding: 10px 14px 14px; border-top: 1px solid var(--line-soft); }
.release-family-note { margin: 0; color: var(--text-faint); font-size: 9px; line-height: 1.45; }
.release-load-more {
  width: 100%;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(83, 218, 162, .24);
  border-radius: 999px;
  background: rgba(83, 218, 162, .055);
  color: var(--accent-bright);
  font-size: 11px;
  font-weight: 700;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.release-load-more:hover { transform: translateY(-1px); border-color: var(--accent); background: rgba(83, 218, 162, .1); }
.release-detail {
  min-width: 0;
  overflow: auto;
  padding: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px),
    radial-gradient(480px circle at 100% 0, rgba(88, 199, 239, .07), transparent 64%),
    #081713;
  background-size: 48px 48px, 48px 48px, auto, auto;
  scrollbar-color: rgba(83, 218, 162, .3) transparent;
}
.release-detail-meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.release-detail-statuses { display: flex; flex-wrap: wrap; gap: 6px; }
.release-detail-statuses span, .release-change-badge {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  padding: 3px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .06em;
}
.release-detail-statuses .is-current { border-color: rgba(83, 218, 162, .38); background: rgba(83, 218, 162, .08); color: var(--accent-bright); }
.release-detail-date { color: var(--text-faint); font-family: var(--font-mono); font-size: 9px; }
.release-detail-version { margin: 36px 0 8px; color: var(--cyan); font-family: var(--font-mono); font-size: 12px; letter-spacing: .05em; }
.release-detail-title { max-width: 630px; margin: 0; font-family: var(--font-display); font-size: clamp(30px, 4vw, 46px); font-weight: 600; letter-spacing: -.045em; line-height: 1.02; text-wrap: balance; }
.release-detail-summary { max-width: 680px; margin: 18px 0 0; color: var(--text-dim); font-size: 14px; line-height: 1.7; }
.release-detail-changes-label { margin: 34px 0 12px; color: var(--text-faint); font-family: var(--font-mono); font-size: 9px; font-weight: 600; letter-spacing: .12em; }
.release-detail-changes { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.release-detail-change { display: grid; grid-template-columns: 94px minmax(0, 1fr); align-items: start; gap: 13px; padding: 13px 14px; border: 1px solid var(--line-soft); border-radius: 12px; background: rgba(4, 15, 12, .68); }
.release-change-badge { width: fit-content; color: var(--cyan); }
.release-change-badge.is-fix { border-color: rgba(242, 119, 109, .28); color: var(--danger); }
.release-change-badge.is-improvement { border-color: rgba(83, 218, 162, .28); color: var(--accent); }
.release-change-copy { color: var(--text-dim); font-size: 12px; line-height: 1.55; }
.release-loading, .release-failure { min-height: 260px; display: grid; place-items: center; color: var(--text-dim); font-size: 13px; text-align: center; }
.release-loading::before { content: ""; width: 30px; height: 30px; border: 2px solid var(--line); border-top-color: var(--accent); border-radius: 50%; animation: release-spin .8s linear infinite; }
@keyframes release-spin { to { transform: rotate(360deg); } }
.release-failure { align-content: center; gap: 14px; }
.release-failure p { margin: 0; }
.release-failure .release-load-more { width: auto; }
.release-history-toggle { width: auto; margin-top: 24px; padding: 0 18px; }
.release-family-history { margin-top: 22px; padding-top: 2px; }
.release-family-history-list { display: grid; gap: 7px; }
.release-history-item { width: 100%; display: grid; grid-template-columns: 145px 120px minmax(0,1fr); gap: 12px; align-items: center; padding: 12px 14px; border: 1px solid var(--line-soft); border-radius: 11px; background: rgba(4,15,12,.68); color: var(--text-dim); text-align: left; }
.release-history-item:hover, .release-history-item.is-selected { border-color: rgba(83,218,162,.34); background: rgba(83,218,162,.07); color: var(--text); }
.release-history-item strong { color: var(--accent-bright); font-family: var(--font-mono); font-size: 9px; }
.release-history-item time { color: var(--text-faint); font-family: var(--font-mono); font-size: 8px; }
.release-history-item span { overflow: hidden; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }

@media (max-width: 720px) {
  .release-launcher { min-height: 44px; padding: 5px 9px; border-radius: 12px; gap: 8px; }
  .release-launcher-copy small { display: none; }
  .release-launcher-copy strong { font-size: 9px; }
  .release-launcher-arrow { display: none; }
  .release-explorer { width: calc(100% - 14px); height: calc(100dvh - 14px); border-radius: 22px; }
  .release-explorer-header { padding: 19px 18px; }
  .release-explorer-mark { width: 36px; height: 36px; border-radius: 10px; font-size: 15px; }
  .release-explorer-title { font-size: 25px; }
  .release-explorer-description { max-width: 78vw; font-size: 11px; }
  .release-explorer-close { width: 40px; height: 40px; }
  .release-explorer-language { min-width: 40px; height: 38px; padding: 0 10px; }
  .release-explorer-header::after { display: none; }
  .release-explorer-body { display: grid; grid-template-columns: 1fr; grid-template-rows: auto minmax(0, 1fr); overflow: hidden; }
  .release-explorer-rail { display: block; overflow: hidden; border-right: 0; border-bottom: 1px solid var(--line); }
  .release-rail-header { min-height: 38px; padding: 0 16px; }
  .release-index { display: flex; gap: 7px; overflow-x: auto; padding: 9px 10px 11px; scroll-snap-type: x proximity; }
  .release-index-item { width: 146px; min-width: 146px; min-height: 59px; display: block; padding: 9px 10px; scroll-snap-align: start; }
  .release-index-item:hover { transform: none; }
  .release-index-marker, .release-index-copy > span { display: none; }
  .release-index-copy { display: grid; grid-template-columns: 1fr; gap: 1px; }
  .release-index-copy small { font-size: 8px; }
  .release-rail-footer { padding: 0 10px 10px; border-top: 0; }
  .release-load-more { min-height: 38px; }
  .release-detail { padding: 25px 18px 40px; scroll-padding-top: 18px; }
  .release-detail-version { margin-top: 25px; }
  .release-detail-title { font-size: clamp(28px, 9vw, 38px); }
  .release-detail-summary { font-size: 13px; line-height: 1.62; }
  .release-detail-change { grid-template-columns: 1fr; gap: 7px; padding: 12px; }
  .release-history-item { grid-template-columns: 1fr auto; gap: 3px 10px; }
  .release-history-item span { grid-column: 1 / -1; }
}
@media (max-width: 390px) {
  .release-launcher { padding-right: 8px; padding-left: 8px; }
  .release-launcher-signal { width: 8px; height: 8px; }
  .release-explorer-identity { gap: 10px; }
  .release-explorer-description { display: none; }
  .release-detail-meta { align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .release-launcher-signal::after, .release-loading::before { animation: none !important; }
  .release-launcher, .release-launcher-arrow, .release-explorer-close, .release-index-item, .release-load-more { transform: none !important; }
}


@font-face {
  font-family: "IBM Plex Sans";
  src: url("/fonts/ibm-plex-sans-latin-wdth-wght.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 75% 100%;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/fonts/ibm-plex-mono-latin-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/fonts/ibm-plex-mono-latin-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/fonts/ibm-plex-mono-latin-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #06110f;
  --bg-alt: #081815;
  --panel: #0c1e19;
  --panel-strong: #10271f;
  --line: #1b352d;
  --line-soft: #122720;
  --text: #eef6f2;
  --text-dim: #a5bdb4;
  --text-faint: #6e8a80;
  --accent: #53daa2;
  --accent-bright: #79efbc;
  --accent-deep: #1f855f;
  --cyan: #58c7ef;
  --violet: #9b8cff;
  --amber: #e9bb5c;
  --danger: #f2776d;
  --font-display: "Space Grotesk", "Aptos Display", "Segoe UI", sans-serif;
  --font-body: "IBM Plex Sans", "Aptos", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "Cascadia Mono", Consolas, monospace;
  --text-micro: 11px;
  --text-label: 12px;
  --text-small: 13px;
  --text-nav: 14px;
  --text-body: 16px;
  --text-lead: 18px;
  --title-card: 21px;
  --title-section: clamp(32px, 3.2vw, 44px);
  --title-hero: clamp(42px, 5vw, 62px);
  --radius-small: 9px;
  --radius-medium: 16px;
  --radius-large: 26px;
  --content: 1180px;
  --ease: cubic-bezier(.2, .75, .25, 1);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-variant-numeric: tabular-nums;
}

* { box-sizing: border-box; }
html { min-width: 0; scroll-behavior: smooth; background: var(--bg); }
body { min-width: 0; margin: 0; overflow-x: hidden; background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
a, button { touch-action: manipulation; -webkit-tap-highlight-color: rgba(83, 218, 162, .18); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-display); text-wrap: balance; }
p, li { text-wrap: pretty; }
section[id] { scroll-margin-top: 92px; }

:focus-visible { outline: 2px solid var(--accent-bright); outline-offset: 4px; }
::selection { background: var(--accent); color: #03110c; }

.skip-link { position: fixed; top: 10px; left: 12px; z-index: 500; transform: translateY(-180%); padding: 10px 16px; border-radius: var(--radius-small); background: var(--accent); color: #03110c; font-weight: 700; transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid transparent; background: rgba(6, 17, 15, .78); backdrop-filter: blur(16px); transition: border-color .25s ease, background-color .25s ease; }
.site-header.is-scrolled { border-bottom-color: var(--line); background: rgba(6, 17, 15, .94); }
.header-inner { width: min(var(--content), calc(100% - 48px)); min-height: 78px; display: flex; align-items: center; gap: 24px; margin: 0 auto; }
.brand { min-height: 44px; display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand-mark { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 10px; background: linear-gradient(145deg, var(--accent-bright), var(--accent)); color: #03130d; font-family: var(--font-display); font-size: 17px; font-weight: 700; box-shadow: 0 10px 34px rgba(83, 218, 162, .16); }
.brand-copy { display: grid; gap: 1px; line-height: 1.15; }
.brand-copy strong { font-family: var(--font-display); font-size: 16px; letter-spacing: -.01em; }
.brand-copy small { color: var(--text-faint); font-family: var(--font-mono); font-size: var(--text-micro); letter-spacing: .035em; }

.public-nav { display: flex; align-items: center; justify-content: center; gap: 2px; margin-left: auto; }
.public-nav a { min-height: 44px; display: inline-flex; align-items: center; padding: 0 14px; border-radius: 999px; color: var(--text-dim); font-size: var(--text-nav); transition: color .2s ease, background-color .2s ease; }
.public-nav a:hover { background: rgba(83, 218, 162, .07); color: var(--text); }
.header-actions { display: flex; align-items: center; gap: 8px; margin-left: 12px; }
.language-toggle { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--text-dim); font-family: var(--font-mono); font-size: var(--text-label); font-weight: 600; cursor: pointer; transition: border-color .2s ease, color .2s ease, background-color .2s ease; }
.language-toggle:hover { border-color: var(--accent); background: rgba(83, 218, 162, .06); color: var(--accent-bright); }
.header-cta { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 0 18px; border-radius: 999px; background: var(--accent); color: #03110c; font-size: var(--text-nav); font-weight: 700; transition: background-color .2s ease, transform .2s ease; white-space: nowrap; }
.header-cta:hover { background: var(--accent-bright); transform: translateY(-1px); }

.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line-soft); }
.hero-grid, .final-cta-grid { position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(var(--line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--line-soft) 1px, transparent 1px); background-size: 64px 64px; mask-image: radial-gradient(ellipse 78% 72% at 50% 24%, #000 25%, transparent 78%); opacity: .58; }
.hero-glow { position: absolute; width: 420px; height: 420px; border-radius: 50%; filter: blur(100px); pointer-events: none; opacity: .22; animation: ambient-drift 15s ease-in-out infinite; }
.hero-glow-left { top: -190px; left: -170px; background: var(--accent); }
.hero-glow-right { top: 20px; right: -210px; background: var(--cyan); animation-delay: -6s; }
.hero-spotlight { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: radial-gradient(420px circle at var(--spot-x, 50%) var(--spot-y, 22%), rgba(88, 199, 239, .11), transparent 72%); }
@keyframes ambient-drift { 50% { transform: translate3d(28px, -22px, 0) scale(1.06); } }
.hero-inner { position: relative; z-index: 2; width: min(var(--content), calc(100% - 48px)); min-height: 690px; display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(420px, .94fr); align-items: center; gap: clamp(48px, 7vw, 92px); margin: 0 auto; padding: 70px 0 82px; }
.hero-copy { min-width: 0; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; color: var(--accent); font-family: var(--font-mono); font-size: var(--text-label); font-weight: 500; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 22px; height: 1px; flex: 0 0 auto; background: currentColor; opacity: .65; }
.hero h1 { max-width: 760px; margin: 0; font-size: var(--title-hero); font-weight: 600; letter-spacing: -.035em; line-height: 1.04; }
.hero h1 span, .hero h1 em { display: block; }
.hero h1 em { background: linear-gradient(100deg, var(--accent-bright), var(--cyan) 58%, var(--violet)); background-clip: text; color: transparent; font-style: normal; }
.hero-lead { max-width: 610px; margin: 24px 0 0; color: var(--text-dim); font-size: var(--text-lead); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 18px; padding: 0 22px; border: 1px solid transparent; border-radius: 999px; font-family: var(--font-display); font-size: 15px; font-weight: 600; transition: border-color .25s ease, background-color .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: #03110c; }
.button-primary:hover { background: var(--accent-bright); box-shadow: 0 14px 34px -15px rgba(83, 218, 162, .8); }
.button-secondary { border-color: var(--line); background: rgba(6, 17, 15, .35); color: var(--text); }
.button-secondary:hover { border-color: var(--accent); color: var(--accent-bright); }
.button-compact { min-height: 44px; padding: 0 18px; font-size: var(--text-nav); }
.hero-note { max-width: 550px; margin: 18px 0 0; color: var(--text-faint); font-size: var(--text-small); line-height: 1.6; }

.hero-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line); }
.hero-facts > div { min-width: 0; display: flex; gap: 10px; padding-right: 14px; }
.hero-facts > div + div { padding-left: 14px; border-left: 1px solid var(--line-soft); }
.hero-facts span { color: var(--accent); font-family: var(--font-mono); font-size: var(--text-micro); }
.hero-facts p { display: grid; gap: 3px; margin: 0; }
.hero-facts strong { color: var(--text); font-size: var(--text-small); }
.hero-facts small { color: var(--text-faint); font-size: var(--text-micro); line-height: 1.45; }

.ticket-wrap { perspective: 1200px; }
.decision-ticket { position: relative; overflow: hidden; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-large); background: radial-gradient(circle at 8% 0%, rgba(83, 218, 162, .12), transparent 34%), linear-gradient(155deg, rgba(16, 39, 31, .99), rgba(6, 20, 16, .99)); box-shadow: 0 34px 90px -38px rgba(0, 0, 0, .92), 0 0 60px rgba(88, 199, 239, .05); transform: rotateY(-4deg) rotateX(1deg); transform-style: preserve-3d; transition: transform .42s var(--ease), border-color .3s ease, box-shadow .3s ease; }
.decision-ticket:hover { border-color: rgba(88, 199, 239, .35); box-shadow: 0 38px 100px -38px rgba(0, 0, 0, .95), 0 0 70px rgba(88, 199, 239, .08); }
.ticket-progress { position: absolute; z-index: 4; inset: 0 0 auto; height: 2px; background: rgba(255,255,255,.06); }
.ticket-progress i { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--cyan), var(--accent)); box-shadow: 0 0 12px rgba(83,218,162,.48); }
.ticket-header, .ticket-status, .ticket-boundary { position: relative; display: flex; align-items: center; }
.ticket-header { justify-content: space-between; gap: 16px; }
.ticket-status { gap: 8px; color: var(--text-dim); }
.ticket-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 4px rgba(233, 187, 92, .08); }
.ticket-status b, .ticket-question span, .ticket-boundary, .market-clock span, .market-snapshot span { font-family: var(--font-mono); font-size: var(--text-micro); font-weight: 500; letter-spacing: .075em; }
.simulation-toggle { min-height: 34px; display: inline-flex; align-items: center; gap: 7px; padding: 0 10px; border: 1px solid var(--line); border-radius: 999px; background: rgba(6,17,15,.62); color: var(--text-dim); cursor: pointer; }
.simulation-toggle:hover { border-color: var(--cyan); color: var(--text); }
.simulation-toggle span { font-size: 12px; }
.simulation-toggle b { font-family: var(--font-mono); font-size: 9px; letter-spacing: .075em; }
.simulation-heading { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 20px; margin-top: 18px; }
.ticket-question { display: grid; gap: 6px; }
.ticket-question span { color: var(--text-faint); }
.ticket-question strong { max-width: 350px; font-family: var(--font-display); font-size: 19px; line-height: 1.25; }
.market-clock { min-width: 122px; display: grid; justify-items: end; gap: 1px; }
.market-clock span { color: var(--text-faint); }
.market-clock strong { color: var(--text); font-family: var(--font-mono); font-size: 30px; font-variant-numeric: tabular-nums; letter-spacing: -.04em; line-height: 1; }
.market-clock small { max-width: 130px; color: var(--cyan); font-family: var(--font-mono); font-size: 8px; letter-spacing: .06em; text-align: right; }
.market-snapshot { position: relative; display: grid; grid-template-columns: 1fr 1fr 1.1fr; gap: 8px; margin-top: 16px; }
.market-snapshot > div { min-width: 0; display: grid; gap: 3px; padding: 10px 11px; border: 1px solid var(--line-soft); border-radius: var(--radius-small); background: rgba(6,17,15,.55); }
.market-snapshot span { overflow: hidden; color: var(--text-faint); font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
.market-snapshot strong { color: var(--text); font-family: var(--font-mono); font-size: 13px; font-variant-numeric: tabular-nums; }
.market-snapshot small { overflow: hidden; color: var(--text-faint); font-family: var(--font-mono); font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
.market-snapshot .signal-snapshot { border-color: rgba(83,218,162,.28); background: rgba(83,218,162,.055); }
.market-snapshot .signal-snapshot.is-pending { border-color: rgba(233,187,92,.24); background: rgba(233,187,92,.045); }
.market-snapshot .signal-snapshot.is-pending strong { color: var(--amber); }
.signal-snapshot strong { color: var(--accent); }
.decision-ticket.is-down .signal-snapshot { border-color: rgba(242,119,109,.28); background: rgba(242,119,109,.055); }
.decision-ticket.is-down .signal-snapshot strong { color: var(--danger); }
.prediction-forecast-stage { display: grid; grid-template-columns: 1fr; gap: 9px; margin-top: 10px; }
.settlement-decision, .forecast-block { min-width: 0; border: 1px solid var(--line); border-radius: var(--radius-medium); background: rgba(6,17,15,.58); }
.settlement-decision { display: grid; grid-template-columns: 76px minmax(0, 1fr); align-items: center; gap: 10px; padding: 10px; }
.decision-ring { position: relative; width: 76px; height: 76px; }
.decision-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.decision-ring circle { fill: none; stroke-width: 5; }
.ring-track { stroke: rgba(142,171,160,.13); }
.ring-progress { stroke: var(--accent); stroke-linecap: round; stroke-dasharray: 100; stroke-dashoffset: 100; transition: stroke-dashoffset .32s linear, stroke .3s ease; }
.decision-ticket.is-down .ring-progress { stroke: var(--danger); }
.decision-ring > span { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; line-height: 1; }
.decision-ring b { color: var(--text); font-family: var(--font-mono); font-size: 13px; }
.decision-ring small { margin-top: 4px; color: var(--text-faint); font-family: var(--font-mono); font-size: 9px; }
.settlement-decision-copy { display: grid; gap: 4px; }
.settlement-decision-copy > span, .forecast-heading-row > span { color: var(--text-faint); font-family: var(--font-mono); font-size: 8px; letter-spacing: .07em; line-height: 1.4; }
.settlement-decision-copy > strong { color: var(--amber); font-family: var(--font-display); font-size: 13px; line-height: 1.25; }
.settlement-decision.is-decided .settlement-decision-copy > strong { color: var(--accent); }
.decision-ticket.is-down .settlement-decision.is-decided .settlement-decision-copy > strong { color: var(--danger); }
.settlement-decision-copy > small { color: var(--text-faint); font-size: 8px; line-height: 1.4; }
.forecast-block { padding: 10px; }
.forecast-heading-row { display: flex; align-items: start; justify-content: space-between; gap: 8px; }
.forecast-heading-row > strong { flex: 0 0 auto; color: var(--cyan); font-family: var(--font-mono); font-size: 8px; }
.horizon-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 8px; }
.horizon-card { min-width: 0; display: grid; justify-items: center; gap: 4px; padding: 9px 6px; border: 1px solid var(--line-soft); border-radius: 9px; background: rgba(9,27,21,.7); text-align: center; }
.horizon-card > span, .horizon-card > small { font-family: var(--font-mono); font-size: 8px; line-height: 1.35; }
.horizon-ring { position: relative; width: 58px; height: 58px; }
.horizon-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.horizon-ring circle { fill: none; stroke-width: 4; }
.horizon-ring-track { stroke: rgba(142,171,160,.13); }
.horizon-ring-progress { stroke: var(--amber); stroke-linecap: round; stroke-dasharray: 100; stroke-dashoffset: 100; transition: stroke-dashoffset .25s linear, stroke .3s ease; }
.horizon-card.is-on-track .horizon-ring-progress { stroke: var(--accent); }
.horizon-card.is-off-track .horizon-ring-progress { stroke: var(--danger); }
.horizon-countdown { position: absolute; inset: 0; display: grid; place-items: center; color: var(--text); font-family: var(--font-mono); font-size: 9px; font-variant-numeric: tabular-nums; }
.horizon-card > span { color: var(--text-faint); }
.horizon-card > strong { color: var(--text); font-family: var(--font-display); font-size: 12px; }
.horizon-card > small { color: var(--amber); }
.horizon-card.is-matched { border-color: rgba(83,218,162,.3); background: rgba(83,218,162,.055); }
.horizon-card.is-matched > small { color: var(--accent); }
.horizon-card.is-missed { border-color: rgba(242,119,109,.26); background: rgba(242,119,109,.045); }
.horizon-card.is-missed > small { color: var(--danger); }
.forecast-block > p { margin: 7px 0 0; color: var(--text-faint); font-size: 8px; line-height: 1.35; }
.simulation-chart-wrap { position: relative; margin-top: 10px; padding: 12px 13px 10px; border: 1px solid var(--line); border-radius: var(--radius-medium); background: linear-gradient(180deg, rgba(4,15,12,.9), rgba(7,21,17,.82)); }
.chart-readout { position: relative; z-index: 2; display: flex; align-items: start; justify-content: space-between; gap: 18px; }
.chart-readout > div { display: grid; gap: 1px; }
.chart-readout span { color: var(--text-faint); font-family: var(--font-mono); font-size: 8px; letter-spacing: .07em; }
.chart-readout strong { color: var(--text); font-family: var(--font-mono); font-size: 16px; font-variant-numeric: tabular-nums; }
.chart-readout .chart-delta { padding: 4px 7px; border: 1px solid rgba(83,218,162,.22); border-radius: 999px; color: var(--accent); font-size: 9px; }
.chart-readout .chart-delta.is-negative { border-color: rgba(242,119,109,.24); color: var(--danger); }
.simulation-chart { position: relative; height: 190px; margin-top: 3px; }
.simulation-chart canvas { width: 100%; height: 100%; display: block; }
.chart-target-label { position: absolute; z-index: 2; right: 4px; display: inline-flex; align-items: center; gap: 4px; padding: 2px 4px; background: rgba(6,17,15,.85); color: var(--amber); font-family: var(--font-mono); font-size: 8px; transform: translateY(-50%); pointer-events: none; }
.chart-target-label i { width: 14px; border-top: 1px dashed currentColor; }
.chart-target-label b { font-size: inherit; font-weight: 500; }
.chart-target-label em { font-style: normal; }
.chart-start, .chart-end { position: absolute; bottom: 0; color: var(--text-faint); font-family: var(--font-mono); font-size: 8px; }
.chart-start { left: 2px; }
.chart-end { right: 2px; }
.settlement-panel { position: relative; display: grid; gap: 3px; margin-top: 9px; padding: 12px 13px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-medium); background: rgba(6,17,15,.58); transition: border-color .35s ease, background .35s ease, box-shadow .35s ease; }
.settlement-panel[hidden] { display: none; }
.settlement-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.08), transparent 70%); transform: translateX(-120%); pointer-events: none; }
.decision-ticket[data-simulation-state="finalizing"] .settlement-panel::after { animation: ticket-scan 1.1s linear infinite; }
.settlement-panel > span { color: var(--text-faint); font-family: var(--font-mono); font-size: 8px; letter-spacing: .075em; }
.settlement-panel > strong { color: var(--amber); font-family: var(--font-display); font-size: 16px; }
.settlement-panel > p { margin: 0; color: var(--text-faint); font-size: 9px; line-height: 1.45; }
.decision-ticket[data-simulation-state="won"] .settlement-panel { border-color: rgba(83,218,162,.5); background: rgba(83,218,162,.09); box-shadow: 0 0 34px rgba(83,218,162,.08); }
.decision-ticket[data-simulation-state="won"] .settlement-panel > strong { color: var(--accent); }
.decision-ticket[data-simulation-state="lost"] .settlement-panel { border-color: rgba(242,119,109,.42); background: rgba(242,119,109,.07); }
.decision-ticket[data-simulation-state="lost"] .settlement-panel > strong { color: var(--danger); }
.ticket-boundary { justify-content: space-between; gap: 10px; margin-top: 12px; padding-top: 11px; border-top: 1px dashed var(--line); color: var(--text-faint); font-size: 8px; }
.ticket-caption { margin: 11px 4px 0 0; color: var(--text-faint); font-family: var(--font-mono); font-size: 9px; letter-spacing: .025em; line-height: 1.5; text-align: right; }
@keyframes ticket-scan { to { transform: translateX(120%); } }

.section { width: min(var(--content), calc(100% - 48px)); margin: 0 auto; padding: 112px 0; }
.section-heading { max-width: 700px; }
.section-heading h2, .privacy-heading h2, .final-cta h2 { margin: 0; font-size: var(--title-section); font-weight: 600; letter-spacing: -.035em; line-height: 1.08; }
.section-heading > p:last-child { margin: 18px 0 0; color: var(--text-dim); font-size: 17px; line-height: 1.7; }
.section-heading-centered { margin: 0 auto 54px; text-align: center; }
.section-heading-centered .eyebrow { justify-content: center; }

.product-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(54px, 9vw, 130px); }
.product-copy { color: var(--text-dim); font-size: 17px; line-height: 1.8; }
.product-copy > p { margin: 0 0 20px; }
.plain-note { margin-top: 32px; padding: 20px 22px; border-left: 2px solid var(--accent); background: rgba(83, 218, 162, .045); }
.plain-note span { color: var(--accent); font-family: var(--font-mono); font-size: var(--text-label); letter-spacing: .08em; text-transform: uppercase; }
.plain-note p { margin: 8px 0 0; color: var(--text); font-size: 15px; line-height: 1.65; }
.plain-compare { display: grid; gap: 8px; margin-top: 16px; }
.plain-compare p { display: flex; align-items: center; gap: 10px; margin: 0; padding: 9px 12px; border: 1px solid var(--line-soft); border-radius: var(--radius-small); background: rgba(6, 17, 15, .5); color: var(--text-dim); font-size: var(--text-small); }
.plain-compare p:first-child > span:first-child { color: var(--danger); }
.plain-compare p:last-child > span:first-child { color: var(--accent); }

.risk-section { position: relative; overflow: hidden; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: radial-gradient(circle at 88% 26%, rgba(233, 187, 92, .08), transparent 34%), linear-gradient(180deg, var(--bg-alt), rgba(10, 23, 21, .96)); }
.risk-inner { width: min(var(--content), calc(100% - 48px)); display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(48px, 8vw, 100px); margin: 0 auto; padding: 112px 0; }
.risk-copy h2 { margin: 0; font-size: var(--title-section); font-weight: 600; letter-spacing: -.035em; line-height: 1.08; }
.risk-lead { max-width: 650px; margin: 18px 0 0; color: var(--text-dim); font-size: 17px; line-height: 1.7; }
.risk-list { display: grid; gap: 22px; margin-top: 34px; }
.risk-list article { display: grid; grid-template-columns: 42px 1fr; gap: 16px; }
.risk-list article > span { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(233, 187, 92, .25); border-radius: 11px; background: rgba(233, 187, 92, .06); color: var(--amber); font-family: var(--font-mono); font-size: var(--text-micro); }
.risk-list h3 { margin: 0; font-size: 17px; }
.risk-list p { margin: 5px 0 0; color: var(--text-dim); font-size: 14px; line-height: 1.6; }
.boundary-card { padding: clamp(26px, 4vw, 36px); border: 1px solid rgba(233, 187, 92, .22); border-radius: var(--radius-large); background: linear-gradient(145deg, rgba(18, 31, 27, .98), rgba(10, 22, 19, .98)); box-shadow: 0 30px 80px -40px rgba(0, 0, 0, .92); transform-style: preserve-3d; transition: transform .42s var(--ease), border-color .3s ease; }
.boundary-card:hover { border-color: rgba(233, 187, 92, .42); }
.boundary-top { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; }
.boundary-top > span { color: var(--text-dim); font-family: var(--font-mono); font-size: var(--text-label); letter-spacing: .07em; }
.boundary-top strong { color: var(--amber); font-family: var(--font-display); font-size: 38px; }
.boundary-track { position: relative; height: 14px; margin-top: 18px; overflow: hidden; border: 1px solid var(--line); border-radius: 999px; background: var(--bg); }
.boundary-fill { position: absolute; inset: 0 auto 0 0; width: 0; background: linear-gradient(90deg, var(--amber), var(--danger)); transition: width 1s var(--ease); }
.boundary-track i { position: absolute; inset: -4px auto -4px 0; width: 2px; background: var(--text); opacity: .72; }
.boundary-scale { display: flex; justify-content: space-between; gap: 16px; margin-top: 9px; color: var(--text-faint); font-family: var(--font-mono); font-size: 10px; }
.boundary-card > p { margin: 24px 0 0; color: var(--text-dim); font-size: 14px; line-height: 1.7; }
.boundary-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.boundary-badges span { padding: 6px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--text-faint); font-family: var(--font-mono); font-size: 10px; letter-spacing: .045em; }
.boundary-badges span:first-child { border-color: rgba(83, 218, 162, .25); color: var(--accent); }
.boundary-badges span:last-child { border-color: rgba(242, 119, 109, .25); color: var(--danger); }

.process-section { width: 100%; padding-right: max(24px, calc((100vw - var(--content)) / 2)); padding-left: max(24px, calc((100vw - var(--content)) / 2)); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--bg-alt); }
.process-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-grid article { min-width: 0; min-height: 290px; padding: 30px; border-right: 1px solid var(--line); }
.process-grid article:last-child { border-right: 0; }
.process-grid article > span { color: var(--accent); font-family: var(--font-mono); font-size: var(--text-label); }
.process-mark { position: relative; width: 64px; height: 64px; margin-top: 34px; border: 1px solid rgba(83, 218, 162, .28); background: rgba(83, 218, 162, .045); }
.process-mark-data { border-radius: 50%; box-shadow: inset 0 0 0 17px var(--bg-alt), inset 0 0 0 18px rgba(83, 218, 162, .32); }
.process-mark-compare { border-radius: 14px; transform: rotate(45deg) scale(.78); box-shadow: inset 0 0 0 14px var(--bg-alt), inset 0 0 0 15px rgba(83, 218, 162, .3); }
.process-mark-explain { border-radius: 13px; }
.process-mark-explain::before { content: ""; position: absolute; top: 31px; left: 15px; width: 30px; height: 2px; background: var(--accent); transform: rotate(-26deg); box-shadow: 15px -7px 0 -1px var(--accent); }
.process-grid h3 { margin: 24px 0 8px; font-size: var(--title-card); }
.process-grid p { margin: 0; color: var(--text-dim); font-size: 15px; line-height: 1.65; }

.access-section .section-heading { max-width: 780px; }
.access-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-top: 50px; }
.access-card { position: relative; overflow: hidden; padding: clamp(28px, 4vw, 42px); border: 1px solid var(--line); border-radius: var(--radius-medium); background: var(--panel); transform-style: preserve-3d; transition: transform .34s var(--ease), border-color .3s ease, box-shadow .3s ease; }
.access-card:hover { border-color: rgba(88, 199, 239, .28); box-shadow: 0 26px 70px -42px rgba(88, 199, 239, .42); }
.access-card-featured { border-color: rgba(83, 218, 162, .42); background: linear-gradient(145deg, var(--panel-strong), var(--panel)); }
.access-card-featured::after { content: ""; position: absolute; top: -100px; right: -100px; width: 230px; height: 230px; border-radius: 50%; background: radial-gradient(circle, rgba(83, 218, 162, .15), transparent 70%); pointer-events: none; }
.card-label { color: var(--accent); font-family: var(--font-mono); font-size: var(--text-micro); letter-spacing: .1em; }
.access-card h3 { position: relative; margin: 14px 0 24px; font-size: 25px; }
.access-card ul { position: relative; display: grid; gap: 12px; margin: 0 0 28px; padding: 0; color: var(--text-dim); list-style: none; }
.access-card li { position: relative; padding-left: 24px; font-size: 15px; line-height: 1.5; }
.access-card li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.card-link, .privacy-link { position: relative; min-height: 44px; display: inline-flex; align-items: center; gap: 12px; color: var(--accent); font-weight: 700; transition: color .2s ease, gap .2s ease; }
.card-link:hover, .privacy-link:hover { gap: 17px; color: var(--accent-bright); }
.access-note { margin: 20px 0 0; padding: 17px 19px; border: 1px solid rgba(233, 187, 92, .18); border-radius: var(--radius-small); background: rgba(233, 187, 92, .035); color: #c4b89f; font-size: var(--text-small); line-height: 1.65; }
.access-note strong { color: var(--amber); }

.privacy-section { width: 100%; padding: 0 max(24px, calc((100vw - var(--content)) / 2)) 112px; }
.privacy-panel { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(44px, 7vw, 82px); padding: clamp(34px, 5vw, 62px); border: 1px solid var(--line); border-radius: var(--radius-large); background: linear-gradient(145deg, #10281f, #091813); }
.privacy-heading > p:last-child { margin: 18px 0 0; color: var(--text-dim); }
.privacy-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.privacy-grid article { position: relative; min-width: 0; padding-left: 28px; }
.privacy-grid article > span { position: absolute; top: 0; left: 0; color: var(--accent); font-weight: 700; }
.privacy-grid h3 { margin: 0; font-size: 17px; }
.privacy-grid p { margin: 6px 0 0; color: var(--text-dim); font-size: var(--text-small); line-height: 1.6; }
.privacy-link { grid-column: 1 / -1; padding-top: 20px; border-top: 1px solid var(--line); }

.roadmap-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(48px, 8vw, 110px); }
.roadmap-track { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.roadmap-track article { min-width: 0; padding: 24px 20px; border-right: 1px solid var(--line); }
.roadmap-track article:last-child { border-right: 0; }
.roadmap-track article.roadmap-current { box-shadow: inset 0 2px var(--accent); }
.roadmap-track span { color: var(--text-faint); font-family: var(--font-mono); font-size: var(--text-micro); letter-spacing: .08em; }
.roadmap-track h3 { margin: 12px 0 8px; font-size: 17px; }
.roadmap-track p { margin: 0; color: var(--text-dim); font-size: var(--text-small); line-height: 1.55; }
.roadmap-note { grid-column: 2; margin: -58px 0 0; color: var(--text-faint); font-size: var(--text-small); line-height: 1.65; }

.final-cta { position: relative; overflow: hidden; padding: 96px 24px; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); text-align: center; }
.final-cta-grid { mask-image: radial-gradient(ellipse 64% 100% at 50% 50%, #000, transparent 80%); opacity: .48; }
.final-cta-inner { position: relative; max-width: 760px; margin: 0 auto; }
.final-cta .eyebrow { justify-content: center; }
.final-cta > div > p:not(.eyebrow) { margin: 18px 0 28px; color: var(--text-dim); font-size: 17px; }
.cta-note { display: block; margin-top: 16px; color: var(--text-faint); font-size: var(--text-small); }

.site-footer { background: #050e0c; }
.footer-inner { width: min(var(--content), calc(100% - 48px)); min-height: 150px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 42px; margin: 0 auto; color: var(--text-faint); }
.footer-brand { margin: 0; color: var(--text); }
.footer-inner > p { max-width: 480px; margin: 0; font-size: var(--text-label); line-height: 1.65; }
.footer-inner nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }
.footer-inner nav a { min-height: 44px; display: inline-flex; align-items: center; color: var(--text-dim); font-size: var(--text-small); transition: color .2s ease; }
.footer-inner nav a:hover { color: var(--accent); }

.motion-ready .reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.motion-ready .reveal.reveal-delay-short { transition-delay: 80ms; }
.motion-ready .reveal.reveal-delay { transition-delay: 140ms; }
.motion-ready .reveal.is-visible { opacity: 1; transform: translateY(0); }

.legal-site-header { width: min(900px, calc(100% - 40px)); min-height: 78px; display: flex; align-items: center; gap: 18px; margin: 0 auto; }
.legal-site-header .brand { margin-right: auto; }
.legal-site-header .brand > span:last-child { display: grid; gap: 1px; }
.legal-site-header .brand strong { font-family: var(--font-display); font-size: 16px; }
.legal-site-header .brand small { color: var(--text-faint); font-family: var(--font-mono); font-size: var(--text-micro); }
.legal-page { width: min(900px, calc(100% - 40px)); margin: 0 auto; padding: 70px 0 120px; }
.legal-page > header { margin-bottom: 54px; padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.legal-page h1 { margin: 0; font-size: clamp(42px, 7vw, 70px); letter-spacing: -.045em; line-height: 1; }
.legal-page h2 { margin: 48px 0 14px; font-size: 25px; letter-spacing: -.02em; }
.legal-page p, .legal-page li { color: var(--text-dim); line-height: 1.75; }
.legal-page li + li { margin-top: 8px; }
.legal-page .legal-summary { padding: 20px; border: 1px solid rgba(83, 218, 162, .2); border-radius: var(--radius-medium); background: rgba(83, 218, 162, .045); }
.legal-back { min-height: 44px; display: inline-flex; align-items: center; margin-top: 28px; color: var(--accent); font-weight: 700; }

@media (max-width: 1020px) {
  .public-nav { display: none; }
  .header-actions { margin-left: auto; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 62px; }
  .hero-copy { max-width: 760px; }
  .ticket-wrap { width: min(680px, 100%); }
  .decision-ticket { transform: none; }
  .product-section, .roadmap-section { grid-template-columns: 1fr; }
  .risk-inner { grid-template-columns: 1fr; }
  .roadmap-note { grid-column: 1; margin: 0; }
  .privacy-panel { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .header-inner { width: min(100% - 28px, var(--content)); min-height: 72px; gap: 10px; }
  .brand-copy small { display: none; }
  .header-actions { gap: 6px; }
  .header-cta { padding: 0 14px; font-size: var(--text-small); }
  .hero-inner, .section, .risk-inner { width: min(100% - 32px, var(--content)); }
  .hero-inner { gap: 44px; min-height: 0; padding: 52px 0 68px; }
  .hero h1 { font-size: clamp(42px, 12vw, 48px); }
  .hero-lead { font-size: 17px; }
  .hero-facts { grid-template-columns: 1fr; gap: 0; }
  .hero-facts > div { padding: 12px 0; }
  .hero-facts > div + div { padding-left: 0; border-top: 1px solid var(--line-soft); border-left: 0; }
  .decision-ticket { padding: 20px; border-radius: 20px; }
  .market-snapshot { grid-template-columns: 1fr 1fr; }
  .market-snapshot .signal-snapshot { grid-column: 1 / -1; }
  .prediction-forecast-stage { grid-template-columns: 1fr; }
  .ticket-boundary { flex-wrap: wrap; justify-content: flex-start; }
  .section { padding: 82px 0; }
  .risk-inner { gap: 42px; padding: 82px 0; }
  .section-heading h2, .privacy-heading h2, .final-cta h2 { font-size: clamp(31px, 10vw, 40px); }
  .product-section { gap: 38px; }
  .process-section { padding-right: 16px; padding-left: 16px; }
  .section-heading-centered { margin-bottom: 38px; text-align: left; }
  .section-heading-centered .eyebrow { justify-content: flex-start; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { min-height: 230px; padding: 26px; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-grid article:last-child { border-bottom: 0; }
  .access-grid { grid-template-columns: 1fr; }
  .privacy-section { padding-right: 16px; padding-left: 16px; }
  .privacy-panel { padding: 28px 22px; }
  .privacy-grid { grid-template-columns: 1fr; }
  .roadmap-track { grid-template-columns: 1fr; }
  .roadmap-track article { border-right: 0; border-bottom: 1px solid var(--line); }
  .roadmap-track article:last-child { border-bottom: 0; }
  .final-cta { padding: 76px 16px; }
  .footer-inner { width: min(100% - 32px, var(--content)); grid-template-columns: 1fr; gap: 14px; padding: 34px 0; }
  .footer-inner nav { justify-content: flex-start; }
}

@media (max-width: 460px) {
  .header-inner { flex-wrap: wrap; justify-content: space-between; padding: 8px 0; gap: 4px 8px; }
  .header-actions { min-width: 0; max-width: 100%; flex-wrap: wrap; justify-content: flex-end; margin-left: auto; }
  .brand-mark { width: 34px; height: 34px; }
  .brand-copy strong { font-size: 15px; }
  .language-toggle { width: 44px; height: 44px; }
  .header-cta { min-height: 44px; padding: 0 12px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .decision-ticket { padding: 16px; }
  .ticket-header { align-items: flex-start; }
  .ticket-status b { max-width: 155px; display: block; line-height: 1.45; }
  .simulation-toggle b { display: none; }
  .simulation-heading { grid-template-columns: 1fr; align-items: start; gap: 12px; }
  .market-clock { justify-items: start; }
  .market-snapshot { grid-template-columns: 1fr; }
  .market-snapshot .signal-snapshot { grid-column: auto; }
  .settlement-decision { grid-template-columns: 68px minmax(0, 1fr); }
  .decision-ring { width: 68px; height: 68px; }
  .forecast-heading-row { display: grid; }
  .horizon-card { padding: 7px 5px; }
  .simulation-chart { height: 165px; }
  .access-card { padding: 26px 22px; }
  .legal-site-header { width: min(100% - 28px, 900px); }
  .legal-site-header .brand small { display: none; }
}

@media (max-width: 390px) {
  .header-inner > .brand .brand-copy { display: none; }
  .header-actions { gap: 4px; }
  .header-cta { padding-inline: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .001ms !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
  .motion-ready .reveal { opacity: 1; transform: none; }
  .decision-ticket, .boundary-card, .access-card, .magnetic { transform: none !important; }
}

/* Compact evidence card: no page zoom or scaled text is required. */
.ticket-wrap { align-self: start; }
.decision-ticket { padding: 12px; border-radius: 20px; transform: none; scroll-margin-top: 90px; }
.ticket-header { gap: 8px; }
.ticket-status b { font-size: 9px; line-height: 1.3; letter-spacing: .02em; }
.simulation-toggle { min-height: 36px; }
.simulation-heading { grid-template-columns: minmax(0, 1fr) auto; gap: 10px; margin-top: 8px; }
.ticket-question { gap: 3px; }
.ticket-question span { font-size: 9px; }
.ticket-question strong { font-size: 16px; }
.market-clock { min-width: 80px; justify-items: end; }
.market-clock span { font-size: 8px; }
.market-clock strong { font-size: 26px; }
.market-snapshot { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; margin-top: 8px; }
.market-snapshot > div { gap: 2px; padding: 4px 5px; }
.signal-snapshot strong { font-size: 11px; line-height: 1.25; }
.market-snapshot small, .market-snapshot span { white-space: normal; overflow: visible; line-height: 1.25; letter-spacing: 0; }
.market-snapshot .signal-snapshot { grid-column: auto; }
.prediction-forecast-stage { gap: 6px; margin-top: 6px; }
.settlement-decision { grid-template-columns: 50px minmax(0, 1fr); gap: 8px; padding: 6px 8px; }
.decision-ring { width: 50px; height: 50px; }
.decision-ring b { font-size: 11px; }
.decision-ring small { margin-top: 2px; font-size: 8px; }
.settlement-decision-copy { gap: 2px; }
.settlement-decision-copy > small { font-size: 9px; }
.forecast-block { padding: 7px 8px; }
.forecast-heading-row { display: flex; }
.forecast-heading-row > span, .forecast-heading-row > strong { font-size: 9px; }
.horizon-list { gap: 5px; margin-top: 5px; }
.horizon-card { gap: 2px; padding: 4px 3px; }
.horizon-card > strong { font-size: 10px; line-height: 1.15; white-space: nowrap; }
.horizon-card > span, .horizon-card > small { font-size: 9px; }
.horizon-ring { width: 36px; height: 36px; }
.horizon-countdown { font-size: 9px; }
.forecast-block > p { margin-top: 5px; font-size: 9px; }
.simulation-chart-wrap { margin-top: 6px; padding: 7px 9px; }
.simulation-chart { height: clamp(84px, 12svh, 120px); }
.chart-readout { gap: 6px; }
.chart-readout strong { font-size: 14px; }
.ticket-boundary { margin-top: 6px; padding-top: 6px; gap: 3px 5px; flex-wrap: wrap; font-size: 8px; letter-spacing: 0; }
.settlement-panel { margin-top: 0; padding: 7px 9px; min-height: 64px; }
.settlement-panel > strong { font-size: 14px; line-height: 1.2; }
.settlement-panel > p { line-height: 1.35; }

/* Keep the complete simulation ticket inside the first desktop viewport. */
@media (min-width: 1021px) {
  .hero-inner {
    min-height: calc(100svh - 78px);
    align-items: start;
    padding-top: clamp(28px, 4svh, 48px);
    padding-bottom: clamp(42px, 6svh, 68px);
  }
  .ticket-wrap {
    width: min(560px, 100%);
    justify-self: end;
  }
}

@media (min-width: 1021px) and (max-height: 900px) {
  .hero-inner { padding-top: 20px; padding-bottom: 32px; }
  .decision-ticket { padding: 8px; }
  .simulation-toggle { min-height: 32px; }
  .market-snapshot { margin-top: 6px; }
  .prediction-forecast-stage { gap: 4px; margin-top: 4px; }
  .settlement-decision { grid-template-columns: 44px minmax(0, 1fr); padding: 4px 6px; }
  .decision-ring { width: 44px; height: 44px; }
  .forecast-block { padding: 5px 7px; }
  .horizon-list { margin-top: 3px; }
  .horizon-ring { width: 32px; height: 32px; }
  .forecast-block > p { margin-top: 3px; }
  .simulation-chart-wrap { margin-top: 4px; padding: 5px 7px; }
  .simulation-chart { height: clamp(64px, 8svh, 76px); }
  .ticket-boundary { margin-top: 4px; padding-top: 4px; }
  .settlement-panel { min-height: 56px; padding: 5px 7px; }
  .ticket-caption { margin-top: 7px; }
}

@media (max-width: 460px) {
  .decision-ticket { padding: 10px; scroll-margin-top: 116px; }
  .ticket-question strong { font-size: 14px; }
  .simulation-toggle { min-width: 44px; min-height: 44px; justify-content: center; }
  .market-clock strong { font-size: 24px; }
  .market-snapshot span { font-size: 8px; letter-spacing: 0; }
}

/* Keep every panel accessible even when the result expands on a short screen. */
@media (max-height: 740px) {
  .decision-ticket { max-height: calc(100svh - 128px); overflow-y: auto; scrollbar-width: thin; }
}
