/* Facet — the app.
   Design language: lapidary. Angular, precise, hairline-ruled. Every card carries a
   chamfered corner — one cut face — as the signature element. No iridescence. */

:root {
  /* Deep sapphire ground, lit from above right, the way a stone is lit on a jeweller's
     bench. Surfaces are raised, not drawn. Each app carries its own hue so the grid reads
     as objects rather than as a table. */
  --bg:         #050b1a;
  --bg-2:       #081228;
  --surface:    #0d1a37;
  --surface-2:  #122246;
  --rule:       #1d3164;
  --rule-2:     #2b4179;
  --text:       #eaf0ff;
  --text-2:     #a3b5da;
  --text-3:     #6e84b2;
  --sapphire:   #5b95ff;
  --sapphire-2: #8fb8ff;
  --cyan:       #57dcff;
  --verified:   #3ad9a6;
  --amber:      #ffb45c;
  --violet:     #b197fc;
  --a-rgb:      91, 149, 255;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --chamfer: 14px;
  --page: 1180px;
  --ease-out: cubic-bezier(.2,.8,.3,1);
  --ease-spring: cubic-bezier(.16,1,.3,1);
  --shadow-card: 0 2px 4px rgba(2,7,20,.5), 0 18px 34px rgba(2,7,20,.38), 0 42px 72px rgba(2,7,20,.24);
}

:root[data-theme="light"] {
  --bg: #f5f7fc; --bg-2: #edf2fb; --surface: #ffffff; --surface-2: #f7f9fe;
  --rule: #d7deed; --rule-2: #b9c5dc; --text: #111a2e; --text-2: #40506e;
  --text-3: #687894; --sapphire: #245edb; --sapphire-2: #1749b5; --cyan: #087e9b;
  --verified: #087653; --amber: #a95b00; --shadow-card: 0 18px 45px rgba(36,64,112,.12);
}
:root[data-theme="light"] body::before { background: radial-gradient(900px 520px at 80% -10%, rgba(36,94,219,.12), transparent 64%), #f5f7fc; }
:root[data-theme="light"] .appbar { background: rgba(255,255,255,.82); box-shadow: 0 12px 30px rgba(36,64,112,.1); }
:root[data-theme="light"] .cut > .cut-in { background: linear-gradient(168deg, #fff, #f5f8fe); }

.theme-toggle { padding: 6px 10px; border: 1px solid var(--rule-2); border-radius: 999px; color: var(--text-2); background: transparent; font: inherit; font-size: .72rem; cursor: pointer; }
.network-switch { display: inline-grid; grid-template-columns: 1fr 1fr; gap: 4px; margin: 6px 0 28px; padding: 4px; border: 1px solid var(--rule); border-radius: 999px; background: var(--bg-2); }
.network-switch button { min-width: 130px; padding: 9px 18px; border: 0; border-radius: 999px; color: var(--text-3); background: transparent; font: inherit; font-weight: 600; cursor: pointer; }
.network-switch button[aria-selected="true"] { color: #fff; background: var(--sapphire); box-shadow: 0 6px 18px rgba(36,94,219,.25); }
[data-network-panel][hidden] { display: none !important; }
.testnet-card { padding: 24px; border: 1px solid var(--rule); background: var(--surface); }
.testnet-card h3 { margin-top: 18px; }
.testnet-card p { color: var(--text-2); }
.facet-map-wrap { margin-top: 30px; padding: 20px; border: 1px solid var(--rule); background: var(--surface); }
.facet-map-wrap h3 { font-size: 1rem; }
.facet-map-wrap > p, .muted { color: var(--text-3); font-size: .78rem; }
.facet-map { display: grid; gap: 8px; margin-top: 14px; }
.facet-map-row { display: grid; grid-template-columns: 1fr auto auto auto; align-items: center; gap: 12px; padding: 10px 0; border-top: 1px solid var(--rule); font-size: .78rem; }
.facet-map-row span { color: var(--text-3); }
.facet-map-row button { border: 0; color: var(--sapphire); background: transparent; cursor: pointer; font: inherit; font-size: .72rem; }
.facet-map-row button:disabled { color: var(--text-3); cursor: default; }
.identity-flow { display: grid; grid-template-columns: 1fr 80px 1fr 1fr; gap: 14px; align-items: stretch; margin: 0 0 28px; }
.identity-root, .identity-branch { min-height: 112px; padding: 20px; border: 1px solid var(--rule-2); background: var(--surface); display: flex; flex-direction: column; justify-content: center; }
.identity-root { border-color: var(--sapphire); box-shadow: inset 3px 0 0 var(--sapphire); }
.identity-branch { border-color: rgba(var(--a-rgb),.48); box-shadow: inset 3px 0 0 rgba(var(--a-rgb),.9); }
.identity-branch:hover { border-color: rgba(var(--a-rgb),.9); background: var(--surface-2); }
.identity-root span, .identity-branch span { color: var(--text-3); font-family: var(--mono); font-size: .62rem; letter-spacing: .14em; }
.identity-root strong, .identity-branch strong { margin-top: 7px; font-size: 1rem; }
.identity-root small, .identity-branch small { margin-top: 3px; color: var(--text-3); }
.identity-line { position: relative; }
.identity-line::before { content: ""; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, var(--sapphire), var(--violet)); }
.identity-line::after { content: "→"; position: absolute; top: calc(50% - 13px); right: -3px; color: var(--violet); }
.identity-status { min-height: 58px; padding: 13px 15px; border: 1px solid var(--rule); background: var(--bg-2); color: var(--text-2); font-size: .78rem; }

.accent-sapphire { --a-rgb: 91, 149, 255; --accent: var(--sapphire); }
.accent-emerald  { --a-rgb: 58, 217, 166; --accent: var(--verified); }
.accent-violet   { --a-rgb: 177, 151, 252; --accent: var(--violet); }
.accent-amber    { --a-rgb: 255, 180, 92;  --accent: var(--amber); }

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html { background: var(--bg); }
body {
  min-height: 100vh; margin: 0; color: var(--text); background: var(--bg); position: relative; isolation: isolate;
  font-family: var(--sans); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }
h1, h2, h3 { margin: 0; font-weight: 620; letter-spacing: -0.025em; line-height: 1.08; }
::selection { color: #03101f; background: var(--cyan); }
button, a { -webkit-tap-highlight-color: transparent; }

.wrap { max-width: var(--page); margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }

body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(900px 520px at 80% -10%, rgba(91,149,255,.24), transparent 64%),
    radial-gradient(760px 520px at 0% 104%, rgba(87,220,255,.12), transparent 60%),
    linear-gradient(180deg, #0a1428 0%, var(--bg) 48%, #040816 100%);
  background-color: var(--bg);
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .28;
  background-image:
    linear-gradient(rgba(143,184,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143,184,255,.035) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.72), transparent 70%);
}

/* ---- chamfered surface: two layers so the hairline follows the cut ---- */
.cut {
  position: relative; padding: 1px;
  background: linear-gradient(150deg, rgba(var(--a-rgb), .62), rgba(var(--a-rgb), .12) 40%, var(--rule) 76%);
  clip-path: polygon(0 0, calc(100% - var(--chamfer)) 0, 100% var(--chamfer), 100% 100%, 0 100%);
  transform-style: preserve-3d;
  transform: perspective(1200px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateZ(0);
  transition: transform .5s var(--ease-out), box-shadow .4s, filter .4s;
  box-shadow: var(--shadow-card);
  will-change: transform;
}
.cut > .cut-in {
  height: 100%; position: relative; transform-style: preserve-3d;
  background:
    radial-gradient(130% 90% at 100% 0%, rgba(var(--a-rgb), .19), transparent 56%),
    linear-gradient(168deg, var(--surface-2) 0%, var(--surface) 50%, #0a152c 100%);
  clip-path: polygon(0 0, calc(100% - var(--chamfer)) 0, 100% var(--chamfer), 100% 100%, 0 100%);
}
/* the polished top edge of a slab */
.cut > .cut-in::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.02) 14%, transparent 30%);
  mix-blend-mode: screen;
}
.cut > .cut-in::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .42;
  background: linear-gradient(120deg, transparent 0 44%, rgba(255,255,255,.05) 50%, transparent 56%);
  transform: translateX(-120%); transition: transform .8s var(--ease-out);
}
/* light travelling across the face, following the cursor */
.sheen {
  position: absolute; inset: 0; pointer-events: none; opacity: 0;
  transition: opacity .35s ease;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%),
    rgba(var(--a-rgb), .30), rgba(255,255,255,.07) 26%, transparent 58%);
  mix-blend-mode: screen;
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .cut { transition: transform .12s ease-out, box-shadow .4s, filter .4s; }
  .cut:hover {
    filter: saturate(1.08);
    box-shadow: 0 2px 4px rgba(2,7,20,.5), 0 18px 34px rgba(2,7,20,.55),
      0 44px 72px rgba(2,7,20,.5), 0 0 44px rgba(var(--a-rgb), .22);
  }
  .cut:hover .sheen { opacity: 1; }
  .cut:hover > .cut-in::after { transform: translateX(120%); }
  .cut:hover .mono-badge { transform: translateZ(42px); }
  .cut:hover .amount, .cut:hover .id-name { transform: translateZ(26px); }
  .cut:hover .btn { transform: translateZ(34px); }
}
.mono-badge, .amount, .id-name, .btn { transition: transform .3s cubic-bezier(.2,.8,.3,1); }

@keyframes page-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes card-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { opacity: .55; transform: scale(.88); box-shadow: 0 0 0 0 rgba(255,180,92,0); }
  50% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 5px rgba(255,180,92,.13); }
}
@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -8px, 0); }
}
@keyframes orbit {
  to { transform: rotate(360deg); }
}
@keyframes shimmer {
  0% { transform: translateX(-120%); }
  55%, 100% { transform: translateX(120%); }
}

.wrap > .appbar { animation: page-in .7s var(--ease-spring) both; }
.wrap > .hero, .wrap > .launch-hero, .wrap > .doc-hero { animation: page-in .8s .08s var(--ease-spring) both; }
.wrap > .stats, .wrap > .launch-layout, .wrap > .ready-safety, .wrap > .ready-grid {
  animation: page-in .8s .18s var(--ease-spring) both;
}
.wrap > section.block { animation: page-in .75s .26s var(--ease-spring) both; }
.grid > .cut, .stats > .cut { animation: card-in .7s var(--ease-spring) both; }
.grid > .cut:nth-child(2), .stats > .cut:nth-child(2) { animation-delay: .08s; }
.grid > .cut:nth-child(3), .stats > .cut:nth-child(3) { animation-delay: .16s; }
.grid > .cut:nth-child(4) { animation-delay: .24s; }

/* ---- app bar ---- */
.appbar {
  position: sticky; top: 14px; z-index: 20; display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 24px; margin-top: 14px; padding: 0 12px 0 14px;
  border: 1px solid rgba(91,149,255,.22); background: rgba(5,11,26,.68);
  box-shadow: 0 16px 34px rgba(2,7,20,.24), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(18px) saturate(130%); -webkit-backdrop-filter: blur(18px) saturate(130%);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}
.appbar::after {
  content: ""; position: absolute; top: -1px; left: 18%; width: 30%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent); opacity: .65;
}
.brand { display: flex; align-items: center; gap: 13px; min-width: max-content; transition: transform .3s var(--ease-out); }
.brand:hover { transform: translateX(2px); }
.brand canvas { width: 34px; height: 34px; display: block; filter: drop-shadow(0 0 12px rgba(91,149,255,.24)); }
.wordmark { font-size: 1.05rem; font-weight: 640; letter-spacing: -0.02em; }
.brand small { display: block; font-family: var(--mono); font-size: .66rem; color: var(--text-3);
  letter-spacing: .14em; text-transform: uppercase; margin-top: 2px; }
.appnav { display: flex; align-items: center; gap: 26px; font-size: .82rem; color: var(--text-2); }
.appnav a { position: relative; padding: 21px 0; white-space: nowrap; }
.appnav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 14px; height: 1px;
  background: var(--sapphire); transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ease-out); }
.appnav a:hover { color: var(--sapphire-2); }
.appnav a:hover::after, .appnav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.appnav a[aria-current="page"] { color: var(--text); }

/* ---- hero ---- */
.hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center;
  padding: 40px 0 64px; }
.eyebrow { font-family: var(--mono); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--sapphire); margin-bottom: 22px; }
.hero h1 { font-size: clamp(2.6rem, 5.4vw, 4.1rem); max-width: 13ch; }
.tagline { font-size: 1.05rem; color: var(--sapphire); font-weight: 600; margin: 22px 0 0; }
.hero p.sub { color: var(--text-2); font-size: 1.02rem; max-width: 44ch; margin: 12px 0 0; }
.stage { aspect-ratio: 1; width: 100%; max-width: 420px; margin-inline: auto; position: relative; }
.stage canvas { width: 100%; height: 100%; display: block; touch-action: none; cursor: grab; }

.live { display: inline-flex; align-items: center; gap: 9px; margin-top: 28px;
  font-family: var(--mono); font-size: .74rem; color: var(--text-2);
  border: 1px solid var(--rule); padding: 8px 15px; border-radius: 999px;
  background: linear-gradient(160deg, rgba(91,149,255,.14), rgba(8,18,40,.7));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07); }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--text-3); flex: none; }
.live[data-state="live"] .dot { background: var(--verified); box-shadow: 0 0 0 3px rgba(13,107,76,.14); }
.live[data-state="loading"] .dot { background: var(--amber); }
.live[data-state="stale"] .dot { background: var(--amber); }

/* ---- stats ---- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding-bottom: 8px; }
.stat { padding: 22px 24px 24px; }
.stat .k { font-family: var(--mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-3); }
.stat .v { font-size: 2.1rem; font-weight: 640; letter-spacing: -.035em; margin-top: 12px; line-height: 1; }
.stat .v.sm { font-size: 1.25rem; letter-spacing: -.02em; padding-top: 12px; }
.stat .v.ok { color: var(--verified); }
.stat .n { font-size: .78rem; color: var(--text-3); margin-top: 10px; }

/* ---- sections ---- */
section.block { padding: 62px 0 0; }
.head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding-bottom: 22px; border-bottom: 1px solid var(--rule-2); margin-bottom: 26px; }
.head h2 { font-size: 1.5rem; }
.head .aside { font-size: .84rem; color: var(--text-3); }

/* ---- identity cards ---- */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 20px; }
.id-card { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 18px; height: 100%; }
.id-top { display: flex; align-items: flex-start; gap: 14px; }

.mono-badge {
  width: 42px; height: 42px; flex: none; display: grid; place-items: center;
  font-family: var(--mono); font-size: .8rem; font-weight: 600; color: var(--accent, var(--sapphire));
  background: linear-gradient(150deg, rgba(var(--a-rgb), .30), rgba(var(--a-rgb), .08));
  border: 1px solid rgba(var(--a-rgb), .45);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 4px 12px rgba(var(--a-rgb), .18);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}
.mono-badge.dim { color: var(--text-3); background: rgba(255,255,255,.04); border-color: var(--rule);
  box-shadow: none; }
.id-name { font-size: 1.08rem; font-weight: 620; letter-spacing: -.01em; }
.id-ctx { font-size: .82rem; color: var(--text-3); margin-top: 2px; }
.pill { font-family: var(--mono); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-2); border: 1px solid var(--rule-2); padding: 4px 9px; border-radius: 3px; }

.amount { font-size: 1.9rem; font-weight: 640; letter-spacing: -.035em; line-height: 1; }
.amount small { display: block; font-family: var(--mono); font-size: .66rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-3); font-weight: 400; margin-bottom: 9px; }
.amount [data-source="snapshot"], .tx [data-source="snapshot"] { color: var(--text-3); }
.amount [data-source="unavailable"], .tx [data-source="unavailable"] { color: var(--amber); }

.addr { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: .76rem;
  color: var(--text-2); background: rgba(3, 10, 26, .5); border: 1px solid var(--rule);
  padding: 9px 11px; border-radius: 4px; box-shadow: inset 0 1px 2px rgba(0,0,0,.35); }
.addr a { color: var(--text-2); }
.addr a:hover { color: var(--sapphire); }
.copy-btn { margin-left: auto; background: none; border: 0; color: var(--text-3); cursor: pointer;
  font-family: var(--mono); font-size: .68rem; padding: 2px 4px; }
.copy-btn:hover { color: var(--sapphire); }

.txs { display: flex; flex-direction: column; gap: 7px; margin-top: auto; }
.tx { display: flex; align-items: center; gap: 9px; font-size: .76rem; color: var(--text-3); }
.tx .tick { color: var(--verified); font-size: .8rem; }
.tx a { font-family: var(--mono); color: var(--text-2); }
.tx a:hover { color: var(--sapphire); }

.id-card.empty { border-style: none; }
.id-card.empty .id-name { color: var(--text-2); }

/* ---- app tiles ---- */
.tile { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 16px; height: 100%; }
.tile-top { display: flex; align-items: flex-start; gap: 14px; }
.tile-note { font-size: .85rem; color: var(--text-2); }
.calls { font-family: var(--mono); font-size: .72rem; color: var(--text-3); line-height: 1.7;
  border-top: 1px solid var(--rule); padding-top: 12px; }
.calls a { color: var(--text-2); }
.calls a:hover { color: var(--sapphire); }
.calls b { color: var(--sapphire); font-weight: 500; }

.act { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.btn {
  font: inherit; font-size: .88rem; font-weight: 600; color: #04101f;
  background: linear-gradient(165deg, var(--accent, var(--sapphire)), rgba(var(--a-rgb), .78));
  border: 0; padding: 11px 20px; cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 6px 16px rgba(var(--a-rgb), .28);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}
.btn:hover { filter: brightness(1.12); }
.btn[disabled] { background: rgba(255,255,255,.05); color: var(--text-3); cursor: not-allowed;
  border: 1px solid var(--rule); box-shadow: none; }
.btn-why { font-size: .74rem; color: var(--text-3); }
.receipt-link { white-space: nowrap; }
.receipt-link:hover { color: var(--sapphire); }

/* ---- fine print ---- */
.fine { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 14px 40px; }
.fine > div { padding: 18px 0; border-top: 1px solid var(--rule); }
.fine h4 { margin: 0 0 7px; font-size: 1rem; font-weight: 600; letter-spacing: -.01em; }
.fine p { margin: 0; font-size: .88rem; color: var(--text-2); line-height: 1.62; max-width: 46ch; }

footer { margin-top: 76px; border-top: 1px solid var(--rule-2); padding: 30px 0 60px;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: .82rem; color: var(--text-3); }
footer nav { display: flex; gap: 22px; }
footer a:hover { color: var(--sapphire); }

@media (max-width: 940px) {
  .wrap { padding: 0 20px; }
  .hero { grid-template-columns: 1fr; gap: 8px; padding-bottom: 40px; }
  .stage { max-width: 300px; order: -1; }
  .hero h1 { font-size: clamp(2.1rem, 9vw, 2.8rem); }
  .stats { grid-template-columns: 1fr; }
  .appnav { gap: 16px; font-size: .82rem; }
}
@media (prefers-reduced-motion: reduce) { * { animation: none !important; } }

/* the invitation card sits at its natural height rather than stretching to match */
.id-card.empty { align-items: center; justify-content: center; text-align: center; gap: 16px;
  min-height: 260px; }
.id-card.empty .id-top { flex-direction: column; align-items: center; gap: 14px; }
.id-card.empty .mono-badge { width: 56px; height: 56px; font-size: 1.5rem; font-weight: 300; }
.id-card.empty .id-ctx { max-width: 26ch; }
.cut:has(> .id-card.empty) { background: linear-gradient(150deg, var(--rule), rgba(30,49,100,.35)); }
.cut:has(> .id-card.empty) > .cut-in { background: linear-gradient(168deg, rgba(18,34,70,.6), rgba(10,21,44,.6)); }
.mono-badge { letter-spacing: -.01em; }

/* ---- document pages ---- */
.doc-hero { padding: 46px 0 60px; max-width: 44ch; }
.doc-hero h1 { font-size: clamp(2.3rem, 4.6vw, 3.4rem); }
.doc-hero .sub { color: var(--text-2); font-size: 1.02rem; margin: 22px 0 0; }
.step-text { margin: 0; font-size: .88rem; color: var(--text-2); line-height: 1.62; }

.state { margin-left: auto; font-family: var(--mono); font-size: .68rem; color: var(--text-3); }
.state .ok { color: var(--verified); }

.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.col { padding: 24px; display: flex; flex-direction: column; gap: 4px; height: 100%; }
.col h3 { font-size: 1.15rem; margin: 6px 0 14px; }
.col-tag { font-family: var(--mono); font-size: .66rem; letter-spacing: .13em; text-transform: uppercase; }
.col-tag.good { color: var(--verified); }
.col-tag.bad { color: var(--amber); }
.leg { display: flex; gap: 13px; padding: 13px 0; border-top: 1px solid var(--rule); }
.leg:first-of-type { border-top: 0; padding-top: 4px; }
.leg-n { font-family: var(--mono); font-size: .72rem; color: var(--text-3); padding-top: 2px; }
.leg-name { font-family: var(--mono); font-size: .82rem; font-weight: 500; color: var(--text); }
.leg-text { font-size: .82rem; color: var(--text-2); line-height: 1.55; margin-top: 3px; }
.verdict { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--rule);
  font-size: .82rem; color: var(--text-2); display: flex; align-items: baseline; gap: 10px; }
.verdict .big { font-size: 2.1rem; font-weight: 640; letter-spacing: -.035em; }
.verdict.good .big { color: var(--verified); }
.verdict.bad .big { color: var(--amber); }
.note { font-size: .84rem; color: var(--text-3); margin: 20px 0 0; }
.note a { color: var(--sapphire); }
.note .m { font-family: var(--mono); }

.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.tab { font: inherit; font-size: .82rem; color: var(--text-2); border-radius: 4px;
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  border: 1px solid var(--rule); padding: 9px 16px; cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06); }
.tab:hover { border-color: var(--sapphire); color: var(--sapphire); }
.tab[aria-selected="true"] { background: linear-gradient(165deg, var(--sapphire), #3a72d8);
  border-color: var(--sapphire); color: #04101f; font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 6px 16px rgba(91,149,255,.26); }

pre { background: linear-gradient(168deg, #0b1730, #081226); border: 1px solid var(--rule); padding: 22px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 14px 26px rgba(2,8,22,.5);
  overflow-x: auto; font-family: var(--mono); font-size: .8rem; line-height: 1.7; margin: 0;
  clip-path: polygon(0 0, calc(100% - var(--chamfer)) 0, 100% var(--chamfer), 100% 100%, 0 100%); }
pre .c { color: var(--text-3); }
.btn.ghost { background: rgba(255,255,255,.04); color: var(--sapphire-2); border: 1px solid var(--rule);
  margin-top: 16px; box-shadow: none; }
.btn.ghost:hover { background: rgba(91,149,255,.16); filter: none; }

@media (max-width: 940px) { .compare { grid-template-columns: 1fr; } }

/* ---- staged launcher ---- */
.launch-hero { padding: 62px 0 48px; max-width: 720px; }
.launch-hero h1 { font-size: clamp(2.6rem, 5.4vw, 4.1rem); }
.launch-lede { color: var(--text-2); font-size: 1.04rem; max-width: 58ch; margin: 22px 0 0; }
.launch-status { display: inline-flex; align-items: center; gap: 9px; margin-top: 25px; padding: 8px 14px;
  border: 1px solid var(--rule); border-radius: 999px; color: var(--text-2); font-family: var(--mono); font-size: .74rem;
  background: linear-gradient(160deg, rgba(91,149,255,.14), rgba(8,18,40,.7)); }
.launch-status[data-state="connected"] .dot { background: var(--sapphire); }
.launch-status[data-state="signing"] .dot { background: var(--amber); animation: pulse 1.2s ease-in-out infinite; }
.launch-status[data-state="bound"] .dot { background: var(--verified); box-shadow: 0 0 0 3px rgba(58,217,166,.14); }
.launch-status[data-state="error"] .dot { background: var(--amber); }
.launch-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.launch-card { min-height: 100%; padding: 25px 26px 28px; display: flex; flex-direction: column; gap: 18px; }
.launch-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.launch-card-head h2 { font-size: 1.25rem; margin-top: 15px; }
.launch-copy { color: var(--text-2); font-size: .88rem; margin: 0; max-width: 52ch; }
.launch-kv { display: grid; grid-template-columns: max-content 1fr; gap: 8px 16px; padding: 15px 0;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); font-family: var(--mono); font-size: .74rem; }
.launch-kv span { color: var(--text-3); text-transform: uppercase; letter-spacing: .08em; }
.launch-kv strong { min-width: 0; overflow: hidden; color: var(--text-2); text-overflow: ellipsis; white-space: nowrap; font-weight: 400; }
.launch-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: auto; }
.launch-actions .btn { padding: 10px 15px; }
.text-button { border: 0; padding: 8px 0; color: var(--text-3); background: none; cursor: pointer; font: inherit; font-size: .78rem; }
.text-button:hover { color: var(--sapphire); }
.binding-message { flex: 1; min-height: 255px; margin: 0; white-space: pre-wrap; word-break: break-word; font-size: .73rem; }
.message-actions { display: flex; align-items: center; gap: 12px; min-height: 24px; }
.copy-status { color: var(--verified); font-family: var(--mono); font-size: .68rem; }
.pill-good { color: var(--verified); border-color: rgba(58,217,166,.45); }
.launch-next { padding-top: 78px !important; }
.launch-selection { margin-top: 24px; padding: 13px 15px; border: 1px solid var(--rule); color: var(--text-2);
  background: rgba(13,26,55,.38); font-size: .82rem; }
.launch-context { display: grid; grid-template-columns: max-content 1fr max-content 1fr; gap: 8px 14px;
  margin-top: 10px; padding: 12px 15px; border: 1px solid rgba(58,217,166,.22);
  background: rgba(58,217,166,.045); font-family: var(--mono); font-size: .72rem; }
.launch-context span { color: var(--text-3); text-transform: uppercase; letter-spacing: .08em; }
.launch-context code { overflow: hidden; color: var(--verified); text-overflow: ellipsis; white-space: nowrap; }
.launch-context[hidden] { display: none !important; }
.launch-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.launch-step { display: flex; gap: 11px; padding: 17px 14px; border-top: 1px solid var(--rule); color: var(--text-3); }
.launch-step > span { color: var(--text-3); font-family: var(--mono); font-size: .72rem; }
.launch-step strong { display: block; color: var(--text-2); font-size: .84rem; font-weight: 600; line-height: 1.35; }
.launch-step small { display: block; margin-top: 8px; font-size: .74rem; line-height: 1.5; }
.launch-step.active { border-top-color: var(--violet); }
.launch-step.active > span, .launch-step.active strong { color: var(--violet); }
.launch-integrations { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 28px; }
.launch-app { display: grid; grid-template-columns: auto 1fr; column-gap: 12px; align-items: center; padding: 14px;
  border: 1px solid var(--rule); border-radius: 4px; background: rgba(13,26,55,.55); color: var(--text-2); text-align: left; font: inherit;
  cursor: pointer; transition: border-color .2s, background .2s, transform .2s; }
.launch-app span { grid-row: span 2; display: grid; place-items: center; width: 36px; height: 36px; color: var(--violet);
  border: 1px solid rgba(177,151,252,.45); font-family: var(--mono); font-size: .67rem; }
.launch-app strong { font-size: .88rem; font-weight: 600; }
.launch-app small { color: var(--text-3); font-size: .7rem; }
.launch-app:not(:disabled):hover { border-color: var(--violet); background: rgba(177,151,252,.1); transform: translateY(-2px); }
.launch-app.selected { border-color: var(--verified); background: rgba(58,217,166,.08); box-shadow: inset 0 0 0 1px rgba(58,217,166,.18); }
.launch-app.selected span { color: var(--verified); border-color: rgba(58,217,166,.5); }
.launch-app:disabled { opacity: .72; cursor: not-allowed; }
.launch-boundary { padding-bottom: 30px; }
.launch-boundary .note { max-width: 70ch; }
.noscript { margin: 24px auto; padding: 14px 16px; border: 1px solid var(--amber); color: var(--amber); }
code { color: var(--sapphire-2); font-family: var(--mono); font-size: .9em; }

@media (max-width: 940px) {
  .launch-layout, .launch-steps { grid-template-columns: 1fr; }
  .launch-integrations { grid-template-columns: 1fr; }
  .launch-context { grid-template-columns: max-content 1fr; }
  .identity-flow { grid-template-columns: 1fr 1fr; }
  .identity-line { display: none; }
  .identity-root { grid-column: 1 / -1; }
}

/* ---- Ready X read-only capability gate ---- */
.ready-hero { max-width: 820px; }
.ready-safety { display: flex; align-items: flex-start; gap: 16px; margin: 4px 0 24px; padding: 17px 19px;
  border: 1px solid rgba(58,217,166,.32); background: rgba(58,217,166,.06); }
.ready-safety-mark { flex: none; padding: 4px 8px; color: var(--verified); border: 1px solid rgba(58,217,166,.48);
  font-family: var(--mono); font-size: .66rem; letter-spacing: .12em; }
.ready-safety strong { display: block; color: var(--verified); font-size: .9rem; }
.ready-safety p { margin: 4px 0 0; color: var(--text-2); font-size: .82rem; }
.ready-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ready-card { min-height: 100%; padding: 25px 24px 27px; display: flex; flex-direction: column; gap: 19px; }
.ready-card h2 { font-size: 1.2rem; margin-top: 15px; }
.ready-kv { display: grid; grid-template-columns: max-content 1fr; gap: 9px 13px; padding: 15px 0;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); font-family: var(--mono); font-size: .7rem; }
.ready-kv.compact { margin-top: auto; }
.ready-kv span { color: var(--text-3); text-transform: uppercase; letter-spacing: .07em; }
.ready-kv strong { min-width: 0; overflow: hidden; color: var(--text-2); text-overflow: ellipsis; white-space: nowrap; font-weight: 400; }
.ready-balance { color: var(--verified); font-size: 2rem; font-weight: 640; letter-spacing: -.04em; line-height: 1; }
.ready-balance small { font-family: var(--mono); font-size: .66rem; letter-spacing: .14em; color: var(--text-3); font-weight: 400; }
.amount-field { display: grid; gap: 7px; }
.amount-field > span { color: var(--text-3); font-family: var(--mono); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; }
.amount-field > div { display: grid; grid-template-columns: 1fr auto; align-items: center; border: 1px solid var(--rule-2); background: var(--bg-2); }
.amount-field input { min-width: 0; padding: 12px 14px; border: 0; outline: 0; color: var(--text); background: transparent; font: 600 1rem var(--mono); }
.amount-field strong { padding: 0 14px; color: var(--text-3); font: 500 .72rem var(--mono); }
.amount-field:focus-within > div { border-color: var(--sapphire); box-shadow: 0 0 0 2px rgba(91,149,255,.12); }
.amount-field > small { min-height: 18px; color: var(--amber); font-size: .72rem; }
.ready-warning { margin: 0; color: var(--amber); font-size: .78rem; line-height: 1.5; }
.ready-details { padding-top: 70px !important; }
.ready-result { min-height: 70px; padding: 15px 17px; border: 1px solid var(--rule); background: rgba(13,26,55,.38);
  color: var(--text-2); font-family: var(--mono); font-size: .76rem; }
.ready-result p { margin: 0 0 8px; }
.ready-result p:last-child { margin-bottom: 0; }
.ready-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-top: 17px; }
.ready-actions .btn { margin-top: 0; }

@media (max-width: 940px) {
  .ready-grid { grid-template-columns: 1fr; }
}

/* ---- release polish: depth, hierarchy, and calm motion ---- */
body { overflow-x: hidden; }

.hero-home {
  position: relative; min-height: 560px; padding-top: 68px; padding-bottom: 72px;
}
.hero-home::before {
  content: ""; position: absolute; z-index: -1; top: 8%; left: -16%; width: 68%; height: 72%;
  background: radial-gradient(ellipse, rgba(91,149,255,.09), transparent 68%);
  filter: blur(18px); pointer-events: none;
}
.hero-copy { position: relative; z-index: 2; max-width: 650px; }
.hero h1 {
  font-size: clamp(3rem, 6.4vw, 5.45rem); line-height: .98; letter-spacing: -.065em;
  text-wrap: balance; background: linear-gradient(135deg, #f4f7ff 10%, #b6caff 62%, #719dff 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .eyebrow { display: inline-flex; align-items: center; gap: 10px; }
.hero .eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--cyan); box-shadow: 0 0 12px rgba(87,220,255,.8); }
.hero p.sub { max-width: 38ch; font-size: 1.08rem; line-height: 1.55; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.hero-actions .btn { padding: 13px 19px; }
.hero-actions .btn span { font-size: 1.1em; line-height: 0; transition: transform .25s var(--ease-out); }
.hero-actions .btn:hover span { transform: translate(3px, -3px); }
.hero-actions .btn.ghost { margin-top: 0; }
.hero-micro { display: flex; align-items: center; gap: 9px; margin-top: 19px; color: var(--text-3);
  font-family: var(--mono); font-size: .65rem; letter-spacing: .05em; text-transform: uppercase; }
.micro-mark { width: 6px; height: 6px; border-radius: 50%; background: var(--verified);
  box-shadow: 0 0 0 4px rgba(58,217,166,.08), 0 0 14px rgba(58,217,166,.5); }

.stage { isolation: isolate; max-width: 470px; filter: drop-shadow(0 24px 45px rgba(2,7,20,.35)); }
.stage::before, .stage::after { content: ""; position: absolute; pointer-events: none; }
.stage::before { inset: 11%; border: 1px solid rgba(143,184,255,.16); border-radius: 50%;
  transform: rotate(-18deg) scaleY(.43); box-shadow: 0 0 40px rgba(91,149,255,.08); }
.stage::after { inset: 20%; z-index: -1; border-radius: 50%;
  background: radial-gradient(circle, rgba(91,149,255,.22), transparent 67%); filter: blur(24px); }
.stage canvas { position: relative; z-index: 2; animation: drift 8s ease-in-out infinite; }
.stage-orbit { position: absolute; z-index: 1; inset: 15%; border: 1px solid rgba(87,220,255,.15); border-radius: 50%; pointer-events: none; }
.stage-orbit-a { transform: rotate(24deg) scaleY(.35); animation: orbit-a 26s linear infinite; }
.stage-orbit-b { inset: 7%; border-color: rgba(177,151,252,.12); transform: rotate(-40deg) scaleY(.56); animation: orbit-b 34s linear infinite reverse; }
@keyframes orbit-a { to { transform: rotate(384deg) scaleY(.35); } }
@keyframes orbit-b { to { transform: rotate(320deg) scaleY(.56); } }
.stage-label { position: absolute; z-index: 3; display: flex; align-items: center; gap: 8px; color: var(--text-3);
  font-family: var(--mono); font-size: .58rem; letter-spacing: .16em; white-space: nowrap; }
.stage-label i { display: block; width: 22px; height: 1px; background: var(--rule-2); }
.stage-label-top { top: 16%; left: -2%; }
.stage-label-top i { background: linear-gradient(90deg, var(--cyan), transparent); }
.stage-label-bottom { right: -3%; bottom: 18%; }
.stage-label-bottom i { background: linear-gradient(90deg, transparent, var(--violet)); }
.stage-caption { position: absolute; z-index: 4; bottom: 3%; left: 50%; display: flex; align-items: center; gap: 7px;
  transform: translateX(-50%); color: var(--text-3); font-family: var(--mono); font-size: .58rem; letter-spacing: .08em;
  white-space: nowrap; }
.stage-caption-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--sapphire); box-shadow: 0 0 10px var(--sapphire); }

.stats { gap: 16px; position: relative; }
.stats .cut { min-width: 0; }
.stat { position: relative; min-height: 152px; overflow: hidden; }
.stat::after { content: ""; position: absolute; right: -24px; bottom: -46px; width: 150px; height: 150px;
  border: 1px solid rgba(var(--a-rgb),.14); border-radius: 50%; transform: scaleY(.42) rotate(-22deg); }
.stat .v { position: relative; z-index: 1; text-shadow: 0 0 28px rgba(var(--a-rgb),.24); }
.stat .n { max-width: 24ch; line-height: 1.45; }

section.block { position: relative; }
.head { position: relative; }
.head::after { content: ""; position: absolute; bottom: -1px; left: 0; width: 54px; height: 1px;
  background: linear-gradient(90deg, var(--sapphire), transparent); }
.head h2 { letter-spacing: -.04em; }
.head .aside { font-family: var(--mono); font-size: .66rem; letter-spacing: .06em; text-transform: uppercase; }
.fine > div { transition: border-color .25s ease, transform .25s var(--ease-out); }
.fine > div:hover { border-color: var(--sapphire); transform: translateX(4px); }
.section-intro { margin: -8px 0 24px; max-width: 70ch; color: var(--text-2); font-size: .9rem; line-height: 1.65; }

.grid { gap: 16px; }
.id-card, .tile { padding: 25px 24px 26px; }
.id-card { min-height: 302px; }
.tile { min-height: 280px; }
.id-name { letter-spacing: -.025em; }
.id-ctx, .tile-note { line-height: 1.5; }
.addr { transition: border-color .25s ease, background .25s ease; }
.addr:hover { border-color: rgba(var(--a-rgb),.48); background: rgba(3,10,26,.72); }
.copy-btn { transition: color .2s ease, transform .2s var(--ease-out); }
.copy-btn:active { transform: scale(.92); }
.tx { transition: color .2s ease, transform .2s var(--ease-out); }
.tx:hover { color: var(--text-2); transform: translateX(3px); }
.tx:hover .tick { text-shadow: 0 0 12px rgba(58,217,166,.8); }

.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 42px; border-radius: 2px; isolation: isolate; overflow: hidden;
  transition: transform .25s var(--ease-out), filter .25s ease, box-shadow .25s ease;
}
.btn::before { content: ""; position: absolute; z-index: -1; inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.28) 50%, transparent 80%);
  transform: translateX(-130%); transition: transform .65s var(--ease-out); }
.btn:hover::before { transform: translateX(130%); }
.btn:hover { filter: brightness(1.08); box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 10px 26px rgba(var(--a-rgb),.34); }
.btn:active { transform: translateY(1px) scale(.985); }
.btn.ghost { margin-top: 0; background: rgba(255,255,255,.035); }
.btn.ghost::before { background: linear-gradient(110deg, transparent 20%, rgba(91,149,255,.18) 50%, transparent 80%); }
.btn[disabled]::before, .btn[disabled]:hover::before { transform: translateX(-130%); }

.launch-hero, .doc-hero { position: relative; }
.launch-hero::before, .doc-hero::before { content: ""; position: absolute; z-index: -1; top: 26px; left: -12%;
  width: 80%; height: 180px; background: radial-gradient(ellipse, rgba(91,149,255,.12), transparent 70%); filter: blur(20px); }
.launch-hero h1, .doc-hero h1 { letter-spacing: -.06em; }
.launch-status { box-shadow: 0 0 0 1px rgba(91,149,255,.04), 0 10px 28px rgba(2,7,20,.22); }
.launch-status .dot { transition: background .25s ease, box-shadow .25s ease; }
.launch-steps { gap: 8px; }
.launch-step { position: relative; min-height: 126px; padding: 17px 15px; background: rgba(8,18,40,.22); border: 1px solid transparent;
  border-top-color: var(--rule); transition: border-color .25s ease, background .25s ease, transform .25s var(--ease-out); }
.launch-step::after { content: ""; position: absolute; top: 11px; right: 11px; width: 5px; height: 5px; border-radius: 50%; background: var(--rule-2); }
.launch-step.active { background: rgba(177,151,252,.07); border-color: rgba(177,151,252,.35); border-top-color: var(--violet); }
.launch-step.active::after { background: var(--violet); box-shadow: 0 0 12px rgba(177,151,252,.8); }
.launch-step:not(.active):hover { background: rgba(91,149,255,.05); border-color: rgba(91,149,255,.2); transform: translateY(-2px); }
.launch-selection { position: relative; overflow: hidden; box-shadow: inset 0 1px 0 rgba(255,255,255,.04); }
.launch-selection::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--violet); }
.launch-integrations { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.launch-app { min-height: 72px; position: relative; overflow: hidden; transition: border-color .25s ease, background .25s ease, transform .25s var(--ease-out), box-shadow .25s ease; }
.launch-app::after { content: "↗"; position: absolute; top: 12px; right: 13px; color: var(--text-3); font-size: .85rem; transition: color .2s ease, transform .2s var(--ease-out); }
.launch-app:not(:disabled):hover { box-shadow: 0 12px 22px rgba(2,7,20,.24); }
.launch-app:not(:disabled):hover::after { color: var(--verified); transform: translate(2px,-2px); }
.launch-app.selected { box-shadow: inset 0 0 0 1px rgba(58,217,166,.18), 0 10px 22px rgba(2,7,20,.22); }

.ready-safety { position: relative; overflow: hidden; box-shadow: 0 12px 26px rgba(2,7,20,.18), inset 0 1px 0 rgba(255,255,255,.05); }
.ready-safety::after { content: ""; position: absolute; top: 0; right: 0; width: 28%; height: 1px; background: linear-gradient(90deg, transparent, var(--verified)); }
.ready-card { padding: 27px 25px 29px; }
.ready-card h2 { letter-spacing: -.035em; }
.ready-balance { text-shadow: 0 0 26px rgba(58,217,166,.18); }
.ready-result { box-shadow: inset 0 1px 0 rgba(255,255,255,.04); }
.ready-result a { color: var(--sapphire-2); word-break: break-all; }
.ready-result a:hover { color: var(--cyan); }
.ready-check { display: flex; align-items: flex-start; gap: 10px; margin-top: 20px; color: var(--text-2); font-size: .8rem; line-height: 1.5; cursor: pointer; }
.ready-check input { width: 16px; height: 16px; flex: none; margin: 2px 0 0; accent-color: var(--verified); }
.ready-actions .btn.ghost { border-color: rgba(91,149,255,.25); }

pre { border-color: rgba(91,149,255,.25); box-shadow: 0 18px 34px rgba(2,8,22,.34), inset 0 1px 0 rgba(255,255,255,.06); }
footer { position: relative; }
footer::before { content: ""; position: absolute; top: -1px; left: 0; width: 100px; height: 1px; background: var(--sapphire); }

@media (max-width: 940px) {
  .appbar { top: 8px; margin-top: 8px; }
  .hero-home { min-height: 0; padding-top: 40px; }
  .hero h1 { font-size: clamp(2.8rem, 10vw, 4.6rem); }
  .stage { max-width: 340px; }
  .stage-label-top { left: 4%; }
  .stage-label-bottom { right: 4%; }
  .launch-integrations { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 16px; }
  .appbar { height: 58px; gap: 12px; padding-left: 10px; }
  .brand { gap: 8px; }
  .brand canvas { width: 29px; height: 29px; }
  .wordmark { font-size: .95rem; }
  .brand small { font-size: .55rem; }
  .appnav { min-width: 0; gap: 18px; overflow-x: auto; scrollbar-width: none; }
  .appnav::-webkit-scrollbar { display: none; }
  .appnav a { padding: 19px 0; font-size: .72rem; }
  .appnav a::after { bottom: 11px; }
  .hero-home { padding-top: 36px; padding-bottom: 48px; }
  .hero h1 { font-size: clamp(2.65rem, 15vw, 4rem); }
  .hero .eyebrow { font-size: .6rem; letter-spacing: .14em; }
  .hero-actions { margin-top: 26px; }
  .hero-actions .btn { flex: 1; min-width: 145px; }
  .hero-micro { align-items: flex-start; font-size: .57rem; line-height: 1.4; }
  .stage { width: 92%; margin-top: 8px; }
  .stage-label { font-size: .5rem; letter-spacing: .1em; }
  .stage-label-top { left: -2%; }
  .stage-label-bottom { right: -4%; }
  .stage-caption { font-size: .5rem; }
  section.block { padding-top: 48px; }
  .head { align-items: flex-start; flex-direction: column; gap: 6px; padding-bottom: 17px; }
  .head .aside { font-size: .58rem; }
  .fine { grid-template-columns: 1fr; }
  .fine > div:hover { transform: none; }
  .launch-hero { padding-top: 45px; }
  .launch-hero h1, .doc-hero h1 { font-size: clamp(2.55rem, 14vw, 4rem); }
  .launch-layout { gap: 14px; }
  .launch-card, .ready-card { padding: 21px 19px 23px; }
  .launch-steps { gap: 7px; }
  .launch-step { min-height: auto; }
  .launch-integrations { grid-template-columns: 1fr; }
  .ready-safety { flex-direction: column; gap: 11px; padding: 15px; }
  .ready-actions { gap: 12px; }
  .ready-actions .btn { width: 100%; }
  .ready-actions .text-button { margin-left: 2px; }
  footer { margin-top: 56px; padding-bottom: 42px; }
  footer nav { width: 100%; flex-wrap: wrap; gap: 12px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .stage canvas, .stage-orbit-a, .stage-orbit-b { animation: none; }
  .wrap > *, .grid > .cut, .stats > .cut { animation: none; }
}
