/* ===== Tokens: defaults = DARK ===== */
  :root{
    --bg:#07090b; --surface:#0e1114; --surface-2:#161a1e;
    --text:#e9edf1; --muted:#868f9b; --faint:#5a626c;
    --line:#1e242a; --line-2:#2b333a;
    --accent:#c8ff00; --accent-ink:#c8ff00; --on-accent:#0a0c05;
    --warn:#ffd25e; --warn-ink:#ffd25e;

    --grid-op:.06;
    --glow:0 0 26px rgba(200,255,0,.22);
    --pad:clamp(20px,5vw,56px);
    --sec-pad:clamp(46px,7vw,84px);
    --base-fz:15px;
    --eyebrow-tt:uppercase;
    --maxw:1180px;
    --lh:1.6;
    --label-spacing:.14em;

    --f-display:"Space Grotesk", system-ui, sans-serif;
    --f-mono:"DM Mono", ui-monospace, "SF Mono", Menlo, monospace;
  }
  /* ===== LIGHT theme ===== */
  html[data-theme="light"]{
    --bg:#f7f8f3; --surface:#ffffff; --surface-2:#eef1e8;
    --text:#171a16; --muted:#626b61; --faint:#9aa394;
    --line:#dfe5d8; --line-2:#cbd4c2;
    --accent:#b8ff00; --accent-ink:#4f7300; --on-accent:#111606;
    --warn:#b38b1f; --warn-ink:#7a5d10;
    --grid-op:.035;
    --glow:0 0 20px rgba(184,255,0,.14);
  }
  /* ===== Dynamic accents ===== */
  .btn.solid{box-shadow:0 4px 24px rgba(200,255,0,.18)}
  .metric.hl .v,
  .node.on .nm h3{text-shadow:0 0 18px rgba(200,255,0,.28)}
  html[data-theme="dark"] h1.title{animation:titleGlow 3.6s ease-in-out infinite}
  @keyframes titleGlow{0%,100%{text-shadow:0 0 22px rgba(200,255,0,.15)}50%{text-shadow:0 0 36px rgba(200,255,0,.36)}}

  /* ===== Typewriter caret ===== */
  .tw-caret{display:inline-block; width:.5ch; height:.95em; background:var(--accent); margin-left:3px; vertical-align:-.1em; box-shadow:var(--glow); animation:caretBlink 1.05s steps(1) infinite}
  @keyframes caretBlink{50%{opacity:0}}

  /* ===== Preloader ===== */
  #preloader{position:fixed; inset:0; z-index:9999; background:var(--bg); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:22px; transition:opacity .5s ease, visibility .5s ease}
  #preloader.done{opacity:0; visibility:hidden; pointer-events:none}
  #preloader .pl-mark{width:64px; height:34px; font-size:24px; animation:plPulse 1.3s ease-in-out infinite}
  @keyframes plPulse{0%,100%{opacity:.65; transform:scale(.96)}50%{opacity:1; transform:scale(1)}}
  #preloader .pl-bar{width:148px; height:2px; background:var(--line-2); border-radius:2px; overflow:hidden}
  #preloader .pl-bar i{display:block; height:100%; width:40%; background:var(--accent); border-radius:2px; animation:plSlide 1.15s ease-in-out infinite}
  @keyframes plSlide{0%{transform:translateX(-130%)}100%{transform:translateX(380%)}}
  #preloader .pl-txt{font-family:var(--f-mono); font-size:11px; letter-spacing:.18em; color:var(--faint); text-transform:uppercase}

  *{box-sizing:border-box;margin:0;padding:0}
  [hidden]{display:none !important}
  html{scroll-behavior:smooth; max-width:100%; overflow-x:hidden}
  @media (prefers-reduced-motion: reduce){ html{scroll-behavior:auto} }

  body{
    background:var(--bg); color:var(--text);
    font-family:var(--f-display); font-size:15px; line-height:var(--lh);
    -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
    overflow-x:hidden; transition:background .4s ease, color .4s ease;
  }

  /* ambient layers */
  #bg-canvas{position:fixed; inset:0; z-index:0; pointer-events:none; opacity:.5}
  #code-bg{position:fixed; inset:0; z-index:0; margin:0; padding:34px 28px; pointer-events:none; overflow:hidden; font-family:var(--f-mono); font-size:12.5px; line-height:1.7; white-space:pre; color:var(--faint); opacity:.07; -webkit-mask-image:linear-gradient(180deg,transparent,#000 16%,#000 84%,transparent); mask-image:linear-gradient(180deg,transparent,#000 16%,#000 84%,transparent); user-select:none}
  html[data-theme="light"] #code-bg{opacity:.032}
  #code-bg .ck{color:var(--accent-ink)}
  #code-bg .cs{color:#9bbf5e}
  #code-bg .cc{color:var(--faint); font-style:italic}
  .grid-bg{
    position:fixed; inset:0; z-index:0; pointer-events:none;
    background-size:46px 46px;
    background-image:
      linear-gradient(to right, currentColor 1px, transparent 1px),
      linear-gradient(to bottom, currentColor 1px, transparent 1px);
    color:var(--accent); opacity:var(--grid-op);
    mask-image:radial-gradient(ellipse 70% 55% at 50% 0%, #000 55%, transparent 100%);
    -webkit-mask-image:radial-gradient(ellipse 70% 55% at 50% 0%, #000 55%, transparent 100%);
    transition:opacity .4s ease;
  }

  a{color:inherit; text-decoration:none}
  ::selection{background:var(--accent); color:var(--on-accent)}
  :focus-visible{outline:2px solid var(--accent-ink); outline-offset:3px; border-radius:3px}

  .wrap{position:relative; z-index:1; max-width:var(--maxw); margin:0 auto; padding-left:var(--pad); padding-right:var(--pad)}
  .eyebrow{font-family:var(--f-mono); font-size:11px; letter-spacing:var(--label-spacing); text-transform:uppercase; color:var(--faint)}
  .eyebrow b{color:var(--accent-ink); font-weight:500}

  /* ===== Header ===== */
  .head{position:sticky; top:0; z-index:40; background:color-mix(in srgb, var(--bg) 82%, transparent); backdrop-filter:blur(10px); border-bottom:1px solid var(--line)}
  .head .wrap{display:flex; align-items:center; gap:16px; height:62px}
  .brand{display:flex; align-items:center; gap:10px; font-family:var(--f-mono); font-size:14px; letter-spacing:.02em; font-weight:500; white-space:nowrap}
  .brand-glyph{position:relative; display:inline-flex; align-items:center; justify-content:flex-start; flex:none; width:30px; height:22px; color:var(--accent-ink); font-family:var(--f-mono); font-size:13px; font-weight:700; line-height:1; letter-spacing:.02em; text-transform:lowercase; text-shadow:0 0 12px rgba(184,255,0,.22)}
  .brand-glyph::after{content:""; width:6px; height:2px; margin-left:2px; border-radius:2px; background:var(--accent); box-shadow:0 0 8px var(--accent); transform:translateY(5px)}
  .brand:hover{color:var(--accent-ink)}
  .nav{display:none; gap:24px; margin-left:14px; font-family:var(--f-mono); font-size:12.5px; color:var(--muted)}
  .nav a{position:relative; padding:4px 0; transition:color .2s}
  .nav a::after{content:""; position:absolute; left:0; bottom:-2px; height:1px; width:0; background:var(--accent); transition:width .25s}
  .nav a:hover{color:var(--text)} .nav a:hover::after{width:100%}
  @media (min-width:860px){ .nav{display:flex} }
  .controls{display:flex; align-items:center; gap:8px; margin-left:auto}
  .ctrl{display:inline-flex; align-items:center; justify-content:center; width:34px; height:32px; border:1px solid var(--line-2); background:var(--surface); color:var(--muted); border-radius:7px; cursor:pointer; transition:all .2s}
  .ctrl:hover{color:var(--accent-ink); border-color:var(--accent-ink)}
  .ctrl svg{width:16px; height:16px}
  .langsw{display:inline-flex; border:1px solid var(--line-2); border-radius:7px; overflow:hidden}
  .langsw button{font-family:var(--f-mono); font-size:11px; letter-spacing:.05em; padding:6px 9px; color:var(--muted); background:var(--surface); border:none; cursor:pointer; transition:all .2s}
  .langsw button:hover{color:var(--text)}
  .langsw button.on{background:var(--accent); color:var(--on-accent)}

  /* ===== Section scaffold ===== */
  .section{padding:clamp(48px,8vw,92px) 0; border-top:1px solid var(--line)}
  .sec-head{display:flex; align-items:baseline; justify-content:space-between; gap:18px; flex-wrap:wrap; margin-bottom:40px}
  .sec-head h2{font-weight:700; font-size:clamp(24px,4vw,38px); letter-spacing:-.02em}
  .sec-head .tag{font-family:var(--f-mono); font-size:11px; letter-spacing:var(--label-spacing); color:var(--faint)}

  /* ===== Hero ===== */
  .hero{padding:clamp(48px,9vw,104px) 0 clamp(36px,6vw,64px)}
  .hero-grid{display:grid; grid-template-columns:1fr; gap:38px; align-items:center}
  @media (min-width:980px){ .hero-grid{grid-template-columns:1.15fr .85fr} }
  .status{display:inline-flex; align-items:center; gap:9px; border:1px solid var(--line-2); background:var(--surface); padding:6px 13px; border-radius:100px; font-family:var(--f-mono); font-size:11px; letter-spacing:.06em; color:var(--muted)}
  .status .blip{width:7px; height:7px; border-radius:50%; background:var(--accent); box-shadow:0 0 8px var(--accent)}
  .status .blip{animation:pulse 2.2s ease-in-out infinite}
  @keyframes pulse{0%,100%{opacity:1}50%{opacity:.35}}

  h1.title{margin:24px 0 6px; font-weight:700; font-size:clamp(46px,9vw,92px); line-height:.92; letter-spacing:-.035em; text-shadow:var(--glow)}
  .tagline{font-family:var(--f-mono); font-size:clamp(12px,2.4vw,15px); letter-spacing:.34em; color:var(--accent-ink); text-transform:uppercase}
  .live-strip{display:grid; grid-template-columns:auto minmax(0,1fr); gap:10px 14px; align-items:center; max-width:620px; margin-top:22px; padding:12px 14px; border:1px solid var(--line); border-radius:8px; background:color-mix(in srgb, var(--surface) 74%, transparent); font-family:var(--f-mono); font-size:11.5px}
  .live-strip .k{color:var(--faint); text-transform:uppercase; letter-spacing:.12em}
  .live-strip .v{color:var(--text); overflow:hidden; text-overflow:ellipsis; white-space:nowrap}
  .live-strip .v b{color:var(--accent-ink); font-weight:500}
  @media (max-width:520px){ .live-strip{grid-template-columns:1fr; gap:4px; margin-top:18px} .live-strip .v{white-space:normal} }
  .lead{margin-top:26px; max-width:52ch; color:var(--muted); font-size:clamp(15px,1.7vw,17px); line-height:1.65}
  .lead b{color:var(--text); font-weight:500}
  .cta-row{display:flex; flex-wrap:wrap; gap:13px; margin-top:32px}
  .btn{font-family:var(--f-mono); font-size:13px; padding:12px 20px; border:1px solid var(--line-2); border-radius:8px; display:inline-flex; align-items:center; gap:9px; cursor:pointer; transition:all .25s; background:var(--surface); color:var(--text)}
  .btn:hover{border-color:var(--accent-ink); transform:translateY(-2px)}
  .btn .ar{color:var(--muted); transition:transform .2s, color .2s}
  .btn:hover .ar{color:var(--accent-ink); transform:translate(2px,-2px)}
  .btn.solid{background:var(--accent); color:var(--on-accent); border-color:var(--accent)}
  .btn.solid .ar{color:var(--on-accent)}
  .btn.solid:hover{filter:brightness(1.05)}

  /* ===== Terminal ===== */
  .term{border:1px solid var(--line-2); border-radius:11px; background:var(--surface); overflow:hidden; box-shadow:0 20px 60px rgba(0,0,0,.25)}
  .term-bar{display:flex; align-items:center; justify-content:space-between; padding:11px 14px; background:var(--surface-2); border-bottom:1px solid var(--line)}
  .dots{display:flex; gap:6px}
  .dots i{width:10px; height:10px; border-radius:50%; display:block}
  .dots i:nth-child(1){background:#ff5f57} .dots i:nth-child(2){background:#febc2e} .dots i:nth-child(3){background:var(--accent)}
  .term-bar .who{font-family:var(--f-mono); font-size:10px; letter-spacing:.12em; color:var(--faint); text-transform:uppercase}
  .term-body{position:relative; padding:16px; height:330px; overflow-y:auto; font-family:var(--f-mono); font-size:12px; line-height:1.65; color:var(--muted)}
  .term-body::after{content:""; position:absolute; inset:0; pointer-events:none; background:linear-gradient(rgba(0,0,0,0) 50%, rgba(0,0,0,.06) 50%); background-size:100% 3px}
  .term .prompt{color:var(--accent-ink)} .term .cmd{color:var(--text)}
  .term .ok{color:var(--accent-ink)} .term .dim{color:var(--faint)} .term .err{color:#ff6b5e}
  .term-line{display:flex; align-items:center; gap:8px; margin-top:8px; border-top:1px solid var(--line); padding-top:10px}
  .term-line input{flex:1; background:transparent; border:none; outline:none; color:var(--text); font-family:var(--f-mono); font-size:12px}

  /* ===== Metrics ===== */
  .metrics{display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:12px; overflow:hidden}
  @media (min-width:760px){ .metrics{grid-template-columns:repeat(4,1fr)} }
  .metric{background:var(--bg); padding:26px 22px; transition:background .25s}
  .metric:hover{background:var(--surface)}
  .metric .v{font-size:clamp(30px,5vw,46px); font-weight:700; letter-spacing:-.03em; line-height:1}
  .metric.hl .v{color:var(--accent-ink)}
  .metric .t{font-family:var(--f-mono); font-size:12px; color:var(--text); margin-top:12px}
  .metric .s{font-family:var(--f-mono); font-size:11px; color:var(--faint); margin-top:3px}

  /* ===== Approach ===== */
  .appr{display:grid; grid-template-columns:1fr; gap:1px; background:var(--line); border:1px solid var(--line); border-radius:12px; overflow:hidden}
  @media (min-width:680px){ .appr{grid-template-columns:repeat(2,1fr)} }
  @media (min-width:1020px){ .appr{grid-template-columns:repeat(4,1fr)} }
  .appr .cell{background:var(--bg); padding:26px 22px; transition:background .25s}
  .appr .cell:hover{background:var(--surface)}
  .appr .k{font-family:var(--f-mono); font-size:11px; color:var(--accent-ink); letter-spacing:.06em; margin-bottom:14px}
  .appr h3{font-size:18px; font-weight:600; letter-spacing:-.01em; margin-bottom:9px}
  .appr p{color:var(--muted); font-size:13.5px; line-height:1.6}

  /* ===== Projects: node inspector ===== */
  .rack{display:grid; grid-template-columns:minmax(0,1fr); gap:22px; align-items:start}
  @media (min-width:1000px){ .rack{grid-template-columns:1.1fr .9fr} }
  .rack > *, .nodes, .node, .inspector{min-width:0}
  .nodes{display:flex; flex-direction:column; gap:10px; width:100%}
  .node{display:flex; align-items:center; gap:14px; width:100%; max-width:100%; text-align:left; padding:15px 16px; border:1px solid var(--line); background:var(--surface); border-radius:10px; cursor:pointer; transition:all .2s; color:inherit; font-family:inherit}
  .node:hover{border-color:var(--line-2); transform:translateX(2px)}
  .node.on{border-color:var(--accent-ink); background:var(--surface-2)}
  .node .ix{flex:none; width:38px; height:38px; border:1px solid var(--line-2); border-radius:8px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:3px; background:var(--bg)}
  .node .ix b{font-family:var(--f-mono); font-size:10px; color:var(--faint)}
  .node .ix .d{width:6px; height:6px; border-radius:50%; background:var(--accent)}
  .node .ix .d.dev{background:var(--warn)}
  .node .meta{min-width:0; flex:1}
  .node .nm{display:flex; align-items:center; gap:8px; flex-wrap:wrap}
  .node .nm h3{font-size:15.5px; font-weight:600}
  .node.on .nm h3{color:var(--accent-ink)}
  .badge{font-family:var(--f-mono); font-size:9px; letter-spacing:.08em; padding:2px 7px; border-radius:4px; border:1px solid var(--line-2); color:var(--muted); text-transform:uppercase}
  .badge.live{color:var(--accent-ink); border-color:color-mix(in srgb, var(--accent-ink) 45%, transparent)}
  .badge.dev{color:var(--warn-ink); border-color:color-mix(in srgb, var(--warn-ink) 45%, transparent)}
  .node .ds{font-size:12px; color:var(--muted); margin-top:3px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap}
  .node .nid{font-family:var(--f-mono); font-size:10px; color:var(--faint); white-space:nowrap; display:none}
  @media (min-width:560px){ .node .nid{display:block} }

  .inspector{position:sticky; top:78px; border:1px solid var(--line-2); background:var(--surface); border-radius:12px; padding:22px; display:flex; flex-direction:column; gap:18px}
  .insp-top{display:flex; align-items:center; justify-content:space-between; border-bottom:1px solid var(--line); padding-bottom:14px}
  .insp-top .lbl{font-family:var(--f-mono); font-size:10px; letter-spacing:.14em; color:var(--faint); text-transform:uppercase}
  .insp-top .ping{width:8px; height:8px; border-radius:50%; background:var(--accent)}
  .insp-top .ping{animation:pulse 2s ease-in-out infinite}
  #insp-title{font-size:22px; font-weight:700; letter-spacing:-.01em}
  #insp-desc{color:var(--muted); font-size:13.5px; line-height:1.6}
  .insp-stack .h{font-family:var(--f-mono); font-size:11px; color:var(--text); text-transform:uppercase; letter-spacing:.06em; margin-bottom:9px}
  .tags{display:flex; flex-wrap:wrap; gap:6px}
  .tag{font-family:var(--f-mono); font-size:10.5px; color:var(--muted); border:1px solid var(--line); background:var(--bg); padding:4px 9px; border-radius:5px}
  .arch{border:1px solid var(--line); border-radius:9px; background:var(--bg); padding:13px; font-family:var(--f-mono); overflow:hidden}
  .arch .h{font-size:10px; color:var(--faint); text-transform:uppercase; letter-spacing:.1em; margin-bottom:10px}
  .arch-flow{display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:8px; align-items:center}
  .arch-node{position:relative; min-width:0; border:1px solid var(--line-2); border-radius:7px; padding:9px 8px; color:var(--text); background:var(--surface); font-size:10.5px; text-align:center; overflow:hidden; text-overflow:ellipsis; white-space:nowrap}
  .arch-node.on{border-color:color-mix(in srgb, var(--accent-ink) 55%, var(--line-2)); color:var(--accent-ink); box-shadow:0 0 18px rgba(200,255,0,.1)}
  .arch-node:not(:last-child)::after{content:""; position:absolute; right:-9px; top:50%; width:8px; border-top:1px solid var(--accent-ink); opacity:.55}
  @media (max-width:520px){ .arch-flow{grid-template-columns:1fr} .arch-node:not(:last-child)::after{right:auto; left:50%; top:auto; bottom:-9px; height:8px; width:0; border-top:0; border-left:1px solid var(--accent-ink)} }
  .logs{background:var(--bg); border:1px solid var(--line); border-radius:9px; padding:13px; font-family:var(--f-mono); font-size:11px; line-height:1.7; overflow-x:auto}
  .logs .lh{font-size:10px; color:var(--faint); text-transform:uppercase; letter-spacing:.1em; border-bottom:1px solid var(--line); padding-bottom:7px; margin-bottom:8px; display:flex; align-items:center; gap:7px}
  .logs .lh .d{width:6px;height:6px;border-radius:50%;background:var(--accent)}
  .logs div.l{color:var(--muted)} .logs div.l.ok{color:var(--accent-ink)} .logs div.l.dim{color:var(--faint)}
  #insp-cta{justify-content:center; width:100%}
  @media (max-width:520px){
    .rack{gap:18px}
    .node{gap:10px; padding:13px 12px}
    .node .ix{width:34px; height:34px}
    .node .nm{gap:6px}
    .node .nm h3{font-size:14px; overflow-wrap:anywhere}
    .node .ds{white-space:normal; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical}
    .badge{font-size:8.5px; padding:2px 6px}
    .inspector{padding:18px}
  }

  /* ===== Stack ===== */
  .stack-grid{display:grid; grid-template-columns:1fr; gap:1px; background:var(--line); border:1px solid var(--line); border-radius:12px; overflow:hidden}
  @media (min-width:760px){ .stack-grid{grid-template-columns:repeat(2,1fr)} }
  @media (min-width:1040px){ .stack-grid{grid-template-columns:repeat(4,1fr)} }
  .stack-col{background:var(--bg); padding:24px 22px}
  .stack-col h3{font-family:var(--f-mono); font-size:11px; letter-spacing:.1em; color:var(--accent-ink); text-transform:uppercase; margin-bottom:14px}
  .stack-col ul{list-style:none; display:flex; flex-direction:column; gap:8px}
  .stack-col li{font-size:13.5px; color:var(--muted); display:flex; gap:9px}
  .stack-col li::before{content:"›"; color:var(--accent-ink)}

  .runtime{border:1px solid var(--line-2); border-radius:12px; background:var(--surface); overflow:hidden}
  .runtime-bar{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:12px 14px; background:var(--surface-2); border-bottom:1px solid var(--line)}
  .runtime-bar .path{font-family:var(--f-mono); font-size:10px; letter-spacing:.12em; color:var(--faint); text-transform:uppercase}
  .runtime-body{display:grid; grid-template-columns:1fr; gap:1px; background:var(--line)}
  @media (min-width:860px){ .runtime-body{grid-template-columns:1fr 1fr} }
  .runtime-pane{min-width:0; background:var(--bg); padding:20px}
  .runtime-line{font-family:var(--f-mono); font-size:12px; color:var(--muted); margin-bottom:12px}
  .runtime-line .prompt{color:var(--accent-ink)}
  .module-grid{display:grid; grid-template-columns:1fr; gap:9px}
  @media (min-width:560px){ .module-grid{grid-template-columns:1fr 1fr} }
  .module{display:flex; align-items:center; gap:9px; min-width:0; border:1px solid var(--line); border-radius:7px; background:var(--surface); padding:10px 11px; font-family:var(--f-mono); font-size:11px; color:var(--muted)}
  .module i{width:7px; height:7px; border-radius:50%; background:var(--accent); box-shadow:0 0 8px rgba(200,255,0,.35); flex:none}
  .module b{color:var(--text); font-weight:500; overflow:hidden; text-overflow:ellipsis; white-space:nowrap}
  .module span{margin-left:auto; color:var(--faint); font-size:10px; white-space:nowrap}
  .runtime-log{display:flex; flex-direction:column; gap:8px; font-family:var(--f-mono); font-size:11.5px; color:var(--muted)}
  .runtime-log .ok{color:var(--accent-ink)}
  .runtime-log .dim{color:var(--faint)}

  /* ===== Contact ===== */
  .contact h2{font-size:clamp(32px,7vw,68px); font-weight:700; line-height:1; letter-spacing:-.03em; margin-bottom:24px}
  .contact h2 .hl{color:var(--accent-ink)}
  .contact p{max-width:52ch; color:var(--muted); font-size:16px; margin-bottom:30px}
  .honest{margin-top:30px; font-family:var(--f-mono); font-size:11.5px; color:var(--faint); display:flex; align-items:center; gap:9px}
  .honest .d{width:6px;height:6px;border-radius:50%;background:var(--accent)}

  /* ===== Footer ===== */
  .foot{border-top:1px solid var(--line); padding:30px 0}
  .foot .wrap{display:flex; flex-wrap:wrap; gap:12px 20px; align-items:center; justify-content:space-between; font-family:var(--f-mono); font-size:11.5px; color:var(--faint)}
  .foot b{color:var(--text); font-weight:500}
  .foot a{color:var(--text); border-bottom:1px solid transparent; transition:color .2s,border-color .2s}
  .foot a:hover{color:var(--accent-ink); border-color:var(--accent-ink)}
  .foot-console{display:flex; flex-wrap:wrap; gap:8px 14px; align-items:center}
  .foot-console .prompt{color:var(--accent-ink)}
  .foot-console .cmd{color:var(--text)}

  /* ===== Custom cursor (fine pointers only) ===== */
  .cursor,.cursor-ring{position:fixed;top:0;left:0;pointer-events:none;border-radius:50%;transform:translate(-50%,-50%);display:none}
  .cursor{width:9px;height:9px;background:var(--accent);z-index:9999;mix-blend-mode:difference}
  .cursor-ring{width:34px;height:34px;border:1.5px solid var(--accent);z-index:9998;opacity:.45;transition:width .2s,height .2s,opacity .2s}
  body:has(a:hover) .cursor-ring,body:has(button:hover) .cursor-ring,body:has(.node:hover) .cursor-ring{width:52px;height:52px;opacity:.8}
  @media (hover:hover) and (pointer:fine){ body{cursor:none} .cursor,.cursor-ring{display:block} }

  /* ===== Scroll progress ===== */
  .scroll-progress{position:fixed;top:0;left:0;height:2px;width:0;background:var(--accent);z-index:60;pointer-events:none;box-shadow:0 0 8px rgba(200,255,0,.6);transition:width .05s linear}

  /* ===== Tech badges ===== */
  .badges{display:flex;flex-wrap:wrap;gap:8px;margin-top:26px}
  .badge{display:inline-flex;align-items:center;gap:7px;font-family:var(--f-mono);font-size:11.5px;color:var(--muted);background:var(--surface);border:1px solid var(--line-2);padding:6px 11px;border-radius:7px;transition:border-color .2s,color .2s}
  .badge:hover{border-color:var(--accent-ink);color:var(--text)}
  .badge i{color:var(--accent-ink);font-size:12px;width:14px;text-align:center}

  /* ===== Reveal ===== */
  [data-reveal]{opacity:0; transform:translateY(14px); transition:opacity .6s ease, transform .6s ease}
  [data-reveal].in{opacity:1; transform:none}
  @media (prefers-reduced-motion: reduce){
    [data-reveal]{opacity:1; transform:none; transition:none}
    .status .blip, .insp-top .ping{animation:none !important}
    h1.title{text-shadow:none !important; animation:none !important}
    .tw-caret{animation:none}
    #preloader .pl-mark{animation:none}
    #preloader .pl-bar i{animation:none; width:100%}
  }
