/* cron.watch — fallback CSS (no Tailwind utilities).
   Run `make install-tailwind` then `make build` for the real thing. */

/* ============================================================
   cron.watch design tokens — single source of truth
   Dark is default; light overrides via [data-theme="light"] or
   `prefers-color-scheme: light` when no explicit override.
   ============================================================ */

:root {
  /* surfaces */
  --bg:        #07090a;
  --bg-2:      #0b0e10;
  --panel:     #0d1113;
  --panel-2:   #10161a;
  --line:      #1c2429;
  --line-2:    #28333a;

  /* ink */
  --ink:       #e6efe9;
  --ink-dim:   #8fa39b;
  --ink-faint: #5a6b64;

  /* signal colors — semantic */
  --signal:    #6ef2a6;  /* phosphor green — "ran" */
  --signal-2:  #38d98a;
  --amber:     #ffcf5c;  /* late / degrading */
  --alert:     #ff6b5e;  /* missed / down */
  --wire:      #7cc6ff;  /* websocket / live */
  --dns:       #5fe3d0;  /* dns lookup check-in */

  /* derived */
  --grid:      rgba(110, 242, 166, 0.035);
  --on-signal: #04130b;  /* text on a --signal fill */

  /* layout */
  --radius:    3px;
  --maxw:      1180px;
}

/* explicit light override (theme toggle "Light") */
:root[data-theme="light"] {
  --bg:        #f4f7f5;
  --bg-2:      #e9efeb;
  --panel:     #ffffff;
  --panel-2:   #f1f6f3;
  --line:      #dce4df;
  --line-2:    #c4d0ca;
  --ink:       #0c1614;
  --ink-dim:   #46564f;
  --ink-faint: #7a8b84;
  --signal:    #0a9d5e;
  --signal-2:  #077f4a;
  --amber:     #9c6a07;
  --alert:     #cf3b2c;
  --wire:      #1f7ed1;
  --dns:       #0a9c8a;
  --grid:      rgba(10, 157, 94, 0.05);
  --on-signal: #ffffff;
}

/* OS default light (theme toggle "Auto") */
@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) {
    --bg:        #f4f7f5;
    --bg-2:      #e9efeb;
    --panel:     #ffffff;
    --panel-2:   #f1f6f3;
    --line:      #dce4df;
    --line-2:    #c4d0ca;
    --ink:       #0c1614;
    --ink-dim:   #46564f;
    --ink-faint: #7a8b84;
    --signal:    #0a9d5e;
    --signal-2:  #077f4a;
    --amber:     #9c6a07;
    --alert:     #cf3b2c;
    --wire:      #1f7ed1;
    --dns:       #0a9c8a;
    --grid:      rgba(10, 157, 94, 0.05);
    --on-signal: #ffffff;
  }
}

html { transition: background-color .25s ease, color .25s ease; }
body { background: var(--bg); color: var(--ink); }

/* ============================================================
   cron.watch component layer
   Lifted from the (formerly per-page) inline CSS. Plain CSS — no
   @apply, no redesign. Use Tailwind utilities for one-off layout
   inside templates; reach for these classes for the branded
   elements (terminal cards, feature grid, pricing, tabs, etc.).
   ============================================================ */

@layer components {

  /* ---- root resets / typography helpers ---- */
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'IBM Plex Sans', sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
  }
  a { color: inherit; text-decoration: none; }
  ::selection { background: var(--signal); color: var(--on-signal); }
  .mono { font-family: 'IBM Plex Mono', monospace; }
  .disp { font-family: 'Martian Mono', monospace; }
  .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

  /* ---- ambient grid + glow ---- */
  body::before {
    content: "";
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background-image:
      linear-gradient(var(--grid) 1px, transparent 1px),
      linear-gradient(90deg, var(--grid) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 90%);
  }
  body::after {
    content: "";
    position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
    background: radial-gradient(ellipse 60% 50% at 50% -10%, rgba(110,242,166,.08), transparent 70%);
  }

  /* ---- container ---- */
  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }

  /* ---- eyebrow + section heads ---- */
  .eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11.5px; letter-spacing: .28em; text-transform: uppercase;
    color: var(--signal); display: inline-flex; align-items: center; gap: 9px;
  }
  .eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--signal); display: inline-block; }
  .sec-head { max-width: 640px; margin-bottom: 52px; }
  .sec-head h2 {
    font-family: 'Martian Mono', monospace; font-weight: 600;
    font-size: clamp(25px, 3.4vw, 38px); letter-spacing: -.03em; line-height: 1.08; margin-top: 16px;
  }
  .sec-head p { color: var(--ink-dim); font-size: 16px; margin-top: 16px; line-height: 1.6; }
  .sec-tag { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--ink-faint); letter-spacing: .2em; }

  /* ---- topbar ---- */
  .topbar {
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
    padding: 9px 28px; background: var(--bg-2); border-bottom: 1px solid var(--line);
    font-family: 'IBM Plex Mono', monospace; font-size: 12px; position: relative; z-index: 60;
  }
  .topbar .tb-home { display: flex; align-items: center; gap: 8px; font-family: 'Martian Mono', monospace; font-weight: 700; font-size: 13px; color: var(--ink); letter-spacing: -.02em; }
  .topbar .tb-home b { color: var(--signal); }
  .topbar .tb-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 0 0 var(--signal); animation: tbpulse 2.4s infinite; }
  @keyframes tbpulse {
    0%   { box-shadow: 0 0 0 0 rgba(110,242,166,.45); }
    70%  { box-shadow: 0 0 0 6px rgba(110,242,166,0); }
    100% { box-shadow: 0 0 0 0 rgba(110,242,166,0); }
  }
  .topbar .tb-nav { display: flex; align-items: center; gap: 3px; flex-wrap: wrap; }
  .topbar .tb-grp { display: inline-flex; align-items: center; gap: 2px; }
  .topbar .tb-lbl { color: var(--ink-faint); letter-spacing: .14em; text-transform: uppercase; font-size: 9.5px; margin: 0 5px 0 9px; }
  .topbar .tb-nav a { color: var(--ink-dim); padding: 4px 9px; border-radius: 3px; border: 1px solid transparent; transition: all .15s; }
  .topbar .tb-nav a:hover { color: var(--ink); border-color: var(--line-2); }
  .topbar .tb-nav a.active { color: var(--signal); border-color: var(--line-2); }
  .topbar .tb-map { color: var(--ink-faint); }
  .topbar .tb-sep { width: 1px; height: 16px; background: var(--line); margin: 0 4px; }
  .topbar .theme-toggle { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; cursor: pointer; background: var(--panel); border: 1px solid var(--line-2); color: var(--ink-dim); font-family: inherit; font-size: 11.5px; padding: 5px 11px; border-radius: 20px; transition: all .15s; }
  .topbar .theme-toggle:hover { color: var(--ink); border-color: var(--ink-faint); }
  .topbar .tt-icon { font-size: 12px; line-height: 1; }

  /* ---- marketing nav (sticky in-page nav, used on landing) ---- */
  nav.marketing {
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: blur(14px);
    background: color-mix(in srgb, var(--bg) 72%, transparent);
    border-bottom: 1px solid var(--line);
  }
  .nav-in { display: flex; align-items: center; justify-content: space-between; height: 62px; }
  .logo { display: flex; align-items: center; gap: 10px; font-family: 'Martian Mono', monospace; font-weight: 700; font-size: 15px; letter-spacing: -.02em; }
  .logo .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 0 0 var(--signal); animation: pulse 2.4s infinite; }
  @keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(110,242,166,.6); }
    70%  { box-shadow: 0 0 0 7px rgba(110,242,166,0); }
    100% { box-shadow: 0 0 0 0 rgba(110,242,166,0); }
  }
  .logo b { color: var(--signal); }
  .nav-links { display: none; gap: 30px; align-items: center; }
  .nav-links a { font-size: 13.5px; color: var(--ink-dim); transition: color .2s; }
  .nav-links a:hover { color: var(--ink); }
  .nav-cta { display: flex; gap: 12px; align-items: center; }
  @media (min-width: 880px) { .nav-links { display: flex; } }

  /* ---- buttons ---- */
  .btn {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px; font-weight: 500;
    padding: 9px 17px; border-radius: var(--radius);
    border: 1px solid var(--line-2);
    transition: all .18s; cursor: pointer; white-space: nowrap;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-ghost { color: var(--ink-dim); background: transparent; }
  .btn-ghost:hover { color: var(--ink); border-color: var(--ink-faint); }
  .btn-signal { background: var(--signal); color: var(--on-signal); border-color: var(--signal); font-weight: 600; }
  .btn-signal:hover { background: var(--signal-2); box-shadow: 0 0 26px rgba(110,242,166,.35); transform: translateY(-1px); }
  .btn-lg { padding: 13px 24px; font-size: 14px; }

  /* ---- terminal card ---- */
  .term {
    background: linear-gradient(180deg, var(--panel), var(--bg-2));
    border: 1px solid var(--line-2); border-radius: 7px;
    box-shadow: 0 30px 80px -30px rgba(0,0,0,.8), inset 0 1px 0 rgba(255,255,255,.03);
    overflow: hidden;
  }
  .term-bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; border-bottom: 1px solid var(--line); background: var(--bg-2); }
  .term-bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); display: block; }
  .term-bar i:nth-child(1) { background: #ff5f57; }
  .term-bar i:nth-child(2) { background: #febc2e; }
  .term-bar i:nth-child(3) { background: #28c840; }
  .term-title { margin-left: 10px; font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--ink-faint); }
  .term-body { padding: 18px 18px 20px; font-family: 'IBM Plex Mono', monospace; font-size: 12.8px; line-height: 1.85; }
  .term-body .c-comment { color: var(--ink-faint); }
  .term-body .c-prompt  { color: var(--signal); }
  .term-body .c-flag    { color: var(--wire); }
  .term-body .c-str     { color: var(--amber); }
  .term-body .c-dim     { color: var(--ink-dim); }
  .term-body .c-dns     { color: var(--dns); }
  .term-body .ok        { color: var(--signal); }
  .term-body .late      { color: var(--amber); }
  .term-body .miss      { color: var(--alert); }
  .cursor { display: inline-block; width: 8px; height: 15px; background: var(--signal); vertical-align: -2px; animation: blink 1.1s steps(1) infinite; }
  @keyframes blink { 50% { opacity: 0; } }
  .ln { display: block; white-space: pre-wrap; }

  .ticker { display: flex; gap: 0; border-top: 1px solid var(--line); background: var(--bg-2); }
  .ticker > div { flex: 1; padding: 11px 14px; font-family: 'IBM Plex Mono', monospace; font-size: 11px; border-right: 1px solid var(--line); color: var(--ink-faint); }
  .ticker > div:last-child { border-right: 0; }
  .ticker b { display: block; font-size: 14px; margin-top: 3px; }
  .ticker .ok   b { color: var(--signal); }
  .ticker .late b { color: var(--amber); }
  .ticker .miss b { color: var(--alert); }

  /* ---- logos strip ---- */
  .strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--bg-2) 55%, transparent); }
  .strip-in { display: flex; align-items: center; gap: 34px; padding: 18px 0; flex-wrap: wrap; justify-content: center; }
  .strip span { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--ink-faint); letter-spacing: .04em; }
  .strip span.lead { color: var(--ink-dim); }

  /* ---- steps ---- */
  .steps {
    display: grid; grid-template-columns: 1fr; gap: 1px;
    background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  }
  @media (min-width: 820px) { .steps { grid-template-columns: repeat(3, 1fr); } }
  .step { background: var(--panel); padding: 30px 26px; position: relative; transition: background .2s; }
  .step:hover { background: var(--panel-2); }
  .step-n { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--signal); letter-spacing: .1em; }
  .step h3 { font-family: 'Martian Mono', monospace; font-size: 17px; font-weight: 600; margin: 14px 0 10px; letter-spacing: -.01em; }
  .step p { color: var(--ink-dim); font-size: 14px; line-height: 1.6; }
  .step code { font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; color: var(--signal-2); background: var(--bg); padding: 2px 6px; border-radius: 3px; border: 1px solid var(--line); }
  .step-arrow { position: absolute; top: 34px; right: -1px; color: var(--ink-faint); display: none; }
  @media (min-width: 820px) { .step-arrow { display: block; } }

  /* ---- tabs ---- */
  .tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
  .tab {
    font-family: 'IBM Plex Mono', monospace; font-size: 13px;
    padding: 10px 16px; border: 1px solid var(--line); border-radius: var(--radius);
    color: var(--ink-dim); cursor: pointer; transition: all .18s; background: var(--panel);
    display: flex; align-items: center; gap: 9px;
  }
  .tab .swatch { width: 8px; height: 8px; border-radius: 50%; background: var(--ink-faint); }
  .tab[data-k="http"]  .swatch { background: var(--signal); }
  .tab[data-k="ws"]    .swatch { background: var(--wire); }
  .tab[data-k="email"] .swatch { background: var(--amber); }
  .tab[data-k="dns"]   .swatch { background: var(--dns); }
  .tab.active { color: var(--ink); border-color: var(--line-2); background: var(--panel-2); }
  .tab:hover { color: var(--ink); }
  .panes { position: relative; }
  .pane { display: none; }
  .pane.active { display: grid; grid-template-columns: 1fr; gap: 28px; animation: rise .4s ease; }
  @media (min-width: 900px) { .pane.active { grid-template-columns: 1.1fr .9fr; align-items: start; } }
  .pane-copy h3 { font-family: 'Martian Mono', monospace; font-size: 21px; font-weight: 600; letter-spacing: -.02em; margin-bottom: 14px; }
  .pane-copy p { color: var(--ink-dim); font-size: 15px; line-height: 1.65; margin-bottom: 16px; }
  .pane-copy ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .pane-copy li { font-size: 14px; color: var(--ink-dim); display: flex; gap: 11px; align-items: flex-start; }
  .pane-copy li::before { content: "›"; color: var(--signal); font-family: 'IBM Plex Mono', monospace; font-weight: 600; }

  /* ---- features grid ---- */
  .feat {
    display: grid; grid-template-columns: 1fr; gap: 1px;
    background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  }
  @media (min-width: 640px) { .feat { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 980px) { .feat { grid-template-columns: repeat(3, 1fr); } }
  .f { background: var(--panel); padding: 26px 24px; transition: background .2s; position: relative; min-height: 172px; }
  .f:hover { background: var(--panel-2); }
  .f .ic { font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: var(--signal); margin-bottom: 14px; display: inline-block; }
  .f h4 { font-family: 'Martian Mono', monospace; font-size: 15.5px; font-weight: 600; letter-spacing: -.01em; margin-bottom: 9px; display: flex; align-items: center; gap: 8px; }
  .f p { color: var(--ink-dim); font-size: 13.5px; line-height: 1.58; }

  .pill { font-family: 'IBM Plex Mono', monospace; font-size: 9.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--amber); border: 1px solid rgba(255,207,92,.35); border-radius: 20px; padding: 2px 8px; font-weight: 500; }
  .pill.soon { color: var(--wire); border-color: rgba(124,198,255,.35); }

  /* ---- comparison table ---- */
  .cmp-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
  .cmp-scroll table { border-collapse: collapse; width: 100%; min-width: 720px; font-size: 13.5px; }
  .cmp-scroll th, .cmp-scroll td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--line); }
  .cmp-scroll thead th {
    font-family: 'IBM Plex Mono', monospace; font-size: 12px; font-weight: 500;
    color: var(--ink-dim); letter-spacing: .04em; background: var(--bg-2);
    position: sticky; top: 0;
  }
  .cmp-scroll thead th.us { color: var(--signal); background: rgba(110,242,166,.06); }
  .cmp-scroll tbody td:first-child { color: var(--ink-dim); font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; }
  .cmp-scroll tbody td.us { background: rgba(110,242,166,.04); border-left: 1px solid rgba(110,242,166,.18); border-right: 1px solid rgba(110,242,166,.18); }
  .cmp-scroll tbody tr:hover td { background: var(--panel-2); }
  .cmp-scroll tbody tr:hover td.us { background: rgba(110,242,166,.07); }
  .yes { color: var(--signal); font-weight: 600; }
  .no  { color: var(--ink-faint); }
  .meh { color: var(--amber); }
  .cmp-scroll td small { display: block; font-size: 11px; color: var(--ink-faint); margin-top: 2px; font-family: 'IBM Plex Sans', sans-serif; }

  /* ---- pricing ---- */
  .price-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
  @media (min-width: 820px) { .price-grid { grid-template-columns: repeat(3, 1fr); } }
  .price { background: var(--panel); border: 1px solid var(--line); border-radius: 5px; padding: 30px 26px; display: flex; flex-direction: column; position: relative; transition: transform .2s, border-color .2s; }
  .price:hover { transform: translateY(-3px); border-color: var(--line-2); }
  .price.feature { border-color: var(--signal); box-shadow: 0 0 40px -16px rgba(110,242,166,.4); }
  .price.feature::before {
    content: "MOST TEAMS"; position: absolute; top: -1px; right: 18px; transform: translateY(-50%);
    font-family: 'IBM Plex Mono', monospace; font-size: 9.5px; letter-spacing: .12em;
    background: var(--signal); color: var(--on-signal); padding: 4px 10px; border-radius: 20px; font-weight: 600;
  }
  .price .tier { font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: var(--signal); letter-spacing: .06em; text-transform: uppercase; }
  .price .amt { font-family: 'Martian Mono', monospace; font-size: 38px; font-weight: 700; letter-spacing: -.04em; margin: 16px 0 4px; }
  .price .amt span { font-size: 14px; color: var(--ink-faint); font-weight: 400; letter-spacing: 0; }
  .price .desc { color: var(--ink-dim); font-size: 13.5px; line-height: 1.5; margin-bottom: 22px; min-height: 42px; }
  .price ul { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; flex: 1; }
  .price li { font-size: 13.5px; color: var(--ink-dim); display: flex; gap: 10px; align-items: flex-start; }
  .price li::before { content: "+"; color: var(--signal); font-family: 'IBM Plex Mono', monospace; font-weight: 600; }
  .price li b { color: var(--ink); font-weight: 600; }
  .price .btn { justify-content: center; width: 100%; }
  .price-foot { text-align: center; margin-top: 30px; font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: var(--ink-faint); }
  .price-foot b { color: var(--signal-2); }

  /* ---- CTA band ---- */
  .band {
    border: 1px solid var(--line-2); border-radius: 6px;
    background: linear-gradient(135deg, var(--panel), var(--bg-2));
    padding: 54px 40px; text-align: center; position: relative; overflow: hidden;
  }
  .band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 100% at 50% 0%, rgba(110,242,166,.1), transparent 70%); }
  .band h2 { font-family: 'Martian Mono', monospace; font-size: clamp(24px, 3.4vw, 34px); font-weight: 700; letter-spacing: -.03em; position: relative; }
  .band p { color: var(--ink-dim); margin: 14px auto 28px; max-width: 480px; position: relative; }
  .band .hero-cta { justify-content: center; position: relative; }

  /* ---- waitlist form ---- */
  .waitlist { display: flex; gap: 10px; margin-top: 34px; flex-wrap: wrap; align-items: center; max-width: 520px; }
  .waitlist input[type=email] {
    flex: 1 1 240px; min-width: 0; font-family: 'IBM Plex Mono', monospace; font-size: 15px;
    color: var(--ink); background: var(--panel); border: 1px solid var(--line-2);
    border-radius: var(--radius); padding: 14px 15px; transition: border-color .15s, box-shadow .15s;
  }
  .waitlist input[type=email]::placeholder { color: var(--ink-faint); }
  .waitlist input[type=email]:focus-visible { outline: none; border-color: var(--signal); box-shadow: 0 0 0 3px color-mix(in srgb, var(--signal) 24%, transparent); }
  .waitlist button { flex: 0 0 auto; }
  .waitlist button:focus-visible { outline: 2px solid var(--signal); outline-offset: 2px; }
  .waitlist button[disabled] { opacity: .6; cursor: progress; }
  .waitlist.ok input[type=email], .waitlist.ok button { display: none; }
  .wl-msg { font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; color: var(--ink-faint); margin-top: 16px; max-width: 520px; line-height: 1.6; }
  .wl-msg b { color: var(--signal-2); font-weight: 500; }
  .wl-msg a { color: var(--ink-dim); text-decoration: underline; text-underline-offset: 2px; }
  .wl-msg a:hover { color: var(--ink); }
  .wl-msg.ok  { color: var(--signal-2); }
  .wl-msg.err { color: var(--alert); }
  .band .waitlist { justify-content: center; margin-left: auto; margin-right: auto; }
  .band .wl-msg   { text-align: center; margin-left: auto; margin-right: auto; }

  /* ---- footer ---- */
  footer { border-top: 1px solid var(--line); padding: 54px 0 40px; background: var(--bg-2); }
  .foot-grid { display: grid; grid-template-columns: 1fr; gap: 36px; margin-bottom: 40px; }
  @media (min-width: 720px) { .foot-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
  .foot-col h5 { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 16px; }
  .foot-col a { display: block; color: var(--ink-dim); font-size: 13.5px; margin-bottom: 11px; transition: color .18s; }
  .foot-col a:hover { color: var(--signal); }
  .foot-brand p { color: var(--ink-dim); font-size: 13.5px; max-width: 280px; margin-top: 14px; line-height: 1.6; }
  .foot-domains { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
  .foot-domains span { font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; color: var(--ink-faint); border: 1px solid var(--line); padding: 4px 9px; border-radius: 3px; }
  .foot-domains span b { color: var(--signal-2); font-weight: 500; }
  .foot-bot { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--ink-faint); }
  .foot-bot .live { display: flex; align-items: center; gap: 8px; }
  .foot-bot .live i { width: 7px; height: 7px; border-radius: 50%; background: var(--signal); animation: pulse 2.4s infinite; }

  /* ---- shared utilities ---- */
  section { padding: 84px 0; position: relative; }

  /* ---- entrance animation ---- */
  .rise { opacity: 0; transform: translateY(16px); animation: rise .7s cubic-bezier(.2,.7,.2,1) forwards; }
  @keyframes rise { to { opacity: 1; transform: none; } }
  .d1 { animation-delay: .05s; }
  .d2 { animation-delay: .13s; }
  .d3 { animation-delay: .21s; }
  .d4 { animation-delay: .30s; }
  .d5 { animation-delay: .40s; }

  /* ---- hero ---- */
  header.hero { padding: 96px 0 70px; position: relative; }
  .hero-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
  @media (min-width: 980px) { .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 56px; } }
  .hero h1 {
    font-family: 'Martian Mono', monospace; font-weight: 700;
    font-size: clamp(34px, 5.4vw, 60px); line-height: 1.02; letter-spacing: -.035em;
    margin: 22px 0 0;
  }
  .hero h1 .lit { color: var(--signal); }
  .hero h1 .strike { color: var(--ink-faint); text-decoration: line-through; text-decoration-color: var(--alert); text-decoration-thickness: 2px; }
  .hero .sub { font-size: clamp(15px, 1.6vw, 18.5px); color: var(--ink-dim); max-width: 540px; margin: 24px 0 0; line-height: 1.6; }
  .hero .sub b { color: var(--ink); font-weight: 600; }
  .hero-cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; align-items: center; }
  .hero-note { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--ink-faint); margin-top: 18px; }
  .hero-note b { color: var(--signal-2); font-weight: 500; }
}
