/* ────────────────────────────────────────────────────────────────────────────
   AROLIUM — marketing site
   Design language: near-black canvas, hairline borders, white pill CTAs,
   Inter 400 display w/ negative tracking, Geist Mono uppercase eyebrows.
   ──────────────────────────────────────────────────────────────────────────── */

:root {
  color-scheme: dark;
  --canvas: #0a0a0a;
  --canvas-soft: #16181c;
  --card: #131315;
  --card-raised: #191919;
  --mid: #363a3f;
  --hairline: #212327;
  --hairline-soft: rgba(255, 255, 255, .07);
  --ink: #ffffff;
  --body: #c9cbd1;
  --mute: #7d8187;
  --faint: #55585e;
  --orange: #ff7a17;
  --orange-soft: #ffc285;
  --purple: #7c3aed;
  --violet: #c4b5fd;
  --blue: #a0c3ec;
  --cyan: #00d2ff;
  --success: #70d6a2;
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "Geist Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --brand-font: "Montserrat", var(--font);
  --radius: 10px;
  --pill: 9999px;
  --nav-h: 68px;
  --container: 1160px;
  --btn-border: rgba(255, 255, 255, .18);
  --btn-border-hover: rgba(255, 255, 255, .45);
  --grid-line: rgba(255, 255, 255, .022);
  --scrim: rgba(4, 4, 5, .72);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  min-height: 100%;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body { min-width: 320px; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
img, svg { display: block; max-width: 100%; }
::selection { background: rgba(160, 195, 236, .28); }
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--mid); border-radius: var(--pill); }

/* Engineering-grid backdrop, fading out down the page */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

/* ── Primitives ─────────────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--mute);
  font: 400 11px/16px var(--mono);
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--orange); }
.eyebrow[data-accent="purple"]::before { background: var(--purple); }
.eyebrow[data-accent="cyan"]::before { background: var(--cyan); }
.eyebrow[data-accent="blue"]::before { background: var(--blue); }

.display-lg { margin: 0; font-size: clamp(44px, 6.6vw, 88px); line-height: 1.02; font-weight: 400; letter-spacing: -.045em; }
.display-md { margin: 0; font-size: clamp(32px, 4vw, 52px); line-height: 1.06; font-weight: 400; letter-spacing: -.035em; }
.display-sm { margin: 0; font-size: clamp(22px, 2.4vw, 28px); line-height: 1.25; font-weight: 400; letter-spacing: -.02em; }

.lede { margin: 0; color: var(--mute); font-size: 17px; line-height: 1.75; }
.lede strong { color: var(--body); font-weight: 400; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 46px; padding: 11px 26px;
  border: 1px solid var(--btn-border); border-radius: var(--pill);
  background: transparent; color: var(--ink);
  font-size: 14.5px; font-weight: 400; white-space: nowrap;
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s, transform .2s;
}
.btn:hover { border-color: var(--btn-border-hover); background: rgba(255, 255, 255, .04); }
.btn-primary { background: var(--ink); color: var(--canvas); border-color: var(--ink); }
.btn-primary:hover { background: #e6e6e6; border-color: #e6e6e6; }
.btn-sm { min-height: 36px; padding: 6px 16px; font-size: 13px; }
.btn svg { flex-shrink: 0; }

.section { position: relative; z-index: 1; padding: 118px 0; border-top: 1px solid var(--hairline); }
.section-head { max-width: 720px; margin-bottom: 58px; }
.section-head .display-md { margin: 18px 0 20px; }
.section-head .lede { max-width: 620px; }

.mono { font-family: var(--mono); }

/* Scroll-reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2, .6, .2, 1), transform .7s cubic-bezier(.2, .6, .2, 1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* ── Navigation ─────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s;
}
.nav.scrolled { background: rgba(10, 10, 10, .82); border-bottom-color: var(--hairline); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.nav-inner { display: flex; align-items: center; gap: 34px; height: var(--nav-h); }
.nav-brand { display: flex; align-items: center; gap: 11px; margin-right: 6px; }
.nav-brand .wordmark { font: 800 17px/1 var(--brand-font); letter-spacing: .05em; color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; }
.nav-links a {
  padding: 8px 13px; border-radius: var(--pill);
  color: var(--mute); font-size: 14px;
  transition: color .18s, background .18s;
}
.nav-links a:hover { color: var(--ink); background: rgba(255, 255, 255, .05); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.gh-pill {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 36px; padding: 6px 15px;
  border: 1px solid var(--btn-border); border-radius: var(--pill);
  color: var(--body); font-size: 13px;
  transition: border-color .2s, color .2s;
}
.gh-pill:hover { border-color: var(--btn-border-hover); color: var(--ink); }
.gh-pill .stars { color: var(--mute); font: 11px var(--mono); }
.nav-burger {
  display: none; width: 40px; height: 40px;
  place-items: center; border: 1px solid var(--btn-border); border-radius: 50%;
  background: transparent; cursor: pointer;
}
.mobile-menu {
  display: none; position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 99;
  padding: 10px 20px 26px; background: rgba(10, 10, 10, .96);
  border-bottom: 1px solid var(--hairline); backdrop-filter: blur(20px);
}
.mobile-menu a { display: block; padding: 13px 8px; color: var(--body); font-size: 16px; border-bottom: 1px solid var(--hairline-soft); }
.mobile-menu a:last-child { border-bottom: 0; }
body.menu-open .mobile-menu { display: block; }
body.menu-open .nav { background: rgba(10, 10, 10, .96); border-bottom-color: var(--hairline); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero { position: relative; z-index: 1; padding: calc(var(--nav-h) + 96px) 0 104px; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(52% 44% at 78% 12%, rgba(124, 58, 237, .16), transparent 68%),
    radial-gradient(40% 36% at 12% 82%, rgba(255, 122, 23, .09), transparent 70%),
    radial-gradient(34% 30% at 55% 108%, rgba(0, 210, 255, .07), transparent 72%);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 64px; align-items: center; }
.hero-copy .eyebrow { margin-bottom: 26px; }
.hero-copy h1 { margin: 0 0 26px; }
.hero-copy h1 em { font-style: normal; color: transparent; background: linear-gradient(100deg, var(--orange-soft), var(--orange) 34%, var(--purple) 72%, var(--cyan)); -webkit-background-clip: text; background-clip: text; }
.hero-copy .lede { max-width: 560px; }
.hero-actions { display: flex; align-items: center; gap: 14px; margin-top: 40px; flex-wrap: wrap; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 12px 36px;
  margin-top: 54px; padding-top: 30px;
  border-top: 1px solid var(--hairline);
}
.hero-stat { display: grid; gap: 7px; }
.hero-stat strong { font: 400 22px/1 var(--mono); letter-spacing: -.04em; color: var(--ink); }
.hero-stat span { color: var(--faint); font: 10px/1.4 var(--mono); letter-spacing: .13em; text-transform: uppercase; }

/* Terminal window */
.terminal {
  position: relative;
  border: 1px solid var(--hairline); border-radius: 14px;
  background: linear-gradient(180deg, rgba(22, 24, 28, .92), rgba(13, 13, 15, .96));
  box-shadow: 0 30px 90px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 255, 255, .02) inset;
  overflow: hidden;
}
.terminal-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 16px; border-bottom: 1px solid var(--hairline);
}
.terminal-bar i { width: 11px; height: 11px; border-radius: 50%; background: var(--mid); opacity: .8; }
.terminal-bar i:nth-child(1) { background: #ff5f57; }
.terminal-bar i:nth-child(2) { background: #febc2e; }
.terminal-bar i:nth-child(3) { background: #28c840; }
.terminal-bar span { margin-left: 10px; color: var(--faint); font: 11px var(--mono); letter-spacing: .08em; }
.terminal-body {
  min-height: 380px; padding: 22px 24px;
  font: 12.5px/1.75 var(--mono);
  color: var(--body); white-space: pre-wrap; word-break: break-word;
}
.terminal-body .t-prompt { color: var(--cyan); }
.terminal-body .t-cmd { color: var(--ink); }
.terminal-body .t-ok { color: var(--success); }
.terminal-body .t-dim { color: var(--mute); }
.terminal-body .t-num { color: var(--orange-soft); }
.terminal-body .t-kw { color: var(--violet); }
.caret { display: inline-block; width: 7px; height: 15px; margin-left: 2px; vertical-align: -2px; background: var(--body); animation: blink 1.05s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ── Trusted band ───────────────────────────────────────────────────────── */
.trusted { padding: 44px 0 52px; border-top: 1px solid var(--hairline); }
.trusted p { margin: 0 0 26px; text-align: center; color: var(--faint); font: 10px var(--mono); letter-spacing: .22em; text-transform: uppercase; }
.trusted-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 54px; }
.trusted-row span { color: var(--mute); opacity: .62; font-size: 17px; letter-spacing: .02em; font-weight: 500; transition: opacity .25s, color .25s; }
.trusted-row span:hover { opacity: 1; color: var(--body); }

/* ── Pillars ────────────────────────────────────────────────────────────── */
.pillars { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.pillar {
  position: relative; overflow: hidden;
  padding: 34px 30px 30px;
  border: 1px solid var(--hairline); border-radius: var(--radius);
  background: var(--card);
  transition: border-color .25s, transform .25s;
}
.pillar:hover { border-color: rgba(255, 255, 255, .16); transform: translateY(-3px); }
.pillar::before {
  content: ''; position: absolute; width: 190px; height: 190px; right: -70px; top: -90px;
  border-radius: 50%; background: var(--pillar-accent, var(--blue));
  opacity: .09; filter: blur(46px);
  transition: opacity .3s;
}
.pillar:hover::before { opacity: .16; }
.pillar[data-accent="orange"] { --pillar-accent: var(--orange); }
.pillar[data-accent="purple"] { --pillar-accent: var(--purple); }
.pillar[data-accent="cyan"] { --pillar-accent: var(--cyan); }
.pillar-icon {
  width: 44px; height: 44px; display: grid; place-items: center;
  border: 1px solid var(--hairline); border-radius: 12px;
  background: rgba(255, 255, 255, .03); color: var(--pillar-accent, var(--blue));
}
.pillar h3 { margin: 22px 0 8px; font-size: 21px; font-weight: 400; letter-spacing: -.02em; }
.pillar > p { margin: 0 0 22px; color: var(--mute); font-size: 13.5px; line-height: 1.6; }
.pillar ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 0; }
.pillar li {
  display: grid; gap: 4px; padding: 13px 0;
  border-top: 1px solid var(--hairline-soft);
}
.pillar li strong { color: var(--body); font-size: 13.5px; font-weight: 500; }
.pillar li span { color: var(--mute); font-size: 12.5px; line-height: 1.55; }

/* ── Performance ────────────────────────────────────────────────────────── */
.perf-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: 60px; align-items: start; }
.perf-copy .display-md { margin: 18px 0 20px; }
.perf-points { margin: 34px 0 0; padding: 0; list-style: none; display: grid; gap: 18px; }
.perf-points li { display: grid; grid-template-columns: 30px 1fr; gap: 14px; align-items: start; }
.perf-points .tick {
  width: 26px; height: 26px; margin-top: 1px; display: grid; place-items: center;
  border: 1px solid rgba(112, 214, 162, .3); border-radius: 50%;
  color: var(--success); background: rgba(112, 214, 162, .05);
}
.perf-points strong { display: block; color: var(--body); font-size: 14.5px; font-weight: 500; }
.perf-points span { color: var(--mute); font-size: 13px; line-height: 1.6; }

.bench {
  border: 1px solid var(--hairline); border-radius: 14px;
  background: var(--card); overflow: hidden;
}
.bench-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 20px 24px; border-bottom: 1px solid var(--hairline); }
.bench-head strong { font-size: 14.5px; font-weight: 500; }
.bench-head span { color: var(--faint); font: 10px var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.bench-body { padding: 26px 24px 8px; display: grid; gap: 26px; }
.bench-row { display: grid; gap: 9px; }
.bench-label { display: flex; justify-content: space-between; align-items: baseline; }
.bench-label strong { font-size: 13px; font-weight: 500; color: var(--body); }
.bench-label span { color: var(--mute); font: 11.5px var(--mono); }
.bench-track { position: relative; height: 30px; border-radius: 7px; background: rgba(255, 255, 255, .028); overflow: hidden; }
.bench-fill {
  position: absolute; inset: 0 auto 0 0; width: 0; border-radius: 7px;
  display: flex; align-items: center; justify-content: flex-end; padding-right: 10px;
  font: 11px var(--mono); color: rgba(10, 10, 10, .82);
  transition: width 1.4s cubic-bezier(.22, .8, .26, 1);
}
.bench-fill[data-tone="arolium"] { background: linear-gradient(90deg, var(--orange), var(--orange-soft)); }
.bench-fill[data-tone="spark"] { background: #3d4148; color: var(--body); }
.bench-note { padding: 16px 24px 20px; border-top: 1px solid var(--hairline-soft); color: var(--faint); font-size: 11.5px; line-height: 1.65; }
.bench-metrics { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--hairline); }
.bench-metric { padding: 20px 24px; border-right: 1px solid var(--hairline); }
.bench-metric:last-child { border-right: 0; }
.bench-metric strong { display: block; font: 400 26px/1.1 var(--mono); letter-spacing: -.04em; color: var(--ink); }
.bench-metric strong em { font-style: normal; color: var(--orange); }
.bench-metric span { display: block; margin-top: 7px; color: var(--faint); font: 10px/1.5 var(--mono); letter-spacing: .1em; text-transform: uppercase; }

/* ── Architecture ───────────────────────────────────────────────────────── */
.arch-figure {
  padding: 40px 34px 30px;
  border: 1px solid var(--hairline); border-radius: 14px;
  background:
    radial-gradient(60% 90% at 50% 0%, rgba(124, 58, 237, .07), transparent 70%),
    var(--card);
  overflow-x: auto;
}
.arch-figure svg { min-width: 860px; width: 100%; height: auto; }
.arch svg text { font-family: var(--mono); }
.flow-line { stroke-dasharray: 5 7; animation: flow 1.6s linear infinite; }
@keyframes flow { to { stroke-dashoffset: -12; } }
@media (prefers-reduced-motion: reduce) { .flow-line { animation: none; } }

.arch-modes { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.arch-mode {
  padding: 28px 30px;
  border: 1px solid var(--hairline); border-radius: var(--radius);
  background: var(--card);
}
.arch-mode .tag {
  display: inline-block; margin-bottom: 16px; padding: 4px 11px;
  border: 1px solid var(--hairline); border-radius: var(--pill);
  color: var(--mute); font: 10px var(--mono); letter-spacing: .14em; text-transform: uppercase;
}
.arch-mode[data-accent="orange"] .tag { color: var(--orange); border-color: rgba(255, 122, 23, .3); }
.arch-mode[data-accent="cyan"] .tag { color: var(--cyan); border-color: rgba(0, 210, 255, .28); }
.arch-mode h3 { margin: 0 0 10px; font-size: 19px; font-weight: 400; letter-spacing: -.02em; }
.arch-mode p { margin: 0; color: var(--mute); font-size: 13.5px; line-height: 1.7; }

/* ── Ecosystem ──────────────────────────────────────────────────────────── */
.eco {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 26px; align-items: center;
  padding: 44px 40px;
  border: 1px solid var(--hairline); border-radius: 14px; background: var(--card);
}
.eco-col { display: grid; gap: 9px; }
.eco-col h4 { margin: 0 0 10px; color: var(--faint); font: 400 10px var(--mono); letter-spacing: .18em; text-transform: uppercase; }
.eco-col[data-side="right"] { justify-items: end; }
.eco-col[data-side="right"] h4 { justify-self: end; }
.eco-chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 15px; width: max-content;
  border: 1px solid var(--hairline); border-radius: var(--pill);
  background: rgba(255, 255, 255, .025); color: var(--body); font-size: 13px;
  transition: border-color .2s, transform .2s;
}
.eco-chip:hover { border-color: rgba(255, 255, 255, .2); transform: translateX(3px); }
.eco-col[data-side="right"] .eco-chip:hover { transform: translateX(-3px); }
.eco-chip i { width: 6px; height: 6px; border-radius: 50%; background: var(--dot, var(--blue)); }
.eco-core { position: relative; display: grid; place-items: center; padding: 0 26px; }
.eco-core-ring {
  position: relative; width: 190px; height: 190px; display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, .12); border-radius: 50%;
}
.eco-core-ring::before {
  content: ''; position: absolute; inset: -26px;
  border: 1px dashed rgba(255, 255, 255, .07); border-radius: 50%;
  animation: spin 40s linear infinite;
}
@keyframes spin { to { transform: rotate(1turn); } }
@media (prefers-reduced-motion: reduce) { .eco-core-ring::before { animation: none; } }
.eco-core-inner {
  width: 132px; height: 132px; display: grid; place-items: center; gap: 0;
  border-radius: 50%; text-align: center;
  background: radial-gradient(circle at 38% 32%, rgba(255, 255, 255, .14), rgba(124, 58, 237, .22) 32%, rgba(10, 12, 18, .92) 72%);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 0 70px rgba(124, 58, 237, .22);
}
.eco-core-inner img { width: 34px; height: 34px; margin-bottom: 8px; }
.eco-core-inner strong { font: 800 12px var(--brand-font); letter-spacing: .1em; }
.eco-core-inner span { color: var(--mute); font: 8.5px var(--mono); letter-spacing: .12em; margin-top: 3px; }
.eco-foot { margin-top: 22px; text-align: center; color: var(--faint); font: 11px var(--mono); letter-spacing: .1em; }
.eco-foot em { font-style: normal; color: var(--orange); }

/* ── Use cases ──────────────────────────────────────────────────────────── */
.cases { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.case {
  position: relative; padding: 30px 30px 26px;
  border: 1px solid var(--hairline); border-radius: var(--radius);
  background: var(--card);
  transition: border-color .25s, transform .25s;
}
.case:hover { border-color: rgba(255, 255, 255, .16); transform: translateY(-3px); }
.case .case-idx { position: absolute; top: 26px; right: 28px; color: var(--faint); font: 11px var(--mono); letter-spacing: .1em; }
.case h3 { margin: 0 0 10px; max-width: 82%; font-size: 19px; font-weight: 400; letter-spacing: -.02em; }
.case p { margin: 0 0 18px; color: var(--mute); font-size: 13.5px; line-height: 1.7; }
.case .case-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.case .case-tags span {
  padding: 4px 11px; border: 1px solid var(--hairline); border-radius: var(--pill);
  color: var(--mute); font: 10.5px var(--mono); letter-spacing: .05em;
}

/* ── Community ──────────────────────────────────────────────────────────── */
.community { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.comm-card {
  display: grid; gap: 6px; align-content: start;
  padding: 26px 26px 24px;
  border: 1px solid var(--hairline); border-radius: var(--radius);
  background: var(--card);
  transition: border-color .25s, transform .25s;
}
.comm-card:hover { border-color: rgba(255, 255, 255, .18); transform: translateY(-3px); }
.comm-card svg { margin-bottom: 12px; color: var(--body); }
.comm-card strong { font-size: 15.5px; font-weight: 500; }
.comm-card span { color: var(--mute); font-size: 12.5px; line-height: 1.55; }
.comm-card .comm-link { margin-top: 14px; color: var(--blue); font: 11px var(--mono); letter-spacing: .06em; }

/* ── CTA band ───────────────────────────────────────────────────────────── */
.cta-band { position: relative; overflow: hidden; text-align: center; padding: 130px 0 140px; }
.cta-band::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(46% 60% at 50% 108%, rgba(255, 122, 23, .13), transparent 70%),
    radial-gradient(36% 50% at 22% 112%, rgba(124, 58, 237, .14), transparent 72%),
    radial-gradient(30% 44% at 80% 110%, rgba(0, 210, 255, .09), transparent 70%);
}
.cta-band .display-lg { margin: 22px 0 18px; }
.cta-band .lede { max-width: 560px; margin: 0 auto; }
.install {
  display: flex; align-items: center; gap: 16px;
  width: max-content; max-width: calc(100vw - 48px);
  margin: 44px auto 0; padding: 15px 15px 15px 24px;
  border: 1px solid var(--hairline); border-radius: var(--pill);
  background: rgba(19, 19, 21, .85);
}
.install code { color: var(--body); font: 13.5px var(--mono); white-space: nowrap; overflow-x: auto; scrollbar-width: none; }
.install code::-webkit-scrollbar { display: none; }
.install code .t-prompt { color: var(--orange); }
.soon-badge {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  min-height: 36px; padding: 6px 18px; flex-shrink: 0;
  border: 1px solid rgba(255, 122, 23, .38); border-radius: var(--pill);
  background: rgba(255, 122, 23, .07); color: var(--orange-soft);
  font: 10.5px var(--mono); letter-spacing: .16em; text-transform: uppercase; white-space: nowrap;
}
.cta-actions { display: flex; justify-content: center; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--hairline); padding: 72px 0 44px; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, minmax(0, 1fr)); gap: 40px; }
.footer-brand { display: grid; gap: 16px; align-content: start; }
.footer-brand .nav-brand { margin: 0; }
.footer-brand p { margin: 0; max-width: 260px; color: var(--mute); font-size: 12.5px; line-height: 1.7; }
.footer-col h4 { margin: 6px 0 18px; color: var(--faint); font: 400 10px var(--mono); letter-spacing: .18em; text-transform: uppercase; }
.footer-col a { display: block; padding: 6px 0; color: var(--mute); font-size: 13px; transition: color .18s; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  margin-top: 64px; padding-top: 28px; border-top: 1px solid var(--hairline);
  color: var(--faint); font: 11px var(--mono); letter-spacing: .06em;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px; display: grid; place-items: center;
  border: 1px solid var(--hairline); border-radius: 50%; color: var(--mute);
  transition: color .2s, border-color .2s;
}
.footer-social a:hover { color: var(--ink); border-color: var(--btn-border-hover); }

/* ── 404 ────────────────────────────────────────────────────────────────── */
.error-page { min-height: 100vh; display: grid; place-items: center; text-align: center; padding: 40px 24px; }
.error-page .code { font: 400 clamp(90px, 18vw, 180px)/1 var(--mono); letter-spacing: -.06em; background: linear-gradient(100deg, var(--orange-soft), var(--orange) 34%, var(--purple) 72%, var(--cyan)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.error-page h1 { margin: 18px 0 12px; font-size: 26px; font-weight: 400; letter-spacing: -.02em; }
.error-page p { margin: 0 0 34px; color: var(--mute); font-size: 14px; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 52px; }
  .terminal-body { min-height: 320px; }
  .pillars { grid-template-columns: 1fr; }
  .perf-grid { grid-template-columns: 1fr; gap: 44px; }
  .community { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-cta { margin-left: auto; }
  .nav-cta .btn-get-started, .nav-cta .gh-pill .stars { display: none; }
  .nav-burger { display: grid; }
  .nav-inner { justify-content: space-between; }
}

@media (max-width: 860px) {
  .eco { grid-template-columns: 1fr; justify-items: center; gap: 34px; padding: 34px 22px; }
  .eco-col, .eco-col[data-side="right"] { justify-items: center; }
  .eco-col h4, .eco-col[data-side="right"] h4 { justify-self: center; }
}

@media (max-width: 680px) {
  .section { padding: 84px 0; }
  .container { padding: 0 20px; }
  .hero { padding: calc(var(--nav-h) + 60px) 0 72px; }
  .hero-actions .btn { flex: 1; }
  .hero-stats { gap: 22px 28px; }
  .cases { grid-template-columns: 1fr; }
  .arch-modes { grid-template-columns: 1fr; }
  .community { grid-template-columns: 1fr; }
  .bench-metrics { grid-template-columns: 1fr; }
  .bench-metric { border-right: 0; border-bottom: 1px solid var(--hairline); }
  .bench-metric:last-child { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 8px; }
  .footer-col h4 { margin-top: 26px; }
  .install { width: 100%; flex-direction: column; align-items: stretch; border-radius: 18px; padding: 16px; gap: 12px; }
  .install code { text-align: center; }
  .cta-band { padding: 96px 0 104px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
