@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400;500&family=Manrope:wght@400;500;600;700&family=Newsreader:ital,opsz,wght@1,6..72,300;1,6..72,400&display=swap");

:root {
  color-scheme: dark;
  --ink: #06101d;
  --ink-soft: #0a1828;
  --navy: #0d2136;
  --panel: rgba(10, 27, 44, 0.76);
  --paper: #f3f0e7;
  --muted: #8495a5;
  --line: rgba(177, 207, 226, 0.15);
  --cyan: #59d9f1;
  --cyan-bright: #a4f2ff;
  --pearl: #efe3c1;
  --green: #70e1b4;
  --amber: #f4bd68;
  --red: #ff7e72;
  --serif: "Newsreader", Georgia, serif;
  --sans: "Manrope", "Avenir Next", sans-serif;
  --mono: "DM Mono", "SFMono-Regular", Consolas, monospace;
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; background: var(--ink); }
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 73% 6%, rgba(26, 105, 149, 0.24), transparent 31rem),
    linear-gradient(180deg, #06101d 0%, #081522 48%, #06101d 100%);
  font-family: var(--sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: 10;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  content: "";
  pointer-events: none;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 100; padding: 10px 14px; color: var(--ink); background: var(--paper); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.ambient { position: absolute; z-index: 0; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.ambient-one { top: 190px; left: 0; width: 250px; height: 470px; border: 1px solid rgba(89, 217, 241, .08); border-left: 0; border-radius: 0 50% 50% 0; box-shadow: inset 0 0 0 70px rgba(89, 217, 241, .012), inset 0 0 0 140px rgba(89, 217, 241, .012); }
.ambient-two { top: 580px; right: 0; width: 90px; height: 180px; border-radius: 50% 0 0 50%; background: rgba(89, 217, 241, .07); filter: blur(55px); }

.site-header, main, footer { position: relative; z-index: 1; }
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1280px, calc(100% - 64px));
  height: 92px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: .95rem; font-weight: 500; letter-spacing: -.03em; text-decoration: none; }
.brand img { width: 38px; height: 38px; object-fit: contain; filter: drop-shadow(0 6px 14px rgba(30, 162, 217, .24)); }
.brand strong { color: var(--cyan); font-weight: 700; }
nav { display: flex; align-items: center; gap: 32px; color: #a6b3bd; font-size: .73rem; font-weight: 600; }
nav a { text-decoration: none; transition: color 180ms ease; }
nav a:hover, nav a:focus-visible { color: var(--cyan-bright); }
.nav-github { padding: 10px 15px; border: 1px solid var(--line); border-radius: 4px; color: var(--paper); }

main { width: min(1280px, calc(100% - 64px)); margin: 0 auto; }
.hero { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 60px; min-height: 790px; padding: 78px 0 96px; }
.hero-copy { position: relative; z-index: 3; max-width: 610px; }
.eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 20px; color: var(--cyan); font-family: var(--mono); font-size: .66rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow > span { width: 28px; height: 1px; background: currentColor; box-shadow: 0 0 10px currentColor; }
h1, h2 { margin: 0; font-size: clamp(4rem, 7.2vw, 7.4rem); font-weight: 500; letter-spacing: -.065em; line-height: .86; }
h1 em, h2 em { color: var(--pearl); font-family: var(--serif); font-weight: 300; }
.hero-lede { max-width: 570px; margin: 32px 0 0; color: #a9b7c2; font-size: clamp(1rem, 1.7vw, 1.16rem); line-height: 1.75; }
.hero-actions { display: flex; gap: 12px; margin-top: 38px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 53px; padding: 0 23px; border: 1px solid var(--line); border-radius: 4px; font-size: .79rem; font-weight: 700; text-decoration: none; transition: transform 180ms ease, border-color 180ms ease, background 180ms ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { color: #06101d; background: var(--cyan); border-color: var(--cyan); box-shadow: 0 12px 38px rgba(57, 191, 220, .18); }
.button-primary:hover, .button-primary:focus-visible { background: var(--cyan-bright); border-color: var(--cyan-bright); }
.button-secondary:hover, .button-secondary:focus-visible { border-color: rgba(164, 242, 255, .5); }
.button-icon { font-size: 1.1rem; }
.availability { margin: 22px 0 0; color: #718495; font-family: var(--mono); font-size: .66rem; }
.availability span { margin-right: 7px; color: var(--green); font-size: .5rem; }

.product-stage { position: relative; min-height: 580px; }
.product-stage::before { position: absolute; top: 7%; right: 0; width: 82%; height: 84%; border-radius: 50%; background: radial-gradient(circle, rgba(32, 133, 172, .2), transparent 60%); content: ""; }
.orbit { position: absolute; top: 50%; left: 56%; border: 1px solid rgba(89, 217, 241, .15); border-radius: 50%; transform: translate(-50%, -50%); }
.orbit::before, .orbit::after { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px var(--cyan); content: ""; }
.orbit-outer { width: 510px; height: 510px; }
.orbit-outer::before { top: 56px; left: 76px; }
.orbit-outer::after { right: 25px; bottom: 126px; }
.orbit-inner { width: 370px; height: 370px; border-style: dashed; opacity: .48; }
.orbit-inner::before { right: 34px; top: 74px; }
.orbit-inner::after { left: 16px; bottom: 112px; }
.whale-orb { position: absolute; top: 1%; left: 24%; z-index: 2; width: 330px; height: 330px; overflow: hidden; border: 1px solid rgba(112, 225, 180, .19); border-radius: 50%; background: radial-gradient(circle at 50% 43%, rgba(32, 180, 229, .18), rgba(5, 16, 28, .76) 68%); box-shadow: 0 40px 100px rgba(0, 4, 14, .55), inset 0 0 80px rgba(46, 168, 211, .09); }
.whale-orb::after { position: absolute; inset: 11px; border: 1px solid rgba(255,255,255,.06); border-radius: inherit; content: ""; }
.whale-orb img { width: 100%; height: 100%; object-fit: contain; transform: scale(.9); filter: drop-shadow(0 20px 30px rgba(7, 149, 203, .24)); }
.runtime-card { position: absolute; right: 0; bottom: 30px; z-index: 3; width: min(430px, 73%); border: 1px solid rgba(157, 201, 225, .2); border-radius: 7px; background: rgba(9, 24, 39, .84); box-shadow: 0 35px 90px rgba(0,0,0,.45); backdrop-filter: blur(22px); }
.runtime-topline { display: flex; align-items: center; justify-content: space-between; padding: 15px 18px; border-bottom: 1px solid var(--line); color: #a7b6c2; font-family: var(--mono); font-size: .59rem; letter-spacing: .08em; text-transform: uppercase; }
.runtime-title { display: flex; align-items: center; gap: 8px; }
.runtime-title i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); }
.window-dots { display: flex; gap: 5px; }.window-dots i { width: 5px; height: 5px; border-radius: 50%; background: #405366; }
.runtime-body { padding: 28px; }
.runtime-kicker { color: var(--green); font-family: var(--mono); font-size: .6rem; letter-spacing: .13em; text-transform: uppercase; }
.runtime-body > strong { display: block; margin-top: 8px; font-size: 1.46rem; font-weight: 600; letter-spacing: -.035em; }
.runtime-body > p { margin: 6px 0 25px; color: #728596; font-size: .72rem; }
.runtime-metric { display: flex; justify-content: space-between; padding: 12px 0; border-top: 1px solid var(--line); color: #8496a5; font-size: .69rem; }
.runtime-metric code { color: #c5d7e1; font-family: var(--mono); }
.float-pill { position: absolute; z-index: 4; display: flex; align-items: center; gap: 9px; padding: 10px 13px; border: 1px solid var(--line); border-radius: 3px; color: #a6b4bf; background: rgba(8, 23, 37, .86); box-shadow: 0 15px 35px rgba(0,0,0,.25); font-family: var(--mono); font-size: .56rem; letter-spacing: .05em; text-transform: uppercase; backdrop-filter: blur(12px); }
.float-pill span { color: var(--cyan); }.pill-one { top: 118px; left: 5%; }.pill-two { top: 240px; right: -2%; }
.scroll-cue { position: absolute; bottom: 35px; left: 0; display: flex; align-items: center; gap: 9px; color: #536779; font-family: var(--mono); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; transform: rotate(-90deg) translateY(-38px); transform-origin: left center; }
.scroll-cue span { width: 38px; height: 1px; background: #536779; }

.proof-strip { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-strip > div { display: flex; align-items: center; gap: 18px; min-height: 110px; padding: 24px 30px; border-right: 1px solid var(--line); }.proof-strip > div:last-child { border-right: 0; }
.proof-strip strong { color: var(--pearl); font-family: var(--serif); font-size: 1.8rem; font-style: italic; font-weight: 300; white-space: nowrap; }
.proof-strip span { max-width: 190px; color: #718494; font-size: .68rem; line-height: 1.55; }

.section { padding: 150px 0; }
.section-intro { display: grid; grid-template-columns: 1.3fr .7fr; column-gap: 90px; align-items: end; margin-bottom: 70px; }
.section-intro .eyebrow { grid-column: 1 / -1; }
h2 { font-size: clamp(3.25rem, 6.4vw, 6.6rem); }
.section-intro > p:last-child { max-width: 420px; margin: 0 0 4px; color: #8fa0ad; font-size: .92rem; line-height: 1.75; }
.feature-grid { display: grid; grid-template-columns: 1.08fr .92fr; grid-template-rows: repeat(2, minmax(310px, auto)); gap: 14px; }
.feature { position: relative; overflow: hidden; padding: 38px; border: 1px solid var(--line); border-radius: 5px; background: linear-gradient(145deg, rgba(12, 33, 52, .86), rgba(8, 22, 36, .56)); }
.feature-large { grid-row: 1 / 3; min-height: 630px; background: linear-gradient(155deg, rgba(15, 44, 65, .93), rgba(8, 22, 36, .68)); }
.feature-number { position: absolute; top: 25px; right: 28px; color: #496073; font-family: var(--mono); font-size: .65rem; }
.feature-icon { display: grid; width: 48px; height: 48px; place-items: center; margin-bottom: 74px; border: 1px solid rgba(89, 217, 241, .21); border-radius: 50%; color: var(--cyan); font-size: 1.45rem; }
.feature h3 { max-width: 380px; margin: 0 0 13px; font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 500; letter-spacing: -.045em; }
.feature p { max-width: 450px; margin: 0; color: #8799a8; font-size: .85rem; line-height: 1.7; }
.mini-terminal { position: absolute; right: -35px; bottom: -28px; width: 82%; height: 270px; padding: 22px; border: 1px solid rgba(165, 210, 231, .19); border-radius: 7px 0 0 0; background: rgba(4, 14, 24, .78); box-shadow: -24px -20px 70px rgba(0,0,0,.22); transform: rotate(-2deg); }
.mini-terminal > span { display: flex; gap: 6px; margin-bottom: 55px; }.mini-terminal i { width: 6px; height: 6px; border-radius: 50%; background: #365064; }
.mini-terminal code { color: #869aa8; font-family: var(--mono); font-size: .67rem; line-height: 2.35; }.mini-terminal b { color: var(--green); font-weight: 400; }
.feature:not(.feature-large) .feature-icon { float: left; margin: 0 25px 0 0; }
.feature:not(.feature-large) h3 { padding-top: 5px; }
.feature:not(.feature-large) p { clear: both; padding-top: 44px; }
.version-track { position: absolute; right: 38px; bottom: 32px; left: 38px; height: 1px; background: rgba(89, 217, 241, .16); }.version-track i { position: absolute; top: -4px; width: 9px; height: 9px; border: 2px solid var(--ink-soft); border-radius: 50%; background: #42657a; }.version-track i:nth-child(1) { left: 10%; }.version-track i:nth-child(2) { left: 53%; }.version-track i:nth-child(3) { right: 8%; background: var(--cyan); box-shadow: 0 0 13px var(--cyan); }.version-track span { position: absolute; right: 4%; bottom: 12px; color: var(--cyan); font-family: var(--mono); font-size: .53rem; text-transform: uppercase; }
.feature-dark { background: linear-gradient(145deg, rgba(22, 27, 34, .96), rgba(9, 17, 25, .75)); }
.shell-mark { position: absolute; right: 35px; bottom: 29px; display: flex; align-items: center; gap: 14px; }.shell-mark span { padding: 6px 8px; border: 1px solid #374550; border-radius: 2px; color: #7f929f; font-family: var(--mono); font-size: .53rem; }.shell-mark strong { color: #b3bec5; font-size: .67rem; font-weight: 500; line-height: 1.35; }

.trust { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; border-top: 1px solid var(--line); }
.trust-visual { position: relative; min-height: 620px; }
.boundary { position: absolute; top: 50%; left: 48%; display: grid; place-items: center; border: 1px solid rgba(89, 217, 241, .13); border-radius: 50%; transform: translate(-50%, -50%); }
.boundary > span { position: absolute; top: 48%; right: -36px; padding: 5px 8px; color: #587183; background: var(--ink); font-family: var(--mono); font-size: .5rem; letter-spacing: .09em; text-transform: uppercase; transform: rotate(90deg); }
.boundary-outer { width: 550px; height: 550px; box-shadow: inset 0 0 80px rgba(22, 118, 156, .035); }
.boundary-mid { width: 380px; height: 380px; border-style: dashed; }.boundary-mid > span { top: auto; right: auto; bottom: 34px; transform: none; }
.boundary-core { position: absolute; top: 50%; left: 48%; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 190px; height: 190px; border: 1px solid rgba(89, 217, 241, .28); border-radius: 50%; background: radial-gradient(circle, rgba(42, 147, 185, .14), rgba(6, 16, 29, .6)); box-shadow: 0 0 60px rgba(35, 151, 193, .09); transform: translate(-50%, -50%); }.boundary-core img { width: 105px; height: 105px; object-fit: contain; }.boundary-core span { color: var(--cyan); font-family: var(--mono); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; }
.satellite { position: absolute; padding: 8px 11px; border: 1px solid var(--line); border-radius: 2px; color: #708493; background: rgba(6,16,29,.82); font-family: var(--mono); font-size: .51rem; letter-spacing: .07em; text-transform: uppercase; }.satellite::before { display: inline-block; width: 5px; height: 5px; margin-right: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); content: ""; }.satellite-one { top: 22%; left: 2%; }.satellite-two { right: 0; bottom: 24%; }.satellite-three { bottom: 9%; left: 16%; }
.trust-copy { max-width: 560px; }
.trust-lede { margin: 32px 0 40px; color: #91a2ae; font-size: .92rem; line-height: 1.75; }
.trust-list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }.trust-list li { display: grid; grid-template-columns: 42px 1fr; gap: 12px; padding: 22px 0; border-bottom: 1px solid var(--line); }.trust-list li > span { color: var(--cyan); font-family: var(--mono); font-size: .57rem; }.trust-list strong { font-size: .82rem; }.trust-list p { margin: 5px 0 0; color: #6f8291; font-size: .72rem; line-height: 1.55; }
.text-link { display: inline-block; margin-top: 28px; color: var(--cyan); font-size: .72rem; text-decoration-color: rgba(89, 217, 241, .35); text-underline-offset: 5px; }

.radar { border-top: 1px solid var(--line); }
.radar-head { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 70px; }
.overall { display: grid; grid-template-columns: 12px 1fr 38px; gap: 18px; align-items: start; min-height: 170px; padding: 27px; border: 1px solid var(--line); border-radius: 5px; background: rgba(9, 26, 42, .72); }
.status-dot { width: 9px; height: 9px; margin-top: 4px; border-radius: 50%; background: var(--muted); box-shadow: 0 0 0 6px rgba(132,149,165,.08); }
.overall[data-state="verified"] .status-dot { background: var(--green); box-shadow: 0 0 18px var(--green); }.overall[data-state="blocked"] .status-dot { background: var(--red); box-shadow: 0 0 18px var(--red); }.overall[data-state="checking"] .status-dot { background: var(--amber); box-shadow: 0 0 18px var(--amber); }
.status-label { color: #65798a; font-family: var(--mono); font-size: .54rem; letter-spacing: .1em; text-transform: uppercase; }
.overall strong { display: block; margin-top: 10px; font-size: 1.72rem; font-weight: 500; letter-spacing: -.035em; }.overall p { margin: 10px 0 0; color: #718493; font-size: .7rem; line-height: 1.5; }.overall > a { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--cyan); text-decoration: none; }
.versions { display: grid; grid-template-columns: .8fr .8fr 1.4fr; margin-bottom: 14px; border: 1px solid var(--line); border-radius: 5px; background: var(--line); gap: 1px; overflow: hidden; }.version { margin: 0; padding: 23px 26px; background: #081725; }.version dt, .signal dt { color: #5f7587; font-family: var(--mono); font-size: .54rem; letter-spacing: .1em; text-transform: uppercase; }.version dd { margin: 8px 0 0; color: #bac9d2; font-family: var(--mono); font-size: .78rem; }.version-updated { text-align: right; }
.platforms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }.platform, .signal { position: relative; min-height: 190px; padding: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: 5px; background: rgba(9, 26, 42, .67); transition: border-color 180ms ease, transform 180ms ease; }.platform:hover, .signal:hover { border-color: rgba(89,217,241,.3); transform: translateY(-2px); }.platform::after { position: absolute; right: -8px; bottom: -34px; color: rgba(191, 220, 232, .035); font-family: var(--serif); font-size: 8rem; font-style: italic; content: attr(data-number); }.platform > div { display: flex; align-items: baseline; gap: 10px; }.platform .name { font-size: .9rem; font-weight: 600; }.platform small { color: #617687; font-family: var(--mono); font-size: .52rem; text-transform: uppercase; }.platform strong, .signal dd { display: block; margin: 42px 0 8px; font-family: var(--mono); font-size: .7rem; letter-spacing: .07em; }.platform p, .signal p { max-width: 80%; margin: 0; color: #64798a; font-size: .65rem; line-height: 1.5; }.platform a, .signal a { position: absolute; inset: 0; z-index: 2; }
[data-state="verified"] [data-status] { color: var(--green); }[data-state="blocked"] [data-status] { color: var(--red); }[data-state="checking"] [data-status] { color: var(--amber); }[data-state="unknown"] [data-status] { color: var(--muted); }
.signals { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 14px; }.signal { min-height: 145px; }.signal dl { margin: 0; }.signal dd { margin-top: 28px; }.radar-note { max-width: 800px; margin: 24px 0 0; color: #506575; font-size: .61rem; line-height: 1.65; }

.final-cta { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; padding: 150px 0; border-top: 1px solid var(--line); }.final-action { max-width: 410px; }.final-action p { margin: 0 0 30px; color: #8294a3; font-size: .83rem; line-height: 1.7; }
footer { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; width: min(1280px, calc(100% - 64px)); min-height: 150px; margin: 0 auto; border-top: 1px solid var(--line); color: #5f7383; font-size: .63rem; line-height: 1.65; }footer > p { justify-self: center; margin: 0; text-align: center; }.footer-links { display: flex; justify-self: end; gap: 22px; }.footer-links a { text-decoration: none; }.footer-links a:hover { color: var(--cyan); }

@media (max-width: 980px) {
  .site-header, main, footer { width: min(100% - 40px, 760px); }
  nav a:not(.nav-github) { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 90px; }
  .hero-copy { max-width: 670px; }
  .product-stage { width: min(100%, 680px); margin: -25px auto 0; }
  .section-intro, .trust, .radar-head, .final-cta { grid-template-columns: 1fr; }
  .section-intro { gap: 35px; }.section-intro > p:last-child { margin: 0; }
  .trust { gap: 45px; }.trust-copy { max-width: 680px; }.trust-visual { min-height: 580px; }
  .radar-head { gap: 45px; }.overall { max-width: 600px; }
  .proof-strip > div { flex-direction: column; align-items: flex-start; gap: 3px; }
  .final-cta { gap: 45px; }
}

@media (max-width: 680px) {
  .site-header, main, footer { width: min(100% - 28px, 520px); }
  .site-header { height: 76px; }
  .nav-github { padding: 8px 11px; }
  .hero { min-height: auto; gap: 20px; padding: 70px 0 90px; }
  h1 { font-size: clamp(3.4rem, 17vw, 5.3rem); }
  h2 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .hero-lede { font-size: .93rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }.button { width: 100%; }
  .availability { line-height: 1.6; }
  .product-stage { min-height: 470px; overflow: hidden; transform: scale(.92); transform-origin: top center; }
  .orbit-outer { width: 390px; height: 390px; }.orbit-inner { width: 290px; height: 290px; }
  .whale-orb { left: 15%; width: 260px; height: 260px; }
  .runtime-card { right: 2%; bottom: 10px; width: 87%; }
  .pill-one { top: 70px; left: -4%; }.pill-two { top: 215px; right: -4%; }
  .scroll-cue { display: none; }
  .proof-strip { grid-template-columns: 1fr; }.proof-strip > div { min-height: 86px; border-right: 0; border-bottom: 1px solid var(--line); }.proof-strip > div:last-child { border-bottom: 0; }
  .section { padding: 105px 0; }.section-intro { margin-bottom: 45px; }
  .feature-grid { grid-template-columns: 1fr; grid-template-rows: auto; }.feature-large { grid-row: auto; min-height: 550px; }.feature { min-height: 300px; padding: 28px; }.feature-icon { margin-bottom: 55px; }
  .boundary-outer { width: 350px; height: 350px; }.boundary-mid { width: 270px; height: 270px; }.boundary-core { width: 150px; height: 150px; }.trust-visual { min-height: 440px; overflow: hidden; }.satellite-two { right: 0; }
  .mini-terminal { right: 0; bottom: 0; }
  .versions, .platforms, .signals { grid-template-columns: 1fr; }.version-updated { text-align: left; }.platform { min-height: 165px; }
  .final-cta { padding: 105px 0; }
  footer { grid-template-columns: 1fr; gap: 24px; padding: 38px 0; text-align: left; }footer > p, .footer-links { justify-self: start; text-align: left; }.footer-links { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > *, .product-stage, .proof-strip { animation: reveal 760ms cubic-bezier(.2,.7,.2,1) both; }
  .hero-copy > *:nth-child(2) { animation-delay: 60ms; }.hero-copy > *:nth-child(3) { animation-delay: 120ms; }.hero-copy > *:nth-child(4) { animation-delay: 180ms; }.hero-copy > *:nth-child(5) { animation-delay: 240ms; }
  .product-stage { animation-delay: 160ms; }.proof-strip { animation-delay: 320ms; }
  .orbit-outer { animation: rotate 35s linear infinite; }.orbit-inner { animation: rotate-reverse 28s linear infinite; }
  .whale-orb img { animation: float 5s ease-in-out infinite; }
  @keyframes reveal { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes rotate { to { transform: translate(-50%, -50%) rotate(360deg); } }
  @keyframes rotate-reverse { to { transform: translate(-50%, -50%) rotate(-360deg); } }
  @keyframes float { 50% { transform: scale(.9) translateY(-8px) rotate(1deg); } }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
