

:root {
  --bg: #000;
  --bg-1: #070913;
  --bg-2: #0a0d1a;
  --bg-3: #10131f;
  --ink: #f6f7f9;
  --ink-dim: #a5adba;
  --ink-mute: #6b7280;
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.14);

--teal: #08fad7;        
  --teal-2: #4ff5d8;
  --cyan: #2de2ff;        
  --cyan-2: #7befff;
  --cyan-deep: #0aa5d0;
  --blue: #3b8fff;        
  --indigo: #6366ff;
  --violet: #8b5cf6;      
  --purple: #a855f7;
  --magenta: #c026d3;

--grad-logo: linear-gradient(135deg, #08fad7 0%, #3b8fff 48%, #a855f7 100%);
  --grad-logo-soft: linear-gradient(135deg, rgba(8,250,215,0.18), rgba(59,143,255,0.15), rgba(168,85,247,0.18));

  --green: #34d399;
  --amber: #f5a524;
  --red: #ff5c5c;
  --yellow: #facc15;

  --r-xs: 8px;
  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 32px;
  --r-xl: 44px;

  --mono: "JetBrains Mono","IBM Plex Mono",ui-monospace,Menlo,Consolas,monospace;
  --sans: "Inter",-apple-system,"Helvetica Neue",Helvetica,Arial,sans-serif;
  --display: "Space Grotesk","Inter",-apple-system,sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
body { font-feature-settings: "ss01","cv11","kern"; }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--cyan); color: #000; }

.wrap { width: min(1360px, 92vw); margin-inline: auto; }
.wrap-narrow { width: min(1100px, 92vw); margin-inline: auto; }

.section { position: relative; padding: clamp(96px, 12vw, 180px) 0; }
.section--tight { padding: clamp(64px, 8vw, 120px) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--cyan);
  padding: 8px 14px;
  border: 1px solid rgba(49, 212, 255, 0.28);
  border-radius: 999px;
  background: rgba(49, 212, 255, 0.06);
  backdrop-filter: blur(10px);
}
.eyebrow .dot { width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; box-shadow: 0 0 10px var(--cyan); }

.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.98;
  text-wrap: balance;
}

.h-xl { font-size: clamp(52px, 8vw, 132px); }
.h-lg { font-size: clamp(54px, 7vw, 108px); }
.h-md { font-size: clamp(32px, 4vw, 56px); }

.sub {
  color: var(--ink-dim);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  max-width: 62ch;
  text-wrap: pretty;
}

.kbd {
  font-family: var(--mono); font-size: 11px;
  padding: 3px 7px; border: 1px solid var(--line-2); border-radius: 6px;
  background: rgba(255,255,255,0.03); color: var(--ink-dim);
}

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 0;
  transition: background 400ms ease, backdrop-filter 400ms ease, border 400ms ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5,7,10,0.72);
  backdrop-filter: blur(20px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__brand { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 18px; letter-spacing: -0.02em; }
.nav__icon {
  width: 64px; height: 64px; border-radius: 14px; object-fit: cover;
  box-shadow: 0 0 24px rgba(49,212,255,0.3), 0 2px 12px rgba(0,0,0,0.5);
}
.nav__brand-mark {
  width: 28px; height: 28px; border-radius: 9px;
  background: var(--grad-logo);
  position: relative;
  box-shadow: 0 0 20px rgba(59,143,255,0.35), inset 0 0 12px rgba(255,255,255,0.2);
}
.nav__brand-mark::after {
  content: ""; position: absolute; inset: 6px; border-radius: 5px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), transparent 40%), transparent;
}
.nav__links { display: flex; gap: 4px; color: var(--ink-dim); font-size: 13px; }
.nav__links a {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 10px; border-radius: 8px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav__links a:hover { color: var(--ink); background: rgba(255,255,255,0.05); }
.nav__links a svg { width: 13px; height: 13px; flex-shrink: 0; opacity: 0.7; }
.nav__links a:hover svg { opacity: 1; }
.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 999px;
  background: var(--ink); color: #000; font-weight: 600; font-size: 14px;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--cyan); }

@media (max-width: 1000px) { .nav__links { display: none; } }

.hero { min-height: 100vh; padding: 140px 0 80px; overflow: visible; position: relative; }
.hero__grid { overflow: hidden; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 85%);
  pointer-events: none;
}
.hero__aurora {
  position: absolute; inset: -20%;
  background:
    radial-gradient(circle at 20% 30%, rgba(49,212,255,0.28), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(122,107,255,0.22), transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(201,123,255,0.15), transparent 55%);
  filter: blur(60px);
  pointer-events: none;
  animation: drift 18s ease-in-out infinite;
}
@keyframes drift {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-30px, 20px) scale(1.04); }
}

.hero__top {
  position: relative; z-index: 2;
  display: grid; gap: 48px;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
}
@media (max-width: 980px) { .hero__top { grid-template-columns: 1fr; } }

.hero__title {
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.hero__title em {
  font-style: normal;
  font-weight: 700;
  background: var(--grad-logo);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  position: relative;
}

.hero__lede {
  margin-top: 24px;
  font-size: clamp(14px, 1vw, 15px);
  line-height: 1.65;
  color: var(--ink-mute);
  max-width: 44ch;
  text-wrap: pretty;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.hero__ctas { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 22px; border-radius: 999px;
  font-weight: 600; font-size: 15px; letter-spacing: -0.005em;
  transition: transform .2s ease, background .2s ease, border-color .2s;
}
.btn--primary {
  background: var(--ink); color: #000;
  box-shadow: 0 10px 30px rgba(49,212,255,0.15), inset 0 -2px 0 rgba(0,0,0,0.1);
}
.btn--primary:hover { background: #fff; transform: translateY(-1px); }
.btn--ghost {
  background: rgba(255,255,255,0.04); color: var(--ink);
  border: 1px solid var(--line-2);
}
.btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.25); }
.btn .i { width: 16px; height: 16px; }

.hero__meta {
  margin-top: 40px; display: flex; gap: 28px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 12px; color: var(--ink-mute);
  letter-spacing: 0.02em;
}
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta b { color: var(--ink); font-weight: 600; }
.hero__meta i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); font-style: normal; }

.hero__phone-wrap {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 600px;
}
.hero__phone-orbit {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.06);
  animation: rotate 60s linear infinite;
}
.hero__phone-orbit::before,
.hero__phone-orbit::after {
  content: ""; position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 10px var(--cyan);
}
.hero__phone-orbit::before { top: -3px; left: 50%; transform: translateX(-50%); }
.hero__phone-orbit::after { bottom: -3px; left: 50%; transform: translateX(-50%); background: var(--violet); box-shadow: 0 0 10px var(--violet); }
@keyframes rotate { to { transform: rotate(360deg); } }

.phone {
  position: relative;
  z-index: 20;
  width: 320px;
  aspect-ratio: 320 / 656;
  background: #000;
  border-radius: 52px;
  padding: 8px;
  box-shadow:
    0 0 0 1.5px rgba(255,255,255,0.12),
    0 0 0 8px #0a0c10,
    0 80px 120px rgba(0,0,0,0.7),
    0 20px 40px rgba(49,212,255,0.08);
}
.phone__screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 44px;
  background: #000;
  overflow: hidden;
}
.phone__notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 108px; height: 30px; background: #000;
  border-radius: 16px;
  z-index: 5;
}
.phone__statusbar {
  position: absolute; top: 0; left: 0; right: 0;
  height: 50px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 26px;
  font-size: 14px; font-weight: 600; color: #fff;
  z-index: 4;
  pointer-events: none;
}
.phone__statusbar-right { display: inline-flex; gap: 6px; align-items: center; }
.phone__statusbar-right svg { width: 15px; height: 11px; }

.phone__home {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 4px; background: rgba(255,255,255,0.45); border-radius: 4px;
  z-index: 6;
}

.phone__content { position: absolute; inset: 0; padding-top: 50px; }

.live-term {
  font-family: var(--mono); font-size: 11.5px;
  color: #d4e3ff;
  padding: 14px 18px 80px;
  line-height: 1.65;
  height: 100%;
  overflow: hidden;
}
.live-term .ascii { color: var(--cyan); font-size: 9px; line-height: 1.1; white-space: pre; margin-bottom: 10px; }
.live-term .tag { color: var(--cyan); }
.live-term .ok { color: var(--green); }
.live-term .muted { color: #7088a0; }
.live-term .key { color: #ffffff; font-weight: 600; }
.live-term .cmd-line { display: flex; align-items: baseline; gap: 8px; }
.live-term .prompt { color: var(--green); }
.live-term .prompt .host { color: var(--cyan); }
.live-term hr { border: 0; border-top: 1px solid rgba(49,212,255,0.18); margin: 8px 0; }
.live-term .cursor { display: inline-block; width: 7px; height: 13px; background: var(--cyan); vertical-align: text-bottom; animation: blink 1s steps(2) infinite; margin-left: 2px; }
@keyframes blink { 50% { opacity: 0; } }

.phone__keybar {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 72px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.9) 30%, #000 100%);
  display: flex; align-items: flex-end; gap: 6px;
  padding: 8px 10px 14px;
}
.phone__keybar .k {
  flex: 0 0 auto;
  min-width: 34px; height: 32px;
  background: #1c2027; border: 1px solid rgba(255,255,255,0.08); border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 10px; color: #cfd6e0;
  padding: 0 8px;
}
.phone__keybar .k--accent { background: rgba(49,212,255,0.15); border-color: rgba(49,212,255,0.4); color: var(--cyan); }
.phone__keybar .k--danger { background: rgba(255,92,92,0.2); border-color: rgba(255,92,92,0.5); color: var(--red); }
.phone__keybar .k--sparkle { background: rgba(245,165,36,0.15); border-color: rgba(245,165,36,0.5); color: var(--amber); }

.hero__chip {
  position: absolute;
  background: rgba(10,13,24,0.96);
  backdrop-filter: blur(28px) saturate(200%);
  border-radius: 20px;
  padding: 16px 20px;
  font-size: 13px; color: var(--ink);
  display: inline-flex; align-items: center; gap: 16px;
  animation: float 6s ease-in-out infinite;
  min-width: 220px;
  z-index: 5;
}
.hero__chip--green  { border: 2px solid rgba(52,211,153,0.5);  box-shadow: 0 24px 48px rgba(0,0,0,0.8), 0 0 28px rgba(52,211,153,0.18),  inset 0 1px 0 rgba(52,211,153,0.12); }
.hero__chip--amber  { border: 2px solid rgba(245,165,36,0.5);  box-shadow: 0 24px 48px rgba(0,0,0,0.8), 0 0 28px rgba(245,165,36,0.18),  inset 0 1px 0 rgba(245,165,36,0.12); }
.hero__chip--cyan   { border: 2px solid rgba(49,212,255,0.5);  box-shadow: 0 24px 48px rgba(0,0,0,0.8), 0 0 28px rgba(49,212,255,0.18),   inset 0 1px 0 rgba(49,212,255,0.12); }
.hero__chip--purple { border: 2px solid rgba(168,85,247,0.5);  box-shadow: 0 24px 48px rgba(0,0,0,0.8), 0 0 28px rgba(168,85,247,0.18),  inset 0 1px 0 rgba(168,85,247,0.12); }

.hero__chip__dot   { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; animation: pulse 2s ease-in-out infinite; }
.hero__chip__icon  { font-size: 24px; flex-shrink: 0; line-height: 1; }
.hero__chip__title { font-weight: 700; font-size: 14px; color: #fff; margin-bottom: 3px; letter-spacing: -0.01em; }
.hero__chip__sub   { font-size: 11.5px; color: var(--ink-dim); font-family: var(--mono); margin-bottom: 5px; }
.hero__chip__badge { font-size: 11px; font-family: var(--mono); opacity: 0.9; }
.hero__chip__bar   { height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; margin-top: 7px; min-width: 150px; }
.hero__chip__bar-fill { height: 100%; border-radius: 2px; }

@keyframes float {
  0%,100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-12px) rotate(var(--r, 0deg)); }
}

.platforms {
  margin-top: 80px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.platforms::before, .platforms::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.platforms::before { left: 0; background: linear-gradient(90deg, #000, transparent); }
.platforms::after  { right: 0; background: linear-gradient(-90deg, #000, transparent); }
.platforms__track {
  display: flex; gap: 64px; width: max-content;
  animation: slide 40s linear infinite;
  font-family: var(--mono); font-size: 13px; color: var(--ink-mute);
  letter-spacing: 0.1em; text-transform: uppercase;
  align-items: center;
}
.platforms__track span { display: inline-flex; align-items: center; gap: 12px; white-space: nowrap; }
.platforms__track i { display: inline-block; width: 3px; height: 3px; border-radius: 50%; background: var(--ink-mute); font-style: normal; }
.platforms__track b { color: var(--ink); font-weight: 400; }
@keyframes slide { to { transform: translateX(-50%); } }

.sec-head { max-width: 820px; margin-bottom: 72px; }
.sec-head .num {
  font-family: var(--mono); font-size: 20px; color: var(--cyan);
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 32px; display: flex; align-items: center; gap: 18px;
}
.sec-head .num::before { content: ""; width: 44px; height: 1px; background: var(--cyan); }

.connect {
  position: relative;
  background: linear-gradient(180deg, #000 0%, #05070b 50%, #000 100%);
}
.connect__body {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
@media (max-width: 980px) { .connect__body { grid-template-columns: 1fr; } }

.connect__stage {
  position: sticky; top: 120px;
  height: 860px;
  display: flex; align-items: center; justify-content: center;
}
.connect__stage-inner {
  position: relative;
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at center, rgba(49,212,255,0.08), transparent 70%);
}

.ring {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border: 1px solid rgba(49,212,255,0.12);
  border-radius: 50%;
}
.ring--1 { width: 220px; height: 220px; }
.ring--2 { width: 420px; height: 420px; border-style: dashed; }
.ring--3 { width: 620px; height: 620px; }
.ring--4 { width: 820px; height: 820px; border-color: rgba(255,255,255,0.04); }

.ring-node {
  position: absolute; width: 52px; height: 52px; border-radius: 50%;
  background: #0a0d12; border: 1px solid var(--line-2);
  display: grid; place-items: center;
  color: var(--ink-dim);
  transition: all .6s cubic-bezier(.2,.8,.2,1);
}
.ring-node.active {
  background: linear-gradient(180deg, rgba(49,212,255,0.2), rgba(49,212,255,0.05));
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 30px rgba(49,212,255,0.35);
}
.ring-node.done {
  background: rgba(52,211,153,0.12); border-color: var(--green); color: var(--green);
}

.core {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 180px; height: 180px;
  display: flex; align-items: center; justify-content: center;
  filter: drop-shadow(0 0 40px rgba(49,212,255,0.45));
}
.core__ball { width: 100%; height: 100%; object-fit: contain; }

.ring-node__num {
  position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  color: var(--cyan); letter-spacing: 0.1em; white-space: nowrap;
}

.beam {
  position: absolute; top: 50%; left: 50%;
  width: 2px; height: 0; transform-origin: top center;
  background: linear-gradient(180deg, var(--cyan), transparent);
  opacity: 0; transition: opacity .4s, height .8s cubic-bezier(.4,0,.2,1);
}

.steps { display: flex; flex-direction: column; gap: 4px; }
.step {
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.015), transparent);
  transition: all .4s cubic-bezier(.2,.8,.2,1);
  position: relative;
  overflow: hidden;
}
.step.active {
  border-color: rgba(49,212,255,0.4);
  background: linear-gradient(180deg, rgba(49,212,255,0.06), transparent);
  box-shadow: 0 20px 40px rgba(49,212,255,0.08);
}
.step.done {
  border-color: rgba(52,211,153,0.2);
}
.step__head { display: flex; align-items: center; gap: 16px; }
.step__num {
  font-family: var(--mono); font-size: 11px; color: var(--ink-mute);
  width: 28px; flex-shrink: 0;
}
.step__dot {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid var(--line-2);
  display: grid; place-items: center;
  transition: all .3s;
}
.step.active .step__dot {
  border-color: var(--cyan);
  background: rgba(49,212,255,0.1);
}
.step.active .step__dot::after {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan);
  animation: pulse 1.2s ease-in-out infinite;
  box-shadow: 0 0 12px var(--cyan);
}
.step.done .step__dot {
  border-color: var(--green); background: var(--green);
}
.step.done .step__dot::after {
  content: ""; width: 10px; height: 6px; border-left: 2px solid #001a0b; border-bottom: 2px solid #001a0b;
  transform: rotate(-45deg) translate(1px, -1px);
}
@keyframes pulse { 50% { transform: scale(0.7); opacity: 0.5; } }
.step__title { font-size: 20px; font-weight: 500; letter-spacing: -0.01em; }
.step__body { margin-top: 10px; margin-left: 64px; color: var(--ink-dim); font-size: 14px; line-height: 1.55; max-height: 0; overflow: hidden; transition: max-height .5s; }
.step.active .step__body,
.step.done .step__body { max-height: 200px; }
.step__time {
  margin-left: auto; font-family: var(--mono); font-size: 11px;
  color: var(--ink-mute); letter-spacing: 0.05em;
}

.ai {
  background: radial-gradient(ellipse 100% 70% at 50% 0%, rgba(122,107,255,0.08), transparent 70%), #000;
  overflow: hidden;
}
.ai__head { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: end; margin-bottom: 72px; }
@media (max-width: 860px) { .ai__head { grid-template-columns: 1fr; } }

.ai__stage {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px;
  align-items: center;
}
@media (max-width: 960px) { .ai__stage { grid-template-columns: 1fr; } }

.ai-phone {
  position: relative;
  perspective: 1600px;
}
.ai-phone .phone {
  margin-inline: auto;
  transform: rotateY(-4deg) rotateX(2deg);
}

.ai-sheet {
  position: absolute; inset: 50px 0 0;
  background: radial-gradient(ellipse at top, #111722, #04060a 60%);
  overflow: hidden;
  color: #f6f7f9;
}
.ai-sheet__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px 8px;
  font-size: 13px; font-weight: 600;
}
.ai-sheet__header .ai-mark {
  display: inline-flex; align-items: center; gap: 8px;
}
.ai-sheet__header .ai-mark .orb {
  width: 18px; height: 18px; border-radius: 50%;
  background: conic-gradient(from 0deg, #31d4ff, #7a6bff, #c97bff, #31d4ff);
  filter: saturate(1.4);
  animation: rotate 8s linear infinite;
}
.ai-sheet__close {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  color: var(--ink-dim); font-size: 12px;
}
.ai-sheet__sparkle-wrap {
  display: flex; justify-content: center; padding: 14px 0 6px;
}
.ai-sheet__sparkle {
  width: 44px; height: 44px; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(245,165,36,0.4), rgba(245,165,36,0.08) 70%, transparent);
  display: grid; place-items: center;
  animation: breathe 3s ease-in-out infinite;
}
.ai-sheet__sparkle svg { width: 22px; height: 22px; color: var(--amber); filter: drop-shadow(0 0 8px rgba(245,165,36,0.7)); }
@keyframes breathe {
  0%,100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.12); filter: brightness(1.2); }
}
.ai-sheet__title { text-align: center; font-size: 14px; font-weight: 500; padding: 4px 16px 2px; }
.ai-sheet__subtitle { text-align: center; font-size: 11px; color: var(--ink-mute); padding: 0 16px 12px; }

.ai-prompt {
  margin: 0 12px;
  background: #0f141c; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 14px 14px 14px 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  font-size: 13px; color: #f0f0f0;
  min-height: 52px;
}
.ai-prompt__text { flex: 1; line-height: 1.4; }
.ai-prompt__send {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--cyan); color: #003648;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.ai-prompt__send svg { width: 14px; height: 14px; }

.ai-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px 6px;
}
.ai-badge {
  padding: 6px 12px; border-radius: 999px; background: #1b1f27;
  font-size: 11px; color: #f6f7f9;
  display: inline-flex; align-items: center; gap: 6px;
}
.ai-badge--linux::before { content: "🐧"; font-size: 10px; }
.ai-badge--model { color: var(--cyan-2); background: rgba(49,212,255,0.1); border: 1px solid rgba(49,212,255,0.2); }

.ai-card {
  margin: 8px 12px 0;
  background: #0d1218; border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  overflow: hidden;
}
.ai-card__top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ai-card__safe {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--green); font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
}
.ai-card__safe::before {
  content: "✓"; width: 14px; height: 14px; border-radius: 4px;
  background: var(--green); color: #001a0b;
  display: grid; place-items: center; font-size: 10px; font-weight: 900;
}
.ai-card__cmd {
  padding: 16px 14px 10px;
  font-family: var(--mono); font-size: 15px; color: #fff;
  display: flex; gap: 8px;
}
.ai-card__cmd .p { color: var(--cyan); }
.ai-card__hint {
  padding: 0 14px 12px;
  font-size: 11px; color: var(--ink-mute);
  display: flex; align-items: center; gap: 6px;
}
.ai-card__hint::before { content: "💡"; }
.ai-card__actions {
  display: flex; gap: 6px; padding: 10px 10px 12px;
}
.ai-btn {
  display: inline-flex; align-items: center; gap: 6px; justify-content: center;
  padding: 10px 12px; border-radius: 10px;
  background: #1a1f28; color: #fff; font-size: 12px; font-weight: 600;
}
.ai-btn--run { background: var(--cyan); color: #001c26; flex: 1.4; }
.ai-btn--paste { flex: 1.2; }
.ai-btn--icon { width: 38px; flex: 0 0 38px; }

.ai-info { display: flex; flex-direction: column; gap: 22px; min-width: 0; overflow: hidden; }
.ai-info__lead { font-family: var(--display); font-size: clamp(34px, 3.6vw, 54px); line-height: 1.05; letter-spacing: -0.02em; text-wrap: balance; }
.ai-info__lead em {
  font-style: italic;
  background: linear-gradient(100deg, #31d4ff, #c97bff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.qc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
  margin-top: 8px;
}
.qc {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  padding: 10px 10px;
  border-radius: 10px;
  display: flex; flex-direction: column; gap: 5px;
  transition: all .3s;
  cursor: pointer;
}
.qc:hover { border-color: var(--cyan); background: rgba(49,212,255,0.06); transform: translateY(-2px); }
.qc__icon { width: 28px; height: 28px; border-radius: 8px; background: rgba(49,212,255,0.12); color: var(--cyan); display: grid; place-items: center; }
.qc__icon svg { width: 14px; height: 14px; }
.qc__name { font-size: 13px; font-weight: 600; }
.qc__hint { font-family: var(--mono); font-size: 10px; color: var(--ink-mute); }

.ai-models { display: flex; flex-direction: column; gap: 6px; }
.ai-model {
  padding: 8px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 12px;
  display: flex; align-items: center; gap: 8px;
}
.ai-model b { font-weight: 600; }
.ai-model span { color: var(--ink-mute); font-family: var(--mono); font-size: 10px; }
.ai-model--ready { border-color: rgba(52,211,153,0.3); }
.ai-model--ready::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.ai-model--dl::before { content: "⤓"; color: var(--cyan); font-weight: 700; }

.lib {
  background: #000;
  position: relative;
  overflow: hidden;
}
.lib__categories {
  display: flex; gap: 10px; margin-top: 40px;
  overflow: hidden; position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.lib__categories-track {
  display: flex; gap: 10px;
  animation: slide 60s linear infinite;
}
.lib__cat {
  flex: 0 0 auto;
  padding: 10px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--line);
  font-size: 13px; display: inline-flex; align-items: center; gap: 10px;
  white-space: nowrap;
}
.lib__cat i { display: inline-block; width: 8px; height: 8px; border-radius: 3px; font-style: normal; }
.lib__cat b { font-family: var(--mono); font-size: 11px; color: var(--ink-mute); }

.lib__showcase {
  margin-top: 64px;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px;
  align-items: stretch;
}
@media (max-width: 960px) { .lib__showcase { grid-template-columns: 1fr; } }

.lib__phone-col { display: flex; justify-content: center; }

.lib-sheet { position: absolute; inset: 50px 0 0; overflow: hidden; background: #04060a; }
.lib-sheet__toolbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 14px 14px;
  font-size: 13px; font-weight: 600;
}
.lib-sheet__toolbar .small { font-size: 12px; color: var(--cyan); font-weight: 500; }
.lib-sheet__list { padding: 0 12px; display: flex; flex-direction: column; gap: 2px; height: calc(100% - 66px); overflow: hidden; }
.lib-sheet__row {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 10px;
  border-radius: 10px;
}
.lib-sheet__row:hover, .lib-sheet__row.highlight { background: rgba(255,255,255,0.03); }
.lib-sheet__row .ico {
  width: 22px; height: 22px; border-radius: 6px;
  display: grid; place-items: center;
  font-size: 12px;
}
.lib-sheet__row .name {
  flex: 1; font-size: 15px; font-weight: 600;
}
.lib-sheet__row .count {
  font-family: var(--mono); font-size: 12px; color: var(--ink-mute);
}
.lib-sheet__row .caret { color: var(--ink-mute); }
.lib-sheet__cmds-inline {
  margin: 0 4px 4px 4px;
  display: flex; flex-direction: column;
}
.lib-sheet__cmd-row {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.lib-sheet__cmd-row:last-child { border-bottom: none; }
.lib-sheet__cmd-row code {
  font-family: var(--mono); font-size: 11px;
  color: #facc15; flex: 0 0 auto; width: 80px;
}
.lib-sheet__cmd-row span:not(.lsc-add) {
  font-size: 11px; color: var(--ink-mute); flex: 1;
}
.lsc-add {
  font-size: 10px; color: var(--ink-mute);
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 20px;
}
.lib-sheet__search {
  position: absolute; left: 10px; right: 10px; bottom: 14px;
  background: #14181f; border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink-mute);
}

.lib__panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  border: 1px solid var(--line); border-radius: 28px;
  padding: 36px;
  display: flex; flex-direction: column; gap: 24px;
}
.lib__panel h3 { font-family: var(--display); font-size: clamp(30px, 3vw, 44px); line-height: 1.05; letter-spacing: -0.02em; }
.lib__panel p { color: var(--ink-dim); line-height: 1.55; font-size: 15px; }
.lib__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.lib__stats div {
  display: flex; flex-direction: column; gap: 4px;
}
.lib__stats b {
  font-family: var(--display); font-size: clamp(28px, 3vw, 38px); font-weight: 400;
}
.lib__stats span {
  font-family: var(--mono); font-size: 11px; color: var(--ink-mute); letter-spacing: 0.1em; text-transform: uppercase;
}

.mycmd {
  padding: 18px; border: 1px solid var(--line); border-radius: 18px;
  background: rgba(49,212,255,0.04);
  display: flex; flex-direction: column; gap: 12px;
}
.mycmd__head {
  display: flex; justify-content: space-between; align-items: center;
}
.mycmd__tag { font-family: var(--mono); font-size: 11px; color: var(--cyan); letter-spacing: 0.08em; text-transform: uppercase; }
.mycmd__code {
  font-family: var(--mono); font-size: 13px; color: #fff;
  background: #000; padding: 10px 14px; border-radius: 10px;
  display: flex; align-items: center; gap: 8px;
}
.mycmd__code .p { color: var(--cyan); }
.mycmd__ctl { display: flex; gap: 8px; }
.mycmd__ctl .b { padding: 7px 12px; border-radius: 8px; background: rgba(255,255,255,0.05); font-size: 11px; font-weight: 600; }
.mycmd__ctl .b--run { background: var(--cyan); color: #001c26; cursor: pointer; }
.mycmd__ctl .b--run.running { background: rgba(49,212,255,0.15); color: var(--cyan); }
.mycmd__output {
  font-family: var(--mono); font-size: 11px;
  background: rgba(0,0,0,0.35); border-radius: 8px;
  padding: 0; max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.mycmd__output.visible { max-height: 200px; padding: 10px 12px; }
.mycmd__output-line {
  opacity: 0; transform: translateY(4px);
  transition: opacity .25s ease, transform .25s ease;
  line-height: 1.7;
}
.mycmd__output-line.show { opacity: 1; transform: none; }
.mycmd__output-line.ok { color: var(--green); }
.mycmd__output-line.muted { color: var(--ink-mute); }
.mycmd__output-line.err { color: #ff6b6b; }

.apps {
  background: #000;
  position: relative;
  overflow: hidden;
}
.apps__head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 64px; }
@media (max-width: 860px) { .apps__head { grid-template-columns: 1fr; } }

.apps__filters { display: flex; gap: 8px; margin-top: 32px; flex-wrap: wrap; }
.apps__filter {
  padding: 10px 18px; border-radius: 999px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line);
  font-size: 13px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .25s;
}
.apps__filter.active {
  background: var(--cyan); color: #001c26; border-color: var(--cyan);
}
.apps__filter i { display: inline-block; width: 14px; height: 14px; font-style: normal; }

.apps__grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px;
  perspective: 2000px;
}
@media (max-width: 1100px) { .apps__grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px) { .apps__grid { grid-template-columns: repeat(3, 1fr); } }

.tile {
  aspect-ratio: 1;
  position: relative;
  background: #0a0c11;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), border-color .3s, background .3s;
  cursor: default;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
}
.tile.in {
  opacity: 1; transform: translateY(0) scale(1);
}
.tile:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--cyan);
  z-index: 2;
}
.tile:hover::before {
  opacity: 1;
}
.tile::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(49,212,255,0.12), transparent 60%);
  opacity: 0; transition: opacity .3s;
  pointer-events: none;
}
.tile__icon {
  width: 30px; height: 30px; border-radius: 8px;
  display: grid; place-items: center;
  font-size: 14px;
  background: rgba(49,212,255,0.12); color: var(--cyan);
  border: 1px solid rgba(49,212,255,0.2);
}
.tile__os {
  position: absolute; top: 12px; right: 12px;
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: grid; place-items: center;
  font-size: 9px; color: var(--ink-mute);
}
.tile__name { font-size: 12px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.2; text-wrap: balance; }
.tile__hint { font-family: var(--mono); font-size: 9.5px; color: var(--ink-mute); line-height: 1.3; margin-top: 4px; }

.tile--c1 .tile__icon { background: rgba(122,107,255,0.14); color: var(--indigo); border-color: rgba(122,107,255,0.3); }
.tile--c2 .tile__icon { background: rgba(52,211,153,0.14); color: var(--green); border-color: rgba(52,211,153,0.3); }
.tile--c3 .tile__icon { background: rgba(255,92,92,0.14); color: var(--red); border-color: rgba(255,92,92,0.3); }
.tile--c4 .tile__icon { background: rgba(245,165,36,0.14); color: var(--amber); border-color: rgba(245,165,36,0.3); }
.tile--c5 .tile__icon { background: rgba(201,123,255,0.14); color: var(--violet); border-color: rgba(201,123,255,0.3); }

.apps__split {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 40px;
  margin-top: 40px;
  align-items: start;
}
@media (max-width: 1100px) {
  .apps__split { grid-template-columns: 1fr; gap: 32px; }
}

.apps__tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 760px) { .apps__tiles-grid { grid-template-columns: repeat(2, 1fr); } }

.app-box {
  position: relative;
  padding: 18px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all .25s ease;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.app-box:hover {
  border-color: rgba(49,212,255,0.35);
  background: linear-gradient(180deg, rgba(49,212,255,0.05), rgba(49,212,255,0.01));
  transform: translateY(-2px);
}
.app-box.active {
  border-color: var(--cyan);
  background: linear-gradient(180deg, rgba(49,212,255,0.1), rgba(49,212,255,0.02));
  box-shadow: 0 0 0 1px var(--cyan), 0 8px 28px -8px rgba(49,212,255,0.3);
}
.app-box.hidden { display: none; }
.app-box__ico {
  width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center;
}
.app-box__ico svg { width: 20px; height: 20px; }
.app-box__name { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.app-box__hint { font-size: 11.5px; color: var(--ink-mute); margin-top: -4px; }
.app-box__os {
  position: absolute; top: 10px; right: 10px;
  width: 22px; height: 22px; border-radius: 6px;
  background: rgba(0,0,0,0.35);
  display: grid; place-items: center;
  font-size: 11px;
}

.apps__showcase {
  position: sticky; top: 100px;
  display: flex; flex-direction: column; gap: 16px;
}

.apps__slider {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-2);
}
.apps__slider-btn {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--line); background: transparent;
  color: var(--ink); cursor: pointer;
  display: grid; place-items: center;
  transition: all .2s;
}
.apps__slider-btn:hover { background: var(--cyan); color: #001c26; border-color: var(--cyan); }
.apps__slider-btn svg { width: 14px; height: 14px; }
.apps__dots { flex: 1; display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; }
.apps__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  cursor: pointer; transition: all .2s;
}
.apps__dot:hover { background: rgba(49,212,255,0.5); }
.apps__dot.active { background: var(--cyan); width: 24px; border-radius: 4px; }
.apps__counter {
  text-align: center; font-family: var(--mono); font-size: 11px;
  color: var(--ink-mute); letter-spacing: .1em;
}
.apps__counter span:first-child { color: var(--cyan); font-weight: 700; }

.apps__sidebar {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--bg-2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 600px;
}

.apps__sidebar-head {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-1);
}

.apps__filter-tabs {
  display: flex;
  gap: 0;
  flex-direction: column;
}

.apps__filter-tab {
  padding: 10px 12px;
  font-family: var(--mono);
  font-size: 11px;
  text-align: left;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink-mute);
  cursor: pointer;
  transition: all .2s;
}

.apps__filter-tab:last-child { border-bottom: none; }

.apps__filter-tab:hover {
  background: rgba(49, 212, 255, 0.08);
  color: var(--cyan);
}

.apps__filter-tab.active {
  background: rgba(49, 212, 255, 0.12);
  color: var(--cyan);
  font-weight: 600;
}

.apps__tiles-list {
  flex: 1;
  overflow-y: auto;
  padding: 8px;
}

.apps__tile {
  padding: 12px;
  margin-bottom: 4px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.02);
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all .2s;
}

.apps__tile:hover {
  background: rgba(49, 212, 255, 0.08);
  border-color: rgba(49, 212, 255, 0.3);
}

.apps__tile.active {
  background: rgba(49, 212, 255, 0.12);
  border-color: var(--cyan);
}

.apps__tile-ico {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.apps__tile-text {
  flex: 1;
  min-width: 0;
}

.apps__tile-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.apps__tile-hint {
  font-size: 11px;
  color: var(--ink-mute);
  margin-top: 2px;
}

.apps__viewer {
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 30%, rgba(49,212,255,0.08), transparent 60%), var(--bg-2);
  height: 640px;
  position: relative;
}

.apps__screen {
  display: none !important;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.apps__screen.active {
  display: flex !important;
  animation: screenFade .4s ease;
}

@keyframes screenFade {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

.apps__screen img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
}

.kbd-sec {
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(49,212,255,0.06), transparent 70%),
    #000;
}
.kbd-sec__stage {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px;
  align-items: center;
}
@media (max-width: 1000px) { .kbd-sec__stage { grid-template-columns: 1fr; } }

.kbdbox {
  background: #07090c;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.kbdbox__tabs {
  display: flex; gap: 4px;
  background: #0e1117; border: 1px solid var(--line); border-radius: 14px;
  padding: 4px;
  margin-bottom: 20px;
  font-size: 12px;
}
.kbdbox__tab {
  flex: 1; padding: 10px 8px; border-radius: 10px;
  color: var(--ink-dim);
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-weight: 500;
  transition: all .25s;
}
.kbdbox__tab.active {
  background: rgba(49,212,255,0.12);
  color: var(--cyan);
  box-shadow: inset 0 0 0 1px rgba(49,212,255,0.2);
}
.kbdbox__tab small { font-family: var(--mono); font-size: 10px; color: var(--ink-mute); }
.kbdbox__tab.active small { color: var(--cyan); }

.kbdbox__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); gap: 8px;
}
.kkey {
  aspect-ratio: 1.6;
  border-radius: 12px;
  background: #11151c;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 4px;
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  position: relative;
  transition: all .15s;
  cursor: pointer;
}
.kkey:hover, .kkey.press {
  background: #1a1f28;
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.15);
}
.kkey small {
  font-family: var(--sans); font-size: 9px; font-weight: 500;
  color: var(--ink-mute); margin-top: 2px;
}
.kkey--caution { color: var(--amber); }
.kkey--caution small { color: rgba(245,165,36,0.6); }
.kkey--accent { color: var(--cyan); }
.kkey--accent small { color: rgba(49,212,255,0.6); }
.kkey--danger { color: var(--red); background: rgba(255,92,92,0.08); border-color: rgba(255,92,92,0.22); }
.kkey--wide { grid-column: span 5; aspect-ratio: unset; height: 40px; flex-direction: row; gap: 10px; font-size: 13px; }
.kkey--tall { grid-column: span 5; aspect-ratio: unset; height: 56px; flex-direction: row; gap: 10px; font-size: 14px; background: rgba(255,92,92,0.1); border-color: rgba(255,92,92,0.35); color: var(--red); }

.kbdbox__preview {
  margin-top: 20px;
  background: #000; border: 1px solid var(--line); border-radius: 14px;
  padding: 14px 16px;
  font-family: var(--mono); font-size: 13px;
  min-height: 80px;
  display: flex; flex-direction: column; gap: 4px;
}
.kbdbox__preview .line { color: var(--ink-dim); }
.kbdbox__preview .live {
  color: var(--green);
  display: flex; align-items: center;
}
.kbdbox__preview .live::before { content: "$"; color: var(--cyan); margin-right: 8px; }
.kbdbox__preview .cursor { display: inline-block; width: 8px; height: 14px; background: var(--cyan); margin-left: 2px; animation: blink 1s steps(2) infinite; vertical-align: text-bottom; }

.kbd-info h3 { font-family: var(--display); font-size: clamp(36px, 4.2vw, 64px); line-height: 1.05; letter-spacing: -0.02em; }
.kbd-info p { color: var(--ink-dim); line-height: 1.6; font-size: 16px; margin-top: 20px; }
.kbd-feats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  margin-top: 36px;
}
.kbd-feat {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
}
.kbd-feat b { display: block; font-size: 14px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 6px; }
.kbd-feat span { font-size: 13px; color: var(--ink-dim); line-height: 1.5; }
.kbd-feat .sym {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(49,212,255,0.1); color: var(--cyan);
  font-family: var(--mono); font-size: 13px; font-weight: 700;
  margin-bottom: 10px;
}

.hosts {
  background: #000;
}
.hosts__stage {
  display: grid; grid-template-columns: 1fr 0.9fr; gap: 60px;
  align-items: center;
}
@media (max-width: 960px) { .hosts__stage { grid-template-columns: 1fr; } }

.host-cards { display: flex; flex-direction: column; gap: 14px; }
.host-cat {
  display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-dim);
  padding: 0 4px;
  margin-top: 8px;
}
.host-cat__ico { width: 20px; height: 20px; border-radius: 6px; display: grid; place-items: center; font-size: 11px; }

.host-card {
  position: relative;
  padding: 18px;
  background: #0b0e13; border: 1px solid var(--line); border-radius: 18px;
  display: grid; grid-template-columns: 44px 1fr auto; gap: 14px;
  align-items: center;
  transition: all .25s;
  cursor: default;
}
.host-card:hover { border-color: rgba(49,212,255,0.35); transform: translateX(4px); }
.host-card__ico {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
}
.host-card__name { font-size: 16px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.host-card__name .star { color: var(--yellow); font-size: 13px; }
.host-card__meta { font-family: var(--mono); font-size: 12px; color: var(--ink-mute); margin-top: 2px; }
.host-card__tags { display: flex; gap: 4px; margin-top: 6px; }
.host-card__tags span {
  padding: 2px 8px; border-radius: 6px;
  font-size: 10px; color: var(--ink-dim);
  background: rgba(255,255,255,0.05);
}
.host-card__status { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.host-card__status .d { width: 8px; height: 8px; border-radius: 50%; background: var(--ink-mute); }
.host-card__status .d.on { background: var(--green); box-shadow: 0 0 10px var(--green); animation: pulse 1.5s infinite; }
.host-card__status .port { font-family: var(--mono); font-size: 11px; color: var(--ink-mute); }

.hosts__tooling { display: flex; flex-direction: column; gap: 24px; }
.hosts__feat {
  padding: 24px; border: 1px solid var(--line); border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
}
.hosts__feat h4 { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 8px; }
.hosts__feat p { color: var(--ink-dim); font-size: 14px; line-height: 1.55; }

.swipe-demo {
  position: relative;
  margin: 16px 0 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
}
.swipe-card {
  background: #0b0e13;
  padding: 18px;
  display: grid; grid-template-columns: 36px 1fr auto; gap: 12px; align-items: center;
  transform: translateX(-84px);
  animation: swipe 4s ease-in-out infinite;
}
@keyframes swipe {
  0%, 20%, 80%, 100% { transform: translateX(0); }
  40%, 60% { transform: translateX(-148px); }
}
.swipe-card__ico { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,92,92,0.2); color: var(--red); display: grid; place-items: center; }
.swipe-card__name { font-size: 14px; font-weight: 600; }
.swipe-card__meta { font-family: var(--mono); font-size: 11px; color: var(--ink-mute); }
.swipe-actions {
  position: absolute; top: 0; right: 0; bottom: 0;
  display: flex; align-items: stretch;
}
.swipe-actions span {
  width: 74px;
  display: grid; place-items: center;
  font-size: 12px; color: #fff; font-weight: 600;
}
.swipe-actions .fav { background: var(--yellow); color: #000; }
.swipe-actions .del { background: var(--red); }

.vault {
  background:
    radial-gradient(circle at 20% 20%, rgba(52,211,153,0.06), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(49,212,255,0.06), transparent 50%),
    #000;
}
.vault__stage {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px;
  align-items: center;
}
@media (max-width: 960px) { .vault__stage { grid-template-columns: 1fr; } }

.vault-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
}
.vault-card__top {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.vault-lock {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(52,211,153,0.15); color: var(--green);
  display: grid; place-items: center;
  font-size: 20px;
  position: relative;
}
.vault-lock::before {
  content: ""; position: absolute; inset: -4px;
  border-radius: 14px;
  background: rgba(52,211,153,0.15);
  filter: blur(10px);
  z-index: -1;
}
.vault-card__title { font-size: 16px; font-weight: 600; }
.vault-card__sub { font-size: 12px; color: var(--ink-mute); margin-top: 2px; }
.vault-card__lock-btn {
  margin-left: auto;
  padding: 8px 16px; background: var(--red); color: #fff; border-radius: 999px;
  font-size: 12px; font-weight: 600;
}

.key-row {
  display: grid; grid-template-columns: 36px 1fr auto; gap: 12px;
  align-items: center; padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.key-row:last-child { border-bottom: 0; }
.key-row__ico { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; }
.key-row__name { font-size: 14px; font-weight: 600; }
.key-row__meta { font-family: var(--mono); font-size: 10px; color: var(--ink-mute); margin-top: 2px; letter-spacing: 0.05em; }
.key-row__faceid { font-family: var(--mono); font-size: 10px; color: var(--cyan); background: rgba(49,212,255,0.1); padding: 3px 8px; border-radius: 6px; letter-spacing: 0.08em; }

.vault-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
.vault-action {
  padding: 14px; border: 1px solid var(--line); border-radius: 12px;
  background: rgba(255,255,255,0.02);
  text-align: center;
  font-size: 12px; font-weight: 600;
  display: flex; flex-direction: column; gap: 6px; align-items: center;
  color: var(--cyan);
}
.vault-action .i { width: 18px; height: 18px; }

.sec-feats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 28px; }
.sec-feat {
  padding: 22px; background: rgba(255,255,255,0.02);
  border: 1px solid var(--line); border-radius: 18px;
  transition: all .25s;
}
.sec-feat:hover { border-color: rgba(52,211,153,0.35); background: rgba(52,211,153,0.04); }
.sec-feat__ico {
  width: 32px; height: 32px; border-radius: 9px;
  background: rgba(52,211,153,0.12); color: var(--green);
  display: grid; place-items: center; font-size: 14px;
  margin-bottom: 14px;
}
.sec-feat b { display: block; font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.sec-feat p { font-size: 13px; color: var(--ink-dim); line-height: 1.5; }

.transfers {
  background: #000;
  overflow: hidden;
}
.transfers__stage {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px;
  align-items: start;
}
@media (max-width: 960px) { .transfers__stage { grid-template-columns: 1fr; } }

.transfer-list {
  display: flex; flex-direction: column; gap: 10px;
}
.transfer {
  padding: 18px;
  background: #0b0e13; border: 1px solid var(--line); border-radius: 14px;
  position: relative;
}
.transfer__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.transfer__name { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14px; }
.transfer__name .arrow {
  width: 22px; height: 22px; border-radius: 7px;
  display: grid; place-items: center;
  font-size: 11px;
}
.transfer__name .up { background: rgba(245,165,36,0.18); color: var(--amber); }
.transfer__name .dn { background: rgba(49,212,255,0.18); color: var(--cyan); }
.transfer__state { font-family: var(--mono); font-size: 11px; color: var(--green); letter-spacing: 0.08em; text-transform: uppercase; }
.transfer__state--live { color: var(--cyan); }
.transfer__state--live::before { content: "●"; margin-right: 4px; animation: blink 1s steps(2) infinite; }

.transfer__bar { height: 4px; background: rgba(255,255,255,0.06); border-radius: 99px; overflow: hidden; }
.transfer__bar .fill { height: 100%; background: linear-gradient(90deg, var(--cyan), var(--cyan-2)); transition: width 1.2s ease; }
.transfer__bar .fill--done { background: var(--green); }
.transfer__meta { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 10px; color: var(--ink-mute); margin-top: 8px; }

.widget {
  background: linear-gradient(160deg, #141922, #0a0d12);
  border: 1px solid var(--line-2);
  border-radius: 24px;
  padding: 22px;
  display: flex; flex-direction: column; gap: 22px;
  box-shadow: 0 40px 60px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
}
.widget::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(8,250,215,0.12), transparent 60%),
              radial-gradient(circle at bottom left, rgba(168,85,247,0.1), transparent 55%);
  pointer-events: none;
}
.widget__top { display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 1; }
.widget__title { font-size: 11px; font-family: var(--mono); color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.1em; }
.widget__hosts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  position: relative;
  z-index: 1;
}
.widget-tile {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 14px;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 11px;
  min-height: 88px;
  justify-content: space-between;
}
.widget-tile .ico { width: 28px; height: 28px; border-radius: 8px; font-size: 13px; }
.widget-tile b { font-weight: 600; font-size: 12.5px; }
.widget-tile .dot { width: 6px; height: 6px; border-radius: 50%; }

.dynamic-island {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 22px;
  background: #000; color: #fff;
  border-radius: 999px;
  font-size: 13px;
  max-width: fit-content;
  margin-top: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 40px rgba(49,212,255,0.15);
}
.dynamic-island__pill {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(49,212,255,0.2);
  display: grid; place-items: center;
  color: var(--cyan);
  font-size: 12px;
}
.dynamic-island__bar {
  width: 80px; height: 3px; background: rgba(255,255,255,0.1); border-radius: 99px; overflow: hidden;
}
.dynamic-island__bar span {
  display: block; width: 65%; height: 100%; background: var(--cyan); border-radius: inherit;
  animation: swell 2s ease-in-out infinite alternate;
}
@keyframes swell { from { width: 35%; } to { width: 80%; } }
.dynamic-island__meta {
  display: flex; flex-direction: column; font-family: var(--mono); font-size: 10px; color: var(--ink-dim);
}
.dynamic-island__meta b { color: #fff; font-size: 12px; font-weight: 500; }

.themes {
  background: #000;
  overflow: hidden;
}
.themes__picker {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.themes__chip {
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  font-size: 12px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .25s;
}
.themes__chip.active {
  background: var(--ink); color: #000; border-color: var(--ink);
}
.themes__chip-swatch { width: 10px; height: 10px; border-radius: 3px; border: 1px solid rgba(255,255,255,0.1); }

.themes__stage {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: center;
}
@media (max-width: 900px) { .themes__stage { grid-template-columns: 1fr; } }

.term-window {
  background: var(--tbg, #1a1b26);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  transition: background .6s ease;
}
.term-window__chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.term-window__chrome .dot { width: 12px; height: 12px; border-radius: 50%; }
.term-window__chrome .r { background: #ff5f57; }
.term-window__chrome .y { background: #febc2e; }
.term-window__chrome .g { background: #28c840; }
.term-window__chrome .title {
  position: absolute; left: 50%; transform: translateX(-50%);
  font-family: var(--mono); font-size: 12px; color: rgba(255,255,255,0.5);
}
.term-window__body {
  padding: 22px; font-family: var(--mono); font-size: 13px; line-height: 1.65;
  min-height: 360px;
  color: var(--tfg, #a9b1d6);
  transition: color .6s ease;
}
.term-window__body .p { color: var(--tp, #7aa2f7); }
.term-window__body .u { color: var(--tu, #bb9af7); }
.term-window__body .e { color: var(--te, #f7768e); }
.term-window__body .o { color: var(--to, #9ece6a); }
.term-window__body .c { color: var(--tc, #565f89); }
.term-window__body .cursor { display: inline-block; width: 8px; height: 14px; background: var(--tcur, #7aa2f7); vertical-align: text-bottom; animation: blink 1s steps(2) infinite; margin-left: 2px; }

.themes__list {
  display: flex; flex-direction: column; gap: 4px;
  max-height: 400px; overflow: hidden;
}
.themes-tile {
  display: grid; grid-template-columns: 80px 1fr auto; gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s;
}
.themes-tile:hover { background: rgba(255,255,255,0.05); }
.themes-tile.active { border-color: var(--cyan); background: rgba(49,212,255,0.05); }
.themes-tile__swatch {
  display: flex; gap: 3px; padding: 4px;
  border-radius: 6px; background: var(--sb, #1a1b26);
  border: 1px solid rgba(255,255,255,0.06);
}
.themes-tile__swatch span { flex: 1; height: 24px; border-radius: 3px; }
.themes-tile__name { font-size: 14px; font-weight: 600; }
.themes-tile__author { font-size: 11px; color: var(--ink-mute); font-family: var(--mono); margin-top: 2px; }
.themes-tile__check {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid var(--line-2);
  display: grid; place-items: center;
  color: transparent;
}
.themes-tile.active .themes-tile__check {
  background: var(--cyan); border-color: var(--cyan); color: #001c26;
}

.matrix {
  background: #000;
}
.matrix__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: var(--line);
}
@media (max-width: 900px) { .matrix__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .matrix__grid { grid-template-columns: 1fr; } }

.matrix__item {
  background: #000;
  padding: 32px;
  position: relative;
  transition: background .25s;
}
.matrix__item:hover { background: #0a0d12; }
.matrix__ico {
  width: 32px; height: 32px; border-radius: 9px;
  background: rgba(49,212,255,0.1); color: var(--cyan);
  display: grid; place-items: center;
  font-size: 14px;
  margin-bottom: 22px;
}
.matrix__item h4 { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 8px; }
.matrix__item p { font-size: 14px; color: var(--ink-dim); line-height: 1.55; }
.matrix__item ul {
  list-style: none; margin-top: 14px;
  display: flex; flex-wrap: wrap; gap: 4px;
}
.matrix__item ul li {
  font-family: var(--mono); font-size: 10px;
  padding: 3px 7px; border-radius: 5px;
  background: rgba(255,255,255,0.04);
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

.langs {
  background:
    radial-gradient(circle at 80% 20%, rgba(168,85,247,0.06), transparent 55%),
    radial-gradient(circle at 15% 85%, rgba(8,250,215,0.05), transparent 55%),
    #000;
  position: relative;
}
.langs__grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--line);
}
@media (max-width: 1100px) { .langs__grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 700px)  { .langs__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 460px)  { .langs__grid { grid-template-columns: repeat(2, 1fr); } }

.lang {
  background: #0a0d12;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background .25s, transform .25s;
  position: relative;
  min-height: 96px;
}
.lang:hover {
  background: #0f1420;
}
.lang::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid transparent;
  transition: border-color .25s;
  pointer-events: none;
}
.lang:hover::before { border-top-color: currentColor; opacity: 0.5; }
.lang__name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.lang__hello {
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: 0;
  color: var(--ink-dim);
  line-height: 1.3;
}
.lang:nth-child(3n+1) .lang__hello { color: #08fad7; }
.lang:nth-child(3n+2) .lang__hello { color: #3b8fff; }
.lang:nth-child(3n)   .lang__hello { color: #a855f7; }
.lang[data-rtl] .lang__hello,
.lang .lang__hello[dir="rtl"] { direction: rtl; text-align: left; unicode-bidi: plaintext; }

.pricing {
  background:
    radial-gradient(circle at 50% 0%, rgba(49,212,255,0.08), transparent 60%),
    #000;
  position: relative;
}
.pricing__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-top: 48px;
}
@media (max-width: 960px) { .pricing__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .pricing__grid { grid-template-columns: 1fr; } }

.plan {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.plan:hover { border-color: var(--line-2); transform: translateY(-4px); }
.plan--featured {
  border-color: rgba(49,212,255,0.4);
  background:
    linear-gradient(180deg, rgba(49,212,255,0.08), transparent 50%),
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  box-shadow: 0 30px 60px rgba(49,212,255,0.12);
}
.plan__badge {
  position: absolute; top: 14px; right: 14px;
  padding: 4px 10px; border-radius: 999px;
  background: var(--cyan); color: #001c26;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.plan__name {
  font-size: 13px; font-weight: 600; color: var(--ink-dim);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.plan__price {
  font-family: var(--display);
  font-size: clamp(44px, 4vw, 60px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.plan__price span { font-size: 14px; color: var(--ink-mute); font-family: var(--sans); font-weight: 400; letter-spacing: 0; }
.plan__note { font-size: 12px; color: var(--ink-mute); }
.plan__cta {
  padding: 14px; border-radius: 12px;
  background: rgba(255,255,255,0.05);
  text-align: center; font-weight: 600; font-size: 14px;
  transition: all .2s;
}
.plan--featured .plan__cta { background: var(--cyan); color: #001c26; }
.plan__cta:hover { background: rgba(255,255,255,0.1); }
.plan--featured .plan__cta:hover { background: var(--cyan-2); }
.plan__list { font-size: 13px; color: var(--ink-dim); line-height: 1.8; padding-top: 12px; border-top: 1px solid var(--line); }
.plan__list li { list-style: none; display: flex; align-items: baseline; gap: 10px; }
.plan__list li::before { content: "→"; color: var(--cyan); font-size: 11px; }

.final {
  background: #000;
  padding: clamp(120px, 16vw, 220px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final__orb {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(49,212,255,0.15), transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}
.final h2 {
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 104px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  position: relative;
}
.final h2 em {
  font-style: normal;
  font-weight: 700;
  background: var(--grad-logo);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.final p {
  max-width: 50ch; margin: 28px auto 0; font-size: 18px; color: var(--ink-dim);
  position: relative;
}
.final__ctas { margin-top: 48px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

.foot {
  padding: 48px 0 64px;
  border-top: 1px solid var(--line);
  font-size: 13px; color: var(--ink-mute);
}
.foot__top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; align-items: center; }
.foot__brand { display: flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 600; }
.foot__links { display: flex; gap: 24px; }
.foot__legal { margin-top: 24px; font-size: 11px; font-family: var(--mono); color: var(--ink-mute); letter-spacing: 0.06em; }

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--d, 0ms);
}
[data-reveal].in { opacity: 1; transform: none; }

.letters { display: inline-block; }
.letters .c {
  display: inline-block;
  opacity: 0;
  transform: translateY(40%) rotate(6deg);
  transition: opacity .6s cubic-bezier(.2,.8,.2,1), transform .6s cubic-bezier(.2,.8,.2,1);
}
.letters.in .c { opacity: 1; transform: none; }

.phone--hero .phone__screen {
  background: #000;
  overflow: hidden;
}

.phone__content--tabs {
  position: absolute;
  inset: 54px 0 58px 0;         
  padding: 0;
  display: block;
  overflow: hidden;
}

.pv {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
}
.pv.active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.pv-termhead {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  padding: 10px 18px 6px;
  gap: 8px;
}
.pv-termhead__ico {
  width: 36px; height: 36px; border-radius: 10px;
  background: transparent;
  display: grid; place-items: center;
  color: var(--cyan);
  box-shadow: none;
}
.pv-termhead__ico svg { width: 28px; height: 28px; }
.pv-termhead__title { text-align: center; font-size: 17px; font-weight: 600; color: #fff; }

.pv-tabs {
  padding: 6px 16px 8px;
  display: flex; gap: 6px;
}
.pv-tab {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px 5px 8px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-dim);
}
.pv-tab--active { background: rgba(8,250,215,0.1); color: var(--teal); }
.pv-tab .d { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.pv-tab .x { opacity: .5; margin-left: 2px; }

.pv-term-body {
  flex: 1;
  padding: 10px 18px 8px;
  font-family: var(--mono);
  font-size: 10.5px;
  line-height: 1.5;
  color: #e0e7ff;
  overflow: hidden;
  min-height: 0;
}
.pv-term-body .ascii { color: var(--teal); font-size: 6.5px; line-height: 1.2; white-space: pre; margin-bottom: 8px; }
.pv-term-body .tagline { color: var(--teal-2); font-size: 10px; margin-bottom: 8px; }
.pv-term-body .sep { height: 1px; background: rgba(255,255,255,0.06); margin: 6px 0; }
.pv-term-body .key { color: #fff; font-weight: 600; }
.pv-term-body .val-blue { color: var(--cyan-2); }
.pv-term-body .val-purple { color: var(--purple); }
.pv-term-body .val-green { color: var(--green); }
.pv-term-body .banner { color: var(--teal); font-weight: 600; margin: 6px 0; }
.pv-term-body .prompt { color: var(--teal); }
.pv-term-body .host { color: var(--teal-2); }
.pv-term-body .cmd { color: #fff; }
.pv-term-body .out { color: var(--cyan-2); }
.pv-term-body .out-green { color: var(--green); }
.pv-term-body .out-purple { color: var(--purple); }
.pv-term-body .cursor {
  display: inline-block; width: 6px; height: 11px;
  background: var(--teal); vertical-align: -2px;
  margin-left: 2px;
  animation: bcaret 1s steps(2) infinite;
}
@keyframes bcaret { 50% { opacity: 0; } }

.pv-keybar {
  display: flex; align-items: center; gap: 4px; padding: 5px 8px;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.pv-keybar .k {
  flex: 1;
  min-width: 0;
  height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  font-family: var(--mono); font-size: 10.5px;
  color: var(--ink-dim);
  white-space: nowrap; overflow: hidden;
}
.pv-keybar .k--ico {
  flex: 0 0 34px;
  background: rgba(49,212,255,0.08);
  border: 1px solid rgba(49,212,255,0.2);
}
.pv-keybar .k--ico svg { display: block; }
.pv-keybar .k--thin { flex: 0 0 18px; color: var(--ink-mute); }
.pv-keybar .k--danger { color: var(--red); }
.pv-keybar .k--sparkle {
  flex: 0 0 32px;
  background: rgba(245,165,36,0.15);
  color: var(--amber);
}

.pv--ai { padding: 0; background: #000; }
.pv--ai .ai-sheet {
  position: absolute; inset: 0;
  background: #0a0d14;
  padding: 0;
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.ai-sheet__grip {
  width: 36px; height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  margin: 6px auto 2px;
  flex-shrink: 0;
}
.ai-sheet__header {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 10px;
  padding: 6px 16px 6px;
  align-items: center;
  flex-shrink: 0;
}
.ai-sheet__close {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  font-size: 11px; color: var(--ink-dim);
}
.ai-sheet__close--amber { background: rgba(245,165,36,0.15); color: var(--amber); }
.ai-sheet__title-row {
  display: inline-flex; align-items: center; gap: 8px;
  justify-self: center;
  font-size: 15px; font-weight: 600;
  color: #fff;
}
.ai-sheet__logo { width: 22px; height: 22px; border-radius: 6px; }
.ai-sheet__header-actions { display: flex; gap: 6px; }

.ai-sparkle-wrap {
  display: flex; justify-content: center;
  margin: 6px 0 8px;
}
.ai-sparkle {
  width: 44px; height: 44px;
  background: radial-gradient(circle, rgba(245,165,36,0.25), transparent 70%);
  display: grid; place-items: center;
  color: var(--amber);
  font-size: 26px;
  filter: drop-shadow(0 0 8px var(--amber));
}

.ai-body-title { text-align: center; font-size: 13px; color: #fff; margin-bottom: 2px; }
.ai-body-sub { text-align: center; font-size: 11px; color: var(--ink-mute); margin-bottom: 8px; }

.pv--ai .ai-prompt {
  margin: 0 16px;
  display: grid; grid-template-columns: 1fr 36px; gap: 8px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.05);
  border-radius: 14px;
  align-items: center;
}
.ai-prompt__text { font-size: 12.5px; color: #fff; line-height: 1.4; }
.ai-prompt__send {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--cyan);
  display: grid; place-items: center;
  color: #000;
  border: 0;
}
.ai-prompt__send svg { width: 14px; height: 14px; color: #000; }

.pv--ai .ai-row {
  display: flex; justify-content: space-between;
  margin: 6px 16px 0;
}
.pv--ai .ai-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  font-size: 10.5px;
  color: #fff;
}
.pv--ai .ai-badge--ghost {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.ai-badge__flag, .ai-badge__apple { font-size: 10px; }
.ai-badge__caret { color: var(--ink-mute); font-size: 9px; margin-left: 2px; }

.pv--ai .ai-card {
  margin: 8px 16px 0;
  background: #12151d;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 14px;
}
.ai-card__top {
  display: flex; justify-content: space-between;
  margin-bottom: 10px;
}
.ai-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 8px; border-radius: 8px;
  font-family: var(--mono);
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.08em;
}
.ai-chip--safe { background: rgba(52,211,153,0.15); color: var(--green); }
.ai-chip--caution { background: rgba(245,165,36,0.15); color: var(--amber); }
.ai-chip--danger { background: rgba(255,92,92,0.15); color: var(--red); }
.ai-chip--os { background: rgba(255,255,255,0.06); color: #fff; }
.ai-chip__ico {
  display: grid; place-items: center;
  width: 12px; height: 12px; border-radius: 3px;
  background: currentColor;
}
.ai-chip--safe .ai-chip__ico { color: var(--green); }
.ai-chip--safe .ai-chip__ico::before { content: "✓"; color: #000; font-size: 9px; font-weight: 900; }
.ai-chip--caution .ai-chip__ico { color: var(--amber); }
.ai-chip--caution .ai-chip__ico::before { content: "!"; color: #000; font-size: 9px; font-weight: 900; }
.ai-chip--danger .ai-chip__ico { color: var(--red); }
.ai-chip--danger .ai-chip__ico::before { content: "✕"; color: #fff; font-size: 9px; font-weight: 900; }

.ai-card__cmd {
  display: flex; gap: 8px; align-items: baseline;
  font-family: var(--mono); font-size: 14px;
  color: #fff;
  margin-bottom: 8px;
}
.ai-card__cmd .p { color: var(--cyan); }
.ai-card__hint {
  font-size: 10.5px; color: var(--ink-mute);
  margin-bottom: 12px;
  line-height: 1.4;
}
.ai-card__actions {
  display: flex; gap: 6px;
}
.pv--ai .ai-btn {
  border: 0;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 4px;
}
.pv--ai .ai-btn--run {
  flex: 1;
  background: var(--cyan);
  color: #001c26;
  justify-content: center;
}
.pv--ai .ai-btn--icon {
  width: 34px; padding: 8px 0;
  justify-content: center;
}

.pv--lib { padding: 0; background: #000; overflow: hidden; }
.pv--lib .lib-sheet {
  position: absolute; inset: 0;
  background: #0a0d14;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.lib-sheet__toolbar {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 14px 14px 10px;
  gap: 10px;
}
.lib-sheet__btn {
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 0;
  font-size: 11px; color: var(--cyan);
  font-weight: 500;
}
.lib-sheet__btn--primary { color: var(--cyan); font-weight: 600; }
.lib-sheet__title { font-size: 15px; font-weight: 700; color: #fff; text-align: center; }

.lib-sheet__section {
  margin: 0 14px;
  border-radius: 10px;
  overflow: hidden;
}
.lib-sheet__section-head {
  display: grid;
  grid-template-columns: 24px 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 12px 4px;
  font-size: 14px; font-weight: 600;
  cursor: pointer;
}
.lib-sheet__section-head .ico { font-size: 15px; }
.lib-sheet__section-head .count { font-family: var(--mono); font-size: 11px; color: var(--ink-mute); }
.lib-sheet__section-head .caret { color: var(--ink-mute); font-size: 11px; transition: transform .2s; }
.lib-sheet__section--collapsed .caret { transform: rotate(-90deg); }

.lib-sheet__cmds {
  display: flex; flex-direction: column;
}
.lib-cmd {
  display: grid;
  grid-template-columns: 90px 1fr 26px;
  align-items: center;
  padding: 10px 4px;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 11px;
  gap: 10px;
  cursor: pointer;
  transition: background .15s;
}
.lib-cmd:hover { background: rgba(8,250,215,0.04); }
.lib-cmd--demo { background: rgba(49,212,255,0.12); outline: 1px solid rgba(49,212,255,0.4); transition: background .2s, outline .2s; }
.lib-cmd code {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--cyan);
}
.lib-cmd span { color: var(--ink-dim); font-size: 10.5px; line-height: 1.3; }
.lib-cmd__add {
  width: 22px; height: 22px; border-radius: 6px;
  background: rgba(8,250,215,0.1); color: var(--teal);
  border: 0;
  font-size: 12px;
  transition: all .2s;
}
.lib-cmd:hover .lib-cmd__add {
  background: var(--teal); color: #000;
}

.lib-sheet__search {
  margin-top: auto;
  margin: auto 14px 16px;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  font-size: 12px; color: var(--ink-mute);
  font-family: var(--mono);
}

.pv-tabbar {
  position: absolute;
  left: 10px; right: 10px; bottom: 12px;
  height: 58px;
  padding: 6px 4px;
  background: rgba(20,22,30,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.06);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 2px;
  z-index: 5;
}
.pv-tabbar__item {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 6px 2px;
  border: 0; background: transparent;
  color: var(--ink-mute);
  font-size: 9.5px; font-weight: 500;
  border-radius: 12px;
  cursor: pointer;
  transition: color .2s, background .2s;
  min-width: 0;
}
.pv-tabbar__item svg { width: 20px; height: 20px; }
.pv-tabbar__item--active {
  color: var(--cyan);
  background: rgba(8,250,215,0.08);
}
.pv-tabbar__item:hover { color: var(--ink); }

@media (max-width: 640px) {

.section { padding: 64px 0; }
  .section--tight { padding: 44px 0; }
  .sec-head { margin-bottom: 44px; }

.h-xl { font-size: clamp(38px, 10vw, 60px); }
  .h-lg { font-size: clamp(34px, 9vw, 54px); }
  .h-md { font-size: clamp(24px, 6vw, 40px); }
  .sub { font-size: 15px; }

.nav__icon { width: 46px; height: 46px; border-radius: 10px; }
  .nav__brand { font-size: 16px; gap: 9px; }
  .nav__cta { padding: 9px 16px; font-size: 13px; }

.hero { padding: 108px 0 48px; overflow: hidden; }
  .hero__top { gap: 28px; }
  .hero__title { font-size: clamp(32px, 9vw, 44px); }
  .hero__lede { font-size: 14px; margin-top: 16px; }
  .hero__ctas { margin-top: 28px; gap: 10px; flex-wrap: nowrap; }
  .hero__ctas .btn { flex: 1; justify-content: center; padding: 13px 10px; font-size: 13px; }
  .hero__meta { margin-top: 24px; gap: 16px; font-size: 11px; }
  .hero__phone-wrap { min-height: unset; }
  .hero__phone-wrap .phone { width: 240px; }
  .hero__phone-orbit { width: 300px; height: 300px; }

.pv--ai .ai-row { display: none; }

.connect__body { gap: 32px; }
  .connect__stage { order: 2; position: relative; top: auto; height: 280px; }
  .connect__stage-inner { background: radial-gradient(ellipse at center, rgba(49,212,255,0.1), transparent 60%); }
  .ring--1 { width: 140px; height: 140px; }
  .ring--2 { width: 260px; height: 260px; }
  .ring--3, .ring--4 { display: none; }
  .ring-node { width: 38px; height: 38px; }
  .steps { order: 1; }
  .step { padding: 16px 18px; }
  .step__title { font-size: 17px; }
  .step__body { font-size: 13px; margin-left: 52px; }

.apps__filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
    mask-image: linear-gradient(90deg,#000 80%,transparent 100%);
  }
  .apps__filter { white-space: nowrap; flex-shrink: 0; scroll-snap-align: start; }
  .apps__viewer { height: 440px; }
  .apps__slider { gap: 8px; }
  .apps__dots { gap: 4px; }

.kbdbox { padding: 16px; }
  .kbdbox__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; }
  .kkey--wide { grid-column: span 4; }
  .kkey--tall { grid-column: span 4; }
  .kkey { font-size: 9px; border-radius: 10px; }
  .kkey small { font-size: 8px; }

.final { padding: 80px 0; }
  .final h2 { font-size: clamp(34px, 9vw, 52px); }
  .final p { font-size: 16px; margin-top: 20px; }
  .final__ctas { margin-top: 36px; gap: 10px; }

.foot { padding: 32px 0 40px; }
  .foot__links { gap: 16px; flex-wrap: wrap; }
}
.pv-tabbar__item--active:hover { color: var(--cyan); }
