/* Orb Studio — orbstudio.space
   Brand palette (soap-film iridescence on deep ink):
   ink #0B0E1A · glass #9FBEFF · sheen-cyan #7DE3FF · sheen-violet #C96BFF
   sheen-gold #FFB86B · rim-white #EBF5FF
   Design language: pitch-black specimen field, live renders as floating
   specimens, mono captions, statement typography, constant calm motion. */

:root {
  --bg: #030309;
  --ink: #0b0e1a;
  --ink-raise: #10142a;
  --ink-tile: #241849;
  --glass: #9fbeff;
  --cyan: #7de3ff;
  --violet: #c96bff;
  --gold: #ffb86b;
  --rim: #ebf5ff;
  --text: #d7e1f5;
  --muted: #8fa1c7;
  --line: rgba(159, 190, 255, 0.14);
  --line-soft: rgba(159, 190, 255, 0.08);
  --grad: linear-gradient(30deg, var(--cyan), var(--violet) 52%, var(--gold));
  --radius: 16px;
  --font-display: "Sora", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --wrap: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: rgba(201, 107, 255, 0.35); color: var(--rim); }

img, canvas, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--cyan); text-decoration: none; }
code {
  font-family: var(--font-mono);
  font-size: 0.84em;
  background: rgba(159, 190, 255, 0.1);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  padding: 0.1em 0.4em;
  color: var(--rim);
  white-space: nowrap;
}
strong, b { color: var(--rim); font-weight: 600; }
em { color: var(--rim); font-style: italic; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
.wrap.narrow { max-width: 800px; }

.skip {
  position: absolute; left: -999px; top: 0; z-index: 300;
  background: var(--violet); color: #16081f; padding: 10px 18px; border-radius: 0 0 10px 0;
  font-weight: 600;
}
.skip:focus { left: 0; }

/* ---------- ambient layers ---------- */

.grain {
  position: fixed; inset: 0; z-index: 95; pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.7'/%3E%3C/svg%3E");
  background-size: 240px 240px;
}

.dots {
  background-image: radial-gradient(rgba(159, 190, 255, 0.09) 1px, transparent 1.4px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(ellipse 85% 80% at 50% 45%, #000 55%, transparent 100%);
  mask-image: radial-gradient(ellipse 85% 80% at 50% 45%, #000 55%, transparent 100%);
}

.aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.aurora i {
  position: absolute;
  width: 55vw; height: 55vw;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  mix-blend-mode: screen;
}
.aurora i:nth-child(1) {
  left: -12%; top: -18%;
  background: radial-gradient(circle, rgba(36, 24, 73, 0.9), transparent 65%);
  animation: drift1 34s ease-in-out infinite alternate;
}
.aurora i:nth-child(2) {
  right: -15%; top: 8%;
  background: radial-gradient(circle, rgba(58, 26, 84, 0.55), transparent 65%);
  animation: drift2 42s ease-in-out infinite alternate;
}
.aurora i:nth-child(3) {
  left: 28%; bottom: -35%;
  background: radial-gradient(circle, rgba(15, 46, 66, 0.5), transparent 65%);
  animation: drift1 48s ease-in-out infinite alternate-reverse;
}
@keyframes drift1 { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(6%, 9%, 0) scale(1.15); } }
@keyframes drift2 { from { transform: translate3d(0,0,0) scale(1.05); } to { transform: translate3d(-8%, 6%, 0) scale(0.92); } }

/* ---------- loader ---------- */

#loader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--bg);
  display: grid; place-items: center;
  transition: opacity 0.55s ease, visibility 0.55s;
  /* pure-CSS dead-man's switch: even if every script fails, the overlay
     self-dismisses after 4s */
  animation: loader-timeout 0.5s ease 4s forwards;
}
#loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
@keyframes loader-timeout { to { opacity: 0; visibility: hidden; pointer-events: none; } }
.loader-orb {
  width: 22px; height: 22px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, var(--violet) 55%, transparent 75%);
  box-shadow: 0 0 34px rgba(201, 107, 255, 0.8), 0 0 90px rgba(125, 227, 255, 0.4);
  animation: loadpulse 0.9s ease-in-out infinite alternate;
}
@keyframes loadpulse { from { transform: scale(0.8); opacity: 0.7; } to { transform: scale(1.35); opacity: 1; } }

/* ---------- cursor aura ---------- */

#cursor { display: none; position: fixed; left: 0; top: 0; z-index: 999; pointer-events: none; }
body.has-cursor #cursor { display: block; }
.cur-dot, .cur-ring { position: fixed; left: 0; top: 0; border-radius: 50%; will-change: transform; }
.cur-dot {
  width: 6px; height: 6px; margin: -3px 0 0 -3px;
  background: var(--rim);
  mix-blend-mode: screen;
}
.cur-ring {
  width: 44px; height: 44px; margin: -22px 0 0 -22px;
  border: 1px solid rgba(159, 190, 255, 0.4);
  background: radial-gradient(circle, rgba(201, 107, 255, 0.12), transparent 65%);
  mix-blend-mode: screen;
  transition: width 0.25s ease, height 0.25s ease, margin 0.25s ease, background 0.25s;
}
#cursor.on-link .cur-ring {
  width: 72px; height: 72px; margin: -36px 0 0 -36px;
  background: radial-gradient(circle, rgba(201, 107, 255, 0.28), transparent 65%);
}

/* ---------- type ---------- */

h1, h2, .h3 {
  font-family: var(--font-display);
  color: var(--rim);
  letter-spacing: -0.025em;
  line-height: 1.04;
  font-weight: 700;
  text-wrap: balance;
}
h1 { font-size: clamp(2.9rem, 7vw, 6rem); margin: 20px 0 24px; font-weight: 800; }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.6rem); margin: 10px 0 18px; }
.h3 { font-size: clamp(1.45rem, 2.6vw, 1.9rem); margin: 10px 0 16px; line-height: 1.16; }
h3 {
  font-family: var(--font-display);
  color: var(--rim);
  font-size: 1.12rem; font-weight: 600;
  letter-spacing: -0.01em;
  margin: 14px 0 8px;
}

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
}
.mono-line {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.mono-cap {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: lowercase;
}

.lead { font-size: 1.12rem; color: var(--text); max-width: 32em; }
.section-note { color: var(--muted); max-width: 46em; margin-top: 28px; }

/* split-word reveals */
[data-split] .wl {
  display: inline-block; overflow: hidden; vertical-align: bottom;
  /* extend the crop box so descenders and tight line-heights don't clip */
  padding: 0.1em 0.02em 0.16em; margin: -0.1em -0.02em -0.16em;
}
[data-split] .w {
  display: inline-block;
  transform: translateY(118%) rotate(2.5deg);
  transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: calc(var(--i, 0) * 70ms);
  will-change: transform;
}
[data-split].split-in .w { transform: translateY(0) rotate(0); }

/* ---------- header ---------- */

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(3, 3, 9, 0.6);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.site-header.scrolled { border-bottom-color: var(--line-soft); background: rgba(3, 3, 9, 0.85); }

.nav-row { display: flex; align-items: center; gap: 28px; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--rim); }
.brand img { border-radius: 8px; }
.wordmark { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: var(--rim); letter-spacing: -0.01em; }
.wordmark b { font-weight: 700; }

.site-nav { display: flex; gap: 24px; margin-left: auto; }
.site-nav a { color: var(--muted); font-size: 0.92rem; font-weight: 500; transition: color 0.2s; }
.site-nav a:hover { color: var(--rim); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-burger { display: none; }

/* ---------- buttons / pills ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body);
  font-weight: 600; font-size: 0.98rem;
  padding: 13px 26px; border-radius: 99px;
  border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: box-shadow 0.25s ease, background 0.2s ease, border-color 0.2s;
  will-change: transform;
}
.btn.sm { padding: 8px 18px; font-size: 0.88rem; }
.btn.lg { padding: 16px 34px; font-size: 1.06rem; }
.btn.primary {
  background: linear-gradient(135deg, #c07af5, #d9a1ff);
  color: #16081f; /* dark ink on light violet: >=8:1 AA contrast */
  box-shadow: 0 4px 26px rgba(201, 107, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn.primary:hover { box-shadow: 0 8px 40px rgba(201, 107, 255, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.22); }
.btn.ghost {
  background: rgba(159, 190, 255, 0.06);
  border-color: var(--line);
  color: var(--rim);
}
.btn.ghost:hover { border-color: rgba(159, 190, 255, 0.34); background: rgba(159, 190, 255, 0.1); }

.pill {
  display: inline-flex; align-items: center;
  font-family: var(--font-mono);
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.06em;
  padding: 6px 13px; border-radius: 99px;
  background: rgba(159, 190, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--glass);
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  /* floor height so the absolute statement/float layout can never collide
     on short desktop viewports */
  min-height: max(100svh, 840px);
  overflow: hidden;
}
.flathero .hero { min-height: 0; height: 920px; }
.flathero .hero-statement { bottom: 78px; }
.flathero .scroll-hint { bottom: 36px; }
.flathero .shots { gap: 84px; }

.hero-field { position: absolute; inset: 0; pointer-events: none; }
.float {
  position: absolute;
  will-change: transform;      /* JS parallax lives here */
}
.float-in {
  /* bob on transform (compositor-only), on an element JS never touches */
  animation: floaty var(--dur, 9s) ease-in-out infinite alternate;
  animation-delay: var(--del, 0s);
  will-change: transform;
}
.float canvas { width: 100%; height: 100%; }
.float .mono-cap { margin-top: 8px; white-space: nowrap; }
.float-box {
  border-radius: 18px;
  background: radial-gradient(ellipse at 50% 38%, rgba(36, 24, 73, 0.55), rgba(11, 14, 26, 0.08) 78%);
  border: 1px solid rgba(159, 190, 255, 0.07);
}
@keyframes floaty { from { transform: translateY(0); } to { transform: translateY(-18px); } }

.hero-bigorb {
  position: absolute;
  right: 5vw; top: 50%;
  transform: translateY(-54%);
  width: min(44vh, 470px, 38vw);
  z-index: 2;
}
#hero-orb { width: 100%; aspect-ratio: 1; }
.orb-hit {
  position: absolute; inset: 6% 6% 18% 6%;
  background: none; border: 0; border-radius: 50%;
  cursor: pointer;
}
.orb-hit:focus-visible { outline: 2px solid var(--violet); outline-offset: 6px; }
.hero-bigorb .mono-cap { text-align: center; margin-top: 2px; }
.hero-bigorb .cap-idx { color: var(--violet); margin-right: 10px; }

.mic-btn {
  position: absolute; right: 2%; bottom: 13%;
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.05em;
  color: var(--glass);
  background: rgba(11, 14, 26, 0.72);
  border: 1px solid var(--line);
  border-radius: 99px; padding: 7px 13px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.mic-btn:hover { color: var(--rim); border-color: rgba(159, 190, 255, 0.34); }
.mic-btn[aria-pressed="true"] { color: #0e2b1c; background: #59f3a6; border-color: #59f3a6; }

.hero-statement {
  position: absolute;
  left: max(28px, 4.5vw); bottom: 9vh;
  width: min(600px, 50vw);
  z-index: 3;
}
.hero-statement .lead { margin-top: 4px; color: var(--muted); }
.hero-statement .lead strong { color: var(--text); }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.scroll-hint {
  position: absolute;
  right: max(28px, 4.5vw); bottom: 4.5vh;
  z-index: 3;
  animation: hintpulse 2.6s ease-in-out infinite;
}
@keyframes hintpulse { 0%, 100% { opacity: 0.45; } 50% { opacity: 1; } }

/* ---------- marquee ---------- */

.mq {
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(11, 14, 26, 0.4);
  padding: 18px 0;
}
.mq-track {
  display: flex; align-items: center; gap: 2.6rem;
  width: max-content;
  animation: mq 34s linear infinite;
}
.mq:hover .mq-track { animation-play-state: paused; }
.mq-track span {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--glass);
  white-space: nowrap;
}
.mq-track i { color: var(--violet); font-style: normal; font-size: 0.8rem; }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- sections ---------- */

.section { padding: 110px 0; position: relative; }

.sec-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 24px 60px;
  align-items: end;
  margin-bottom: 56px;
}
.sec-head h2 { margin-bottom: 0; }
.sec-note { color: var(--muted); font-size: 1.02rem; max-width: 36em; }

/* ---------- showcase ---------- */

.shots { display: flex; flex-direction: column; gap: 9vh; perspective: 1200px; }
.shot { width: min(940px, 100%); margin: 0; }
.shot-right { margin-left: auto; }
.shot .win { will-change: transform; }
.win {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #0a0d18;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(201, 107, 255, 0.07),
    0 0 120px rgba(125, 227, 255, 0.05);
}
.win-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(16, 20, 42, 0.6);
}
.win-bar i { width: 10px; height: 10px; border-radius: 50%; background: rgba(159, 190, 255, 0.16); }
.win-bar i:nth-child(1) { background: rgba(255, 120, 110, 0.7); }
.win-bar i:nth-child(2) { background: rgba(255, 200, 97, 0.7); }
.win-bar i:nth-child(3) { background: rgba(89, 243, 166, 0.7); }
.win-bar .mono-line { margin-left: 10px; }
.shot figcaption { margin-top: 14px; }

/* ---------- agent pipeline ---------- */

.pipe { margin: 44px 0 52px; }
.pipe-nodes {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: space-between;
  margin-bottom: 18px;
}
.node {
  font-family: var(--font-mono);
  font-size: 0.78rem; letter-spacing: 0.06em;
  color: var(--muted);
  background: rgba(16, 20, 42, 0.7);
  border: 1px solid var(--line-soft);
  padding: 9px 16px; border-radius: 99px;
  transition: color 0.4s, border-color 0.4s, box-shadow 0.4s, background 0.4s;
}
.node.on {
  color: var(--rim);
  border-color: rgba(201, 107, 255, 0.5);
  background: rgba(36, 24, 73, 0.6);
  box-shadow: 0 0 24px rgba(201, 107, 255, 0.22);
}
.node-last.on {
  background: linear-gradient(135deg, rgba(125, 227, 255, 0.18), rgba(201, 107, 255, 0.22));
}
.pipe-track {
  height: 3px; border-radius: 3px;
  background: rgba(159, 190, 255, 0.1);
  overflow: visible;
}
.pipe-fill {
  height: 100%; width: 0%;
  border-radius: 3px;
  background: var(--grad);
  position: relative;
  box-shadow: 0 0 18px rgba(201, 107, 255, 0.5);
}
.pipe-head {
  position: absolute; right: -5px; top: 50%;
  width: 11px; height: 11px; margin-top: -5.5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 16px var(--cyan), 0 0 34px var(--violet);
}

.feature-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 48px; }
.ticks { list-style: none; }
.ticks li { position: relative; padding: 9px 0 9px 32px; color: var(--muted); font-size: 0.99rem; }
.ticks li::before {
  content: "";
  position: absolute; left: 2px; top: 15px;
  width: 15px; height: 15px; border-radius: 50%;
  background:
    radial-gradient(circle at 35% 32%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0) 42%),
    linear-gradient(140deg, var(--cyan), var(--violet));
  opacity: 0.9;
}
.provider-line {
  margin-top: 36px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  color: var(--muted); font-size: 0.95rem;
}

/* ---------- gallery (specimen drawer) ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 34px 20px;
}
.tile { margin: 0; }
.tile-canvas {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: 16px;
  background: radial-gradient(ellipse at 50% 40%, rgba(36, 24, 73, 0.6), rgba(11, 14, 26, 0.1) 78%);
  border: 1px solid rgba(159, 190, 255, 0.07);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s, box-shadow 0.3s;
}
.tile:hover .tile-canvas,
.tile:focus-visible .tile-canvas {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(159, 190, 255, 0.2);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5), 0 0 44px rgba(201, 107, 255, 0.12);
}
.tile:focus-visible { outline: 2px solid var(--violet); outline-offset: 4px; border-radius: 18px; }
.tile-canvas canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.tile figcaption { padding: 12px 4px 0; }
.tile .cap-name {
  display: flex; align-items: baseline; gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.78rem; letter-spacing: 0.06em;
  color: var(--rim);
}
.tile .cap-name .idx { color: var(--violet); font-size: 0.68rem; }
.tile .cap-name .fam { color: var(--muted); font-size: 0.68rem; margin-left: auto; }
.tile .cap-desc {
  font-size: 0.82rem; color: var(--muted); line-height: 1.45; margin-top: 5px;
}

/* ---------- two-up / panels ---------- */

.two-up { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.panel {
  background: linear-gradient(180deg, rgba(16, 20, 42, 0.72), rgba(11, 14, 26, 0.5));
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  padding: 36px 34px;
  height: 100%;
}
.panel p { color: var(--muted); }

/* ---------- cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(252px, 1fr));
  gap: 18px;
}
.card {
  background: linear-gradient(180deg, rgba(16, 20, 42, 0.72), rgba(11, 14, 26, 0.5));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: border-color 0.25s ease;
}
.card:hover { border-color: var(--line); }
.card p { color: var(--muted); font-size: 0.95rem; }
.card-icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: rgba(125, 227, 255, 0.08);
  border: 1px solid rgba(125, 227, 255, 0.2);
  color: var(--cyan);
}
.card-icon svg { width: 22px; height: 22px; }

/* tilt (JS sets --rx / --ry on pointer-fine devices) */
.tilt {
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 0.18s ease-out;
}

/* ---------- providers ---------- */

.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 14px;
}
.provider {
  background: rgba(16, 20, 42, 0.6);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 18px 18px 16px;
  transition: border-color 0.25s, transform 0.25s;
}
.provider:hover { border-color: var(--line); transform: translateY(-3px); }
.provider b { display: block; font-family: var(--font-display); font-weight: 600; color: var(--rim); margin-bottom: 4px; }
.provider span { font-size: 0.86rem; color: var(--muted); line-height: 1.45; }

/* ---------- download ---------- */

.dl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.dl-card {
  background: linear-gradient(180deg, rgba(16, 20, 42, 0.72), rgba(11, 14, 26, 0.5));
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  padding: 32px 26px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  transition: border-color 0.25s, transform 0.25s;
}
.dl-card:hover { transform: translateY(-4px); }
.dl-card.featured {
  border-color: rgba(201, 107, 255, 0.4);
  background:
    radial-gradient(ellipse 300px 190px at 50% 0%, rgba(201, 107, 255, 0.14), transparent 75%),
    linear-gradient(180deg, rgba(16, 20, 42, 0.85), rgba(11, 14, 26, 0.6));
}
.dl-os { font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; color: var(--rim); }
.dl-sub { color: var(--muted); font-size: 0.88rem; margin-bottom: 16px; }
.dl-card .btn { width: 100%; }
.dl-meta { margin-top: 12px; }

.dl-notes {
  margin-top: 38px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: rgba(11, 14, 26, 0.45);
  padding: 22px 26px;
  display: grid; gap: 10px;
}
.dl-notes p { color: var(--muted); font-size: 0.93rem; }

/* ---------- faq ---------- */

#faq h2 { margin-bottom: 34px; }
.faq {
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: rgba(16, 20, 42, 0.5);
  margin-top: 14px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq[open] { border-color: rgba(201, 107, 255, 0.3); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.02rem;
  color: var(--rim);
  position: relative;
  padding-right: 52px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 20px; top: 50%;
  transform: translateY(-50%);
  color: var(--violet); font-size: 1.4rem; font-weight: 400;
  transition: transform 0.25s;
}
.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq p { padding: 0 22px 20px; color: var(--muted); font-size: 0.97rem; }

/* ---------- footer ---------- */

.site-footer {
  position: relative;
  border-top: 1px solid var(--line-soft);
  padding: 110px 0 30px;
  overflow: hidden;
}
.foot-aurora i:nth-child(1) { left: 10%; top: 30%; }
.foot-aurora i:nth-child(2) { right: 0; top: 0; }

.foot-cta {
  position: relative; z-index: 2;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 24px;
  margin-bottom: 90px;
}
.foot-cta h2 { margin: 0; }

.foot-giant {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.4rem, 14.5vw, 15rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-align: center;
  white-space: nowrap;
  background: var(--grad);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.9;
  animation: sheen 9s linear infinite;
  margin-bottom: 70px;
  user-select: none;
}
@keyframes sheen { from { background-position: 0% 0; } to { background-position: 220% 0; } }

.foot-row {
  position: relative; z-index: 2;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
}
.foot-brand { display: flex; align-items: center; gap: 12px; }
.foot-brand img { border-radius: 7px; }
.foot-nav { display: flex; gap: 22px; }
.foot-nav a { color: var(--muted); font-size: 0.9rem; }
.foot-nav a:hover { color: var(--rim); }
.foot-legal {
  position: relative; z-index: 2;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
  margin-top: 26px; padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  text-transform: none; letter-spacing: 0.04em;
}

/* ---------- reveal ---------- */

/* reveals hide only when JS is actually running (html.js set by inline script),
   so a failed module or no-JS visit still shows every bit of content */
html.js .reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--i, 0) * 60ms);
}
html.js .reveal.in { opacity: 1; transform: none; }

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  #loader { display: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  [data-split] .w { transform: none; transition: none; }
  .aurora i, .float, .mq-track, .foot-giant, .scroll-hint, .loader-orb { animation: none; }
  .tilt { transform: none; }
  .card:hover, .tile:hover .tile-canvas, .provider:hover, .dl-card:hover { transform: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 1240px) {
  .float-nebula { display: none; }  /* clears the big orb + mic pill column */
}
@media (max-width: 1100px) {
  .hero-statement { width: min(560px, 56vw); }
  .hero-bigorb { width: min(38vh, 380px, 36vw); }
}

@media (max-width: 960px) {
  .hero {
    min-height: auto;
    display: flex; flex-direction: column;
    padding: 120px 0 40px;
  }
  .hero-statement {
    position: static;
    width: auto;
    order: 1;
    padding: 0 28px;
  }
  .hero-bigorb {
    position: relative; right: auto; top: auto; transform: none;
    order: 2;
    width: min(340px, 78vw);
    margin: 44px auto 0;
  }
  .hero-field { display: none; }
  .scroll-hint { display: none; }

  .sec-head { grid-template-columns: 1fr; align-items: start; gap: 14px; margin-bottom: 40px; }
  .feature-cols, .two-up { grid-template-columns: 1fr; }
  .shots { gap: 48px; }
  .shot, .shot-right { width: 100%; margin: 0; }

  .site-nav { display: none; }
  .nav-burger {
    display: inline-flex; flex-direction: column; gap: 4.5px;
    background: none; border: 0; cursor: pointer; padding: 8px;
  }
  .nav-burger span { width: 20px; height: 2px; background: var(--rim); border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
  .nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .site-nav.open {
    display: flex; flex-direction: column; gap: 4px;
    position: fixed; top: 64px; left: 0; right: 0;
    background: rgba(3, 3, 9, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 12px 28px 18px;
  }
  .site-nav.open a { padding: 10px 0; font-size: 1.05rem; }
}

@media (max-width: 640px) {
  .section { padding: 76px 0; }
  .cta-row .btn { width: 100%; }
  .dl-grid { grid-template-columns: 1fr; }
  .mq-track span { font-size: 0.82rem; }
  .pipe-nodes { justify-content: flex-start; }
  .gallery { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 26px 14px; }
  .foot-cta { margin-bottom: 60px; }
  .foot-giant { margin-bottom: 44px; }
  .nav-row { gap: 12px; padding: 0; }
  .site-header .wrap { padding: 0 18px; }
  .btn.sm { padding: 8px 14px; }
  .wordmark { font-size: 1rem; }
}
@media (max-width: 344px) {
  .wordmark { display: none; }   /* icon-only brand on the narrowest phones */
}
