/* Fonts, self-hosted (OFL, the latin subsets Google Fonts serves): one origin, preloaded, no third-party CSS. */
@font-face { font-family: "Orbitron"; font-style: normal; font-weight: 400 900; font-display: swap; src: url("/assets/fonts/orbitron-latin.woff2") format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Fraunces"; font-style: normal; font-weight: 500; font-display: swap; src: url("/assets/fonts/fraunces-latin.woff2") format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 400 600; font-display: swap; src: url("/assets/fonts/inter-latin.woff2") format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

/* Hannah: landing (v4, the HUD).
   Structure: a product-in-use hero (her window on a real desktop), three pillars, four real
   exchanges with their captures, one job told step by step beside a sticky capture, the
   capabilities with a sticky index, requirements, providers, the install command, a letter,
   the FAQ and a close. Every clip and still is cut from a recording session; every number is
   measured. Nothing is generated.

   Palette, unchanged from v3: neon, kept minimal:
     void   #0a0912  near-black pulled a step toward violet; the page ground
     panel  #121020  one step up, for bands, code and the footer
     fog    white at 6% / 12% / 22% for surfaces and hairlines
     text   #eceef3 / #b1b5c2 / #7d8290
     neon   #b48cff  electric lilac, the ONE accent. It glows only where it points at something
                     (the CTA, the live bar, the free VRAM, the command box, the HUD marks);
                     running text never glows, it has to stay readable (7.6:1 on the void).
   What is new is the instrument-panel vocabulary: a hairline of progress at the top, monospace
   eyebrows with a lit dot, corner brackets on every capture (the "frame"), a faint dot grid
   behind the hero, and motion tied to the scroll (reveals and the sticky job).
   Type: Orbitron for headings (the family of the logo letters), Inter for text, the system
   monospace for HUD labels and transcripts. */

:root {
  --void: #0a0912;
  --panel: #121020;
  --fog-1: rgba(255, 255, 255, 0.06);
  --fog-2: rgba(255, 255, 255, 0.12);
  --fog-3: rgba(255, 255, 255, 0.22);
  --text: #eceef3;
  --text-2: #b1b5c2;
  --text-3: #7d8290;
  --neon: #b48cff;
  --neon-bright: #cbb0ff;
  --neon-rgb: 180, 140, 255;
  --neon-dim: rgba(var(--neon-rgb), 0.16);
  --hair: rgba(var(--neon-rgb), 0.24);     /* a violet hairline, for frames and rules that matter */
  /* layered: a tight core, a soft spill, a wide wash, reads as a light source, not a blur */
  --neon-glow: 0 0 6px rgba(var(--neon-rgb), 0.55), 0 0 22px rgba(var(--neon-rgb), 0.32), 0 0 56px rgba(var(--neon-rgb), 0.14);
  --neon-glow-hover: 0 0 8px rgba(var(--neon-rgb), 0.7), 0 0 30px rgba(var(--neon-rgb), 0.45), 0 0 80px rgba(var(--neon-rgb), 0.2);
  --serif: "Orbitron", "Fraunces", Georgia, sans-serif;   /* the display face: the geometric letters of the logo */
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;
  --wrap: 1120px;
  --r: 8px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  background: var(--void);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--neon); color: var(--void); }
a { color: inherit; }
img, video, canvas { display: block; max-width: 100%; height: auto; }
code { font-family: var(--mono); font-size: 0.9em; background: var(--fog-1); padding: 1px 5px; border-radius: 4px; color: var(--text); }
pre code { background: none; padding: 0; font-size: 13.5px; }
:focus-visible { outline: 2px solid var(--neon); outline-offset: 3px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: 24px; padding-right: 24px; }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; letter-spacing: 0.01em; text-wrap: balance; }
h2 { font-size: clamp(28px, 3vw, 36px); line-height: 1.15; margin-bottom: 14px; }
h3 { font-size: 20px; line-height: 1.25; margin-bottom: 12px; }
p { max-width: 64ch; }
.sub { font-size: 13px; font-weight: 500; letter-spacing: 0.02em; color: var(--text-3); margin-bottom: 10px; }
.src { font-size: 13.5px; color: var(--text-3); margin-top: 14px; }
.lede { font-size: clamp(16px, 1.25vw, 18px); color: var(--text-2); max-width: 46ch; }

/* ── HUD vocabulary ──────────────────────────────────────────────────────── */
/* eyebrow: a monospace label with a lit dot, the instrument-panel way of naming a section */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--neon); margin-bottom: 14px;
}
.eyebrow i { width: 6px; height: 6px; border-radius: 50%; background: var(--neon); box-shadow: 0 0 8px rgba(var(--neon-rgb), 0.9), 0 0 18px rgba(var(--neon-rgb), 0.5); }

/* frame: every capture sits in a hairline of violet with four corner brackets just outside it.
   In a figure the media is wrapped in .shot and the brackets belong to it (so a caption below
   stays outside them); a plain .frame box gets them directly. */
.frame { position: relative; margin: 0; }
.shot { position: relative; }
.shot > video, .shot > img, .shot > picture > img, div.frame > video {
  width: 100%; height: auto; border-radius: 10px;
  border: 1px solid var(--hair); background: var(--panel);
}
.shot > picture { display: block; }
.shot::after, div.frame::after {
  content: ""; position: absolute; inset: -6px; pointer-events: none;
  --c: linear-gradient(var(--neon), var(--neon));
  background:
    var(--c) top left / 14px 1px no-repeat,     var(--c) top left / 1px 14px no-repeat,
    var(--c) top right / 14px 1px no-repeat,    var(--c) top right / 1px 14px no-repeat,
    var(--c) bottom left / 14px 1px no-repeat,  var(--c) bottom left / 1px 14px no-repeat,
    var(--c) bottom right / 14px 1px no-repeat, var(--c) bottom right / 1px 14px no-repeat;
  opacity: 0.55; transition: opacity 0.25s;
}
.frame:hover .shot::after, div.frame:hover::after { opacity: 1; }
figure.frame > figcaption { margin-top: 10px; font-size: 13px; color: var(--text-3); }
figcaption { margin-top: 8px; font-size: 13px; color: var(--text-3); }

/* the scroll progress hairline */
.progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 30; pointer-events: none; }
.progress i { display: block; height: 100%; width: 100%; background: var(--neon); box-shadow: 0 0 8px rgba(var(--neon-rgb), 0.9); transform: scaleX(0); transform-origin: 0 50%; }

/* ── buttons & links ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 9px 16px; border-radius: 999px;
  font-weight: 600; font-size: 14.5px; text-decoration: none;
  border: 1px solid var(--neon); transition: background 0.15s, color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.btn-dark { background: var(--neon); color: var(--void); box-shadow: var(--neon-glow); }
.btn-dark:hover { background: var(--neon-bright); box-shadow: var(--neon-glow-hover); transform: translateY(-1px); }
.btn-lg { padding: 13px 22px; font-size: 16px; }
.link-arrow { font-weight: 500; text-decoration: none; color: var(--text-2); }
.link-arrow::after { content: " \2192"; display: inline-block; transition: transform 0.2s var(--ease); }
.link-arrow:hover { color: var(--neon); }
.link-arrow:hover::after { transform: translateX(3px); }
.link-btn { background: none; border: 0; padding: 0; font: inherit; font-size: 15px; cursor: pointer; }
.btn-ghost { background: transparent; color: var(--neon); }
.btn-ghost:hover { background: var(--neon-dim); box-shadow: 0 0 22px rgba(var(--neon-rgb), 0.25); }

/* ── nav ─────────────────────────────────────────────────────────────────── */
.nav { position: sticky; top: 0; z-index: 10; background: rgba(10, 9, 18, 0.72); backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%); border-bottom: 1px solid var(--fog-2); }
.nav-inner { display: flex; align-items: center; gap: 32px; height: 60px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { display: block; height: 30px; width: auto; }
.nav-links { display: flex; gap: 22px; margin-right: auto; }
.nav-links a { font-size: 14.5px; color: var(--text-2); text-decoration: none; transition: color 0.15s; }
.nav-links a:hover { color: var(--text); }

/* ── hero ────────────────────────────────────────────────────────────────── */
/* Copy on the left, the product in use on the right: her window on a real desktop, in a frame
   lit from behind. A dot grid and two halos light the room; both bleed past the column. */
.hero {
  position: relative; isolation: isolate;
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 48px; align-items: center;
  padding-top: 72px; padding-bottom: 64px;
}
.hero::before {
  content: ""; position: absolute; inset: -40px -20vw; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 70% at 72% 45%, rgba(var(--neon-rgb), 0.18), transparent 70%),
    radial-gradient(ellipse 40% 50% at 18% 30%, rgba(var(--neon-rgb), 0.08), transparent 70%),
    radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1.4px) 0 0 / 28px 28px;
  -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent); mask-image: linear-gradient(to bottom, #000 60%, transparent);
}
.hero h1 { font-size: clamp(28px, 3.4vw, 42px); line-height: 1.12; margin-bottom: 18px; }
.hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 26px; }
.hero-fine { margin-top: 18px; font-size: 13px; color: var(--text-3); }
.hud { list-style: none; margin-top: 30px; display: flex; flex-wrap: wrap; gap: 8px 22px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.02em; color: var(--text-3); }
.hud li { display: inline-flex; align-items: center; gap: 8px; }
.hud li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--neon); box-shadow: 0 0 6px rgba(var(--neon-rgb), 0.8); }
.hud b { color: var(--text); font-weight: 600; font-variant-numeric: tabular-nums; }
/* the frame is lit from behind: a tinted hairline and a wide, faint spill onto the void */
.hero-shot .shot > video {
  border-radius: 12px; border-color: rgba(var(--neon-rgb), 0.35);
  box-shadow: 0 0 0 1px rgba(var(--neon-rgb), 0.08), 0 0 48px rgba(var(--neon-rgb), 0.22), 0 24px 80px rgba(0, 0, 0, 0.55);
}
.hero-shot .shot::after { opacity: 0.8; }

/* ── pillars band ────────────────────────────────────────────────────────── */
.pillars-band { border-top: 1px solid var(--fog-2); border-bottom: 1px solid var(--fog-2); padding: 56px 0; background: var(--panel); }
.pillars-title { font-size: clamp(20px, 2vw, 26px); margin-bottom: 28px; }
.pillars { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px; }
.pillar { position: relative; padding-top: 18px; border-top: 1px solid var(--fog-2); }
.pillar::before { content: ""; position: absolute; top: -1px; left: 0; width: 44px; height: 1px; background: var(--neon); box-shadow: 0 0 8px rgba(var(--neon-rgb), 0.8); }
.pillar h3 { color: var(--neon); font-family: var(--mono); font-weight: 600; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 10px; }
.pillar p { color: var(--text-2); font-size: 15.5px; }
.pillar-num { margin-top: 12px; font-size: 13.5px; color: var(--text-3); font-variant-numeric: tabular-nums; }
.pillar-num span { color: var(--text); font-weight: 600; }

/* ── what you can say ────────────────────────────────────────────────────── */
.says { padding-top: 88px; padding-bottom: 32px; }
.says .lede { margin-bottom: 32px; max-width: 60ch; }
.says-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.say {
  display: grid; gap: 16px; padding: 12px 12px 16px;
  border: 1px solid var(--fog-2); border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0) 60%);
  transition: border-color 0.25s, transform 0.35s var(--ease), box-shadow 0.35s;
}
.say:hover { border-color: rgba(var(--neon-rgb), 0.4); transform: translateY(-3px); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(var(--neon-rgb), 0.08); }
.say .frame { margin: 6px; }
.say .frame figcaption { position: absolute; right: 10px; bottom: 10px; margin: 0; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--neon); background: rgba(10, 9, 18, 0.7); border: 1px solid var(--hair); padding: 3px 7px; border-radius: 999px; }
.say .transcript { padding: 0 8px; }
.says .src { margin-top: 30px; }

/* transcript */
.transcript { border-left: 2px solid var(--fog-2); padding-left: 16px; font-size: 14.5px; color: var(--text-2); }
.transcript p { margin: 0 0 10px; max-width: none; display: grid; grid-template-columns: 64px 1fr; gap: 10px; }
.transcript p:last-child { margin: 0; }
.who { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-3); padding-top: 3px; }
.who.her { color: var(--neon); }
.transcript .note { display: block; grid-template-columns: none; margin-top: 8px; font-size: 13px; color: var(--text-3); }

/* ── the job, step by step (sticky capture) ──────────────────────────────── */
.story { padding: 96px 0 24px; border-top: 1px solid var(--fog-2); }
.story-head { margin-bottom: 24px; }
.story-head .lede { max-width: 60ch; }
.story-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 56px; align-items: start; }
.story-steps { display: grid; }
.step { min-height: 66vh; display: flex; flex-direction: column; justify-content: center; padding: 24px 0; opacity: 0.4; transition: opacity 0.45s; }
.step.is-active { opacity: 1; }
.step-n { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; color: var(--neon); margin-bottom: 10px; }
.step h3 { font-size: 24px; margin-bottom: 14px; }
.step-note { margin-top: 14px; font-size: 14px; color: var(--text-3); }
.story-media { position: relative; align-self: stretch; }
.story-sticky { position: sticky; top: 92px; aspect-ratio: 1400 / 654; }
.story-sticky > video { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 0.55s var(--ease); }
.story-sticky > video.is-active { opacity: 1; }
.story-tag { position: absolute; top: 12px; left: 12px; margin: 0; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--neon); background: rgba(10, 9, 18, 0.72); border: 1px solid rgba(var(--neon-rgb), 0.35); padding: 4px 9px; border-radius: 999px; backdrop-filter: blur(6px); }
.story-tag::before { content: ""; display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--neon); box-shadow: 0 0 6px rgba(var(--neon-rgb), 0.9); margin-right: 7px; vertical-align: 1px; }
.story-tag span { display: none; }
.story-tag span.is-on { display: inline; }
.step code { background: none; padding: 0; color: var(--text); }

/* ── capabilities: sticky index + sections ───────────────────────────────── */
.caps { display: grid; grid-template-columns: 200px minmax(0, 1fr); gap: 56px; padding-top: 88px; padding-bottom: 24px; }
.caps-index { position: sticky; top: 84px; align-self: start; display: flex; flex-direction: column; }
.caps-index a { padding: 9px 0; border-top: 1px solid var(--fog-2); font-size: 14px; color: var(--text-3); text-decoration: none; transition: color 0.15s; }
.caps-index a:last-child { border-bottom: 1px solid var(--fog-2); }
.caps-index a:hover, .caps-index a.is-active { color: var(--text); }
.caps-index a.is-active { border-top-color: var(--neon); }
.cap { padding-bottom: 72px; margin-bottom: 72px; border-bottom: 1px solid var(--fog-2); scroll-margin-top: 84px; }
.cap:last-child { border-bottom: 0; margin-bottom: 0; }
.cap > p { color: var(--text-2); }
.wide-shot { margin-top: 26px; max-width: 760px; }
.hud-row { margin-top: 30px; display: grid; grid-template-columns: 200px minmax(0, 1fr); gap: 36px; align-items: start; }
.hud-shot img { width: 200px; border-radius: 12px; }
.hud-row .facts { margin-top: 0; }
.hud-row .facts div { grid-template-columns: 120px 1fr; }

/* data bars (latency) */
.datagrid { margin-top: 26px; display: grid; gap: 10px; max-width: 640px; }
.datarow { display: grid; grid-template-columns: 170px 1fr 64px; align-items: center; gap: 14px; font-size: 14px; }
.dl { color: var(--text-2); }
.bar { height: 10px; background: var(--fog-1); border-radius: 2px; overflow: hidden; }
.bar i { display: block; height: 100%; width: var(--w); background: var(--text-2); border-radius: 2px; transform-origin: 0 50%; }
.js .in .bar i { animation: grow 1.1s var(--ease) both; }
@keyframes grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.datarow:first-child .bar i { background: var(--neon); box-shadow: var(--neon-glow); }
.dv { text-align: right; font-variant-numeric: tabular-nums; font-weight: 500; }

/* facts (definition lists) */
.facts { margin-top: 22px; display: grid; gap: 10px; }
.facts div { display: grid; grid-template-columns: 96px 1fr; gap: 14px; font-size: 14.5px; }
.facts dt { color: var(--text-3); }
.facts dd { color: var(--text-2); }
.facts dt code { background: none; padding: 0; color: var(--text); }
.facts-row { grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: none; }
.facts-row div { grid-template-columns: 1fr; gap: 4px; }

/* captures */
.shots-2 { margin-top: 26px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); gap: 22px; align-items: end; }
.shots-2 figure, .wide-shot, .widget-shot, .settings-shot { margin: 0; }
.settings-shot img { border-radius: var(--r); border: 1px solid var(--fog-3); }
.desktop-row { margin-top: 26px; display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 40px; align-items: start; }
.widget-shot img { width: 240px; border-radius: 12px; }
.swap-shot { max-width: 440px; margin-bottom: 26px; }

/* tiles (desktops, providers) */
.grid-tiles { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.grid-tiles li {
  padding: 11px 14px; border: 1px solid var(--fog-2); border-radius: var(--r);
  font-size: 14px; font-weight: 500; background: var(--fog-1);
  display: flex; justify-content: space-between; align-items: baseline; gap: 8px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.grid-tiles li:hover { border-color: rgba(var(--neon-rgb), 0.45); box-shadow: 0 0 18px rgba(var(--neon-rgb), 0.12); }
.grid-tiles li span { font-size: 11.5px; font-weight: 600; color: var(--neon); }

/* two columns (kept for the company pages) */
.two-col { margin-top: 30px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; align-items: start; }

/* checks */
.checks { list-style: none; display: grid; gap: 14px; max-width: 70ch; }
.checks li { padding-left: 22px; position: relative; color: var(--text-2); font-size: 15px; }
.checks li::before { content: ""; position: absolute; left: 0; top: 8px; width: 9px; height: 9px; border-radius: 50%; background: var(--neon); box-shadow: 0 0 10px rgba(var(--neon-rgb), 0.7); }
.checks strong { display: block; color: var(--text); font-weight: 600; margin-bottom: 2px; }

/* ── fit: two tiers + measured VRAM ──────────────────────────────────────── */
.fit { background: var(--panel); border-top: 1px solid var(--fog-2); border-bottom: 1px solid var(--fog-2); padding: 80px 0; }
.fit .lede { margin-bottom: 28px; max-width: 70ch; }
.tiers { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: 48px; align-items: start; }
.tier-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.tier-table th, .tier-table td { padding: 11px 12px 11px 0; border-top: 1px solid var(--fog-2); text-align: left; vertical-align: top; }
.tier-table thead th { border-top: 0; padding-top: 0; color: var(--text); font-weight: 600; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-family: var(--mono); }
.tier-table thead th:nth-child(3) { color: var(--neon); }
.tier-table tbody th { width: 110px; color: var(--text-3); font-weight: 500; }
.tier-table td { color: var(--text-2); }
.tier-table tr:last-child th, .tier-table tr:last-child td { border-bottom: 1px solid var(--fog-2); }
.stack { display: flex; height: 40px; border-radius: 6px; overflow: hidden; border: 1px solid var(--fog-3); background: var(--void); }
.seg { width: var(--w); background: #e2e5ec; color: var(--void); font-size: 11.5px; font-weight: 600; display: grid; place-items: center; white-space: nowrap; overflow: hidden; border-right: 1px solid var(--panel); }
.seg:nth-child(2) { background: #b4b8c4; }
.seg:nth-child(3) { background: #8a8e9c; }
.seg:nth-child(4) { background: #666a78; }
.seg:nth-child(5) { background: #4a4e5a; }
.seg-free { background: var(--neon-dim); color: var(--neon); border-right: 0; box-shadow: inset 0 0 18px rgba(var(--neon-rgb), 0.22); }
.vram-total { margin-top: 12px; font-size: 14px; color: var(--text-2); }
.fit .src { margin-top: 18px; }
.legend { list-style: none; display: flex; flex-wrap: wrap; gap: 6px 16px; margin-top: 10px; font-size: 13px; color: var(--text-2); }
.legend li { display: inline-flex; align-items: center; gap: 6px; }
.legend i { width: 10px; height: 10px; border-radius: 2px; background: #e2e5ec; }
.legend li:nth-child(2) i { background: #b4b8c4; }
.legend li:nth-child(3) i { background: #8a8e9c; }
.legend li:nth-child(4) i { background: #666a78; }
.legend li:nth-child(5) i { background: #4a4e5a; }
.legend i.free { background: var(--neon-dim); border: 1px solid var(--neon); }

/* ── setup (providers) ───────────────────────────────────────────────────── */
.setup { border-bottom: 1px solid var(--fog-2); padding: 80px 0; }
.setup-inner { display: grid; grid-template-columns: minmax(0, 1.2fr) 400px; gap: 56px; align-items: start; }
.setup-copy p { color: var(--text-2); margin-bottom: 22px; }
.setup .grid-tiles li { background: var(--panel); }
.settings-shot { position: relative; max-height: 560px; overflow: hidden; border-radius: var(--r); }
.settings-shot img { width: 100%; }
.settings-shot::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 120px; background: linear-gradient(to bottom, rgba(10, 9, 18, 0), var(--void)); }

/* ── install ─────────────────────────────────────────────────────────────── */
.install { padding: 88px 0; }
.install-inner { max-width: 820px; margin: 0 auto; }
.install h2 { font-size: clamp(32px, 3.6vw, 44px); }
.install .lede { margin-bottom: 26px; max-width: 62ch; }
.cmd {
  display: flex; align-items: stretch;
  background: #000; color: var(--text);
  border: 1px solid rgba(var(--neon-rgb), 0.4); border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(var(--neon-rgb), 0.06), 0 0 32px rgba(var(--neon-rgb), 0.16);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.cmd:hover, .cmd:focus-within { border-color: rgba(var(--neon-rgb), 0.7); box-shadow: 0 0 0 1px rgba(var(--neon-rgb), 0.1), 0 0 44px rgba(var(--neon-rgb), 0.28); }
.cmd.frame::after { opacity: 0.8; }
.cmd-prompt { padding: 16px 0 16px 18px; font-family: var(--mono); color: var(--neon); }
.cmd code { flex: 1; padding: 16px 14px; background: none; color: inherit; font-size: 14px; white-space: nowrap; overflow-x: auto; border-radius: 0; }
.copy {
  padding: 0 18px; border: 0; border-left: 1px solid var(--fog-2); border-radius: 0 9px 9px 0;
  background: transparent; color: var(--text-2);
  font: inherit; font-size: 14px; font-weight: 500; cursor: pointer;
}
.copy:hover { background: var(--fog-1); color: var(--text); }
.copy.done { color: var(--neon); }
.install .facts { margin-top: 28px; }
.source { margin-top: 28px; }
.source summary { cursor: pointer; font-weight: 500; color: var(--text-2); }
.source summary:hover { color: var(--text); }
.source pre { margin-top: 12px; padding: 14px 16px; background: var(--panel); border: 1px solid var(--fog-2); border-radius: var(--r); overflow-x: auto; line-height: 1.6; }
.os-tabs { display: flex; gap: 4px; margin-bottom: 12px; }
.os-tab {
  display: inline-flex; align-items: center; gap: 7px;
  font: inherit; font-size: 13.5px; font-weight: 500; color: var(--text-3);
  background: transparent; border: 1px solid transparent; border-radius: 999px; padding: 5px 12px; cursor: pointer;
}
.os-tab:hover { color: var(--text); }
.os-tab.is-active { color: var(--neon); border-color: rgba(var(--neon-rgb), 0.45); background: var(--neon-dim); }
.os-note { margin-top: 12px; font-size: 13.5px; color: var(--text-3); }
.os-ico { width: 14px; height: 14px; fill: currentColor; flex: none; }
.os-ico-cut { fill: var(--void); }
.os-tab.is-active .os-ico-cut { fill: #1a1330; }
.after { margin: 22px 0 0 0; padding-left: 22px; display: grid; gap: 8px; font-size: 15px; color: var(--text-2); }
.after li::marker { color: var(--neon); font-weight: 600; }

/* ── from the maker ──────────────────────────────────────────────────────── */
.letter { padding-top: 88px; padding-bottom: 24px; }
.letter-body { max-width: 66ch; display: grid; gap: 14px; }
.letter-body p { font-size: 16.5px; color: var(--text-2); }
.letter-sign { font-family: var(--serif); color: var(--text) !important; margin-top: 4px; }
.letter-links { margin-top: 26px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

/* ── faq ─────────────────────────────────────────────────────────────────── */
.faq { padding: 88px 0 24px; }
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq-list { display: grid; gap: 0; margin-top: 8px; }
.faq-list div { padding: 18px 0; border-top: 1px solid var(--fog-2); display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr); gap: 24px; }
.faq-list div:last-child { border-bottom: 1px solid var(--fog-2); }
.faq-list dt { font-weight: 600; color: var(--text); font-size: 15.5px; }
.faq-list dd { color: var(--text-2); font-size: 15px; }

/* ── closing band ────────────────────────────────────────────────────────── */
.cta-band { position: relative; isolation: isolate; padding: 96px 0; border-top: 1px solid var(--fog-2); }
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(ellipse 50% 80% at 50% 60%, rgba(var(--neon-rgb), 0.16), transparent 70%);
}
.cta-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.cta-inner h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 22px; }
.cta-inner .lede { margin: 0 auto 22px; }
.cta-inner .hero-fine { margin-top: 16px; }
/* ── footer ──────────────────────────────────────────────────────────────── */
.footer { background: var(--panel); color: var(--text); border-top: 1px solid var(--fog-2); padding: 56px 0 28px; }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-brand { margin-bottom: 10px; }
.footer-brand img { display: block; height: 34px; width: auto; }
.footer-tag { margin-top: 6px; font-size: 14px; color: var(--text-3); }
.footer-tag a { color: var(--text-2); text-decoration: none; }
.footer-tag a:hover { color: var(--neon-bright); }
.footer-cols { display: flex; gap: 56px; }
.footer-cols div { display: flex; flex-direction: column; gap: 8px; }
.footer-h { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-3); margin-bottom: 4px; }
.footer-cols a { font-size: 14px; color: var(--text-2); text-decoration: none; }
.footer-cols a:hover { color: var(--neon); }
.footer-fine { margin-top: 40px; padding-top: 18px; border-top: 1px solid var(--fog-2); font-size: 13px; color: var(--text-3); }

/* ── motion: reveals and the hero entrance (script adds .js; without it nothing is hidden) ── */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.js .hero-copy > * { animation: rise 0.9s var(--ease) both; }
.js .hero-copy > :nth-child(2) { animation-delay: 0.08s; }
.js .hero-copy > :nth-child(3) { animation-delay: 0.16s; }
.js .hero-copy > :nth-child(4) { animation-delay: 0.24s; }
.js .hero-copy > :nth-child(5) { animation-delay: 0.34s; }
.js .hero-shot { animation: fade 1.2s ease-out both; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .js .hero-copy > *, .js .hero-shot, .js .in .bar i { animation: none; }
  .say, .say:hover { transform: none; }
  .link-arrow::after { transition: none; }
}

/* ── responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; gap: 32px; padding-top: 48px; }
  .pillars { grid-template-columns: 1fr; gap: 26px; }
  .says-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 24px; }
  .story-media { position: sticky; top: 60px; z-index: 2; background: var(--void); padding: 8px 0 12px; }
  .story-sticky { position: relative; top: auto; }
  .step { min-height: 46vh; }
  .caps { grid-template-columns: 1fr; gap: 24px; }
  .caps-index { position: static; flex-direction: row; flex-wrap: wrap; gap: 6px 18px; }
  .caps-index a { border: 0 !important; padding: 4px 0; }
  .hud-row { grid-template-columns: 1fr; gap: 24px; }
  .setup-inner { grid-template-columns: 1fr; }
  .settings-shot { max-width: 380px; }
  .tiers { grid-template-columns: 1fr; gap: 36px; }
  .faq-list div { grid-template-columns: 1fr; gap: 6px; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 14px; }
  .shots-2, .two-col, .desktop-row { grid-template-columns: 1fr; }
  .widget-shot img { width: 200px; }
  .grid-tiles { grid-template-columns: repeat(2, 1fr); }
  .facts-row { grid-template-columns: 1fr; }
  .datarow { grid-template-columns: 120px 1fr 56px; }
  .footer-cols { gap: 32px; }
  .tier-table { font-size: 13.5px; }
  .tier-table tbody th { width: 84px; }
}

/* ── company pages (/about/, /brand/) ────────────────────────────────────── */
.hero-solo { display: block; padding-top: 72px; padding-bottom: 64px; }
.hero-solo .hero-copy { max-width: 760px; }
.hero-solo h1 { font-size: clamp(26px, 3.1vw, 38px); }
.crumbs { display: flex; gap: 8px; font-size: 13px; color: var(--text-3); margin-bottom: 18px; }
.crumbs a { color: var(--text-3); text-decoration: none; }
.crumbs a:hover { color: var(--text); }
.founders { margin-top: 28px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; max-width: 760px; }
.founders div { border-top: 1px solid var(--fog-2); padding-top: 14px; }
.founders dt { font-family: var(--serif); font-size: 22px; color: var(--text); margin-bottom: 6px; }
.founders dd { font-size: 15px; color: var(--text-2); }
.work { padding-top: 56px; padding-bottom: 72px; }
.work .letter-body a { color: var(--text); text-decoration: underline; text-decoration-color: rgba(var(--neon-rgb), 0.5); text-underline-offset: 3px; }
.work .letter-body a:hover { text-decoration-color: var(--neon); }
.work strong { color: var(--text); font-weight: 600; }
@media (max-width: 680px) { .founders { grid-template-columns: 1fr; } }

/* brand kit (/brand/) */
.kit { padding-top: 56px; }
.kit h2 { margin-bottom: 14px; }
.kit-note { color: var(--text-2); max-width: 70ch; margin-bottom: 22px; }
.kit-note a, .hero-solo .lede a { color: var(--text); text-decoration: underline; text-decoration-color: rgba(var(--neon-rgb), 0.5); text-underline-offset: 3px; }
.logo-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.logo-tile { margin: 0; border-radius: 12px; border: 1px solid var(--fog-2); padding: 40px 36px 16px; display: grid; gap: 22px; justify-items: center; }
.logo-tile img { width: min(100%, 420px); height: auto; aspect-ratio: 1738 / 410; }
.logo-tile.on-void { background: var(--void); }
.logo-tile.on-white { background: #ffffff; color: #0a0912; }
.logo-tile.on-neon { background: var(--neon); color: #0a0912; }
.logo-tile figcaption { font-size: 13px; color: var(--text-3); justify-self: stretch; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; min-height: 20px; }
.logo-tile.on-white figcaption { color: #4b4e5b; }
.logo-tile.on-neon figcaption { color: #2b1a55; }
.logo-tile .dl-links a { color: inherit; font-weight: 600; text-decoration: none; margin-left: 10px; }
.logo-tile .dl-links a:hover { text-decoration: underline; }
.logo-tile.marks { grid-template-columns: repeat(3, auto); justify-content: center; gap: 28px; align-items: center; }
.logo-tile.marks img { width: 72px; height: 72px; aspect-ratio: 1; }
.logo-tile.marks .on-white-chip { background: #fff; border-radius: 12px; padding: 8px; box-sizing: border-box; }
.logo-tile.marks figcaption { grid-column: 1 / -1; }
.kit-rules { margin-top: 26px; }
.swatches { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.swatch { border: 1px solid var(--fog-2); border-radius: 12px; padding: 12px; display: grid; gap: 4px; font-size: 13.5px; }
.swatch .chip { display: block; height: 64px; border-radius: 8px; background: var(--c); border: 1px solid var(--fog-2); margin-bottom: 6px; }
.swatch strong { color: var(--text); }
.swatch code { background: none; padding: 0; color: var(--text-2); }
.swatch small { color: var(--text-3); }
.type-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.type-card { border: 1px solid var(--fog-2); border-radius: 12px; padding: 24px; }
.type-card p { color: var(--text-2); font-size: 14.5px; }
.type-card .type-sample { font-size: 44px; color: var(--text); margin-bottom: 10px; line-height: 1.1; }
.type-sample.serif { font-family: var(--serif); font-weight: 600; }
.type-sample.sans { font-family: var(--sans); font-weight: 600; letter-spacing: -0.02em; }
.naming div { grid-template-columns: 130px 1fr; }
.naming dt { color: var(--text); font-weight: 600; }
.shots-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.shots-grid a { display: grid; gap: 8px; text-decoration: none; color: var(--text-3); font-size: 13px; }
.shots-grid img { width: 100%; height: 200px; object-fit: cover; object-position: top; border-radius: 10px; border: 1px solid var(--fog-2); background: var(--panel); }
.shots-grid a:hover img { border-color: rgba(var(--neon-rgb), 0.5); }
@media (max-width: 960px) { .swatches { grid-template-columns: repeat(3, minmax(0, 1fr)); } .shots-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 680px) { .logo-grid, .type-row, .shots-grid { grid-template-columns: 1fr; } .swatches { grid-template-columns: repeat(2, minmax(0, 1fr)); } .naming div { grid-template-columns: 1fr; } }
