/* =========================================================================
   Claw Device — styles.css
   Dark, energetic "open firmware" aesthetic with a programmable-light
   spectrum gradient (lime -> cyan -> violet).
   ========================================================================= */

/* ------------------------------- Tokens -------------------------------- */
:root {
  --bg:      #08080a;
  --bg-1:    #0e0e12;
  --bg-2:    #141419;
  --bg-3:    #1a1a20;
  --line:    rgba(255, 255, 255, .09);
  --line-2:  rgba(255, 255, 255, .16);
  --text:    #f4f4f2;
  --text-dim:#a6a6ae;
  --text-mut:#70707b;

  --lime:   #c2ff3d;
  --cyan:   #38e1ff;
  --violet: #a66bff;
  --coral:  #ff6a3d;

  --grad:      linear-gradient(100deg, #c2ff3d 0%, #38e1ff 52%, #a66bff 100%);
  --grad-soft: linear-gradient(100deg, rgba(194,255,61,.16), rgba(56,225,255,.16) 52%, rgba(166,107,255,.16));

  --radius-sm: 12px;
  --radius:    18px;
  --radius-lg: 28px;
  --maxw:      1180px;

  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-disp: 'Space Grotesk', var(--font-sans);
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

  --ease:  cubic-bezier(.22, .61, .36, 1);
  --nav-h: 68px;
}

/* ------------------------------- Reset --------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Ambient background: soft spectrum glows + faint grid, fixed behind content */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 50% at 78% -6%, rgba(166,107,255,.18), transparent 60%),
    radial-gradient(52% 44% at 8% 4%, rgba(56,225,255,.14), transparent 58%),
    radial-gradient(46% 40% at 50% 108%, rgba(194,255,61,.10), transparent 60%);
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 78%);
  pointer-events: none;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
input { font: inherit; }
::selection { background: rgba(194,255,61,.28); color: #fff; }

:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 4px; }

/* ------------------------------ Helpers -------------------------------- */
.container { width: min(100% - 44px, var(--maxw)); margin-inline: auto; }

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

.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;
}

.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 200;
  transform: translateY(-160%);
  background: var(--lime); color: #06210a; font-weight: 600;
  padding: 10px 16px; border-radius: 10px; transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* Reveal-on-scroll (only hidden when JS is active, to avoid no-JS blanks) */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* Eyebrow label */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: .74rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: var(--text-dim);
}
.eyebrow__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime); box-shadow: 0 0 10px 1px var(--lime);
  animation: pulseDot 2.4s var(--ease) infinite;
}
.eyebrow--line { color: var(--lime); }
.eyebrow--line::before {
  content: ""; width: 28px; height: 2px; border-radius: 2px; background: var(--grad);
}
@keyframes pulseDot { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

/* ------------------------------ Buttons -------------------------------- */
.btn {
  --pad: 13px 22px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: var(--pad); border-radius: 999px;
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .2s var(--ease);
  white-space: nowrap; will-change: transform;
}
.btn--sm { --pad: 9px 16px; font-size: .88rem; }
.btn--primary {
  background: var(--grad); color: #0a1005;
  box-shadow: 0 6px 22px -8px rgba(56,225,255,.5);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -10px rgba(166,107,255,.6); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost {
  background: rgba(255,255,255,.03); color: var(--text);
  border: 1px solid var(--line-2);
}
.btn--ghost:hover { border-color: var(--lime); color: #fff; transform: translateY(-2px); background: rgba(194,255,61,.06); }

/* -------------------------------- Nav ---------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(8,8,10,.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav__inner {
  display: flex; align-items: center; gap: 20px;
  height: var(--nav-h);
}

.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-disp); }
.brand__mark { display: grid; place-items: center; filter: drop-shadow(0 0 8px rgba(56,225,255,.35)); }
.brand__word { font-weight: 700; font-size: 1.18rem; letter-spacing: -.01em; }
.brand__word-dim { color: var(--text-mut); font-weight: 500; margin-left: 2px; }

.nav__links { display: flex; align-items: center; gap: 26px; margin-left: 18px; }
.nav__links a {
  font-size: .92rem; color: var(--text-dim); font-weight: 500;
  position: relative; padding: 4px 0; transition: color .2s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--grad); border-radius: 2px; transition: width .25s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }

/* Language switcher */
.lang { position: relative; }
.lang__btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 11px; border-radius: 999px; border: 1px solid var(--line-2);
  color: var(--text-dim); font-family: var(--font-mono); font-size: .8rem; font-weight: 500;
  transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}
.lang__btn:hover { color: var(--text); border-color: var(--line-2); background: rgba(255,255,255,.04); }
.lang__current { letter-spacing: .06em; }
.lang__menu {
  position: absolute; top: calc(100% + 10px); right: 0; min-width: 168px;
  list-style: none; padding: 6px; border-radius: 14px;
  background: rgba(16,16,20,.94); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line-2); box-shadow: 0 20px 50px -20px rgba(0,0,0,.8);
  opacity: 0; visibility: hidden; transform: translateY(-8px) scale(.98);
  transform-origin: top right; transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.lang.is-open .lang__menu { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.lang__menu li {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 10px 12px; border-radius: 9px; font-size: .9rem; color: var(--text-dim);
  cursor: pointer; transition: background .16s var(--ease), color .16s var(--ease);
}
.lang__menu li:hover { background: rgba(255,255,255,.06); color: var(--text); }
.lang__menu li.is-active { color: var(--text); background: var(--grad-soft); }
.lang__code { font-family: var(--font-mono); font-size: .72rem; color: var(--text-mut); letter-spacing: .08em; }
.lang__menu li.is-active .lang__code { color: var(--lime); }

/* Burger */
.nav__burger { display: none; width: 40px; height: 40px; border-radius: 10px; position: relative; border: 1px solid var(--line-2); }
.nav__burger span {
  position: absolute; left: 10px; right: 10px; height: 2px; background: var(--text); border-radius: 2px;
  transition: transform .26s var(--ease), opacity .2s var(--ease);
}
.nav__burger span:nth-child(1) { top: 13px; }
.nav__burger span:nth-child(2) { top: 19px; }
.nav__burger span:nth-child(3) { top: 25px; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav sheet */
.mobilenav {
  display: flex; flex-direction: column; gap: 4px;
  padding: 10px 22px 22px;
  background: rgba(10,10,13,.96); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  max-height: 0; overflow: hidden;
  transition: max-height .3s var(--ease), opacity .3s var(--ease);
  opacity: 0;
}
.mobilenav.is-open { max-height: 420px; opacity: 1; }
.mobilenav a { padding: 13px 6px; color: var(--text-dim); font-weight: 500; border-bottom: 1px solid var(--line); }
.mobilenav a:last-child { border-bottom: none; margin-top: 12px; }
.mobilenav .btn { justify-content: center; }

/* -------------------------------- Hero --------------------------------- */
.hero { position: relative; padding: calc(var(--nav-h) + 60px) 0 70px; overflow: hidden; }
.hero__glow {
  position: absolute; top: -10%; left: 50%; width: 900px; height: 700px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(56,225,255,.14), transparent 70%);
  filter: blur(30px); pointer-events: none; z-index: 0;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero__copy { max-width: 620px; }
.hero__title {
  font-family: var(--font-disp); font-weight: 700;
  font-size: clamp(2.5rem, 6.4vw, 4.7rem); line-height: 1.03; letter-spacing: -.025em;
  margin: 20px 0 22px;
}
.hero__title span { display: block; }
.hero__sub { font-size: clamp(1.02rem, 1.4vw, 1.2rem); color: var(--text-dim); max-width: 33em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 26px; }
.hero__tags { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; padding: 0; }
.hero__tags li { display: inline-flex; align-items: center; gap: 8px; font-size: .88rem; color: var(--text-dim); }
.chip {
  display: inline-grid; place-items: center; width: 24px; height: 24px; border-radius: 7px;
  background: var(--grad-soft); color: var(--lime); font-size: .78rem;
  border: 1px solid var(--line);
}

/* Hero console visual */
.hero__visual { position: relative; }
.console {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(180deg, #101015, #0b0b0f);
  border: 1px solid var(--line-2);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.9), 0 0 0 1px rgba(255,255,255,.02) inset;
}
.console::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--grad); z-index: 2;
}
.console__bar {
  display: flex; align-items: center; gap: 7px; padding: 12px 15px;
  border-bottom: 1px solid var(--line); background: rgba(255,255,255,.02);
}
.console__dot { width: 11px; height: 11px; border-radius: 50%; background: #2c2c33; }
.console__dot:nth-child(1) { background: #ff5f57; }
.console__dot:nth-child(2) { background: #febc2e; }
.console__dot:nth-child(3) { background: #28c840; }
.console__title { margin-left: 8px; font-family: var(--font-mono); font-size: .78rem; color: var(--text-mut); }
.console__body {
  font-family: var(--font-mono); font-size: clamp(.82rem, 1.15vw, .95rem); line-height: 1.85;
  color: #d4ffcf; padding: 20px 20px 26px; min-height: 300px; white-space: pre-wrap; word-break: break-word;
}
.console__body::after {
  content: "▋"; color: var(--lime); margin-left: 1px; animation: blink 1.05s steps(2, start) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.hero__orbit { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 18px; }
.hero__pill {
  font-family: var(--font-mono); font-size: .75rem; letter-spacing: .04em;
  padding: 7px 13px; border-radius: 999px; border: 1px solid var(--line-2);
  color: var(--text-dim); background: rgba(255,255,255,.02);
}

.hero__scroll {
  display: flex; align-items: center; gap: 10px; justify-content: center; margin-top: 54px;
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--text-mut);
}
.hero__scroll-line { width: 1px; height: 34px; background: linear-gradient(var(--text-mut), transparent); animation: scrollLine 2.2s var(--ease) infinite; }
@keyframes scrollLine { 0% { transform: scaleY(.3); transform-origin: top; opacity: .3; } 50% { transform: scaleY(1); opacity: 1; } 100% { transform: scaleY(.3); transform-origin: bottom; opacity: .3; } }

/* ------------------------------ Marquee -------------------------------- */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.015); overflow: hidden; padding: 15px 0;
  --dur: 34s;
}
.marquee__track {
  display: inline-flex; align-items: center; gap: 26px; white-space: nowrap;
  font-family: var(--font-mono); font-size: .82rem; letter-spacing: .2em; color: var(--text-dim);
  animation: marquee var(--dur) linear infinite; will-change: transform;
}
.marquee__sep { color: var(--lime); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ------------------------------ Sections ------------------------------- */
.section { padding: clamp(70px, 10vw, 120px) 0; }
section[id] { scroll-margin-top: calc(var(--nav-h) + 16px); }
.section__head { max-width: 760px; margin-bottom: 54px; }
.section__title {
  font-family: var(--font-disp); font-weight: 600;
  font-size: clamp(1.85rem, 3.8vw, 3rem); line-height: 1.1; letter-spacing: -.02em;
  margin: 16px 0 0;
}
.section__sub { color: var(--text-dim); font-size: 1.05rem; margin-top: 16px; }

/* ----------------------------- Manifesto ------------------------------- */
.manifesto__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.manifesto__lead p { font-size: clamp(1.05rem, 1.7vw, 1.32rem); color: var(--text-dim); line-height: 1.7; }
.manifesto__belief {
  margin-top: 26px; color: var(--text) !important; font-weight: 500;
  padding-left: 22px; border-left: 2px solid transparent;
  border-image: var(--grad) 1;
}
.pillars { display: grid; gap: 16px; }
.pillar {
  position: relative; padding: 26px 26px 26px 74px; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.pillar:hover { border-color: var(--line-2); transform: translateY(-3px); }
.pillar__num {
  position: absolute; left: 24px; top: 26px;
  font-family: var(--font-mono); font-size: .9rem; font-weight: 600;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pillar h3 { font-family: var(--font-disp); font-size: 1.18rem; font-weight: 600; margin-bottom: 7px; }
.pillar p { color: var(--text-dim); font-size: .96rem; }

/* Stagger pillars/cards when their group reveals */
.js .pillars.is-visible .pillar,
.js .tech__grid.is-visible .techcard { animation: rise .6s var(--ease) both; }
.js .pillars.is-visible .pillar:nth-child(2) { animation-delay: .08s; }
.js .pillars.is-visible .pillar:nth-child(3) { animation-delay: .16s; }
.js .tech__grid.is-visible .techcard:nth-child(2) { animation-delay: .07s; }
.js .tech__grid.is-visible .techcard:nth-child(3) { animation-delay: .14s; }
.js .tech__grid.is-visible .techcard:nth-child(4) { animation-delay: .21s; }
/* opacity-only so it never locks `transform` and kill the cards' hover-lift */
@keyframes rise { from { opacity: 0; } to { opacity: 1; } }

/* ------------------------------ Products ------------------------------- */
.product {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 68px); align-items: center;
  padding: clamp(30px, 4vw, 46px) 0;
}
.product + .product { border-top: 1px solid var(--line); margin-top: 20px; }
.product--reverse .product__media { order: 2; }

.product__media { display: flex; justify-content: center; }
.device-frame {
  position: relative; width: 100%; max-width: 460px; padding: clamp(26px, 4vw, 46px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(56,225,255,.08), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line-2);
  box-shadow: 0 40px 90px -40px rgba(0,0,0,.9);
  overflow: hidden;
}
.device-frame::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: var(--grad); opacity: .4;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.device-frame::after {
  content: ""; position: absolute; width: 70%; height: 60%; left: 15%; bottom: -20%;
  background: radial-gradient(closest-side, rgba(166,107,255,.35), transparent 70%);
  filter: blur(28px); z-index: 0; pointer-events: none;
}
.device-frame svg { position: relative; z-index: 1; width: 100%; height: auto; }

.badge {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 11px; border-radius: 999px; border: 1px solid var(--line-2);
  background: rgba(8,8,10,.6); color: var(--text-dim); backdrop-filter: blur(4px);
}
.badge--dev::before { content: "●"; color: var(--coral); margin-right: 6px; font-size: .6em; vertical-align: middle; animation: pulseDot 2s infinite; }

/* Keyboard SVG animation */
.kb__keys .key {
  fill: #1b1b20; stroke: #34343c; stroke-width: 1;
  transform-box: fill-box; transform-origin: center;
  animation: keyPulse 3.6s var(--ease) infinite;
}
.kb__keys .key[data-k="1"] { --kc: #c2ff3d; animation-delay: 0s; }
.kb__keys .key[data-k="2"] { --kc: #9bf25a; animation-delay: .16s; }
.kb__keys .key[data-k="3"] { --kc: #5fe89a; animation-delay: .32s; }
.kb__keys .key[data-k="4"] { --kc: #38e1ff; animation-delay: .48s; }
.kb__keys .key[data-k="5"] { --kc: #5cc9ff; animation-delay: .64s; }
.kb__keys .key[data-k="6"] { --kc: #7ea6ff; animation-delay: .80s; }
.kb__keys .key[data-k="7"] { --kc: #9d84ff; animation-delay: .96s; }
.kb__keys .key[data-k="8"] { --kc: #a66bff; animation-delay: 1.12s; }
@keyframes keyPulse {
  0%, 74%, 100% { fill: #1b1b20; filter: none; transform: scale(1); }
  10%, 28%      { fill: var(--kc); filter: drop-shadow(0 0 7px var(--kc)); transform: scale(.95); }
}
.kb__mic { animation: micPulse 2.6s var(--ease) infinite; transform-box: fill-box; transform-origin: center; }
@keyframes micPulse { 0%,100% { opacity: .5; } 50% { opacity: 1; } }

/* Terminal SVG */
.term__code { font-family: var(--font-mono); font-size: 11px; fill: #7ff0b0; }
.term__code--dim { fill: #4f7a5f; }
.term__code--accent { fill: var(--cyan); animation: micPulse 1.6s var(--ease) infinite; }

.product__kicker { font-family: var(--font-mono); font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--lime); }
.product__name { font-family: var(--font-disp); font-size: clamp(1.7rem, 3.2vw, 2.5rem); font-weight: 600; letter-spacing: -.02em; margin: 12px 0 6px; }
.product__tagline { font-size: 1.12rem; color: var(--text); font-weight: 500; margin-bottom: 16px; }
.product__desc { color: var(--text-dim); margin-bottom: 24px; }

.feature-list { list-style: none; padding: 0; display: grid; gap: 12px; margin-bottom: 28px; }
.feature-list li { position: relative; padding-left: 28px; color: var(--text-dim); font-size: .96rem; }
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: 9px; height: 9px; border-radius: 3px;
  background: var(--grad); box-shadow: 0 0 8px rgba(56,225,255,.5);
}
.feature-list strong { color: var(--text); font-weight: 600; }

.specs { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.specs > div { background: var(--bg-1); padding: 15px 16px; }
.specs dt { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-mut); margin-bottom: 5px; }
.specs dd { font-size: .92rem; color: var(--text); font-weight: 500; }

/* ----------------------------- Technology ------------------------------ */
.tech__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.techcard {
  padding: 30px; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line);
  transition: border-color .25s var(--ease), transform .25s var(--ease), background .25s var(--ease);
}
.techcard:hover { border-color: var(--line-2); transform: translateY(-4px); }
.techcard__ico {
  display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 12px;
  background: var(--grad-soft); border: 1px solid var(--line); color: var(--lime);
  font-size: 1.25rem; margin-bottom: 18px;
}
.techcard h3 { font-family: var(--font-disp); font-size: 1.22rem; font-weight: 600; margin-bottom: 9px; }
.techcard p { color: var(--text-dim); font-size: .96rem; }

.tech__quote { margin-top: 42px; text-align: center; padding: 0 6%; }
.tech__quote p {
  font-family: var(--font-disp); font-weight: 500;
  font-size: clamp(1.4rem, 3.2vw, 2.25rem); line-height: 1.3; letter-spacing: -.01em;
  color: var(--text);
}

/* ------------------------------- About --------------------------------- */
.about__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.about__lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--text); margin: 18px 0 18px; font-weight: 500; }
.about__copy p { color: var(--text-dim); }
.about__copy em { color: var(--lime); font-style: normal; font-weight: 600; }
.about__values { display: grid; gap: 14px; margin-top: 30px; }
.about__values > div { display: flex; flex-direction: column; padding-left: 18px; border-left: 2px solid; border-image: var(--grad) 1; }
.about__values strong { font-family: var(--font-disp); font-size: 1.02rem; }
.about__values span { color: var(--text-mut); font-size: .92rem; }

.about__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat {
  padding: 28px 22px; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1)); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 8px;
}
.stat__num { font-family: var(--font-disp); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; line-height: 1; }
.stat__lbl { font-size: .85rem; color: var(--text-dim); }

/* ------------------------------ Waitlist ------------------------------- */
.waitlist__card {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(40px, 6vw, 76px) clamp(24px, 5vw, 60px);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line-2);
}
.waitlist__card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: var(--grad); opacity: .5; -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.waitlist__glow { position: absolute; top: -40%; left: 50%; width: 620px; height: 480px; transform: translateX(-50%); background: radial-gradient(closest-side, rgba(194,255,61,.16), transparent 70%); filter: blur(30px); pointer-events: none; }
.waitlist__card > * { position: relative; z-index: 1; }
.waitlist__title { font-family: var(--font-disp); font-size: clamp(1.9rem, 4.4vw, 3.1rem); font-weight: 600; letter-spacing: -.02em; margin: 16px 0 12px; }
.waitlist__sub { color: var(--text-dim); max-width: 46ch; margin: 0 auto 30px; }
.waitlist__form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.waitlist__form input {
  flex: 1; min-width: 0; padding: 14px 18px; border-radius: 999px;
  background: rgba(0,0,0,.35); border: 1px solid var(--line-2); color: var(--text);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.waitlist__form input::placeholder { color: var(--text-mut); }
.waitlist__form input:focus { outline: none; border-color: var(--cyan); background: rgba(0,0,0,.5); }
.waitlist__msg { min-height: 1.4em; margin-top: 16px; font-size: .92rem; font-weight: 500; }
.waitlist__msg.is-success { color: var(--lime); }
.waitlist__msg.is-error { color: #ff8b6b; }
.waitlist__privacy { color: var(--text-mut); font-size: .82rem; margin-top: 8px; }

/* ------------------------------- Footer -------------------------------- */
.footer { border-top: 1px solid var(--line); padding: 64px 0 30px; margin-top: 40px; background: rgba(255,255,255,.012); }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer__tagline { color: var(--text-dim); font-size: .92rem; max-width: 30ch; margin: 16px 0 14px; }
.footer__made { color: var(--text-mut); font-size: .86rem; }
.footer__col h4 { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-mut); margin-bottom: 16px; }
.footer__col { display: flex; flex-direction: column; gap: 11px; }
.footer__col a { color: var(--text-dim); font-size: .94rem; transition: color .18s var(--ease); width: fit-content; }
.footer__col a:hover { color: var(--lime); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 54px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--text-mut); font-size: .84rem; }
.footer__legal { display: flex; gap: 22px; }
.footer__legal a:hover { color: var(--text); }

/* ---------------------------- Responsive ------------------------------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .hero__copy { max-width: none; }
  .hero__visual { max-width: 520px; }
  .manifesto__grid { grid-template-columns: 1fr; }
  .product, .about__grid { grid-template-columns: 1fr; }
  .product--reverse .product__media { order: 0; }
  .product__media { order: -1; }
  .tech__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 32px, var(--maxw)); }
  .hero { padding-top: calc(var(--nav-h) + 34px); }
  .hero__cta .btn { flex: 1 1 auto; }
  .waitlist__form { flex-direction: column; }
  .waitlist__form .btn { width: 100%; }
  .specs { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 30px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .console__body { min-height: 250px; }
}

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