:root {
  color-scheme: dark;
  --night: #0b141d;
  --night-deep: #071017;
  --panel: #111f2a;
  --panel-soft: #152a38;
  --line: rgba(172, 208, 199, 0.16);
  --line-strong: rgba(172, 208, 199, 0.28);
  --copy: #eaf3ee;
  --copy-soft: #c8d8d2;
  --muted: #91a8ae;
  --green: #6fce8e;
  --green-soft: #a7e3b6;
  --blue: #7db8e8;
  --gold: #d9ad62;
  --alert: #e28b78;
  --light: #e8eee6;
  --light-copy: #1c2a2e;
  --light-muted: #5f716e;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--copy);
  background: var(--night-deep);
  font-family: "Archivo", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.site-shell { overflow: hidden; }
.section-shell { width: min(var(--max), calc(100% - 56px)); margin: 0 auto; }

.skip-link {
  position: fixed;
  z-index: 100;
  left: 1rem;
  top: -5rem;
  padding: .75rem 1rem;
  color: var(--night);
  background: var(--copy);
  font-weight: 700;
}
.skip-link:focus { top: 1rem; }

.advisory-banner {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  padding: .7rem max(28px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(217, 173, 98, .24);
  color: #b9c6ca;
  background: #122031;
  font: .72rem/1.5 "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}
.advisory-banner[hidden] { display: none; }
.advisory-banner-label { display: inline-flex; align-items: center; gap: .55rem; color: var(--gold); letter-spacing: .1em; }
.advisory-banner-label .status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(217, 173, 98, .12); }
.advisory-banner p { margin: 0; }
.advisory-banner a { color: var(--green); text-decoration: none; }
.advisory-banner a:hover { color: var(--green-soft); text-decoration: underline; }
.advisory-banner time { margin-left: auto; color: #718592; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  min-height: 78px;
  padding: .85rem max(28px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid transparent;
  background: rgba(11, 20, 29, .72);
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header[data-scrolled="true"] {
  border-color: var(--line);
  background: rgba(11, 20, 29, .94);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: .7rem; width: max-content; text-decoration: none; letter-spacing: .02em; }
.brand span { display: grid; line-height: 1.02; }
.brand strong { color: #f2f7f3; font: 700 .88rem/1.05 "Bricolage Grotesque", Archivo, sans-serif; letter-spacing: .04em; text-transform: uppercase; }
.brand small { margin-top: .24rem; color: var(--muted); font: .68rem/1 "IBM Plex Mono", ui-monospace, monospace; letter-spacing: .18em; text-transform: uppercase; }
.site-header nav { display: flex; gap: clamp(1rem, 3vw, 2.3rem); }
.site-header nav a, .footer-column a {
  color: #9fb3c2;
  font: .72rem/1.2 "IBM Plex Mono", ui-monospace, monospace;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease;
}
.site-header nav a:hover, .site-header nav a:focus-visible, .footer-column a:hover, .footer-column a:focus-visible { color: var(--green); }
.header-cta { justify-self: end; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .75rem 1.25rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font: 700 .74rem/1.1 "Bricolage Grotesque", Archivo, sans-serif;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover:not([aria-disabled="true"]), .button:focus-visible:not([aria-disabled="true"]) { transform: translateY(-2px); }
.button-primary { border-color: var(--green); color: #08140c; background: var(--green); box-shadow: 0 10px 28px rgba(111, 206, 142, .18); }
.button-primary:hover:not([aria-disabled="true"]), .button-primary:focus-visible:not([aria-disabled="true"]) { border-color: var(--green-soft); background: var(--green-soft); }
.button-quiet { color: var(--copy); background: rgba(255, 255, 255, .04); }
.button-quiet:hover, .button-quiet:focus-visible { border-color: var(--green); color: var(--green-soft); }

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(900px, calc(100svh - 78px));
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 76% 38%, rgba(58, 122, 85, .22), transparent 23rem),
    radial-gradient(circle at 91% 80%, rgba(125, 184, 232, .1), transparent 19rem),
    linear-gradient(125deg, #0b141d 8%, #0b1d28 58%, #0a1721 100%);
}
.hero-stars, .hero-grid, .hero-orbit { position: absolute; pointer-events: none; }
.hero-stars { inset: 0; z-index: -3; opacity: .64; background-image: radial-gradient(1.2px 1.2px at 12% 22%, rgba(234, 243, 238, .54), transparent 100%), radial-gradient(1px 1px at 42% 12%, rgba(167, 227, 182, .52), transparent 100%), radial-gradient(1px 1px at 76% 19%, rgba(234, 243, 238, .4), transparent 100%), radial-gradient(1.1px 1.1px at 63% 66%, rgba(125, 184, 232, .52), transparent 100%), radial-gradient(1px 1px at 90% 58%, rgba(217, 173, 98, .44), transparent 100%); background-size: 270px 270px, 330px 330px, 310px 310px, 290px 290px, 370px 370px; }
.hero-grid { inset: 0; z-index: -2; opacity: .5; background-image: linear-gradient(rgba(120, 168, 159, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(120, 168, 159, .045) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, black, transparent 90%); }
.hero-orbit { z-index: -1; border: 1px dashed rgba(125, 184, 232, .16); border-radius: 50%; }
.hero-orbit-one { width: 66vw; max-width: 920px; aspect-ratio: 1; right: -18vw; top: -11vw; transform: rotate(24deg); }
.hero-orbit-two { width: 83vw; max-width: 1160px; aspect-ratio: 1; right: -26vw; top: -20vw; transform: rotate(-20deg); }
.hero-layout { display: grid; grid-template-columns: minmax(320px, .9fr) minmax(420px, 1.1fr); align-items: center; gap: clamp(2rem, 6vw, 7rem); padding-top: 5.5rem; padding-bottom: 5.5rem; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow, .section-kicker, .panel-label, .card-label, .download-kicker { margin: 0 0 1.25rem; color: var(--green); font: 600 .68rem/1.4 "IBM Plex Mono", ui-monospace, monospace; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow-live { display: flex; align-items: center; flex-wrap: wrap; gap: .55rem; color: #9fb3c2; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(111, 206, 142, .12), 0 0 15px rgba(111, 206, 142, .58); animation: pulse 2s ease-in-out infinite; }
h1, h2, h3, h4 { margin: 0; letter-spacing: -.035em; line-height: 1; }
h1, h2, h3, h4 { font-family: "Bricolage Grotesque", Archivo, ui-sans-serif, system-ui, sans-serif; }
h1 { max-width: 12ch; color: var(--copy); font-size: clamp(3.5rem, 7.2vw, 7.2rem); font-weight: 700; }
h1 span { display: block; color: var(--green); text-shadow: 0 0 34px rgba(111, 206, 142, .28); }
.hero-lede { max-width: 620px; margin: 1.8rem 0 2.25rem; color: #b9cbd0; font-size: clamp(1rem, 1.5vw, 1.16rem); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.15rem 1.6rem; }
.text-link { color: #d4e2dc; font: 600 .76rem/1.2 "IBM Plex Mono", ui-monospace, monospace; letter-spacing: .07em; text-decoration: none; text-transform: uppercase; }
.text-link span { display: inline-block; margin-left: .35rem; transition: transform .2s ease; }
.text-link:hover, .text-link:focus-visible { color: var(--green); }
.text-link:hover span, .text-link:focus-visible span { transform: translateX(4px); }
.hero-proof { display: flex; flex-wrap: wrap; gap: .55rem 0; margin-top: 3rem; color: #8099a0; font: .64rem/1.3 "IBM Plex Mono", ui-monospace, monospace; letter-spacing: .06em; text-transform: uppercase; }
.hero-proof span { display: inline-flex; align-items: center; }
.hero-proof span + span::before { content: "·"; margin: 0 .8rem; color: var(--gold); }

.hero-art { position: relative; display: flex; flex-direction: column; align-items: center; min-height: 560px; }
.planet-stage { position: relative; width: min(46vw, 590px); aspect-ratio: 1; margin-top: 1rem; }
.planet { position: absolute; inset: 10%; overflow: hidden; border: 1px solid rgba(167, 227, 182, .58); border-radius: 50%; background: radial-gradient(circle at 31% 25%, rgba(111, 206, 142, .66), transparent 18%), radial-gradient(circle at 65% 63%, rgba(125, 184, 232, .2), transparent 35%), linear-gradient(145deg, #397b55 0%, #1f4860 43%, #0b202c 77%, #061017 100%); box-shadow: inset -42px -28px 88px rgba(0, 0, 0, .6), inset 16px 12px 34px rgba(217, 239, 226, .12), 0 0 100px rgba(111, 206, 142, .18); }
.planet::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 26% 18%, rgba(255, 255, 255, .24), transparent 10%), linear-gradient(115deg, transparent 42%, rgba(10, 28, 39, .25) 70%, rgba(0, 0, 0, .48)); }
.planet-latitude, .planet-longitude { position: absolute; inset: 0; border: 1px solid rgba(234, 243, 238, .13); border-radius: 50%; }
.latitude-one { transform: scaleY(.43) translateY(-34%); }
.latitude-two { transform: scaleY(.34) translateY(83%); }
.longitude-one { transform: scaleX(.4); }
.longitude-two { transform: scaleX(.2); }
.continent { position: absolute; background: rgba(117, 209, 136, .68); filter: drop-shadow(0 0 7px rgba(111, 206, 142, .17)); }
.continent-one { width: 39%; height: 47%; left: 15%; top: 15%; clip-path: polygon(12% 8%, 55% 0, 92% 22%, 77% 44%, 87% 67%, 54% 100%, 27% 73%, 2% 51%); }
.continent-two { width: 28%; height: 38%; right: 12%; top: 25%; clip-path: polygon(7% 18%, 59% 0, 100% 22%, 77% 51%, 92% 77%, 39% 100%, 0 62%); opacity: .76; }
.continent-three { width: 27%; height: 24%; right: 23%; bottom: 10%; clip-path: polygon(10% 14%, 72% 0, 100% 45%, 66% 100%, 0 73%); opacity: .52; }
.planet-signal { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(217, 173, 98, .15), 0 0 24px rgba(217, 173, 98, .9); animation: signal-pulse 2.8s ease-in-out infinite; }
.signal-one { left: 28%; top: 28%; }.signal-two { left: 53%; top: 54%; animation-delay: -.7s; }.signal-three { right: 20%; top: 38%; animation-delay: -1.4s; }.signal-four { right: 29%; bottom: 21%; animation-delay: -2.1s; }
.planet-orbit { position: absolute; inset: 0; border: 1px solid rgba(125, 184, 232, .24); border-radius: 50%; transform: rotate(21deg) scaleY(.42); }
.planet-orbit i { position: absolute; top: -5px; left: 50%; width: 10px; height: 10px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 16px rgba(125, 184, 232, .85); }
.planet-orbit-two { transform: rotate(-34deg) scaleY(.28); border-color: rgba(217, 173, 98, .3); }
.planet-orbit-two i { background: var(--gold); box-shadow: 0 0 15px rgba(217, 173, 98, .8); }
.planet-label { position: absolute; min-width: 190px; padding: .75rem .9rem; border: 1px solid var(--line); background: rgba(8, 20, 29, .78); backdrop-filter: blur(10px); }
.planet-label span { display: block; color: var(--green); font: .57rem/1.3 "IBM Plex Mono", ui-monospace, monospace; letter-spacing: .1em; }
.planet-label strong { display: block; margin-top: .28rem; color: #d9e5df; font: 600 .75rem/1.2 "Bricolage Grotesque", Archivo, sans-serif; }
.planet-label-top { top: 18%; right: -1rem; }
.planet-label-bottom { bottom: 16%; left: -1.25rem; }
.hero-caption { max-width: 340px; margin-top: -.75rem; color: #76909a; font: .67rem/1.5 "IBM Plex Mono", ui-monospace, monospace; letter-spacing: .04em; text-align: center; }
.scroll-cue { position: absolute; bottom: 26px; left: 50%; color: #718b89; font: .63rem/1.3 "IBM Plex Mono", ui-monospace, monospace; letter-spacing: .13em; text-transform: uppercase; transform: translateX(-50%); }
.scroll-cue span { display: inline-block; width: 1px; height: 28px; margin: 0 .65rem -9px 0; background: linear-gradient(var(--green), transparent); }

.section { padding: clamp(88px, 10vw, 150px) 0; }
.section-dark { color: var(--copy); background: #0d1c26; }
.section-mid { color: var(--copy); background: #111f2a; }
.section-light { color: var(--light-copy); background: var(--light); }
.section-intro, .updates-heading { display: flex; align-items: end; justify-content: space-between; gap: 3rem; margin-bottom: 3.5rem; }
.section-intro > p, .updates-lede { max-width: 440px; margin: 0; color: var(--muted); font-size: .96rem; line-height: 1.7; }
.section-light .section-kicker { color: #317e72; }
h2 { color: var(--copy); font-size: clamp(3rem, 5.4vw, 5.7rem); font-weight: 700; }
h2 span { color: var(--green); }
.section-light h2 { color: var(--light-copy); }
.section-light h2 span { color: #317e72; }

.verb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.verb-card { position: relative; min-height: 275px; padding: 1.55rem; border: 1px solid transparent; background: linear-gradient(145deg, #132833, #0c202b); transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.verb-card:hover { z-index: 1; border-color: rgba(111, 206, 142, .42); background: linear-gradient(145deg, #183442, #0e2631); transform: translateY(-3px); }
.verb-number { position: absolute; top: 1.35rem; right: 1.35rem; color: rgba(217, 173, 98, .72); font: .72rem/1 "IBM Plex Mono", ui-monospace, monospace; }
.verb-code { margin: 0 0 2.7rem; color: var(--green); font: 600 .66rem/1.3 "IBM Plex Mono", ui-monospace, monospace; letter-spacing: .1em; text-transform: uppercase; }
.verb-card h3 { max-width: 17ch; color: #edf5ef; font-size: 1.55rem; font-weight: 650; }
.verb-card > p:last-child { max-width: 34ch; margin: 1rem 0 0; color: #8fa7ae; font-size: .88rem; line-height: 1.6; }

.domain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.domain-card { min-height: 235px; padding: 1.4rem; background: #152734; }
.domain-card > span { color: var(--blue); font: .65rem/1 "IBM Plex Mono", ui-monospace, monospace; }
.domain-card h3 { margin-top: 1.85rem; color: #e7f0ec; font-size: 1.22rem; font-weight: 650; }
.domain-card p { min-height: 66px; margin: .85rem 0 1.3rem; color: #92a9af; font-size: .82rem; line-height: 1.55; }
.domain-card strong { color: var(--gold); font: 600 .59rem/1.3 "IBM Plex Mono", ui-monospace, monospace; letter-spacing: .1em; }

.evidence-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr); gap: clamp(3rem, 7vw, 7rem); align-items: start; }
.evidence-lede { max-width: 610px; margin: 1.7rem 0 2.3rem; color: #506562; font-size: 1rem; line-height: 1.7; }
.evidence-list { display: grid; gap: 0; max-width: 600px; margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(28, 42, 46, .16); }
.evidence-list li { display: grid; grid-template-columns: 2rem 1fr auto; gap: .9rem; align-items: baseline; padding: .85rem 0; border-bottom: 1px solid rgba(28, 42, 46, .16); }
.evidence-list li > span { color: #317e72; font: .67rem/1 "IBM Plex Mono", ui-monospace, monospace; }
.evidence-list strong { color: var(--light-copy); font: 650 .9rem/1.3 "Bricolage Grotesque", Archivo, sans-serif; }
.evidence-list em { color: var(--light-muted); font: .78rem/1.3 "IBM Plex Mono", ui-monospace, monospace; font-style: normal; }
.evidence-panel { position: relative; overflow: hidden; padding: 2rem; border: 1px solid #d6e0d7; background: #f8fbf7; box-shadow: 0 20px 60px rgba(42, 70, 59, .09); }
.evidence-panel .panel-label { color: #8a7f74; }
.evidence-panel h3 { max-width: 14ch; color: var(--light-copy); font-size: 1.9rem; font-weight: 700; }
.evidence-panel > p { margin: 1rem 0 1.5rem; color: var(--light-muted); font-size: .86rem; line-height: 1.6; }
.fidelity-list { border-top: 1px solid #dbe4dc; }
.fidelity-list > div { display: grid; grid-template-columns: 10px 1fr; column-gap: .7rem; padding: .8rem 0; border-bottom: 1px solid #dbe4dc; }
.fidelity-swatch { grid-row: span 2; width: 9px; height: 9px; margin-top: .2rem; border-radius: 2px; }
.fidelity-swatch.observed { background: #317e72; }.fidelity-swatch.calibrated { background: #5a9a72; }.fidelity-swatch.representative { background: var(--gold); }.fidelity-swatch.synthetic { background: #b7755f; }
.fidelity-list strong { color: var(--light-copy); font: 650 .78rem/1.3 "Bricolage Grotesque", Archivo, sans-serif; }
.fidelity-list p { margin: .1rem 0 0; color: var(--light-muted); font-size: .75rem; line-height: 1.45; }
.trace-ribbon { position: relative; height: 54px; margin: 1.6rem -2rem -2rem; overflow: hidden; border-top: 1px solid #dbe4dc; background: linear-gradient(90deg, #ecf7ed, #edf3fa); }
.trace-ribbon i { position: absolute; top: 50%; width: 10px; height: 10px; border: 2px solid #317e72; border-radius: 50%; background: #f8fbf7; transform: translateY(-50%); }
.trace-ribbon i::after { content: ""; position: absolute; top: 2px; left: 10px; width: 80px; height: 1px; background: #82b7a3; }
.trace-ribbon i:nth-child(1) { left: 12%; }.trace-ribbon i:nth-child(2) { left: 36%; }.trace-ribbon i:nth-child(3) { left: 60%; }.trace-ribbon i:nth-child(4) { left: 84%; }
.trace-ribbon span { position: absolute; right: 1.2rem; bottom: .55rem; color: #5f716e; font: .58rem/1 "IBM Plex Mono", ui-monospace, monospace; letter-spacing: .08em; }

.capture-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
.capture-card { min-width: 0; margin: 0; overflow: hidden; border: 1px solid var(--line); background: #132631; }
.capture-card img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; border-bottom: 1px solid var(--line); filter: saturate(.88) contrast(.98); transition: filter .25s ease, transform .25s ease; }
.capture-card:hover img { filter: saturate(1) contrast(1.02); transform: scale(1.012); }
.capture-card figcaption { min-height: 180px; padding: 1.35rem 1.45rem 1.5rem; }
.capture-label { margin: 0 0 .9rem; color: var(--green); font: 600 .62rem/1.3 "IBM Plex Mono", ui-monospace, monospace; letter-spacing: .1em; }
.capture-card h3 { max-width: 22ch; color: #eaf3ee; font-size: 1.35rem; font-weight: 650; }
.capture-card figcaption > p:last-child { max-width: 52ch; margin: .75rem 0 0; color: #9ab0b5; font-size: .78rem; line-height: 1.6; }
.capture-featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.45fr .8fr; }
.capture-featured img { height: 100%; min-height: 315px; aspect-ratio: auto; border-right: 1px solid var(--line); border-bottom: 0; }
.capture-featured figcaption { display: flex; flex-direction: column; justify-content: center; }
.capture-synthetic { border-color: rgba(217, 173, 98, .32); }
.capture-synthetic .capture-label { color: var(--gold); }

.download-layout { display: grid; grid-template-columns: minmax(280px, .85fr) minmax(420px, 1.15fr); gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.download-copy > p:not(.section-kicker) { max-width: 520px; margin: 1.7rem 0 0; color: #a8bdc0; font-size: .98rem; line-height: 1.7; }
.trust-list { display: grid; gap: .8rem; margin-top: 2rem; color: #9bc7b0; font: 600 .7rem/1.3 "IBM Plex Mono", ui-monospace, monospace; letter-spacing: .04em; text-transform: uppercase; }
.trust-list span { display: flex; align-items: center; gap: .6rem; }
.trust-list b { display: inline-grid; width: 18px; height: 18px; place-items: center; border: 1px solid rgba(111, 206, 142, .56); border-radius: 50%; color: var(--green); font-size: .66rem; }
.download-panel { overflow: hidden; border: 1px solid var(--line-strong); background: #f4f7f1; color: var(--light-copy); box-shadow: 0 25px 70px rgba(2, 10, 15, .25); }
.download-panel-head { display: flex; align-items: start; justify-content: space-between; gap: 1rem; padding: 1.7rem 1.8rem; border-bottom: 1px solid #d8e0d8; }
.download-panel .panel-label { margin-bottom: .55rem; color: #8a7f74; }
.download-panel-head h3 { font-size: 1.55rem; font-weight: 700; }
.availability-badge { flex: none; padding: .33rem .55rem; border: 1px dashed #bfcbc0; color: #718179; font: 600 .58rem/1.2 "IBM Plex Mono", ui-monospace, monospace; letter-spacing: .08em; }
.availability-badge[data-state="available"] { border-style: solid; border-color: #76b28a; color: #317e72; background: #edf8ef; }
.platform-tabs { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid #d8e0d8; }
.platform-tabs button { padding: 1rem .5rem; border: 0; border-right: 1px solid #d8e0d8; color: #6d7d77; background: transparent; cursor: pointer; font: 700 .68rem/1.2 "IBM Plex Mono", ui-monospace, monospace; letter-spacing: .08em; text-transform: uppercase; }
.platform-tabs button:last-child { border-right: 0; }
.platform-tabs button[aria-selected="true"] { color: #1c5547; box-shadow: inset 0 -3px #317e72; }
.platform-tabs button:focus-visible { outline: 2px solid #317e72; outline-offset: -3px; }
.download-details { padding: 2rem 1.8rem 1.65rem; }
.download-details .download-kicker { margin-bottom: .6rem; color: #8a7f74; }
.download-details h4 { color: var(--light-copy); font-size: 2.7rem; font-weight: 700; }
.download-details > p:not(.download-kicker):not(.download-note) { margin: .8rem 0 0; color: #65756e; font-size: .86rem; }
.download-button { width: 100%; margin-top: 1.35rem; }
.download-button[aria-disabled="true"] { border-color: #bfc8be; color: #66736c; background: #c7cec6; cursor: not-allowed; box-shadow: none; }
.download-note { margin: .75rem 0 0; color: #77857d; font-size: .68rem; line-height: 1.5; text-align: center; }
.store-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #d8e0d8; }
.store-grid > div { display: grid; gap: .3rem; padding: 1rem 1.1rem; border-right: 1px solid #d8e0d8; }
.store-grid > div:last-child { border-right: 0; }
.store-grid strong { color: #3d514b; font: 700 .78rem/1.2 "Bricolage Grotesque", Archivo, sans-serif; }
.store-grid span { color: #87938d; font: .58rem/1.3 "IBM Plex Mono", ui-monospace, monospace; text-transform: uppercase; }
.store-disclosure { margin: 0; padding: 1rem 1.8rem 1.25rem; color: #77857d; font: .67rem/1.5 "IBM Plex Mono", ui-monospace, monospace; }

.updates-heading { align-items: center; margin-bottom: 1.1rem; }
.updates-heading .section-kicker { margin-bottom: 1rem; }
.service-state { display: inline-flex; align-items: center; gap: .55rem; color: var(--muted); font: .68rem/1.3 "IBM Plex Mono", ui-monospace, monospace; text-transform: uppercase; }
.service-state > span { width: 8px; height: 8px; border-radius: 50%; background: #819298; }
.service-state[data-state="healthy"] > span { background: var(--green); box-shadow: 0 0 12px rgba(111, 206, 142, .62); }
.service-state[data-state="attention"] > span { background: var(--gold); box-shadow: 0 0 12px rgba(217, 173, 98, .56); }
.service-state[data-state="error"] > span { background: var(--alert); }
.updates-lede { max-width: 720px; margin-bottom: 2.5rem; }
.updates-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 1px; border: 1px solid var(--line); background: var(--line); }
.news-card { min-height: 285px; padding: 1.8rem; background: #162a36; }
.news-editorial { background: linear-gradient(145deg, #173b3e, #122935); }
.news-card .card-label { margin-bottom: 1.6rem; color: #9db6bb; }
.news-card h3 { max-width: 18ch; color: #eaf3ee; font-size: 1.65rem; font-weight: 650; }
.news-card p:not(.card-label) { max-width: 52ch; margin: 1.1rem 0 0; color: #a8bdc0; font-size: .86rem; line-height: 1.6; }
.card-meta { display: block; margin-top: 2rem; color: #78a69f; font: .63rem/1.3 "IBM Plex Mono", ui-monospace, monospace; text-transform: uppercase; }
.advisory-card { background: #1c2b36; }
.advisory-card[data-state="attention"] { background: #2b2926; }
.advisory-card[data-state="error"] { background: #2a2426; }
.advisory-card[data-state="attention"] .card-label, .advisory-card[data-state="attention"] .advisory-meta span:first-child { color: var(--gold); }
.advisory-card[data-state="error"] .card-label, .advisory-card[data-state="error"] .advisory-meta span:first-child { color: var(--alert); }
.advisory-meta { display: flex; flex-wrap: wrap; gap: .65rem 1rem; margin-top: 2rem; color: #7e949a; font: .61rem/1.3 "IBM Plex Mono", ui-monospace, monospace; text-transform: uppercase; }
.feed-note { margin: 1rem 0 0; color: #8ba2a8; font: .7rem/1.5 "IBM Plex Mono", ui-monospace, monospace; }

.site-footer { padding: 4.2rem 0 1.5rem; border-top: 1px solid var(--line); color: #8ea4a9; background: #071017; }
.footer-grid { display: grid; grid-template-columns: 1.25fr repeat(3, 1fr); gap: 2.5rem; padding-bottom: 3.5rem; }
.footer-brand { color: var(--copy); }
.footer-brand-block > p { max-width: 28ch; margin: 1.1rem 0 0; color: #7d959b; font-size: .78rem; line-height: 1.6; }
.footer-column { display: grid; align-content: start; gap: .75rem; }
.footer-label { margin: 0 0 .35rem; color: #718991; font: 600 .62rem/1.3 "IBM Plex Mono", ui-monospace, monospace; letter-spacing: .1em; }
.footer-column a { font-size: .66rem; }
.footer-column strong, .footer-column span { color: #9eb1b5; font-size: .75rem; line-height: 1.45; }
.footer-owner a { width: max-content; }
.footer-muted { color: #687e84 !important; font-size: .68rem !important; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1.5rem; padding-top: 1.2rem; border-top: 1px solid var(--line); color: #617980; font: .63rem/1.5 "IBM Plex Mono", ui-monospace, monospace; }
.footer-bottom span:last-child { max-width: 66ch; text-align: right; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.no-js .reveal { opacity: 1; transform: none; }
.reveal.reveal-mid { transition-delay: .08s; }.reveal.reveal-late { transition-delay: .16s; }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .38; } }
@keyframes signal-pulse { 0%, 100% { box-shadow: 0 0 0 5px rgba(217, 173, 98, .15), 0 0 24px rgba(217, 173, 98, .86); } 50% { box-shadow: 0 0 0 11px rgba(217, 173, 98, 0), 0 0 30px rgba(217, 173, 98, .96); } }

@media (max-width: 1040px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero-layout { grid-template-columns: 1fr; gap: 1rem; padding-top: 4.5rem; }
  .hero-copy { z-index: 2; }
  .hero-art { min-height: 430px; margin-top: -1.5rem; opacity: .92; }
  .planet-stage { width: min(72vw, 520px); }
  .verb-grid { grid-template-columns: repeat(2, 1fr); }
  .domain-grid { grid-template-columns: repeat(2, 1fr); }
  .download-layout { grid-template-columns: 1fr; gap: 3.5rem; }
  .download-copy { max-width: 720px; }
  .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 1.5rem; }
}

@media (max-width: 700px) {
  .section-shell { width: min(var(--max), calc(100% - 40px)); }
  .advisory-banner { padding-inline: 20px; }
  .advisory-banner time { margin-left: 0; }
  .site-header { min-height: 70px; padding-inline: 20px; }
  .header-cta { display: none; }
  .hero { min-height: auto; }
  .hero-layout { padding-top: 4.6rem; padding-bottom: 4.8rem; }
  h1 { font-size: clamp(3.2rem, 15vw, 5.6rem); }
  .hero-lede { font-size: .98rem; }
  .hero-proof { max-width: 32ch; line-height: 1.7; }
  .hero-proof span + span::before { margin-inline: .55rem; }
  .hero-art { min-height: 340px; margin-top: -1rem; }
  .planet-stage { width: 92vw; max-width: 480px; }
  .planet-label { min-width: 150px; padding: .62rem .7rem; }
  .planet-label-top { right: 0; }.planet-label-bottom { left: 0; }
  .hero-caption { max-width: 280px; font-size: .61rem; }
  .scroll-cue { display: none; }
  .section { padding: 76px 0; }
  .section-intro, .updates-heading { align-items: start; flex-direction: column; gap: 1.4rem; margin-bottom: 2.5rem; }
  h2 { font-size: clamp(2.85rem, 13vw, 4.5rem); }
  .verb-grid, .domain-grid, .updates-grid { grid-template-columns: 1fr; }
  .verb-card { min-height: 235px; }
  .domain-card { min-height: 205px; }
  .domain-card p { min-height: auto; }
  .evidence-layout { grid-template-columns: 1fr; gap: 3rem; }
  .evidence-list li { grid-template-columns: 1.9rem 1fr; }
  .evidence-list em { grid-column: 2; }
  .capture-grid { grid-template-columns: 1fr; }
  .capture-featured { grid-column: auto; display: block; }
  .capture-featured img { height: auto; min-height: 0; aspect-ratio: 16 / 10; border-right: 0; border-bottom: 1px solid var(--line); }
  .download-panel-head { flex-direction: column; }
  .download-details { padding-inline: 1.3rem; }
  .store-grid { grid-template-columns: 1fr; }
  .store-grid > div { border-right: 0; border-bottom: 1px solid #d8e0d8; }
  .store-grid > div:last-child { border-bottom: 0; }
  .store-disclosure { padding-inline: 1.3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.4rem 1.3rem; }
  .footer-brand-block { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom span:last-child { text-align: left; }
}

@media (max-width: 420px) {
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button, .hero-actions .text-link { width: 100%; text-align: center; }
  .hero-proof span { width: 100%; }
  .hero-proof span + span::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand-block { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

.legal-page { min-height: 100vh; color: var(--copy); background: radial-gradient(circle at 78% 22%, rgba(58, 122, 85, .2), transparent 28rem), var(--night); }
.legal-page .site-header { background: rgba(11, 20, 29, .9); }
.legal-main { min-height: calc(100vh - 160px); padding: clamp(5rem, 10vw, 9rem) 0; }
.legal-card { width: min(760px, calc(100% - 40px)); margin: 0 auto; padding: clamp(2rem, 6vw, 4.5rem); border: 1px solid var(--line-strong); background: rgba(17, 31, 42, .82); box-shadow: 0 25px 80px rgba(0, 0, 0, .24); }
.legal-card h1 { max-width: none; margin-bottom: 1.1rem; font-size: clamp(3rem, 7vw, 5.4rem); }
.legal-card > p:not(.section-kicker):not(.legal-note) { color: var(--copy-soft); font-size: .96rem; }
.legal-card h2 { margin: 2.7rem 0 1rem; color: var(--copy); font-size: 1.65rem; }
.legal-card h3 { margin: 1.9rem 0 .65rem; color: var(--copy); font-size: 1.08rem; }
.legal-card p, .legal-card li { color: var(--copy-soft); font-size: .9rem; line-height: 1.7; }
.legal-card ul { margin: .8rem 0 1.2rem; padding-left: 1.25rem; }
.legal-card li { margin: .4rem 0; }
.legal-card a { color: var(--green); text-decoration: none; }
.legal-card a:hover { color: var(--green-soft); text-decoration: underline; }
.legal-updated { color: #7d969c !important; font: .68rem/1.4 "IBM Plex Mono", ui-monospace, monospace !important; letter-spacing: .04em; text-transform: uppercase; }
.legal-summary { margin: 2rem 0; padding: 1.2rem 1.35rem; border: 1px solid rgba(111, 206, 142, .3); background: rgba(40, 91, 60, .2); }
.legal-summary strong { color: var(--green-soft); font: 600 .7rem/1.3 "IBM Plex Mono", ui-monospace, monospace; letter-spacing: .1em; text-transform: uppercase; }
.legal-summary p { margin: .65rem 0 0; }
.legal-block { margin-top: 1.6rem; padding: 1.25rem 1.35rem; border: 1px solid var(--line); background: rgba(7, 16, 23, .36); }
.legal-block p { margin: .35rem 0; color: var(--copy-soft); font-size: .92rem; line-height: 1.6; }
.legal-block p:first-child { margin-top: 0; }
.legal-block p:last-child { margin-bottom: 0; }
.legal-block strong { color: var(--copy); }
.legal-block a, .legal-footer a { color: var(--green); text-decoration: none; }
.legal-block a:hover, .legal-footer a:hover { color: var(--green-soft); text-decoration: underline; }
.legal-note { margin: 2rem 0 0; padding-top: 1.2rem; border-top: 1px solid var(--line); color: #7d969c; font: .68rem/1.6 "IBM Plex Mono", ui-monospace, monospace; }
.legal-footer { padding-top: 1.5rem; }
.legal-footer .footer-bottom { align-items: center; }

/* -------------------------------------------------------------------------
   Editorial game presentation
   The landing page is intentionally more like a game field report than a
   product dashboard: one playable image, one causal chain, and typography
   that creates a sense of scale before the detail arrives.
   ------------------------------------------------------------------------- */
body:not(.legal-page) {
  --night: #090b10;
  --night-deep: #06080c;
  --panel: #11151d;
  --panel-soft: #171d27;
  --line: rgba(228, 235, 224, .15);
  --line-strong: rgba(228, 235, 224, .3);
  --copy: #f1f0e8;
  --copy-soft: #c7cec6;
  --muted: #8d98a3;
  --green: #d1ee73;
  --green-soft: #e7f8a4;
  --blue: #8fc7ec;
  --gold: #f1a267;
  --alert: #f07d68;
  --light: #e9e8df;
  --light-copy: #171a21;
  --light-muted: #626871;
  background: var(--night-deep);
}

body:not(.legal-page) .site-header {
  min-height: 86px;
  background: linear-gradient(180deg, rgba(6, 8, 12, .9), rgba(6, 8, 12, .25));
  border-bottom-color: rgba(228, 235, 224, .08);
}

body:not(.legal-page) .site-header[data-scrolled="true"] {
  background: rgba(9, 11, 16, .92);
  border-bottom-color: rgba(228, 235, 224, .14);
}

body:not(.legal-page) .brand strong { letter-spacing: .08em; }
body:not(.legal-page) .button { border-radius: 2px; }
body:not(.legal-page) .button-primary { color: #151b08; box-shadow: 8px 8px 0 rgba(241, 162, 103, .18); }
body:not(.legal-page) .button-primary:hover:not([aria-disabled="true"]),
body:not(.legal-page) .button-primary:focus-visible:not([aria-disabled="true"]) { box-shadow: 4px 4px 0 rgba(241, 162, 103, .25); }

body:not(.legal-page) .hero {
  min-height: min(940px, calc(100svh - 86px));
  align-items: stretch;
  background:
    radial-gradient(circle at 79% 43%, rgba(209, 238, 115, .12), transparent 22rem),
    linear-gradient(90deg, #07090e 0%, #090c12 42%, #0d131c 100%);
}

body:not(.legal-page) .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(6, 8, 12, .78) 0%, rgba(6, 8, 12, .18) 48%, rgba(6, 8, 12, .5) 100%);
}

body:not(.legal-page) .hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 17rem;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(6, 8, 12, .96));
}

body:not(.legal-page) .hero-stars { opacity: .24; }
body:not(.legal-page) .hero-grid { opacity: .22; background-size: 48px 48px; }
body:not(.legal-page) .hero-orbit { border-color: rgba(209, 238, 115, .12); }
body:not(.legal-page) .hero-orbit-one { width: 78vw; right: -31vw; top: -24vw; }
body:not(.legal-page) .hero-orbit-two { width: 98vw; right: -42vw; top: -37vw; }

body:not(.legal-page) .hero-layout {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(300px, .76fr) minmax(470px, 1.24fr);
  gap: clamp(2.5rem, 5vw, 6rem);
  padding-top: clamp(5rem, 9vw, 8rem);
  padding-bottom: 9rem;
}

body:not(.legal-page) .hero-copy { align-self: center; }
body:not(.legal-page) h1 { max-width: 10ch; letter-spacing: -.065em; }
body:not(.legal-page) h1 span { color: var(--green); text-shadow: 0 0 40px rgba(209, 238, 115, .2); }
body:not(.legal-page) .hero-lede { max-width: 540px; color: #c0c7c9; }
body:not(.legal-page) .hero-proof { color: #89969d; }
body:not(.legal-page) .hero-proof span + span::before { color: var(--gold); }

body:not(.legal-page) .hero-art {
  min-height: 0;
  justify-content: center;
  align-items: stretch;
  perspective: 1200px;
}

body:not(.legal-page) .hero-frame {
  position: relative;
  width: min(100%, 760px);
  margin-left: auto;
  padding: .55rem;
  border: 1px solid rgba(228, 235, 224, .34);
  background: rgba(17, 21, 29, .9);
  box-shadow: 22px 26px 0 rgba(241, 162, 103, .13), 0 32px 80px rgba(0, 0, 0, .52);
  transform: rotate(1.2deg) translateY(1.2rem);
}

body:not(.legal-page) .hero-frame::before {
  content: "";
  position: absolute;
  inset: -.75rem .75rem .75rem -.75rem;
  z-index: -1;
  border: 1px solid rgba(143, 199, 236, .22);
  background: rgba(143, 199, 236, .04);
  transform: rotate(-2.2deg);
}

body:not(.legal-page) .hero-frame-chrome {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .55rem .7rem .65rem;
  color: #9ba7ab;
  font: .57rem/1.2 "IBM Plex Mono", ui-monospace, monospace;
  letter-spacing: .1em;
  text-transform: uppercase;
}

body:not(.legal-page) .hero-frame-chrome span:first-child { color: var(--green); }
body:not(.legal-page) .hero-frame-chrome i { display: inline-block; width: 6px; height: 6px; margin: 0 .35rem 0 0; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px rgba(241, 162, 103, .8); }

body:not(.legal-page) .hero-frame-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(228, 235, 224, .18);
  background: #0b1118;
}

body:not(.legal-page) .hero-frame-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(209, 238, 115, .08), transparent 36%, rgba(6, 8, 12, .35)), repeating-linear-gradient(0deg, transparent 0 3px, rgba(255, 255, 255, .018) 4px);
  mix-blend-mode: screen;
}

body:not(.legal-page) .hero-frame-image img { display: block; width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(1.06) brightness(.86); }

body:not(.legal-page) .hero-frame-callout {
  position: absolute;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: .55rem;
  align-items: baseline;
  min-width: 132px;
  padding: .58rem .65rem .62rem;
  border-left: 2px solid var(--green);
  background: rgba(6, 8, 12, .87);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .2);
}

body:not(.legal-page) .hero-frame-callout span { grid-row: span 2; color: var(--gold); font: .58rem/1 "IBM Plex Mono", ui-monospace, monospace; }
body:not(.legal-page) .hero-frame-callout strong { color: #f2f4ec; font: 650 .72rem/1.2 "Bricolage Grotesque", Archivo, sans-serif; }
body:not(.legal-page) .hero-frame-callout em { color: #aab3b2; font: .58rem/1.2 "IBM Plex Mono", ui-monospace, monospace; font-style: normal; }
body:not(.legal-page) .hero-frame-callout-one { top: 15%; left: 5%; }
body:not(.legal-page) .hero-frame-callout-two { right: 4%; bottom: 12%; border-left-color: var(--gold); }

body:not(.legal-page) .hero-caption { max-width: none; margin: 1.15rem .2rem 0; color: #839096; text-align: left; }
body:not(.legal-page) .hero-caption span { display: block; margin-bottom: .35rem; color: var(--green); font-size: .57rem; letter-spacing: .12em; }

body:not(.legal-page) .hero-bottomline {
  position: absolute;
  bottom: 3.8rem;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(var(--max), calc(100% - 56px));
  padding-top: .85rem;
  border-top: 1px solid rgba(228, 235, 224, .2);
  color: #7e898e;
  font: .58rem/1.2 "IBM Plex Mono", ui-monospace, monospace;
  letter-spacing: .13em;
  text-transform: uppercase;
  transform: translateX(-50%);
}
body:not(.legal-page) .hero-bottomline i { width: 2.2rem; height: 1px; background: var(--gold); opacity: .75; }
body:not(.legal-page) .scroll-cue { bottom: .95rem; color: #8d989b; }

body:not(.legal-page) .section-dark { background: #0b0e14; }
body:not(.legal-page) .section-mid { background: #11151d; }
body:not(.legal-page) .section-light { background: #e9e8df; }
body:not(.legal-page) .section { padding-top: clamp(100px, 12vw, 175px); padding-bottom: clamp(100px, 12vw, 175px); }
body:not(.legal-page) .section-intro { margin-bottom: 3.2rem; }
body:not(.legal-page) .section-kicker { color: var(--gold); }
body:not(.legal-page) .section-intro > p { color: #9ca5a9; }
body:not(.legal-page) .section-light .section-kicker { color: #9d5f39; }
body:not(.legal-page) .section-light h2 span { color: #9d5f39; }

body:not(.legal-page) .causal-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: clamp(.7rem, 2vw, 1.8rem);
  margin: 0 0 4rem;
  padding: 1.2rem 0 1.35rem;
  border-top: 1px solid rgba(228, 235, 224, .2);
  border-bottom: 1px solid rgba(228, 235, 224, .2);
}
body:not(.legal-page) .causal-strip div { display: grid; gap: .35rem; }
body:not(.legal-page) .causal-strip span { color: var(--gold); font: .58rem/1 "IBM Plex Mono", ui-monospace, monospace; }
body:not(.legal-page) .causal-strip strong { color: #f1f0e8; font: 650 .88rem/1.2 "Bricolage Grotesque", Archivo, sans-serif; }
body:not(.legal-page) .causal-strip em { color: #8c969b; font: .62rem/1.25 "IBM Plex Mono", ui-monospace, monospace; font-style: normal; }
body:not(.legal-page) .causal-strip i { color: var(--green); font-size: 1.25rem; font-style: normal; opacity: .8; }

body:not(.legal-page) .verb-grid { grid-template-columns: repeat(3, 1fr); gap: 0; border: 0; background: transparent; }
body:not(.legal-page) .verb-card { min-height: 235px; padding: 1.75rem 1.7rem 2rem 0; border: 0; border-top: 1px solid rgba(228, 235, 224, .16); border-radius: 0; background: transparent; }
body:not(.legal-page) .verb-card:nth-child(3n + 2), body:not(.legal-page) .verb-card:nth-child(3n + 3) { padding-left: 1.7rem; border-left: 1px solid rgba(228, 235, 224, .16); }
body:not(.legal-page) .verb-card:hover { border-top-color: var(--green); background: linear-gradient(180deg, rgba(209, 238, 115, .07), transparent 68%); transform: none; }
body:not(.legal-page) .verb-number { top: 1.7rem; right: 1.1rem; color: var(--gold); }
body:not(.legal-page) .verb-code { margin-bottom: 2.3rem; color: var(--green); }
body:not(.legal-page) .verb-card h3 { max-width: 16ch; color: #f1f0e8; font-size: 1.5rem; }
body:not(.legal-page) .verb-card > p:last-child { color: #909ba0; }

body:not(.legal-page) .domain-grid { grid-template-columns: repeat(2, 1fr); gap: 0 2.5rem; border: 0; background: transparent; }
body:not(.legal-page) .domain-card { display: grid; grid-template-columns: 2.1rem 1fr auto; column-gap: .9rem; min-height: 0; padding: 1.15rem 0 1.25rem; border-top: 1px solid rgba(228, 235, 224, .15); background: transparent; }
body:not(.legal-page) .domain-card > span { grid-row: span 2; padding-top: .25rem; color: var(--gold); }
body:not(.legal-page) .domain-card h3 { margin: 0; color: #f0f0e8; font-size: 1.16rem; }
body:not(.legal-page) .domain-card p { grid-column: 2; min-height: 0; margin: .35rem 0 0; color: #89959b; font-size: .78rem; }
body:not(.legal-page) .domain-card strong { align-self: start; padding-top: .2rem; color: var(--green); font-size: .55rem; }

body:not(.legal-page) .evidence-layout { gap: clamp(3rem, 8vw, 8rem); }
body:not(.legal-page) .evidence-panel { border: 0; background: #11151c; box-shadow: 16px 18px 0 rgba(157, 95, 57, .18), 0 24px 55px rgba(22, 29, 34, .2); transform: rotate(-1deg); }
body:not(.legal-page) .evidence-panel .panel-label { color: var(--green); }
body:not(.legal-page) .evidence-panel h3 { color: #f1f0e8; }
body:not(.legal-page) .evidence-panel > p { color: #aab4b5; }
body:not(.legal-page) .fidelity-list { border-top-color: rgba(228, 235, 224, .17); }
body:not(.legal-page) .fidelity-list > div { border-bottom-color: rgba(228, 235, 224, .17); }
body:not(.legal-page) .fidelity-list strong { color: #f1f0e8; }
body:not(.legal-page) .fidelity-list p { color: #98a4a8; }
body:not(.legal-page) .trace-ribbon { border-top-color: rgba(228, 235, 224, .17); background: linear-gradient(90deg, #161d20, #1b1a19); }
body:not(.legal-page) .trace-ribbon i { border-color: var(--green); background: #11151c; }
body:not(.legal-page) .trace-ribbon i::after { background: var(--gold); }
body:not(.legal-page) .trace-ribbon span { color: #a7b1ae; }

body:not(.legal-page) .capture-grid { grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr); gap: 2rem 1.4rem; align-items: start; }
body:not(.legal-page) .capture-card { border: 0; background: transparent; }
body:not(.legal-page) .capture-card img { border: 1px solid rgba(228, 235, 224, .2); filter: saturate(.78) contrast(1.04); }
body:not(.legal-page) .capture-card:hover img { filter: saturate(1) contrast(1.06); }
body:not(.legal-page) .capture-featured { grid-column: 1; grid-row: 1 / span 2; display: block; }
body:not(.legal-page) .capture-featured img { height: auto; min-height: 0; aspect-ratio: 1.15; border-right: 1px solid rgba(228, 235, 224, .2); border-bottom: 1px solid rgba(228, 235, 224, .2); object-fit: cover; }
body:not(.legal-page) .capture-card:not(.capture-featured) figcaption { min-height: 0; padding: 1rem 0 .4rem; }
body:not(.legal-page) .capture-card:not(.capture-featured) h3 { font-size: 1.16rem; }
body:not(.legal-page) .capture-card:not(.capture-featured) figcaption > p:last-child { color: #8f9ba0; }
body:not(.legal-page) .capture-card:nth-child(4) { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr); gap: 1.5rem; align-items: center; padding-top: 1rem; border-top: 1px solid rgba(228, 235, 224, .15); }
body:not(.legal-page) .capture-card:nth-child(4) img { aspect-ratio: 16 / 8; }
body:not(.legal-page) .capture-card:nth-child(4) figcaption { padding: 0; }
body:not(.legal-page) .capture-synthetic { border-color: transparent; }

body:not(.legal-page) .download-panel { border: 1px solid rgba(228, 235, 224, .24); background: #e9e8df; box-shadow: 16px 18px 0 rgba(209, 238, 115, .1), 0 25px 70px rgba(0, 0, 0, .34); transform: rotate(1deg); }
body:not(.legal-page) .download-panel-head { padding: 1.85rem 1.9rem; }
body:not(.legal-page) .download-panel .panel-label { color: #9d5f39; }
body:not(.legal-page) .platform-tabs button[aria-selected="true"] { color: #1b3326; box-shadow: inset 0 -3px #9d5f39; }
body:not(.legal-page) .download-button { border-radius: 0; }

body:not(.legal-page) .updates-grid { gap: 1.2rem; border: 0; background: transparent; }
body:not(.legal-page) .news-card { min-height: 300px; border: 1px solid rgba(228, 235, 224, .14); background: #151a22; }
body:not(.legal-page) .news-editorial { background: linear-gradient(135deg, #202b29, #121820 70%); }
body:not(.legal-page) .advisory-card { background: #161a20; }

@media (max-width: 1040px) {
  body:not(.legal-page) .hero-layout { grid-template-columns: 1fr; padding-bottom: 9rem; }
  body:not(.legal-page) .hero-art { width: min(100%, 760px); margin: 0 0 0 auto; }
  body:not(.legal-page) .hero-frame { transform: rotate(1deg) translateY(0); }
  body:not(.legal-page) .hero-bottomline { display: none; }
}

@media (max-width: 700px) {
  body:not(.legal-page) .site-header { min-height: 70px; }
  body:not(.legal-page) .hero { min-height: auto; }
  body:not(.legal-page) .hero-layout { padding-top: 4.8rem; padding-bottom: 5rem; }
  body:not(.legal-page) .hero-art { margin-top: 1.4rem; }
  body:not(.legal-page) .hero-frame { box-shadow: 10px 12px 0 rgba(241, 162, 103, .13), 0 22px 50px rgba(0, 0, 0, .48); }
  body:not(.legal-page) .hero-frame::before { inset: -.4rem .4rem .4rem -.4rem; }
  body:not(.legal-page) .hero-frame-callout { min-width: 112px; padding: .46rem .5rem .5rem; }
  body:not(.legal-page) .hero-frame-callout-one { top: 10%; left: 3%; }
  body:not(.legal-page) .hero-frame-callout-two { right: 3%; bottom: 8%; }
  body:not(.legal-page) .causal-strip { grid-template-columns: 1fr auto 1fr; gap: 1rem .7rem; }
  body:not(.legal-page) .causal-strip div:nth-of-type(3), body:not(.legal-page) .causal-strip i:nth-of-type(3) { display: none; }
  body:not(.legal-page) .causal-strip div:nth-of-type(4) { grid-column: 1 / -1; padding-top: .8rem; border-top: 1px dashed rgba(228, 235, 224, .2); }
  body:not(.legal-page) .verb-grid, body:not(.legal-page) .domain-grid { grid-template-columns: 1fr; }
  body:not(.legal-page) .verb-card, body:not(.legal-page) .verb-card:nth-child(3n + 2), body:not(.legal-page) .verb-card:nth-child(3n + 3) { padding: 1.55rem 0 1.7rem; border-left: 0; }
  body:not(.legal-page) .domain-card { grid-template-columns: 1.9rem 1fr; }
  body:not(.legal-page) .domain-card strong { grid-column: 2; padding-top: .5rem; }
  body:not(.legal-page) .evidence-panel { transform: none; }
  body:not(.legal-page) .capture-grid { grid-template-columns: 1fr; }
  body:not(.legal-page) .capture-featured { grid-column: auto; grid-row: auto; }
  body:not(.legal-page) .capture-card:nth-child(4) { grid-column: auto; display: block; padding-top: 0; border-top: 0; }
  body:not(.legal-page) .capture-card:nth-child(4) figcaption { padding-top: 1rem; }
  body:not(.legal-page) .download-panel { transform: none; }
  body:not(.legal-page) .updates-grid { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------------------
   Solarpunk cinematic pass
   The page is an invitation into a living simulation: luminous, ecological,
   and a little more like a game world than a product dashboard. Generated
   concept art is always labelled as concept art; gameplay remains factual.
   ------------------------------------------------------------------------- */
body:not(.legal-page) {
  --night: #06111b;
  --night-deep: #030a12;
  --panel: #0b1d2a;
  --panel-soft: #102b39;
  --line: rgba(111, 226, 218, .18);
  --line-strong: rgba(111, 226, 218, .36);
  --copy: #f1fbf2;
  --copy-soft: #c9e7df;
  --muted: #8eabb3;
  --green: #bdf46d;
  --green-soft: #e3ffac;
  --blue: #4fd8e4;
  --gold: #f3b76b;
  --alert: #ff8977;
  --light: #ddf4e8;
  --light-copy: #09232b;
  --light-muted: #4c6f6f;
  background: var(--night-deep);
}

body:not(.legal-page) .site-header {
  min-height: 82px;
  background: linear-gradient(180deg, rgba(3, 10, 18, .96), rgba(3, 10, 18, .38));
  border-bottom-color: rgba(111, 226, 218, .12);
  backdrop-filter: blur(12px);
}

body:not(.legal-page) .site-header[data-scrolled="true"] {
  background: rgba(4, 18, 28, .9);
  border-bottom-color: rgba(111, 226, 218, .24);
}

body:not(.legal-page) .site-header nav a { color: #a7cbd0; }
body:not(.legal-page) .site-header nav a:hover,
body:not(.legal-page) .site-header nav a:focus-visible { color: var(--green-soft); }
body:not(.legal-page) .brand strong { letter-spacing: .1em; }
body:not(.legal-page) .brand small { color: #79a9ac; }
body:not(.legal-page) .button { border-radius: 4px; }
body:not(.legal-page) .button-primary {
  color: #082015;
  background: linear-gradient(135deg, var(--green-soft), var(--green));
  border-color: var(--green-soft);
  box-shadow: 7px 7px 0 rgba(79, 216, 228, .18), 0 18px 38px rgba(189, 244, 109, .14);
}
body:not(.legal-page) .button-primary:hover:not([aria-disabled="true"]),
body:not(.legal-page) .button-primary:focus-visible:not([aria-disabled="true"]) {
  color: #061a15;
  background: #efffc5;
  border-color: #efffc5;
  box-shadow: 4px 4px 0 rgba(79, 216, 228, .24), 0 20px 42px rgba(189, 244, 109, .22);
}

body:not(.legal-page) .hero {
  min-height: min(980px, calc(100svh - 82px));
  background: #04101a;
  isolation: isolate;
}

body:not(.legal-page) .hero-backdrop {
  position: absolute;
  z-index: -5;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 69% 48%;
  opacity: .84;
  filter: saturate(1.16) contrast(1.05) brightness(.78);
  transform: scale(1.04);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

body:not(.legal-page) .hero::before {
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(3, 10, 18, .98) 0%, rgba(3, 10, 18, .88) 22%, rgba(3, 10, 18, .4) 55%, rgba(3, 10, 18, .2) 100%),
    linear-gradient(180deg, rgba(3, 10, 18, .12) 0%, rgba(3, 10, 18, .05) 52%, rgba(3, 10, 18, .95) 100%);
}

body:not(.legal-page) .hero::after {
  z-index: -3;
  height: 100%;
  background:
    radial-gradient(circle at 76% 48%, rgba(79, 216, 228, .18), transparent 28rem),
    linear-gradient(115deg, transparent 0 48%, rgba(189, 244, 109, .07) 49%, transparent 50% 100%),
    repeating-linear-gradient(0deg, transparent 0 4px, rgba(233, 255, 236, .018) 5px);
  mix-blend-mode: screen;
}

body:not(.legal-page) .hero-stars { z-index: -2; opacity: .48; }
body:not(.legal-page) .hero-grid { z-index: -2; opacity: .2; background-size: 56px 56px; }
body:not(.legal-page) .hero-orbit { z-index: -1; border-color: rgba(189, 244, 109, .22); }
body:not(.legal-page) .hero-orbit-one { width: 84vw; right: -34vw; top: -30vw; }
body:not(.legal-page) .hero-orbit-two { width: 112vw; right: -48vw; top: -46vw; }

body:not(.legal-page) .hero-layout {
  grid-template-columns: minmax(320px, .82fr) minmax(470px, 1.18fr);
  gap: clamp(2.5rem, 6vw, 7rem);
  padding-top: clamp(5rem, 8vw, 8rem);
  padding-bottom: 10rem;
}

body:not(.legal-page) .hero-copy { max-width: 620px; }
body:not(.legal-page) h1 { max-width: 9.2ch; letter-spacing: -.075em; text-wrap: balance; }
body:not(.legal-page) h1 span { color: var(--green); text-shadow: 0 0 42px rgba(189, 244, 109, .3); }
body:not(.legal-page) .hero-lede { color: #c7e0df; }
body:not(.legal-page) .hero-proof { color: #9cc1c1; }
body:not(.legal-page) .hero-proof span + span::before { color: var(--blue); }
body:not(.legal-page) .hero-actions .text-link { color: #d9f4e9; }

body:not(.legal-page) .hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 520px;
  margin-top: 2.2rem;
  border-top: 1px solid rgba(111, 226, 218, .24);
  border-bottom: 1px solid rgba(111, 226, 218, .14);
}

body:not(.legal-page) .hero-metrics > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .65rem;
  padding: .8rem .8rem .85rem 0;
  border-right: 1px solid rgba(111, 226, 218, .14);
}

body:not(.legal-page) .hero-metrics > div + div { padding-left: .8rem; }
body:not(.legal-page) .hero-metrics > div:last-child { border-right: 0; }
body:not(.legal-page) .hero-metrics strong { color: var(--gold); font: .63rem/1 "IBM Plex Mono", ui-monospace, monospace; }
body:not(.legal-page) .hero-metrics span { color: #a7c7c4; font: .64rem/1.28 "IBM Plex Mono", ui-monospace, monospace; letter-spacing: .04em; text-transform: uppercase; }

body:not(.legal-page) .hero-signal {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .55rem;
  color: rgba(205, 247, 216, .64);
  font: .57rem/1 "IBM Plex Mono", ui-monospace, monospace;
  letter-spacing: .1em;
  transform: rotate(-90deg);
  transform-origin: left top;
}
body:not(.legal-page) .hero-signal i { display: block; width: 44px; height: 1px; background: var(--green); box-shadow: 0 0 10px rgba(189, 244, 109, .8); }
body:not(.legal-page) .hero-signal-one { top: 54%; left: 1.5rem; }
body:not(.legal-page) .hero-signal-two { top: 78%; right: -1.5rem; transform: rotate(90deg); transform-origin: right top; }

body:not(.legal-page) .hero-frame {
  border-color: rgba(140, 242, 231, .52);
  background: rgba(4, 18, 27, .88);
  box-shadow: 24px 27px 0 rgba(189, 244, 109, .18), 0 35px 95px rgba(0, 0, 0, .62), 0 0 70px rgba(79, 216, 228, .1);
}
body:not(.legal-page) .hero-frame::before { border-color: rgba(79, 216, 228, .35); background: rgba(79, 216, 228, .07); }
body:not(.legal-page) .hero-frame-image { border-color: rgba(140, 242, 231, .34); }
body:not(.legal-page) .hero-frame-image::after { background: linear-gradient(115deg, rgba(189, 244, 109, .12), transparent 36%, rgba(3, 10, 18, .25)), repeating-linear-gradient(0deg, transparent 0 3px, rgba(255, 255, 255, .022) 4px); }
body:not(.legal-page) .hero-frame-image img { filter: saturate(.88) contrast(1.08) brightness(.9); }
body:not(.legal-page) .hero-frame-callout { border-left-color: var(--green); background: rgba(2, 13, 21, .88); }
body:not(.legal-page) .hero-frame-callout-two { border-left-color: var(--blue); }
body:not(.legal-page) .hero-frame-callout span { color: var(--gold); }
body:not(.legal-page) .hero-caption { color: #a3c0c0; }
body:not(.legal-page) .hero-caption span { color: var(--green); }
body:not(.legal-page) .hero-caption em { display: block; margin-top: .38rem; color: #6f9699; font: .58rem/1.35 "IBM Plex Mono", ui-monospace, monospace; font-style: normal; }
body:not(.legal-page) .hero-bottomline { border-top-color: rgba(111, 226, 218, .27); color: #8bb2b2; }
body:not(.legal-page) .hero-bottomline i { background: var(--blue); }
body:not(.legal-page) .scroll-cue { color: #9bc4bf; }

body:not(.legal-page) .world-intro {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  isolation: isolate;
  background: #061923;
}
body:not(.legal-page) .world-intro-art { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; object-fit: cover; object-position: center 58%; filter: saturate(1.12) contrast(1.05) brightness(.62); transform: scale(1.03); }
body:not(.legal-page) .world-intro-shade { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(3, 14, 22, .96), rgba(3, 14, 22, .74) 39%, rgba(3, 14, 22, .22) 75%, rgba(3, 14, 22, .42)), linear-gradient(180deg, rgba(3, 14, 22, .3), rgba(3, 14, 22, .9)); }
body:not(.legal-page) .world-intro::after { content: ""; position: absolute; inset: 0; z-index: -1; opacity: .42; pointer-events: none; background-image: linear-gradient(rgba(111, 226, 218, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(111, 226, 218, .08) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(90deg, black, transparent 84%); }
body:not(.legal-page) .world-intro-content { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(320px, .8fr) minmax(260px, .5fr); align-items: center; gap: 8vw; min-height: 700px; padding-top: 6rem; padding-bottom: 6rem; }
body:not(.legal-page) .world-intro-copy { max-width: 610px; }
body:not(.legal-page) .world-intro-copy .section-kicker { color: var(--green); }
body:not(.legal-page) .world-intro h2 { max-width: 10ch; color: var(--copy); font-size: clamp(3rem, 6.5vw, 6.3rem); letter-spacing: -.07em; }
body:not(.legal-page) .world-intro h2 span { color: var(--blue); text-shadow: 0 0 34px rgba(79, 216, 228, .3); }
body:not(.legal-page) .world-intro-copy > p:not(.section-kicker) { max-width: 52ch; margin: 1.6rem 0 2.2rem; color: #c0d8d4; font-size: 1.03rem; line-height: 1.72; }
body:not(.legal-page) .world-intro-copy .button span { margin-left: .45rem; font-size: 1rem; }
body:not(.legal-page) .world-intro-aside { position: relative; min-height: 300px; padding: 1.2rem; border: 1px solid rgba(111, 226, 218, .3); background: linear-gradient(145deg, rgba(4, 25, 36, .75), rgba(7, 23, 32, .25)); box-shadow: 15px 15px 0 rgba(189, 244, 109, .12); transform: rotate(2.5deg); }
body:not(.legal-page) .concept-stamp { display: inline-flex; gap: .5rem; padding: .4rem .55rem; border: 1px solid rgba(189, 244, 109, .4); color: var(--green); font: .57rem/1 "IBM Plex Mono", ui-monospace, monospace; letter-spacing: .11em; }
body:not(.legal-page) .concept-stamp span { color: #8fb4b2; }
body:not(.legal-page) .world-intro-readout { position: absolute; right: 1.1rem; bottom: 1.2rem; display: grid; gap: .38rem; text-align: right; }
body:not(.legal-page) .world-intro-readout span { color: var(--gold); font: .58rem/1 "IBM Plex Mono", ui-monospace, monospace; letter-spacing: .14em; }
body:not(.legal-page) .world-intro-readout strong { color: #e7fff1; font: 650 1.35rem/1.05 "Bricolage Grotesque", Archivo, sans-serif; }
body:not(.legal-page) .world-intro-readout em { color: #8fb8b5; font: .62rem/1.2 "IBM Plex Mono", ui-monospace, monospace; font-style: normal; }
body:not(.legal-page) .world-intro-lines { position: absolute; inset: 26% 16% auto 14%; display: grid; gap: 1.1rem; }
body:not(.legal-page) .world-intro-lines i { display: block; height: 1px; background: linear-gradient(90deg, transparent, var(--blue), transparent); box-shadow: 0 0 12px rgba(79, 216, 228, .9); transform: rotate(-18deg); animation: signal-scan 4s ease-in-out infinite; }
body:not(.legal-page) .world-intro-lines i:nth-child(2) { width: 78%; margin-left: 17%; animation-delay: .7s; }
body:not(.legal-page) .world-intro-lines i:nth-child(3) { width: 52%; margin-left: 4%; animation-delay: 1.4s; }
body:not(.legal-page) .world-intro-lines i:nth-child(4) { width: 66%; margin-left: 28%; animation-delay: 2.1s; }

body:not(.legal-page) .section-dark { background: #06131d; }
body:not(.legal-page) .section-mid { background: #0a202b; }
body:not(.legal-page) .section-light { background: #ddf4e8; }
body:not(.legal-page) .section-kicker { color: var(--gold); }
body:not(.legal-page) .section-intro > p { color: #abd0cf; }
body:not(.legal-page) .section-light .section-kicker { color: #0c8d82; }
body:not(.legal-page) .section-light h2 span { color: #0b9b91; }
body:not(.legal-page) .causal-strip { border-top-color: rgba(111, 226, 218, .27); border-bottom-color: rgba(111, 226, 218, .2); }
body:not(.legal-page) .causal-strip i { color: var(--blue); }
body:not(.legal-page) .verb-card { border-top-color: rgba(111, 226, 218, .2); }
body:not(.legal-page) .verb-card:nth-child(3n + 2), body:not(.legal-page) .verb-card:nth-child(3n + 3) { border-left-color: rgba(111, 226, 218, .18); }
body:not(.legal-page) .verb-card:hover { border-top-color: var(--green); background: linear-gradient(180deg, rgba(189, 244, 109, .1), transparent 72%); }
body:not(.legal-page) .verb-code { color: var(--blue); }
body:not(.legal-page) .domain-card { border-top-color: rgba(111, 226, 218, .2); }
body:not(.legal-page) .domain-card strong { color: var(--green); }
body:not(.legal-page) .evidence-panel { background: linear-gradient(145deg, #0b2330, #07161f); box-shadow: 16px 18px 0 rgba(79, 216, 228, .16), 0 24px 55px rgba(4, 22, 29, .28); }
body:not(.legal-page) .evidence-panel h3, body:not(.legal-page) .fidelity-list strong { color: #effff2; }
body:not(.legal-page) .evidence-panel > p, body:not(.legal-page) .fidelity-list p { color: #a9c8c8; }
body:not(.legal-page) .fidelity-list { border-top-color: rgba(111, 226, 218, .2); }
body:not(.legal-page) .fidelity-list > div { border-bottom-color: rgba(111, 226, 218, .2); }
body:not(.legal-page) .fidelity-swatch.observed { background: #35dbb5; }
body:not(.legal-page) .fidelity-swatch.calibrated { background: var(--blue); }
body:not(.legal-page) .fidelity-swatch.representative { background: var(--gold); }
body:not(.legal-page) .fidelity-swatch.synthetic { background: #ff8977; }

body:not(.legal-page) .capture-grid { gap: 2.4rem 1.5rem; }
body:not(.legal-page) .capture-card img { border-color: rgba(111, 226, 218, .28); filter: saturate(.92) contrast(1.04); }
body:not(.legal-page) .capture-card:hover img { filter: saturate(1.08) contrast(1.07); }
body:not(.legal-page) .capture-label { color: var(--green); }
body:not(.legal-page) .capture-card figcaption > p:last-child { color: #a6c9c8; }
body:not(.legal-page) .media-placeholder { min-width: 0; }
body:not(.legal-page) .media-placeholder-visual { position: relative; display: grid; place-items: center; min-height: 300px; overflow: hidden; border: 1px solid rgba(111, 226, 218, .3); background: radial-gradient(circle at 50% 40%, rgba(79, 216, 228, .17), transparent 10rem), linear-gradient(145deg, #0b2d3a, #07141e 70%); }
body:not(.legal-page) .media-placeholder-visual::before { content: ""; position: absolute; inset: 0; opacity: .65; background-image: linear-gradient(rgba(111, 226, 218, .09) 1px, transparent 1px), linear-gradient(90deg, rgba(111, 226, 218, .09) 1px, transparent 1px); background-size: 44px 44px; mask-image: radial-gradient(circle at center, black, transparent 75%); }
body:not(.legal-page) .media-placeholder-orbit { position: absolute; width: 210px; aspect-ratio: 1; border: 1px dashed rgba(189, 244, 109, .58); border-radius: 50%; box-shadow: 0 0 48px rgba(79, 216, 228, .2); transform: rotate(24deg) scaleX(1.65); animation: orbit-drift 12s linear infinite; }
body:not(.legal-page) .media-placeholder-orbit::after { content: ""; position: absolute; top: 10%; left: 48%; width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 18px 6px rgba(189, 244, 109, .55); }
body:not(.legal-page) .media-play { position: relative; z-index: 1; display: grid; place-items: center; width: 76px; height: 76px; padding-left: .24rem; border: 1px solid var(--green); border-radius: 50%; color: #05251d; background: var(--green); box-shadow: 0 0 0 10px rgba(189, 244, 109, .1), 0 0 40px rgba(189, 244, 109, .32); font-size: 1.4rem; }
body:not(.legal-page) .media-placeholder-copy { position: absolute; right: 1rem; bottom: 1rem; left: 1rem; display: flex; align-items: end; justify-content: space-between; gap: 1rem; z-index: 1; }
body:not(.legal-page) .media-placeholder-copy strong { color: #effff2; font: 650 .9rem/1 "Bricolage Grotesque", Archivo, sans-serif; letter-spacing: .06em; }
body:not(.legal-page) .media-placeholder-copy span { color: var(--gold); font: .56rem/1.3 "IBM Plex Mono", ui-monospace, monospace; letter-spacing: .1em; text-align: right; }
body:not(.legal-page) .media-placeholder-screen .media-placeholder-visual { min-height: 300px; background: radial-gradient(circle at 22% 68%, rgba(189, 244, 109, .18), transparent 11rem), linear-gradient(145deg, #123443, #07151f); }
body:not(.legal-page) .screen-placeholder-grid { position: absolute; inset: 1.1rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: .65rem; opacity: .7; }
body:not(.legal-page) .screen-placeholder-grid i { border: 1px solid rgba(111, 226, 218, .28); background: linear-gradient(135deg, rgba(79, 216, 228, .16), rgba(189, 244, 109, .04)); }
body:not(.legal-page) .screen-placeholder-grid i:nth-child(2), body:not(.legal-page) .screen-placeholder-grid i:nth-child(5) { transform: translateY(1.2rem); }
body:not(.legal-page) .screen-placeholder-grid i:nth-child(3) { background: linear-gradient(135deg, rgba(189, 244, 109, .2), rgba(79, 216, 228, .04)); }
body:not(.legal-page) .media-placeholder figcaption { min-height: 0; padding: 1rem 0 .4rem; }

body:not(.legal-page) .download-panel { border-color: rgba(111, 226, 218, .4); background: #dff5e8; box-shadow: 16px 18px 0 rgba(189, 244, 109, .16), 0 25px 70px rgba(0, 20, 27, .4); }
body:not(.legal-page) .download-panel .panel-label { color: #0a8c81; }
body:not(.legal-page) .platform-tabs button[aria-selected="true"] { color: #073c3a; box-shadow: inset 0 -3px #0c9d8e; }
body:not(.legal-page) .download-button { border-radius: 4px; }
body:not(.legal-page) .updates-grid { gap: 1.5rem; }
body:not(.legal-page) .news-card { border-color: rgba(111, 226, 218, .24); background: #0c2531; }
body:not(.legal-page) .news-editorial { background: linear-gradient(135deg, #10453e, #0a202c 70%); }
body:not(.legal-page) .advisory-card { background: #0b1e2a; }

@keyframes hero-drift { from { transform: scale(1.04) translate3d(0, 0, 0); } to { transform: scale(1.08) translate3d(-1.2%, -1%, 0); } }
@keyframes signal-scan { 0%, 100% { opacity: .36; transform: translateX(-8%) rotate(-18deg); } 50% { opacity: 1; transform: translateX(8%) rotate(-18deg); } }
@keyframes orbit-drift { to { transform: rotate(384deg) scaleX(1.65); } }

@media (max-width: 1040px) {
  body:not(.legal-page) .hero-layout { grid-template-columns: 1fr; padding-bottom: 8rem; }
  body:not(.legal-page) .hero-copy { max-width: 720px; }
  body:not(.legal-page) .hero-art { width: min(100%, 800px); margin: 0 0 0 auto; }
  body:not(.legal-page) .hero-signal { display: none; }
  body:not(.legal-page) .world-intro-content { grid-template-columns: 1fr .7fr; gap: 3rem; }
}

@media (max-width: 700px) {
  body:not(.legal-page) .site-header nav { display: none; }
  body:not(.legal-page) .site-header { min-height: 70px; }
  body:not(.legal-page) .hero { min-height: auto; }
  body:not(.legal-page) .hero-backdrop { object-position: 72% center; opacity: .55; }
  body:not(.legal-page) .hero-layout { padding-top: 4.5rem; padding-bottom: 5rem; }
  body:not(.legal-page) h1 { font-size: clamp(3.15rem, 16vw, 5.2rem); }
  body:not(.legal-page) .hero-metrics { grid-template-columns: 1fr; }
  body:not(.legal-page) .hero-metrics > div, body:not(.legal-page) .hero-metrics > div + div { padding: .7rem 0; border-right: 0; border-bottom: 1px solid rgba(111, 226, 218, .14); }
  body:not(.legal-page) .hero-metrics > div:last-child { border-bottom: 0; }
  body:not(.legal-page) .hero-frame { box-shadow: 12px 13px 0 rgba(189, 244, 109, .16), 0 22px 50px rgba(0, 0, 0, .52); }
  body:not(.legal-page) .world-intro { min-height: 760px; }
  body:not(.legal-page) .world-intro-content { grid-template-columns: 1fr; min-height: 760px; padding-top: 5rem; padding-bottom: 5rem; }
  body:not(.legal-page) .world-intro-art { object-position: 61% center; }
  body:not(.legal-page) .world-intro-aside { min-height: 190px; transform: rotate(1deg); }
  body:not(.legal-page) .world-intro-lines { inset: 22% 12% auto 12%; }
  body:not(.legal-page) .capture-grid { grid-template-columns: 1fr; }
  body:not(.legal-page) .media-placeholder-visual { min-height: 240px; }
  body:not(.legal-page) .media-placeholder-copy { align-items: start; flex-direction: column; gap: .4rem; }
  body:not(.legal-page) .media-placeholder-copy span { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  body:not(.legal-page) .hero-backdrop,
  body:not(.legal-page) .world-intro-lines i,
  body:not(.legal-page) .media-placeholder-orbit { animation: none; }
}

/* -------------------------------------------------------------------------
   Approved orbital landing-page target
   The supplied target is a composition reference, not a screenshot to ship:
   orbital Earth, a quiet command rail, one real gameplay frame, and a
   four-state trajectory deck. Concept art stays explicitly labelled.
   ------------------------------------------------------------------------- */
body.target-landing {
  --target-rail: 78px;
  --target-ink: #030a12;
  --target-panel: #071521;
  --target-line: rgba(93, 208, 218, .25);
  --target-copy: #f4f8f0;
  --target-soft: #a5b8bf;
  --target-lime: #bdf46d;
  --target-cyan: #53dbe5;
  --target-amber: #f3ae60;
  background: var(--target-ink);
}

body.target-landing .site-shell { padding-left: var(--target-rail); }

body.target-landing .target-rail {
  position: fixed;
  z-index: 60;
  inset: 0 auto 0 0;
  display: flex;
  width: var(--target-rail);
  flex-direction: column;
  align-items: center;
  border-right: 1px solid rgba(83, 219, 229, .2);
  background: linear-gradient(180deg, rgba(5, 17, 28, .98), rgba(3, 10, 18, .98));
}

body.target-landing .target-rail-brand {
  display: grid;
  width: 100%;
  min-height: 86px;
  place-items: center;
  border-bottom: 1px solid rgba(83, 219, 229, .13);
  text-decoration: none;
}

body.target-landing .target-rail-brand img {
  width: 39px;
  height: 39px;
  filter: drop-shadow(0 0 12px rgba(189, 244, 109, .35));
}

body.target-landing .target-rail-nav {
  display: grid;
  width: 100%;
  margin-top: 1.4rem;
}

body.target-landing .target-rail-nav a {
  position: relative;
  display: grid;
  width: 100%;
  height: 58px;
  place-items: center;
  color: #86aab3;
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}

body.target-landing .target-rail-nav a::after {
  content: "";
  position: absolute;
  right: -1px;
  width: 2px;
  height: 22px;
  background: var(--target-lime);
  box-shadow: 0 0 12px rgba(189, 244, 109, .75);
  opacity: 0;
  transition: opacity .2s ease;
}

body.target-landing .target-rail-nav a:hover,
body.target-landing .target-rail-nav a:focus-visible,
body.target-landing .target-rail-nav a.is-active { color: var(--target-lime); background: rgba(83, 219, 229, .05); }
body.target-landing .target-rail-nav a:hover::after,
body.target-landing .target-rail-nav a:focus-visible::after,
body.target-landing .target-rail-nav a.is-active::after { opacity: 1; }
body.target-landing .target-rail-nav svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.2; }

body.target-landing .site-header {
  position: absolute;
  z-index: 40;
  top: 0;
  right: 0;
  left: var(--target-rail);
  grid-template-columns: 1fr auto;
  min-height: 76px;
  border-bottom: 0;
  background: transparent;
  backdrop-filter: none;
}

body.target-landing .site-header .brand,
body.target-landing .site-header nav { display: none; }
body.target-landing .site-header .header-cta { justify-self: end; border-color: rgba(189, 244, 109, .45); color: var(--target-lime); background: rgba(4, 18, 27, .34); }
body.target-landing .site-header .header-cta:hover,
body.target-landing .site-header .header-cta:focus-visible { color: #07160f; background: var(--target-lime); }

body.target-landing .hero {
  min-height: min(920px, 100svh);
  align-items: stretch;
  background: var(--target-ink);
}

body.target-landing .hero-backdrop {
  object-position: 69% center;
  opacity: .9;
  filter: saturate(.94) contrast(1.08) brightness(.84);
  transform: scale(1.03);
  animation: target-hero-drift 22s ease-in-out infinite alternate;
}

body.target-landing .hero::before {
  background:
    linear-gradient(90deg, rgba(3, 10, 18, .98) 0%, rgba(3, 10, 18, .94) 19%, rgba(3, 10, 18, .45) 49%, rgba(3, 10, 18, .12) 100%),
    linear-gradient(180deg, rgba(3, 10, 18, .25), rgba(3, 10, 18, .94) 100%);
}

body.target-landing .hero::after {
  height: 100%;
  background:
    radial-gradient(circle at 82% 33%, rgba(83, 219, 229, .13), transparent 25rem),
    linear-gradient(115deg, transparent 0 47%, rgba(189, 244, 109, .06) 48%, transparent 49% 100%),
    repeating-linear-gradient(0deg, transparent 0 4px, rgba(233, 255, 236, .018) 5px);
  mix-blend-mode: screen;
}

body.target-landing .hero-layout {
  grid-template-columns: minmax(280px, .7fr) minmax(460px, 1.3fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6.7rem);
  padding-top: clamp(6rem, 10vw, 9rem);
  padding-bottom: clamp(8rem, 12vw, 11rem);
}

body.target-landing .hero-copy { align-self: center; max-width: 560px; }
body.target-landing .eyebrow-live { margin-bottom: 1.55rem; color: #9bc3c6; font-size: .58rem; }
body.target-landing h1 {
  max-width: 10ch;
  color: var(--target-copy);
  font-family: "Bricolage Grotesque", Archivo, sans-serif;
  font-size: clamp(3.45rem, 6vw, 6.35rem);
  font-weight: 300;
  letter-spacing: -.09em;
  line-height: .9;
  text-transform: uppercase;
}
body.target-landing h1 span { color: var(--target-lime); text-shadow: 0 0 38px rgba(189, 244, 109, .25); }
body.target-landing .hero-lede { max-width: 40ch; margin: 1.65rem 0 1.9rem; color: #b9d0d2; font-size: .94rem; line-height: 1.62; }
body.target-landing .hero-actions { gap: .9rem 1.35rem; }
body.target-landing .hero-enter { width: min(100%, 300px); min-height: 46px; justify-content: space-between; padding-inline: 1rem 1.2rem; border-radius: 3px; font-size: .68rem; }
body.target-landing .hero-enter span { font-size: 1rem; }
body.target-landing .hero-actions .text-link { color: #c7e4df; font-size: .62rem; }

body.target-landing .hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 520px;
  margin-top: 2.35rem;
  gap: .8rem;
  color: #90afb2;
  font-size: .52rem;
  letter-spacing: .06em;
  line-height: 1.35;
}
body.target-landing .hero-proof span { display: grid; justify-items: start; gap: .55rem; }
body.target-landing .hero-proof span::before { content: ""; display: block; width: 22px; height: 22px; border: 1px solid rgba(83, 219, 229, .7); border-radius: 5px; box-shadow: inset 0 0 10px rgba(83, 219, 229, .14); }
body.target-landing .hero-proof span:nth-child(1)::before { border-color: var(--target-lime); transform: rotate(30deg); }
body.target-landing .hero-proof span:nth-child(2)::before { border-radius: 50%; }
body.target-landing .hero-proof span:nth-child(3)::before { border-color: var(--target-amber); clip-path: polygon(50% 0, 100% 100%, 0 100%); }
body.target-landing .hero-proof span:nth-child(4)::before { border-color: #b49bff; transform: rotate(45deg) scale(.78); }
body.target-landing .hero-proof span + span::before { margin: 0; }
body.target-landing .hero-proof span + span::after { display: none; }
body.target-landing .hero-metrics { display: none; }

body.target-landing .hero-art { min-height: 0; justify-content: center; align-items: stretch; }
body.target-landing .hero-frame { width: min(100%, 730px); margin-left: auto; padding: .48rem; border-color: rgba(140, 242, 231, .56); background: rgba(4, 18, 27, .86); box-shadow: 17px 20px 0 rgba(189, 244, 109, .16), 0 35px 95px rgba(0, 0, 0, .65), 0 0 70px rgba(79, 216, 228, .12); transform: rotate(.35deg); }
body.target-landing .hero-frame::before { inset: -.7rem .7rem .7rem -.7rem; border-color: rgba(83, 219, 229, .34); background: rgba(83, 219, 229, .05); transform: rotate(-1.2deg); }
body.target-landing .hero-frame-chrome { padding: .42rem .62rem .55rem; font-size: .52rem; }
body.target-landing .hero-frame-image { aspect-ratio: 1.35; }
body.target-landing .hero-frame-callout { display: none; }
body.target-landing .hero-caption { margin-top: .9rem; color: #98b7b7; font-size: .59rem; }
body.target-landing .hero-caption span { margin-bottom: .3rem; color: var(--target-lime); }
body.target-landing .hero-caption em { color: #709498; }
body.target-landing .hero-bottomline { bottom: 3.1rem; left: calc(50% + var(--target-rail) / 2); width: min(var(--max), calc(100% - 56px)); border-top-color: rgba(83, 219, 229, .29); color: #85afb1; }
body.target-landing .hero-bottomline i { width: 1.9rem; background: var(--target-cyan); }
body.target-landing .scroll-cue { display: none; }

body.target-landing .trajectory-deck { position: relative; overflow: hidden; border-top: 1px solid rgba(83, 219, 229, .25); border-bottom: 1px solid rgba(83, 219, 229, .18); background: linear-gradient(180deg, #05131f, #030a12); }
body.target-landing .trajectory-deck::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5; background-image: linear-gradient(rgba(83, 219, 229, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(83, 219, 229, .07) 1px, transparent 1px); background-size: 56px 56px; mask-image: linear-gradient(180deg, black, transparent 88%); }
body.target-landing .trajectory-deck-shell { position: relative; z-index: 1; padding-top: 1.5rem; padding-bottom: 2.2rem; }
body.target-landing .trajectory-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 1.15rem; }
body.target-landing .trajectory-heading .section-kicker { margin: 0; color: var(--target-lime); font-size: .56rem; }
body.target-landing .trajectory-heading h2 { margin: .25rem 0 0; color: #eaf7ee; font-size: clamp(1.2rem, 2vw, 1.7rem); font-weight: 300; letter-spacing: -.05em; line-height: .95; text-transform: uppercase; }
body.target-landing .trajectory-heading h2 span { color: var(--target-cyan); }
body.target-landing .trajectory-heading > p { max-width: 45ch; margin: 0; color: #89a7ab; font: .6rem/1.45 "IBM Plex Mono", ui-monospace, monospace; }
body.target-landing .trajectory-cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .85rem; }
body.target-landing .trajectory-card { min-width: 0; overflow: hidden; border: 1px solid rgba(83, 219, 229, .28); background: #071723; color: inherit; text-decoration: none; transition: border-color .22s ease, transform .22s ease, background .22s ease; }
body.target-landing .trajectory-card:hover, body.target-landing .trajectory-card:focus-visible { border-color: var(--target-lime); background: #0b2230; transform: translateY(-4px); }
body.target-landing .trajectory-card-media { position: relative; overflow: hidden; aspect-ratio: 1.45; background: #08131b; }
body.target-landing .trajectory-card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 44%, rgba(3, 10, 18, .7)); }
body.target-landing .trajectory-card-media img { display: block; width: 100%; height: 100%; object-fit: cover; filter: saturate(.9) contrast(1.06); transition: transform .45s ease, filter .45s ease; }
body.target-landing .trajectory-card:hover .trajectory-card-media img, body.target-landing .trajectory-card:focus-visible .trajectory-card-media img { transform: scale(1.05); filter: saturate(1.05) contrast(1.08); }
body.target-landing .trajectory-card-icon { position: absolute; z-index: 1; right: .8rem; bottom: -.8rem; display: grid; width: 2.3rem; height: 2.3rem; place-items: center; border: 1px solid currentColor; border-radius: 50%; background: #071723; box-shadow: 0 0 0 5px rgba(7, 23, 35, .78); font: 1rem/1 "IBM Plex Mono", ui-monospace, monospace; }
body.target-landing .trajectory-card-copy { display: grid; gap: .28rem; min-height: 86px; padding: .85rem .9rem .8rem; }
body.target-landing .trajectory-card-label { font: .52rem/1.2 "IBM Plex Mono", ui-monospace, monospace; letter-spacing: .1em; }
body.target-landing .trajectory-card-copy strong { color: #e9f6ee; font: 500 .92rem/1.1 "Bricolage Grotesque", Archivo, sans-serif; }
body.target-landing .trajectory-card-copy small { color: #89a8aa; font: .56rem/1.25 "IBM Plex Mono", ui-monospace, monospace; }
body.target-landing .trajectory-card-regenerative .trajectory-card-icon, body.target-landing .trajectory-card-regenerative .trajectory-card-label { color: var(--target-lime); }
body.target-landing .trajectory-card-resilient .trajectory-card-icon, body.target-landing .trajectory-card-resilient .trajectory-card-label { color: var(--target-cyan); }
body.target-landing .trajectory-card-strained .trajectory-card-icon, body.target-landing .trajectory-card-strained .trajectory-card-label { color: var(--target-amber); }
body.target-landing .trajectory-card-dislocated .trajectory-card-icon, body.target-landing .trajectory-card-dislocated .trajectory-card-label { color: #ff806e; }
body.target-landing .trajectory-disclosure { margin: 1rem 0 0; color: #668890; font: .52rem/1.2 "IBM Plex Mono", ui-monospace, monospace; letter-spacing: .08em; text-align: right; }

body.target-landing .world-intro { border-top: 1px solid rgba(83, 219, 229, .15); }

@keyframes target-hero-drift { from { transform: scale(1.03) translate3d(0, 0, 0); } to { transform: scale(1.07) translate3d(-1.3%, -0.8%, 0); } }

@media (max-width: 1040px) {
  body.target-landing { --target-rail: 66px; }
  body.target-landing .hero-layout { grid-template-columns: 1fr; gap: 2.8rem; padding-top: 7rem; padding-bottom: 9rem; }
  body.target-landing .hero-copy { max-width: 700px; }
  body.target-landing .hero-art { width: min(100%, 820px); margin-left: auto; }
  body.target-landing .trajectory-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body.target-landing .trajectory-heading { align-items: start; flex-direction: column; gap: .65rem; }
}

@media (max-width: 700px) {
  body.target-landing { --target-rail: 0px; }
  body.target-landing .site-shell { padding-left: 0; }
  body.target-landing .target-rail { display: none; }
  body.target-landing .site-header { position: sticky; left: 0; min-height: 70px; padding-inline: 20px; border-bottom: 1px solid rgba(83, 219, 229, .17); background: rgba(3, 10, 18, .9); backdrop-filter: blur(14px); }
  body.target-landing .site-header .brand { display: inline-flex; }
  body.target-landing .site-header .header-cta { display: inline-flex; }
  body.target-landing .hero { min-height: auto; }
  body.target-landing .hero-backdrop { object-position: 74% center; opacity: .48; }
  body.target-landing .hero-layout { padding-top: 4.7rem; padding-bottom: 5.2rem; }
  body.target-landing h1 { font-size: clamp(3.3rem, 16vw, 5.5rem); }
  body.target-landing .hero-lede { max-width: 34ch; font-size: .9rem; }
  body.target-landing .hero-actions { align-items: stretch; flex-direction: column; }
  body.target-landing .hero-enter { width: 100%; }
  body.target-landing .hero-actions .text-link { text-align: center; }
  body.target-landing .hero-proof { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem .8rem; }
  body.target-landing .hero-art { margin-top: .8rem; }
  body.target-landing .hero-frame { box-shadow: 10px 12px 0 rgba(189, 244, 109, .15), 0 24px 50px rgba(0, 0, 0, .55); }
  body.target-landing .hero-bottomline { display: none; }
  body.target-landing .trajectory-deck-shell { padding-top: 1.3rem; padding-bottom: 1.8rem; }
  body.target-landing .trajectory-cards { grid-template-columns: 1fr 1fr; gap: .65rem; }
  body.target-landing .trajectory-card-copy { min-height: 78px; padding: .7rem .65rem .65rem; }
  body.target-landing .trajectory-card-copy strong { font-size: .78rem; }
  body.target-landing .trajectory-card-copy small { font-size: .5rem; }
  body.target-landing .trajectory-card-icon { right: .55rem; width: 1.9rem; height: 1.9rem; font-size: .8rem; }
  body.target-landing .trajectory-disclosure { text-align: left; line-height: 1.5; }
}

@media (prefers-reduced-motion: reduce) {
  body.target-landing .hero-backdrop { animation: none; }
}
