/* AEGIS site — shared design system. Protocol 973.
   Accent is BLUE (an AEGIS universal theme); semantic colors (live/demo/critical) keep their meaning.
   Swap --acc / --acc-soft to re-theme the whole site. */
:root {
  --bg: #090d12; --bg2: #0c1218; --surf: #101a22; --surf2: #15212b;
  --line: #20303e; --line-soft: #172532;
  --text: #cdd9e3; --muted: #7d8fa0;
  --acc: #38c6ff; --acc-soft: #7ad7ff;            /* BLUE accent */
  --live: #00ff9d; --demo: #ffb066; --crit: #ff5c78; --violet: #a78bfa;
  --term-bg: #060a0e; --term-text: #cfe6f5; --term-prompt: #38c6ff;
  --shadow: 0 18px 50px rgba(0,0,0,.55);
  --hexbg: #38c6ff; --hexbg-base: .03; --hexbg-wave: .075;   /* ambient honeycomb canvas */
  --maxw: 820px;
}
@media (prefers-color-scheme: light) {
  :root {
    --bg: #eef2f6; --bg2: #e6ecf1; --surf: #ffffff; --surf2: #f5f8fb;
    --line: #d2dce4; --line-soft: #e2eaf0; --text: #14212c; --muted: #56697a;
    --acc: #0f7bb0; --acc-soft: #0a5e88; --live: #009d67; --demo: #b5730f; --crit: #cf2b48; --violet: #7c5cd6;
    --term-bg: #0a1016; --term-text: #cfe6f5; --term-prompt: #58d0ff; --shadow: 0 14px 40px rgba(30,50,70,.14);
    --hexbg: #0a5e88; --hexbg-base: .07; --hexbg-wave: .24;  /* deeper + louder so the pulse reads on light */
  }
}
:root[data-theme="dark"] {
  --bg: #090d12; --bg2: #0c1218; --surf: #101a22; --surf2: #15212b; --line: #20303e; --line-soft: #172532;
  --text: #cdd9e3; --muted: #7d8fa0; --acc: #38c6ff; --acc-soft: #7ad7ff;
  --live: #00ff9d; --demo: #ffb066; --crit: #ff5c78; --violet: #a78bfa;
  --term-bg: #060a0e; --term-text: #cfe6f5; --term-prompt: #38c6ff; --shadow: 0 18px 50px rgba(0,0,0,.55);
  --hexbg: #38c6ff; --hexbg-base: .03; --hexbg-wave: .075;
}
:root[data-theme="light"] {
  --bg: #eef2f6; --bg2: #e6ecf1; --surf: #ffffff; --surf2: #f5f8fb; --line: #d2dce4; --line-soft: #e2eaf0;
  --text: #14212c; --muted: #56697a; --acc: #0f7bb0; --acc-soft: #0a5e88; --live: #009d67; --demo: #b5730f; --crit: #cf2b48; --violet: #7c5cd6;
  --term-bg: #0a1016; --term-text: #cfe6f5; --term-prompt: #58d0ff; --shadow: 0 14px 40px rgba(30,50,70,.14);
  --hexbg: #0a5e88; --hexbg-base: .07; --hexbg-wave: .24;
}

[data-os][hidden] { display: none !important; }
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif; font-size: 16px; line-height: 1.62; -webkit-font-smoothing: antialiased; }
.mono { font-family: ui-monospace, "Cascadia Code", "SFMono-Regular", Consolas, "Liberation Mono", monospace; }
#hexbg { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.wrap { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: 0 24px 90px; }
a { color: var(--acc); }

/* ---- top nav ---- */
.nav { position: sticky; top: 0; z-index: 5; backdrop-filter: blur(9px);
  background: color-mix(in srgb, var(--bg) 82%, transparent); border-bottom: none; }
.nav::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: linear-gradient(110deg, #00ff9d, #38c6ff, #a78bfa, #ffb066, #00ff9d);
  background-size: 300% 100%; animation: foil 4.5s linear infinite; }
@media (prefers-reduced-motion: reduce) { .nav::after { animation: none; } }
.nav-in { max-width: min(1180px, 100%); margin: 0 auto; padding: 11px 24px; display: flex; align-items: center; gap: 12px; flex-wrap: nowrap; }
.nav-brand { display: flex; align-items: center; gap: 9px; font-family: ui-monospace, Consolas, monospace; font-weight: 700; letter-spacing: .06em; color: var(--text); text-decoration: none; }
.nav-brand svg { width: 22px; height: 24px; }
.nav-brand svg path { stroke: var(--demo); }
.nav-brand b { color: var(--acc); }
.nav-links { display: flex; gap: 6px; margin-left: auto; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; padding: 8px 2px; }
.nav-links::-webkit-scrollbar { display: none; }
.nav-links a { font-family: ui-monospace, Consolas, monospace; font-size: .66rem; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); white-space: nowrap;
  text-decoration: none; padding: 7px 11px; border-radius: 8px; border: 1px solid var(--line-soft);
  background: color-mix(in srgb, var(--surf) 66%, transparent); box-shadow: 0 2px 5px rgba(0,0,0,.22);
  transition: color .15s, border-color .15s, background .15s, transform .15s, box-shadow .15s; }
.nav-links a:hover { color: var(--acc); transform: translateY(-2px); box-shadow: 0 5px 12px rgba(0,0,0,.32); border-color: color-mix(in srgb, var(--acc) 38%, var(--line)); }
/* foil-holo as a border ring only (never a fill) on whichever tab is active */
.nav-links a.active { position: relative; color: var(--acc); background: color-mix(in srgb, var(--surf) 66%, transparent); border-color: transparent; font-weight: 700; box-shadow: 0 4px 12px color-mix(in srgb, var(--acc) 32%, rgba(0,0,0,.25)); transform: translateY(-1px); }
.nav-links a.active::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px;
  background: linear-gradient(110deg, #00ff9d, #38c6ff, #a78bfa, #ffb066, #00ff9d); background-size: 300% 100%; animation: foil 4.5s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
@media (prefers-reduced-motion: reduce) { .nav-links a.active::before { animation: none; } }
.nav-links a.cta { color: var(--acc); border-color: color-mix(in srgb, var(--acc) 55%, transparent); background: color-mix(in srgb, var(--acc) 12%, transparent); font-weight: 700; }
.nav-links a.cta:hover { background: color-mix(in srgb, var(--acc) 22%, transparent); color: var(--acc); border-color: var(--acc); }
.nav-links a .lock { font-size: .82em; margin-left: 5px; opacity: .7; }
.nav-brand .wm { letter-spacing: .03em; }
.theme-toggle { font-family: ui-monospace, Consolas, monospace; font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
  padding: 7px 10px; border-radius: 8px; border: 1px solid var(--line-soft); background: color-mix(in srgb, var(--surf) 66%, transparent);
  cursor: pointer; flex: none; transition: color .15s, border-color .15s, transform .15s; }
.theme-toggle:hover { color: var(--acc); border-color: color-mix(in srgb, var(--acc) 38%, var(--line)); transform: translateY(-2px); }
footer .theme-toggle { margin-top: 12px; }
.nav-brand .blockmark { margin: 0; font-size: clamp(5px, 1.2vw, 8px); }

/* ---- block wordmark ---- */
.blockmark { font-family: ui-monospace, Consolas, monospace; color: var(--acc); line-height: 1.05; margin: 26px 0 6px;
  font-size: clamp(7px, 3vw, 26px); letter-spacing: 0; white-space: pre; overflow: hidden;
  text-shadow: 0 0 9px color-mix(in srgb, var(--acc) 16%, transparent); animation: markglow 3.2s ease-in-out infinite; }
.blockmark.sm { font-size: clamp(5px, 1.6vw, 10px); opacity: .92; margin: 8px 0 4px; animation: none; }
@keyframes markglow { 0%, 100% { text-shadow: 0 0 7px color-mix(in srgb, var(--acc) 12%, transparent); } 50% { text-shadow: 0 0 13px color-mix(in srgb, var(--acc) 22%, transparent); } }

/* ---- hero + sections ---- */
header.hero { position: relative; padding: 54px 0 26px; }
.scan { position: absolute; inset: 0 0 auto 0; height: 2px; background: linear-gradient(90deg, transparent, var(--acc), transparent);
  opacity: .85; background-size: 42% 100%; background-repeat: no-repeat; animation: scan 5.5s linear infinite; }
@keyframes scan { from { background-position: -42% 0; } to { background-position: 142% 0; } }
.eyebrow { font-family: ui-monospace, Consolas, monospace; font-size: .72rem; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.badge { color: var(--acc); border: 1px solid color-mix(in srgb, var(--acc) 45%, transparent); border-radius: 999px; padding: 2px 10px; font-size: .68rem; letter-spacing: .18em; }
/* blocky acronym letters (spell AEGIS inside the expansion) — matches the block-wordmark identity */
.ac { font-family: ui-monospace, Consolas, monospace; font-weight: 800; }
/* page-scoped amber outline tags (add .amber-tags on .wrap) — must beat .sec-tag.g/.a/.r */
.amber-tags .sec-tag,
.amber-tags .sec-tag.g,
.amber-tags .sec-tag.a,
.amber-tags .sec-tag.r { color: var(--demo); border-color: color-mix(in srgb, var(--demo) 40%, transparent); }
.amber-tags .badge { color: var(--demo); border-color: color-mix(in srgb, var(--demo) 45%, transparent); }
.hero h1 { font-size: clamp(1.5rem, 4vw, 2.3rem); font-weight: 700; letter-spacing: .01em; margin: 20px 0 0; text-wrap: balance; }
.hero .lede { color: var(--muted); margin: 14px 0 0; max-width: 60ch; font-size: 1.02rem; }
.cursor { display: inline-block; width: .55ch; height: 1.05em; vertical-align: -.14em; background: var(--acc); margin-left: 4px; animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

.cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
/* buttons are TRANSPARENT site-wide (streamlined to the Intro "Install AEGIS" look);
   .primary adds the blue bold emphasis, .foil-outline the animated ring */
.btn { font-family: ui-monospace, Consolas, monospace; font-size: .8rem; letter-spacing: .06em; text-decoration: none; border-radius: 9px; padding: 11px 18px; cursor: pointer; border: 1px solid var(--line); color: var(--text); background: transparent; transition: transform .16s, border-color .16s; display: inline-flex; align-items: center; gap: 8px; }
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: transparent; color: var(--acc); border-color: color-mix(in srgb, var(--acc) 60%, transparent); font-weight: 700; }
.btn.primary:hover { border-color: var(--acc); box-shadow: 0 5px 14px color-mix(in srgb, var(--acc) 20%, transparent); }
.btn.foil { color: #0a0e13; border-color: transparent; font-weight: 700; background: linear-gradient(110deg, #00ff9d, #38c6ff, #a78bfa, #ffb066, #00ff9d); background-size: 300% 100%; animation: foil 4.5s linear infinite; }
.btn.foil:hover { box-shadow: 0 5px 14px color-mix(in srgb, var(--acc) 20%, transparent); }
.btn.foil-outline { position: relative; border-color: transparent; }
.btn.foil-outline::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; background: linear-gradient(110deg, #00ff9d, #38c6ff, #a78bfa, #ffb066, #00ff9d); background-size: 300% 100%; animation: foil 4.5s linear infinite; -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.btn.foil-outline:hover { box-shadow: 0 5px 14px color-mix(in srgb, var(--acc) 20%, transparent); }
@media (prefers-reduced-motion: reduce) { .btn.foil-outline::before { animation: none; } }

section.blk { margin-top: 52px; }
.sec-head { display: flex; align-items: baseline; gap: 12px; border-bottom: 1px solid var(--line-soft); padding-bottom: 12px; }
.sec-tag { font-family: ui-monospace, Consolas, monospace; font-size: .74rem; letter-spacing: .14em; color: var(--acc); border: 1px solid color-mix(in srgb, var(--acc) 40%, transparent); border-radius: 6px; padding: 3px 9px; white-space: nowrap; }
.sec-tag.g { color: var(--live); border-color: color-mix(in srgb, var(--live) 40%, transparent); }
.sec-tag.a { color: var(--demo); border-color: color-mix(in srgb, var(--demo) 40%, transparent); }
.sec-tag.r { color: var(--crit); border-color: color-mix(in srgb, var(--crit) 40%, transparent); }
.sec-head h2 { margin: 0; font-size: 1.4rem; font-weight: 700; text-wrap: balance; }
.prose { margin-top: 16px; font-size: 1.0rem; max-width: 66ch; }
.prose p { margin: 0 0 14px; }
.prose b { color: var(--text); }

/* ---- cards / grid ---- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; margin-top: 20px; }
/* Etched (Notched HUD) hub panels — universal card treatment, matched to the Digital Orukami page */
.card { --pc: var(--acc); --rim: var(--pc); position: relative; border: 0; border-radius: 0; background: var(--rim); padding: 22px 18px 17px; overflow: visible; box-shadow: none;
  clip-path: polygon(0 13px,13px 0,calc(100% - 13px) 0,100% 13px,100% calc(100% - 13px),calc(100% - 13px) 100%,13px 100%,0 calc(100% - 13px));
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.28)); transition: transform .18s, filter .18s; }
.card::before { content: ""; position: absolute; inset: 1.5px; z-index: 0;
  background: radial-gradient(color-mix(in srgb, var(--rim) 12%, transparent) .6px, transparent .7px) 0 0/6px 6px, linear-gradient(150deg, var(--surf2), var(--surf));
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,.06), inset 0 -16px 30px rgba(0,0,0,.22), inset 0 0 0 1px color-mix(in srgb, var(--rim) 7%, transparent);
  clip-path: polygon(0 13px,13px 0,calc(100% - 13px) 0,100% 13px,100% calc(100% - 13px),calc(100% - 13px) 100%,13px 100%,0 calc(100% - 13px)); }
.card::after { content: ""; position: absolute; top: 15px; left: 15px; width: 10px; height: 10px; border-top: 1.5px solid var(--rim); border-left: 1.5px solid var(--rim); z-index: 2; opacity: .9; }
.card > * { position: relative; z-index: 1; }
.card:hover { transform: translateY(-3px); filter: drop-shadow(0 0 14px color-mix(in srgb, var(--rim) 40%, transparent)) drop-shadow(0 10px 18px rgba(0,0,0,.36)); }
.card .kt { font-family: ui-monospace, Consolas, monospace; font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.card h3 { margin: 5px 0 6px; font-size: 1.02rem; color: var(--pc); }
.card p { margin: 0; font-size: .88rem; color: var(--muted); line-height: 1.5; }
.card a.more { display: inline-block; margin-top: 10px; font-family: ui-monospace, Consolas, monospace; font-size: .72rem; letter-spacing: .08em; color: var(--acc); text-decoration: none; }

/* live/demo semantics */
.pill { font-family: ui-monospace, Consolas, monospace; font-size: .72rem; letter-spacing: .08em; padding: 1px 7px; border-radius: 4px; }
.pill.live { color: var(--live); border: 1px solid color-mix(in srgb, var(--live) 45%, transparent); }
.pill.demo { color: var(--demo); border: 1px solid color-mix(in srgb, var(--demo) 45%, transparent); }

/* ---- OS toggle / path selector (install page) ---- */
.osseg { display: inline-flex; border: 1px solid var(--line); border-radius: 9px; overflow: hidden; background: var(--surf); }
.osbtn { font-family: ui-monospace, Consolas, monospace; font-size: .72rem; letter-spacing: .1em; color: var(--muted); background: transparent; border: 0; padding: 8px 14px; cursor: pointer; transition: color .15s, background .15s; }
.osbtn + .osbtn { border-left: 1px solid var(--line); }
.osbtn.active { color: var(--acc); background: color-mix(in srgb, var(--acc) 13%, transparent); }
.pathsel { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 14px; }
.pathseg { position: relative; text-align: left; font: inherit; color: var(--text); border: 1px solid var(--line); background: var(--surf); border-radius: 12px; padding: 14px 15px 15px; cursor: pointer; transition: border-color .18s, background .18s, transform .18s; }
.pathseg:hover { transform: translateY(-2px); border-color: color-mix(in srgb, var(--acc) 38%, var(--line)); }
.pathseg .k { font-family: ui-monospace, Consolas, monospace; font-size: .64rem; letter-spacing: .2em; color: var(--muted); text-transform: uppercase; }
.pathseg .t { display: block; font-size: 1.0rem; font-weight: 700; margin: 5px 0 3px; }
.pathseg .d { display: block; font-size: .78rem; color: var(--muted); line-height: 1.45; }
.pathseg.active { border-color: color-mix(in srgb, var(--acc) 60%, transparent); background: color-mix(in srgb, var(--acc) 9%, transparent); box-shadow: 0 0 0 1px color-mix(in srgb, var(--acc) 24%, transparent), var(--shadow); }
.pathseg.active .t { color: var(--acc); }
.flag { position: absolute; top: -9px; right: 12px; font-family: ui-monospace, Consolas, monospace; font-size: .58rem; letter-spacing: .16em; background: var(--acc); color: #041018; border-radius: 999px; padding: 2px 9px; font-weight: 700; }
.path { display: none; margin-top: 32px; } .path.active { display: block; animation: fade .3s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.path-head { display: flex; align-items: baseline; gap: 12px; border-bottom: 1px solid var(--line-soft); padding-bottom: 12px; }
.path-note { color: var(--muted); font-size: .9rem; margin: 12px 0 0; }
.steps { margin-top: 22px; display: flex; flex-direction: column; gap: 24px; }
.step { display: grid; grid-template-columns: 34px 1fr; gap: 16px; }
.num { grid-row: 1 / span 2; width: 34px; height: 34px; border-radius: 8px; display: grid; place-items: center; font-family: ui-monospace, Consolas, monospace; font-weight: 700; color: var(--acc); border: 1px solid color-mix(in srgb, var(--acc) 40%, transparent); background: color-mix(in srgb, var(--acc) 9%, transparent); }
.step h3 { margin: 4px 0 6px; font-size: 1.02rem; } .step p { margin: 0; font-size: .95rem; } .step p + p { margin-top: 10px; }
.step .muted { color: var(--muted); font-size: .86rem; }
code.inl { font-family: ui-monospace, Consolas, monospace; font-size: .86em; background: color-mix(in srgb, var(--acc) 14%, transparent); color: var(--acc); border-radius: 4px; padding: 1px 6px; }

/* ---- terminal ---- */
.term { margin-top: 12px; background: var(--term-bg); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.term-bar { display: flex; align-items: center; gap: 6px; padding: 8px 12px; border-bottom: 1px solid rgba(255,255,255,.06); background: rgba(255,255,255,.02); }
.term-dot { width: 9px; height: 9px; border-radius: 50%; background: #2a3843; }
.term-title { margin-left: 8px; font-family: ui-monospace, Consolas, monospace; font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: #6b8090; }
.copy { margin-left: auto; font-family: ui-monospace, Consolas, monospace; font-size: .66rem; letter-spacing: .08em; color: #7fa0b0; background: transparent; border: 1px solid #253643; border-radius: 5px; padding: 3px 10px; cursor: pointer; transition: color .15s, border-color .15s; }
.copy:hover { color: var(--acc); border-color: color-mix(in srgb, var(--acc) 50%, transparent); }
.copy.done { color: var(--live); border-color: var(--live); }
.term pre { margin: 0; padding: 13px 15px; overflow-x: auto; }
.term code { font-family: ui-monospace, "Cascadia Code", Consolas, monospace; font-size: .84rem; line-height: 1.75; color: var(--term-text); white-space: pre; }
.term .pr { color: var(--term-prompt); user-select: none; }
.term .cm { color: #5f7585; }

/* ---- UNIVERSAL etched-corner callout — the site standard for every callout
   panel (no rounded/transparent web-default boxes anywhere). Shared geometry
   here; each callout only sets its --rim color + layout. The ::before surface
   sits at z-index:-1 so bare text nodes paint above it without wrappers; the
   drop-shadow filter gives each panel its own stacking context. New callouts:
   add the class to these selector lists and set --rim. ---- */
.tip, .disc, .gate, .demo-note, .sponsor, .wrap .etch-note {
  position: relative; border: 0; border-radius: 0; background: var(--rim);
  clip-path: polygon(0 11px, 11px 0, calc(100% - 11px) 0, 100% 11px, 100% calc(100% - 11px), calc(100% - 11px) 100%, 11px 100%, 0 calc(100% - 11px));
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.28)); }
.tip::before, .disc::before, .gate::before, .demo-note::before, .sponsor::before, .wrap .etch-note::before {
  content: ""; position: absolute; inset: 1.5px; z-index: -1;
  background: radial-gradient(color-mix(in srgb, var(--rim) 12%, transparent) .6px, transparent .7px) 0 0/6px 6px, linear-gradient(150deg, var(--surf2), var(--surf));
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,.06), inset 0 -16px 30px rgba(0,0,0,.22), inset 0 0 0 1px color-mix(in srgb, var(--rim) 7%, transparent);
  clip-path: polygon(0 11px, 11px 0, calc(100% - 11px) 0, 100% 11px, 100% calc(100% - 11px), calc(100% - 11px) 100%, 11px 100%, 0 calc(100% - 11px)); }
.tip::after, .disc::after, .gate::after, .demo-note::after, .sponsor::after, .wrap .etch-note::after {
  content: ""; position: absolute; top: 13px; left: 13px; width: 9px; height: 9px;
  border-top: 1.5px solid var(--rim); border-left: 1.5px solid var(--rim); opacity: .9; pointer-events: none; }
.tip { --rim: color-mix(in srgb, var(--demo) 34%, var(--line)); margin-top: 12px; padding: 13px 16px 12px; font-size: .88rem; }
.tip b { color: var(--demo); }
/* generic etched prose panel — add class="etch-note" to any prose/callout block */
.wrap .etch-note { --rim: color-mix(in srgb, var(--acc) 30%, var(--line)); padding: 18px 20px 16px; }
.wrap .etch-note p:last-child { margin-bottom: 0; }
.winonly { margin-top: 12px; border-left: 3px solid var(--acc); background: color-mix(in srgb, var(--acc) 8%, transparent); border-radius: 0 8px 8px 0; padding: 10px 14px; font-size: .88rem; }

/* ---- callouts ---- */
.disc { --rim: color-mix(in srgb, var(--demo) 34%, var(--line)); display: flex; gap: 12px; align-items: center; margin-top: 16px; padding: 14px 16px; }
.disc-tag { flex: none; font-family: ui-monospace, Consolas, monospace; font-size: .64rem; letter-spacing: .16em; color: #0a0e13; font-weight: 700; border: 0; border-radius: 5px; padding: 4px 10px; background: linear-gradient(110deg, #00ff9d, #38c6ff, #a78bfa, #ffb066, #00ff9d); background-size: 300% 100%; animation: foil 4.5s linear infinite; box-shadow: 0 0 7px color-mix(in srgb, var(--demo) 18%, transparent); }
.disc p { margin: 0; font-size: .84rem; } .disc a { color: var(--demo); }
.gate { --rim: color-mix(in srgb, var(--demo) 34%, var(--line)); margin-top: 20px; padding: 18px 20px; }
.gate .glabel { font-family: ui-monospace, Consolas, monospace; font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--demo); display: flex; align-items: center; gap: 8px; }
.gate h3 { margin: 8px 0 6px; font-size: 1.05rem; } .gate p { margin: 0 0 14px; font-size: .92rem; color: var(--muted); }
.demo-note { --rim: color-mix(in srgb, var(--violet) 34%, var(--line)); margin: 22px 0 0; padding: 15px 16px 14px; display: flex; gap: 14px; align-items: flex-start; }
.dn-badges { display: flex; align-items: center; gap: 8px; flex: none; padding-top: 1px; }
.dn-foil { font-family: ui-monospace, Consolas, monospace; font-size: .66rem; letter-spacing: .14em; font-weight: 700; color: #0a0e13; padding: 3px 9px; border-radius: 5px; background: linear-gradient(110deg, #00ff9d, #38c6ff, #a78bfa, #ffb066, #00ff9d); background-size: 300% 100%; animation: foil 4.5s linear infinite; }
@keyframes foil { to { background-position: 300% 0; } }
.dn-flash { width: 9px; height: 9px; border-radius: 50%; background: var(--demo); box-shadow: 0 0 4px var(--demo); animation: flash 1.5s ease-in-out infinite; }
@keyframes flash { 0%,100% { opacity: .3; } 50% { opacity: 1; } }
.demo-note p { margin: 0; font-size: .9rem; } .demo-note b { color: var(--text); }
.req { margin: 20px 0 0; border: 1px solid var(--line); border-left: 3px solid var(--acc); background: var(--surf); border-radius: 10px; padding: 15px 18px; }
.req h3 { margin: 0 0 7px; font-family: ui-monospace, Consolas, monospace; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--acc); }
.req p { margin: 0; font-size: .92rem; } .req .os { color: var(--demo); font-weight: 600; }

.checks { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.chk { display: flex; gap: 12px; align-items: flex-start; font-size: .94rem; }
.chk .mk { color: var(--acc); font-family: ui-monospace, Consolas, monospace; flex: none; margin-top: 1px; }
.tblwrap { margin-top: 18px; overflow-x: auto; border: 1px solid var(--line); border-radius: 10px; }
table { border-collapse: collapse; width: 100%; min-width: 520px; }
th, td { text-align: left; padding: 12px 15px; vertical-align: top; font-size: .9rem; }
thead th { font-family: ui-monospace, Consolas, monospace; font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); background: var(--surf2); border-bottom: 1px solid var(--line); }
tbody tr + tr td { border-top: 1px solid var(--line-soft); }
td:first-child { color: var(--crit); font-family: ui-monospace, Consolas, monospace; font-size: .82rem; white-space: nowrap; }
td code { font-family: ui-monospace, Consolas, monospace; font-size: .84em; color: var(--acc); }

footer { margin-top: 60px; padding-top: 22px; border-top: 1px solid var(--line-soft); color: var(--muted); font-size: .84rem; }
footer a { color: var(--acc); text-decoration: none; } footer a:hover { text-decoration: underline; }
footer .sig { margin-top: 8px; font-family: ui-monospace, Consolas, monospace; font-size: .72rem; letter-spacing: .12em; }
footer .license-note { font-family: ui-monospace, Consolas, monospace; font-size: .6rem; line-height: 1.5; color: var(--muted); max-width: 74ch; margin: 0 auto 12px; text-align: center; letter-spacing: .02em; opacity: .82; }

/* ---- Auspex: hero hexazone + embedded AEGIS samples ---- */
.hero-grid { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
.hero-copy { min-width: 0; }
.hexzone-fig { display: flex; flex-direction: column; align-items: center; gap: 8px; flex: none; }
.hexzone-svg { width: clamp(150px, 33vw, 236px); height: auto; display: block; filter: drop-shadow(0 0 10px color-mix(in srgb, var(--acc) 12%, transparent)); }
.hexzone-cap { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.read-sky { font-family: ui-monospace, Consolas, monospace; font-size: .82rem; letter-spacing: .3em; text-transform: uppercase; color: var(--demo); margin: 14px 0 0; }
@media (max-width: 640px) { .hero-grid { grid-template-columns: 1fr; } .hexzone-svg { width: 190px; margin-top: 6px; } }

/* embedded-sample frame (shared by flower + heatmap) */
.sample { border: 1px solid var(--line); background: color-mix(in srgb, var(--surf) 60%, transparent); border-radius: 14px; padding: 14px 15px 16px; margin-top: 22px; }
.sample-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; font-family: ui-monospace, Consolas, monospace; font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--acc); margin-bottom: 10px; flex-wrap: wrap; }
.sample-head .sub { color: var(--muted); letter-spacing: .1em; }
/* foil-holographic EXAMPLE mark for anything showing illustrative data */
.foil-tag { font-family: ui-monospace, Consolas, monospace; font-size: .56rem; letter-spacing: .16em; font-weight: 700; color: #0a0e13; border-radius: 5px; padding: 3px 9px; white-space: nowrap; background: linear-gradient(110deg, #00ff9d, #38c6ff, #a78bfa, #ffb066, #00ff9d); background-size: 300% 100%; animation: foil 4.5s linear infinite; box-shadow: 0 0 6px color-mix(in srgb, var(--acc) 15%, transparent); }

/* presence-heatmap axis labels (day rows + hour ticks) */
.heat-grid-wrap { display: grid; grid-template-columns: auto 1fr; gap: 8px; }
.heat-days { display: grid; grid-template-rows: repeat(7, 1fr); gap: 3px; align-items: center; text-align: right; font-family: ui-monospace, Consolas, monospace; font-size: .54rem; letter-spacing: .08em; color: var(--muted); }
.heat-hours { display: flex; justify-content: space-between; margin-top: 6px; font-family: ui-monospace, Consolas, monospace; font-size: .54rem; letter-spacing: .06em; color: var(--muted); }

/* mesh flower network diagram (canvas) */
#auspex-flower { width: 100%; height: 340px; display: block; }
@media (max-width: 560px) { #auspex-flower { height: 300px; } }

/* github-style presence heatmap */
.heatgrid { display: grid; grid-template-columns: repeat(24, 1fr); grid-auto-rows: 1fr; gap: 3px; }
.heatgrid .hc { aspect-ratio: 1 / 1; border-radius: 2px; background: color-mix(in srgb, var(--acc) 6%, var(--surf2)); }
.heatgrid .hc.l1 { background: color-mix(in srgb, var(--acc) 22%, var(--surf2)); }
.heatgrid .hc.l2 { background: color-mix(in srgb, var(--acc) 42%, var(--surf2)); }
.heatgrid .hc.l3 { background: color-mix(in srgb, var(--acc) 66%, var(--surf2)); }
.heatgrid .hc.l4 { background: var(--acc); }
.heatleg { display: flex; align-items: center; gap: 5px; justify-content: flex-end; margin-top: 10px; font-family: ui-monospace, Consolas, monospace; font-size: .62rem; letter-spacing: .1em; color: var(--muted); }
.heatleg i { width: 11px; height: 11px; border-radius: 2px; display: inline-block; }
.heatleg i:nth-of-type(1) { background: color-mix(in srgb, var(--acc) 6%, var(--surf2)); }
.heatleg i:nth-of-type(2) { background: color-mix(in srgb, var(--acc) 22%, var(--surf2)); }
.heatleg i:nth-of-type(3) { background: color-mix(in srgb, var(--acc) 42%, var(--surf2)); }
.heatleg i:nth-of-type(4) { background: color-mix(in srgb, var(--acc) 66%, var(--surf2)); }
.heatleg i:nth-of-type(5) { background: var(--acc); }

/* sample AEGIS detail card (airspace) */
.acard { margin-top: 22px; border: 1px solid color-mix(in srgb, var(--acc) 34%, var(--line)); background: var(--surf); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); max-width: 460px; }
.acard-hd { display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--acc) 8%, var(--surf2)); }
.acard-ic { width: 34px; height: 34px; flex: none; display: grid; place-items: center; border-radius: 9px; font-size: 1.05rem; color: var(--acc); border: 1px solid color-mix(in srgb, var(--acc) 40%, transparent); background: color-mix(in srgb, var(--acc) 10%, transparent); }
.acard-ti { font-family: ui-monospace, Consolas, monospace; font-weight: 700; font-size: .96rem; letter-spacing: .04em; display: flex; align-items: center; gap: 8px; }
.acard-tag { font-size: .56rem; letter-spacing: .18em; color: var(--demo); border: 1px solid color-mix(in srgb, var(--demo) 45%, transparent); border-radius: 4px; padding: 1px 6px; }
.acard-sub { font-size: .68rem; letter-spacing: .08em; color: var(--muted); margin-top: 3px; }
.acard-live { margin-left: auto; font-size: .6rem; letter-spacing: .16em; color: var(--live); display: flex; align-items: center; gap: 6px; flex: none; }
.acard-live i { width: 7px; height: 7px; border-radius: 50%; background: var(--live); box-shadow: 0 0 4px var(--live); animation: flash 1.5s ease-in-out infinite; }
.acard-body { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-soft); }
.af { background: var(--surf); padding: 11px 13px; }
.af span { display: block; font-family: ui-monospace, Consolas, monospace; font-size: .56rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.af b { font-family: ui-monospace, Consolas, monospace; font-size: .92rem; color: var(--text); font-weight: 700; }
.acard-spark { display: flex; align-items: center; gap: 10px; padding: 11px 15px; border-top: 1px solid var(--line); }
.acard-spark svg { width: 100%; height: 34px; display: block; }
.acard-spark span { font-family: ui-monospace, Consolas, monospace; font-size: .58rem; letter-spacing: .12em; color: var(--muted); flex: none; }
@media (max-width: 460px) { .acard-body { grid-template-columns: repeat(2, 1fr); } }

/* ---- Auspex compass dial: north-locked heading + radar sweep + GPS lock ---- */
.compass-fig { display: flex; flex-direction: column; align-items: center; gap: 10px; flex: none; }
.compass-svg { width: clamp(140px, 30vw, 168px); height: auto; display: block; filter: drop-shadow(0 0 10px color-mix(in srgb, var(--acc) 12%, transparent)); }
.compass-svg .csweep { transform-box: view-box; transform-origin: 100px 100px; animation: sweep 3.8s linear infinite; }
@keyframes sweep { to { transform: rotate(360deg); } }
.compass-cap { display: flex; align-items: center; gap: 7px; font-family: ui-monospace, Consolas, monospace; font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.compass-cap .lock { width: 7px; height: 7px; border-radius: 50%; background: var(--live); box-shadow: 0 0 4px var(--live); animation: flash 1.6s ease-in-out infinite; }
.compass-cap .gps { color: var(--acc); letter-spacing: .06em; }

/* ---- sponsor spotlight ---- */
.sponsor { --rim: color-mix(in srgb, var(--acc) 34%, var(--line)); display: flex; gap: 13px; align-items: center; margin-top: 20px; padding: 15px 16px; }
.sponsor-tag { flex: none; font-family: ui-monospace, Consolas, monospace; font-size: .62rem; letter-spacing: .16em; font-weight: 700; color: #0a0e13; border-radius: 5px; padding: 4px 10px; background: linear-gradient(110deg, #00ff9d, #38c6ff, #a78bfa, #ffb066, #00ff9d); background-size: 300% 100%; animation: foil 4.5s linear infinite; box-shadow: 0 0 7px color-mix(in srgb, var(--acc) 18%, transparent); }
.sponsor p { margin: 0; font-size: .9rem; }
.sponsor a { color: var(--acc); font-weight: 700; text-decoration: none; }
.sponsor a:hover { text-decoration: underline; }

/* ---- open-source credits chips ---- */
.credits-note { margin-top: 18px; font-size: .84rem; color: var(--muted); }
.credits-note b { color: var(--text); }
.credits { display: flex; flex-wrap: wrap; gap: 8px 9px; margin-top: 20px; }
.credits a { font-family: ui-monospace, Consolas, monospace; font-size: .72rem; letter-spacing: .03em; color: var(--acc); text-decoration: none; border: 1px solid color-mix(in srgb, var(--acc) 28%, var(--line)); border-radius: 999px; padding: 5px 13px; transition: border-color .15s, background .15s, transform .15s; }
.credits a:hover { border-color: color-mix(in srgb, var(--acc) 60%, transparent); background: color-mix(in srgb, var(--acc) 8%, transparent); transform: translateY(-1px); }

/* ---- numbered list markers (ASCII, staggered glow) ---- */
.hnum { flex: none; width: 26px; align-self: flex-start; margin-top: 1px; font-family: ui-monospace, Consolas, monospace; font-size: .82rem; font-weight: 700; color: var(--acc); text-shadow: 0 0 5px color-mix(in srgb, var(--acc) 16%, transparent); animation: numpulse 2.8s ease-in-out infinite; }
@keyframes numpulse { 0%, 100% { opacity: .75; text-shadow: 0 0 4px color-mix(in srgb, var(--acc) 12%, transparent); } 50% { opacity: 1; text-shadow: 0 0 8px color-mix(in srgb, var(--acc) 28%, transparent); } }
.hrow:nth-child(1) .hnum { animation-delay: 0s; }
.hrow:nth-child(2) .hnum { animation-delay: .18s; }
.hrow:nth-child(3) .hnum { animation-delay: .36s; }
.hrow:nth-child(4) .hnum { animation-delay: .54s; }
.hrow:nth-child(5) .hnum { animation-delay: .72s; }
.hrow:nth-child(6) .hnum { animation-delay: .9s; }

/* ---- how-it-works step flow ---- */
.flow { display: flex; align-items: stretch; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.flow-step { flex: 1 1 150px; border: 1px solid var(--line); background: var(--surf); border-radius: 12px; padding: 14px 15px; }
.flow-step.key { border-color: color-mix(in srgb, var(--acc) 45%, var(--line)); background: color-mix(in srgb, var(--acc) 7%, var(--surf)); }
.flow-step .fn { font-family: ui-monospace, Consolas, monospace; font-size: .58rem; letter-spacing: .18em; color: var(--acc); }
.flow-step h4 { margin: 6px 0 5px; font-size: .96rem; }
.flow-step p { margin: 0; font-size: .8rem; color: var(--muted); line-height: 1.45; }
.flow-arrow { align-self: center; flex: none; color: var(--acc); opacity: .55; font-family: ui-monospace, Consolas, monospace; font-size: 1.1rem; }
@media (max-width: 640px) { .flow { flex-direction: column; } .flow-arrow { transform: rotate(90deg); align-self: flex-start; margin-left: 20px; } }

/* ---- request-access form (Netlify Forms) ---- */
.req-form { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; max-width: 560px; }
.req-form .fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.req-form .field { display: flex; flex-direction: column; gap: 6px; }
.req-form .field > span { font-family: ui-monospace, Consolas, monospace; font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.req-form input[type=text], .req-form input[type=email], .req-form input[type=url], .req-form textarea { font: inherit; font-size: .92rem; color: var(--live); caret-color: var(--live); background: var(--surf); border: 1px solid var(--line); border-radius: 9px; padding: 10px 12px; width: 100%; }
.req-form input:focus, .req-form textarea:focus { outline: none; border-color: color-mix(in srgb, var(--acc) 55%, transparent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--acc) 14%, transparent); }

/* ---- universal entered-text styling: what the user types reads terminal-green
   (data entering the system), on-theme in dark AND light (--live swaps). Applies
   to every form on the site — keep new form inputs on these rules.
   -webkit-text-fill-color included because Chrome AUTOFILL paints its own text
   color and ignores plain `color`; the fill-color + inset shadow overrides win
   in every state (typed, autofilled, hover, focus). ---- */
input[type=text], input[type=email], input[type=url], input[type=search],
input[type=tel], input[type=number], textarea, select {
  color: var(--live); -webkit-text-fill-color: var(--live); caret-color: var(--live); }
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus,
textarea:-webkit-autofill, select:-webkit-autofill {
  -webkit-text-fill-color: var(--live); caret-color: var(--live);
  box-shadow: inset 0 0 0 1000px var(--surf);
  transition: background-color 999999s ease 0s; }
input::placeholder, textarea::placeholder { color: var(--muted); -webkit-text-fill-color: var(--muted); opacity: .7; }
input::selection, textarea::selection { background: color-mix(in srgb, var(--live) 28%, transparent); color: var(--text); -webkit-text-fill-color: var(--text); }
.req-form textarea { resize: vertical; }
.req-form .check { display: flex; gap: 10px; align-items: flex-start; font-size: .86rem; color: var(--muted); line-height: 1.5; }
.req-form .check input { margin-top: 3px; accent-color: var(--acc); flex: none; }
.req-form .check b { color: var(--text); }
.req-form .hp { position: absolute; left: -9999px; }
.req-form button { align-self: flex-start; }
@media (max-width: 520px) { .req-form .fgrid { grid-template-columns: 1fr; } }

/* ---- horizontal value list (alternative to the card grid) ---- */
.hlist { margin-top: 20px; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: var(--surf); }
.hrow { display: flex; gap: 18px; align-items: baseline; padding: 15px 18px; }
.hrow + .hrow { border-top: 1px solid var(--line-soft); }
.hkey { flex: none; width: 118px; font-family: ui-monospace, Consolas, monospace; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--demo); }
.hbody { font-size: .95rem; color: var(--muted); line-height: 1.55; }
.hbody b { color: var(--text); }
@media (max-width: 520px) { .hrow { flex-direction: column; gap: 5px; } .hkey { width: auto; } }

/* ---- build timeline ---- */
.tl-stats { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.tl-stat { flex: 1 1 128px; border: 1px solid var(--line); background: var(--surf); border-radius: 12px; padding: 14px 16px; }
.tl-stat b { display: block; font-family: ui-monospace, Consolas, monospace; font-size: 1.55rem; font-weight: 700; color: var(--acc); line-height: 1.1; font-variant-numeric: tabular-nums; }
.tl-stat span { display: block; margin-top: 5px; font-family: ui-monospace, Consolas, monospace; font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

.timeline { position: relative; margin-top: 8px; padding-left: 30px; }
.timeline::before { content: ""; position: absolute; left: 8px; top: 10px; bottom: 30px; width: 2px;
  background: linear-gradient(var(--acc), var(--violet) 42%, var(--crit) 62%, var(--demo) 82%, var(--live)); opacity: .42; }
/* shooting-star energy pulse traveling down the spine (the "signal" of the build) */
.timeline::after { content: ""; position: absolute; left: 5px; width: 8px; height: 78px; top: 0; border-radius: 8px; pointer-events: none;
  background: linear-gradient(color-mix(in srgb, var(--acc) 0%, transparent), var(--acc), color-mix(in srgb, var(--acc) 0%, transparent));
  filter: blur(2px); opacity: .8; animation: tlflow 5.2s linear infinite; }
@keyframes tlflow { 0% { top: -4%; opacity: 0; } 10% { opacity: .8; } 90% { opacity: .8; } 100% { top: 100%; opacity: 0; } }

.tl-era { margin-top: 44px; }
.tl-era:first-child { margin-top: 30px; }
.tl-era-head { position: relative; }
.tl-era-head::before { content: ""; position: absolute; left: -29px; top: 4px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--acc); box-shadow: 0 0 0 4px color-mix(in srgb, var(--acc) 12%, transparent); }
.tl-era-num { font-family: ui-monospace, Consolas, monospace; font-size: .62rem; letter-spacing: .2em; color: var(--muted); }
.tl-era-head h2 { margin: 3px 0 2px; font-size: 1.24rem; font-weight: 700; text-wrap: balance; }
.tl-era-head .tl-era-sub { display: block; font-size: .9rem; color: var(--muted); }
.tl-era-head .tl-era-range { font-family: ui-monospace, Consolas, monospace; font-size: .64rem; letter-spacing: .1em; color: var(--acc); margin-left: 8px; }

.tl-item { position: relative; margin-top: 18px; }
.tl-item::before { content: ""; position: absolute; left: -25px; top: 7px; width: 8px; height: 8px; border-radius: 50%;
  background: var(--surf); border: 1.5px solid var(--muted); }
.tl-item:hover::before { border-color: var(--acc); background: color-mix(in srgb, var(--acc) 30%, var(--surf)); }
.tl-head { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.tl-title { font-size: 1.0rem; font-weight: 700; color: var(--text); }
.tl-tag { font-family: ui-monospace, Consolas, monospace; font-size: .56rem; letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid; border-radius: 5px; padding: 2px 7px; white-space: nowrap; }
.tl-tag.endpoint { color: var(--live); border-color: color-mix(in srgb, var(--live) 42%, transparent); }
.tl-tag.rf { color: var(--acc); border-color: color-mix(in srgb, var(--acc) 42%, transparent); }
.tl-tag.intel { color: var(--violet); border-color: color-mix(in srgb, var(--violet) 45%, transparent); }
.tl-tag.hunt { color: var(--crit); border-color: color-mix(in srgb, var(--crit) 42%, transparent); }
.tl-tag.fleet { color: var(--demo); border-color: color-mix(in srgb, var(--demo) 42%, transparent); }
.tl-tag.ai { color: var(--acc-soft); border-color: color-mix(in srgb, var(--acc-soft) 45%, transparent); }
.tl-tag.console { color: var(--muted); border-color: color-mix(in srgb, var(--muted) 42%, transparent); }
.tl-tag.ship { color: var(--live); border-color: color-mix(in srgb, var(--live) 42%, transparent); }
.tl-desc { margin: 4px 0 0; font-size: .9rem; color: var(--muted); line-height: 1.55; max-width: 64ch; }
.tl-desc b { color: var(--text); }
.tl-wip { font-family: ui-monospace, Consolas, monospace; font-size: .54rem; letter-spacing: .14em; text-transform: uppercase; color: var(--demo);
  border: 1px solid color-mix(in srgb, var(--demo) 45%, transparent); border-radius: 5px; padding: 2px 7px; white-space: nowrap; display: inline-flex; align-items: center; gap: 5px; }
.tl-wip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--demo); box-shadow: 0 0 4px var(--demo); animation: flash 1.5s ease-in-out infinite; }

.tl-now { position: relative; margin-top: 40px; padding: 15px 18px; border: 1px solid color-mix(in srgb, var(--live) 45%, var(--line));
  background: color-mix(in srgb, var(--live) 7%, var(--surf)); border-radius: 12px; }
.tl-now::before { content: ""; position: absolute; left: -30px; top: 18px; width: 14px; height: 14px; border-radius: 50%;
  background: var(--live); box-shadow: 0 0 0 4px color-mix(in srgb, var(--live) 16%, transparent); animation: flash 1.8s ease-in-out infinite; }
.tl-now .tl-now-k { font-family: ui-monospace, Consolas, monospace; font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--live); }
.tl-now h3 { margin: 5px 0 6px; font-size: 1.05rem; }
.tl-now p { margin: 0; font-size: .9rem; color: var(--muted); }
@media (max-width: 520px) { .timeline { padding-left: 24px; } .tl-item::before { left: -21px; } }

a:focus-visible, button:focus-visible { outline: 2px solid var(--acc); outline-offset: 2px; border-radius: 4px; }
@media (max-width: 620px) { .pathsel { grid-template-columns: 1fr; } .step { grid-template-columns: 28px 1fr; gap: 12px; } .num { width: 28px; height: 28px; } }
@media (prefers-reduced-motion: reduce) { .scan, .cursor, .dn-foil, .dn-flash, .blockmark, .disc-tag, .nav-links a.active, .btn.foil, .acard-live i, .compass-svg .csweep, .compass-cap .lock, .foil-tag, .sponsor-tag, .hnum, .tl-now::before, .tl-wip::before { animation: none; } .timeline::after { animation: none; opacity: 0; } .path, .pathseg, .card, .btn { transition: none; animation: none; } }
