/* testcat landing v2 — Terminal Warmth */
@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-latin-wght-normal.woff2") format("woff2-variations");
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --bg: #0b0d0e;
  --bg2: #0e1112;
  --panel: #121516;
  --panel2: rgba(255, 255, 255, 0.028);
  --line: rgba(255, 255, 255, 0.075);
  --line-soft: rgba(255, 255, 255, 0.045);
  --ink: #eaf0ed;
  --mut: rgba(234, 240, 237, 0.58);
  --mut2: rgba(234, 240, 237, 0.34);
  --teal: #6cbfa6;
  --teal-hi: #83dcbd;
  --amber: #d9a662;
  --red: #d98274;
  --mono: "SF Mono", ui-monospace, Menlo, monospace;
  --max: 1200px;
  --nav-h: 62px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --z-noise: 80;
  --z-nav: 50;
  --z-skip: 90;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.teal { color: var(--teal); font-style: normal; }
.dim { color: var(--mut2); }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-weight: 800; letter-spacing: -0.032em; text-wrap: balance; }
h2 { font-size: clamp(32px, 4.8vw, 56px); line-height: 1.04; }
img { max-width: 100%; display: block; }
p { text-wrap: pretty; }

:focus-visible {
  outline: 2px solid rgba(108, 191, 166, 0.75);
  outline-offset: 3px;
  border-radius: 4px;
}
.skip-link {
  position: fixed; top: -48px; left: 16px; z-index: var(--z-skip);
  background: var(--teal); color: #0b0d0e; font-weight: 700; font-size: 13px;
  padding: 10px 16px; border-radius: 0 0 10px 10px;
  transition: top 0.2s var(--ease-out);
}
.skip-link:focus { top: 0; }

/* film grain — breaks digital flatness */
.noise {
  position: fixed; inset: -50%; z-index: var(--z-noise); pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.032;
  animation: grain 9s steps(6) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-4%, 3%); }
  40% { transform: translate(3%, -4%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(4%, 3%); }
}

/* ---------- motion primitives ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

/* headline word masks */
.mask { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.mw {
  display: inline-block;
  transform: translateY(112%);
  font-variation-settings: "wght" 500;
  transition:
    transform 1.1s var(--ease-out),
    font-variation-settings 1.3s var(--ease-out);
}
.go .mask:nth-child(1) .mw { transition-delay: 0.05s; }
.go .mask:nth-child(2) .mw { transition-delay: 0.17s; }
.go .mask:nth-child(3) .mw { transition-delay: 0.29s; }
.go .mw { transform: translateY(0); font-variation-settings: "wght" 800; }

[data-parallax], [data-tilt] { will-change: transform; }

/* spotlight — cards illuminate under the cursor */
.spot { position: relative; }
.spot::after {
  content: "";
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), rgba(108, 191, 166, 0.09), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s;
}
.spot:hover::after { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .mw { opacity: 1; transform: none; transition: none; }
  .go .mw, .mw { font-variation-settings: "wght" 800; }
  .noise { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- nav ---------- */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-nav);
  transition: background 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(11, 13, 14, 0.7);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border-bottom-color: var(--line-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 13px 28px;
  display: flex; align-items: center; gap: 28px;
}
.lockup { display: flex; align-items: center; gap: 10px; font-weight: 750; font-size: 16px; }
.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-links a {
  font-size: 13.5px; font-weight: 600; color: var(--mut);
  padding: 7px 12px; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--teal-hi); background: rgba(108, 191, 166, 0.08); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 700; letter-spacing: -0.1px;
  padding: 10px 18px; border-radius: 10px;
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease-out), background 0.25s, border-color 0.25s, box-shadow 0.35s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(1px) scale(0.985); transition-duration: 0.08s; }
.btn-ghost { color: var(--ink); background: var(--panel2); }
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.16); }
.btn-primary {
  background: var(--teal); color: #0b0d0e; border-color: transparent;
  box-shadow: 0 10px 32px -10px rgba(108, 191, 166, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-primary:hover { background: var(--teal-hi); box-shadow: 0 14px 40px -10px rgba(108, 191, 166, 0.62), inset 0 1px 0 rgba(255, 255, 255, 0.25); }
.link-arrow { font-size: 14px; font-weight: 650; color: var(--mut); display: inline-flex; align-items: center; gap: 7px; transition: color 0.2s; }
.link-arrow span { transition: transform 0.35s var(--ease-out); }
.link-arrow:hover { color: var(--teal-hi); }
.link-arrow:hover span { transform: translateX(4px); }

/* ---------- hero ---------- */
.grid-tex {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.021) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.021) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 110% 90% at 42% 0%, #000 40%, transparent 100%);
}
.hero { position: relative; padding: calc(var(--nav-h) + 92px) 0 0; overflow: hidden; }
.hero-glow {
  position: absolute; width: 1050px; height: 1050px; border-radius: 50%;
  left: -180px; top: -420px;
  background: radial-gradient(circle, rgba(108, 191, 166, 0.13), transparent 62%);
  filter: blur(50px); pointer-events: none;
}
.hero-inner { position: relative; max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.hero-copy { max-width: 760px; }
.eyebrow {
  display: inline-block; font-family: var(--mono); font-size: 11px; letter-spacing: 1.2px;
  color: var(--mut); border: 1px solid var(--line); border-radius: 99px;
  padding: 7px 14px; background: var(--panel2);
}
.hero h1 {
  font-size: clamp(52px, 8.6vw, 108px);
  line-height: 0.99; letter-spacing: -0.04em;
  margin-top: 30px;
}
.hero-sub {
  color: var(--mut); font-size: clamp(15px, 1.6vw, 18.5px); line-height: 1.62;
  max-width: 560px; margin-top: 28px; font-weight: 450;
}
.hero-cta { display: flex; gap: 26px; align-items: center; margin-top: 36px; }
.hero-cta .btn { padding: 14px 26px; font-size: 14.5px; }
.hero-runtimes {
  display: flex; gap: 12px; align-items: baseline; flex-wrap: wrap;
  margin-top: 44px; font-size: 11px; letter-spacing: 0.6px;
}
.hero-runtimes span { color: var(--mut2); letter-spacing: 1.6px; font-size: 10px; text-transform: uppercase; }
.hero-runtimes b { color: var(--mut); font-weight: 500; }
.hero-runtimes b em { font-style: normal; color: var(--teal); }
.hero-runtimes i { color: var(--mut2); font-style: normal; }

.hero-shot-wrap { position: relative; max-width: 1220px; margin: 84px auto 0; padding: 0 28px 34px; }
.hero-shot {
  border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow:
    0 80px 160px -50px rgba(0, 0, 0, 0.92),
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 40px 110px -36px rgba(108, 191, 166, 0.17);
  transform-origin: center 20%;
  position: relative;
}
.shot-sheen {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.045) 50%, transparent 58%);
  mix-blend-mode: screen;
}
.caption { font-size: 11px; color: var(--mut2); letter-spacing: 0.6px; margin-top: 22px; text-align: center; }

/* ---------- how ---------- */
.how { border-top: 1px solid var(--line-soft); background: linear-gradient(180deg, var(--bg2), var(--bg)); }
.how-grid {
  max-width: var(--max); margin: 0 auto; padding: 130px 28px 120px;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: start;
}
.sticky-block { position: sticky; top: calc(var(--nav-h) + 48px); }
.kicker { display: block; font-size: 11px; letter-spacing: 1.8px; color: var(--teal); margin-bottom: 20px; }
.how-head h2 { font-size: clamp(36px, 4.6vw, 60px); }
.how-head p { color: var(--mut); font-size: 16px; line-height: 1.65; margin-top: 20px; max-width: 380px; }
.how-steps { list-style: none; display: flex; flex-direction: column; }
.how-step {
  display: flex; gap: 34px; padding: 38px 6px;
  border-top: 1px solid var(--line-soft);
  position: relative;
}
.how-step::before {
  content: ""; position: absolute; top: -1px; left: 0; height: 1px; width: 100%;
  background: linear-gradient(90deg, rgba(108, 191, 166, 0.55), transparent 70%);
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.2s var(--ease-out) 0.15s;
}
.how-step.in::before { transform: scaleX(1); }
.hs-n { font-size: 13px; color: var(--teal); letter-spacing: 1px; padding-top: 7px; }
.how-step h3 { font-size: 24px; letter-spacing: -0.02em; }
.how-step p { color: var(--mut); font-size: 15px; line-height: 1.65; margin-top: 10px; max-width: 52ch; }
.mono-inline { font-family: var(--mono); font-size: 0.85em; color: var(--teal-hi); }

/* ---------- feature stack ---------- */
.stack { position: relative; }
.panel-wrap { position: relative; }
.panel {
  position: sticky; top: var(--nav-h);
  min-height: calc(100dvh - var(--nav-h));
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center;
  max-width: 100%;
  padding: 56px max(28px, calc((100vw - var(--max)) / 2)) 64px;
  overflow: hidden;
}
.panel.flip { grid-template-columns: 1.1fr 0.9fr; }
.panel.flip .feature-text { order: 2; }
.panel.flip .feature-visual { order: 1; }
.panel.wide { display: flex; flex-direction: column; justify-content: center; gap: 40px; }
.panel.wide .feature-text { max-width: 720px; margin: 0 auto; }
.panel.wide .feature-visual { width: 100%; max-width: 1150px; margin: 0 auto; }
.feature-text.center { text-align: center; }
.feature-text.center .kicker { margin-left: auto; margin-right: auto; }
.feature-text h2 { margin-bottom: 18px; }
.feature-text > p { color: var(--mut); font-size: 16px; line-height: 1.65; max-width: 56ch; }
.feature-text.center > p { margin: 0 auto; }

.ghost-n {
  position: absolute; top: 34px; right: max(20px, calc((100vw - var(--max)) / 2 - 30px));
  font-size: clamp(120px, 16vw, 220px); font-weight: 300; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.055);
  pointer-events: none; user-select: none;
}
.panel.flip .ghost-n { right: auto; left: max(20px, calc((100vw - var(--max)) / 2 - 30px)); }

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 24px 60px -28px rgba(4, 8, 7, 0.9);
}

.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.6px;
  border-radius: 99px; padding: 4px 10px;
  border: 1px solid var(--line); color: var(--mut);
  background: rgba(255, 255, 255, 0.02); white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.pill i { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.pill.teal { color: var(--teal-hi); border-color: rgba(108, 191, 166, 0.36); background: rgba(108, 191, 166, 0.09); }
.pill.red { color: var(--red); border-color: rgba(217, 130, 116, 0.34); background: rgba(217, 130, 116, 0.08); }
.pill.amber { color: var(--amber); border-color: rgba(217, 166, 98, 0.34); background: rgba(217, 166, 98, 0.08); }
.pill.sm { font-size: 8.5px; padding: 2px 8px; }
.pill.lg { font-size: 11.5px; padding: 6px 14px; }

/* 01 agents */
.v-agents { display: flex; flex-direction: column; gap: 12px; }
.agent-row {
  display: flex; align-items: center; gap: 14px; padding: 17px 20px;
  border: 1px solid var(--line); border-radius: 12px; background: rgba(255, 255, 255, 0.014);
  transition: border-color 0.3s, transform 0.5s var(--ease-out);
}
.agent-row:hover { border-color: rgba(255, 255, 255, 0.14); transform: translateX(4px); }
.agent-row.active {
  border-color: rgba(108, 191, 166, 0.5);
  background: rgba(108, 191, 166, 0.055);
  box-shadow: 0 0 0 1px rgba(108, 191, 166, 0.14), 0 18px 44px -22px rgba(108, 191, 166, 0.34);
}
.agent-row.active:hover { border-color: rgba(108, 191, 166, 0.7); }
.agent-ic {
  width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.035); border: 1px solid var(--line);
  font-size: 12px; color: var(--mut); font-weight: 600; flex-shrink: 0;
}
.agent-row.active .agent-ic { color: var(--teal-hi); }
.agent-name { flex: 1; min-width: 0; font-weight: 700; font-size: 15.5px; letter-spacing: -0.2px; display: flex; flex-direction: column; gap: 4px; }
.agent-name em { font-style: normal; font-weight: 400; font-size: 10.5px; color: var(--mut2); letter-spacing: 0.4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* 02 window */
.v-window {
  display: flex; overflow: hidden; border-radius: 16px;
  background: var(--panel); border: 1px solid var(--line);
  box-shadow: 0 50px 110px -40px rgba(4, 8, 7, 0.95), inset 0 1px 0 rgba(255, 255, 255, 0.035);
  min-height: 430px;
}
.v-label { display: block; font-size: 9px; letter-spacing: 1.6px; color: var(--mut2); margin-bottom: 4px; }
.v-chat {
  width: 320px; flex-shrink: 0; border-right: 1px solid var(--line);
  padding: 18px; display: flex; flex-direction: column; gap: 11px;
  background: rgba(0, 0, 0, 0.22);
}
.msg.think { font-size: 11.5px; line-height: 1.55; color: var(--mut2); font-style: italic; padding: 8px 12px; border-left: 2px solid var(--line); }
.msg.text { font-size: 12px; line-height: 1.55; }
.msg.tool {
  font-size: 10px; color: var(--mut); background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line-soft); border-radius: 8px; padding: 9px 11px;
  display: flex; gap: 8px; align-items: center;
}
.msg.tool b { color: var(--teal); font-weight: 400; }
.msg.tool > span:first-of-type { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.v-chat-foot { margin-top: auto; display: flex; justify-content: space-between; border-top: 1px solid var(--line-soft); padding-top: 11px; font-size: 9px; color: var(--mut2); letter-spacing: 0.8px; }
.v-phones { flex: 1; padding: 18px; display: flex; gap: 16px; background: linear-gradient(180deg, rgba(108, 191, 166, 0.02), transparent 60%); }
.v-phone { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 9px; }
.v-phone figcaption { display: flex; align-items: center; justify-content: space-between; font-size: 9.5px; color: var(--mut2); gap: 8px; }
.v-phone figcaption > span:first-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ph-frame {
  flex: 1; border: 2.5px solid #2b3134; border-radius: 22px; background: #0e1213;
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.8);
}
.ph-notch { height: 17px; flex-shrink: 0; display: flex; justify-content: center; padding-top: 5px; }
.ph-notch::after { content: ""; width: 44px; height: 8px; border-radius: 99px; background: #1c2224; }
.ph-body { padding: 12px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.sk { border-radius: 6px; background: rgba(255, 255, 255, 0.06); width: 100%; }
.sk.h8 { height: 8px; } .sk.h9 { height: 9px; } .sk.h10 { height: 10px; } .sk.h11 { height: 11px; }
.sk.h30 { height: 30px; } .sk.h34 { height: 34px; } .sk.h38 { height: 38px; } .sk.h44 { height: 44px; }
.sk.h52 { height: 52px; } .sk.h54 { height: 54px; }
.sk.w38 { width: 38%; } .sk.w44 { width: 44%; } .sk.w48 { width: 48%; } .sk.w50 { width: 50%; }
.sk.w58 { width: 58%; } .sk.w70 { width: 70%; } .sk.w76 { width: 76%; } .sk.w82 { width: 82%; }
.sk.center { align-self: center; }
.row2 { display: flex; gap: 8px; } .row2 > * { flex: 1; }
.row3 { display: flex; gap: 7px; } .row3 > * { flex: 1; }
.ph-btn {
  height: 26px; border-radius: 8px; background: rgba(108, 191, 166, 0.9);
  display: grid; place-items: center; font-size: 9px; font-weight: 700; color: #0b0d0e;
}
.ph-bottom { margin-top: auto; display: flex; flex-direction: column; gap: 9px; }
.dots { display: flex; gap: 4px; justify-content: center; }
.dots i { width: 5px; height: 5px; border-radius: 50%; background: rgba(255, 255, 255, 0.14); }
.dots i.on { background: var(--teal); }
.ph-input {
  height: 34px; border-radius: 8px; border: 1.5px solid rgba(108, 191, 166, 0.75);
  background: rgba(108, 191, 166, 0.06); display: flex; align-items: center;
  padding: 0 9px; font-size: 8.5px; color: var(--mut); flex-shrink: 0;
}
.cursor { width: 1.5px; height: 12px; background: var(--teal); margin-left: 2px; animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.ph-kbd { margin-top: auto; display: flex; flex-direction: column; gap: 4px; }
.krow { display: flex; gap: 3.5px; }
.krow i { flex: 1; height: 19px; border-radius: 4px; background: rgba(255, 255, 255, 0.055); }
.krow.space { padding: 0 16%; }
.price-row { display: flex; justify-content: space-between; align-items: center; }
.price-row .teal { font-size: 9px; }

/* 03 verdict */
.v-verdict { max-width: 560px; margin-left: auto; }
.panel.flip .v-verdict { margin-left: 0; margin-right: auto; }
.card.scenario { padding: 20px 22px; }
.card.scenario p { font-size: 14px; line-height: 1.7; font-weight: 450; }
.connector { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 7px 0; }
.connector i { width: 1px; height: 16px; background: linear-gradient(180deg, var(--line), rgba(108, 191, 166, 0.6)); }
.connector i:last-child { background: linear-gradient(180deg, rgba(108, 191, 166, 0.6), var(--line)); }
.connector span { font-size: 9px; color: var(--mut2); letter-spacing: 1.4px; }
.card.verdict {
  padding: 20px 22px;
  border-color: rgba(108, 191, 166, 0.3);
  box-shadow: 0 0 0 1px rgba(108, 191, 166, 0.1), 0 26px 60px -26px rgba(108, 191, 166, 0.28);
}
.verdict-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; gap: 10px; flex-wrap: wrap; }
.verdict-head .mono { font-size: 10px; color: var(--mut2); }
.card.verdict ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.card.verdict li { font-size: 13px; color: var(--mut); padding-left: 20px; position: relative; }
.card.verdict li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-size: 11px; }
.gate-card {
  margin-top: 26px; padding: 16px 18px;
  border: 1px solid rgba(217, 130, 116, 0.26); border-radius: 14px; background: var(--panel);
  max-width: 470px;
}
.gate-line { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.gate-line .mono { font-size: 10.5px; color: var(--mut); }
.gate-line .pill { margin-left: auto; }
.gate-note { display: block; font-size: 9.5px; color: var(--mut2); margin-top: 9px; letter-spacing: 0.3px; }

/* 04 big phone */
.v-bigphone { display: flex; justify-content: center; }
.bp-frame {
  width: 270px; height: 560px; border: 3px solid #2e3437; border-radius: 38px;
  background: #0e1213; overflow: hidden; display: flex; flex-direction: column;
  box-shadow: 0 44px 100px -34px rgba(0, 0, 0, 0.9), 0 30px 90px -30px rgba(108, 191, 166, 0.14);
}
.bp-notch { height: 26px; flex-shrink: 0; display: flex; justify-content: center; padding-top: 8px; }
.bp-notch::after { content: ""; width: 74px; height: 14px; border-radius: 99px; background: #1a2022; }
.bp-banner {
  margin: 8px 12px 0; flex-shrink: 0;
  border: 1px solid rgba(108, 191, 166, 0.4); background: rgba(108, 191, 166, 0.08);
  border-radius: 10px; padding: 8px 11px; display: flex; align-items: center; gap: 8px;
  font-size: 8.5px; color: var(--teal-hi); letter-spacing: 1px;
}
.bp-banner i { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 8px var(--teal); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: 0.45; } }
.bp-body { padding: 16px 14px 12px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.bp-tabs { margin-top: auto; display: flex; justify-content: space-around; padding: 0 8px; }
.bp-tabs span { width: 16px; height: 16px; border-radius: 5px; background: rgba(255, 255, 255, 0.06); }
.bp-tabs span.on { background: rgba(255, 255, 255, 0.16); }
.bp-home { width: 86px; height: 4px; border-radius: 99px; background: rgba(255, 255, 255, 0.16); align-self: center; margin-top: 10px; }
.evidence-list { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; max-width: 470px; }
.evi {
  display: flex; gap: 13px; align-items: flex-start; padding: 15px 17px;
  border: 1px solid var(--line); border-radius: 12px; background: rgba(255, 255, 255, 0.015);
  transition: border-color 0.3s;
}
.evi:hover { border-color: rgba(255, 255, 255, 0.13); }
.evi b { color: var(--teal); font-size: 13px; font-weight: 400; margin-top: 1px; }
.evi strong { display: block; font-size: 14px; letter-spacing: -0.2px; }
.evi span { display: block; font-size: 10px; color: var(--mut2); margin-top: 4px; letter-spacing: 0.3px; line-height: 1.5; }

/* 05 dashboard */
.v-dash { border-radius: 16px; overflow: hidden; background: var(--panel); border: 1px solid var(--line); box-shadow: 0 50px 110px -40px rgba(4, 8, 7, 0.95), inset 0 1px 0 rgba(255, 255, 255, 0.035); }
.dash-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 20px; background: rgba(0, 0, 0, 0.2); gap: 10px; flex-wrap: wrap;
}
.dash-head > div { display: flex; gap: 8px; flex-wrap: wrap; }
.dash-head .mono { font-size: 10px; color: var(--mut2); }
.dash-row {
  display: grid; grid-template-columns: 1fr 200px 105px 84px 92px;
  align-items: center; gap: 14px; padding: 14px 20px; border-top: 1px solid var(--line-soft);
  transition: background 0.25s;
}
.dash-row:hover { background: rgba(255, 255, 255, 0.014); }
.r-name { font-weight: 650; font-size: 13.5px; letter-spacing: -0.2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.r-agent { font-size: 10px; color: var(--mut2); }
.r-dur { font-size: 10.5px; color: var(--mut); }
.r-when { font-size: 10px; color: var(--mut2); text-align: right; }

/* band */
.band {
  border-top: 1px solid var(--line-soft);
  background:
    radial-gradient(720px 300px at 50% 0%, rgba(108, 191, 166, 0.06), transparent 70%),
    linear-gradient(180deg, var(--bg2), var(--bg));
  position: relative;
}
.band-inner { max-width: 780px; margin: 0 auto; padding: 110px 28px; text-align: center; }
.band-inner .kicker { margin-left: auto; margin-right: auto; }
.band-inner p { color: var(--mut); font-size: 15.5px; line-height: 1.7; margin-top: 18px; }
.band-flow { display: flex; gap: 14px; justify-content: center; align-items: center; margin-top: 36px; flex-wrap: wrap; }
.band-flow span {
  font-size: 11px; letter-spacing: 0.6px; color: var(--teal-hi);
  border: 1px solid rgba(108, 191, 166, 0.3); background: rgba(108, 191, 166, 0.07);
  border-radius: 99px; padding: 8px 16px;
}
.band-flow b { color: var(--mut2); font-weight: 400; }

/* ---------- install ---------- */
.install { max-width: var(--max); margin: 0 auto; padding: 130px 28px 120px; }
.install-head { max-width: 640px; margin-bottom: 60px; }
.install-head p { color: var(--mut); margin-top: 16px; font-size: 16px; line-height: 1.6; }
.install-cards { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 16px; }
.install-card { padding: 32px 30px; display: flex; flex-direction: column; gap: 14px; align-items: flex-start; border-radius: 16px; }
.install-card.primary-card { border-color: rgba(108, 191, 166, 0.28); box-shadow: 0 0 0 1px rgba(108, 191, 166, 0.08), 0 30px 70px -30px rgba(108, 191, 166, 0.2); }
.install-card h3 { font-size: 21px; }
.install-card > p { color: var(--mut); font-size: 14px; line-height: 1.6; }
.install-card .btn { margin-top: 4px; }
.code {
  position: relative; width: 100%;
  background: rgba(0, 0, 0, 0.35); border: 1px solid var(--line-soft); border-radius: 10px;
  padding: 13px 42px 13px 15px; font-size: 11.5px; color: var(--mut);
  line-height: 1.7; overflow-x: auto;
}
.code span { white-space: pre; }
.copy {
  position: absolute; top: 8px; right: 8px;
  background: var(--panel2); color: var(--mut); border: 1px solid var(--line);
  border-radius: 7px; width: 26px; height: 26px; cursor: pointer; font-size: 12px;
  transition: color 0.2s, border-color 0.2s, transform 0.3s var(--ease-out);
}
.copy:hover { color: var(--teal-hi); border-color: rgba(108, 191, 166, 0.4); }
.copy:active { transform: scale(0.9); }
.copy.ok { color: var(--teal-hi); }

/* ---------- footer ---------- */
footer { border-top: 1px solid var(--line-soft); }
.footer-inner {
  max-width: var(--max); margin: 0 auto; padding: 46px 28px 58px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.footer-inner p { font-size: 10.5px; color: var(--mut2); letter-spacing: 0.5px; }
.footer-links { margin-left: auto; display: flex; gap: 18px; }
.footer-links a { font-size: 11px; color: var(--mut); letter-spacing: 0.5px; transition: color 0.2s; }
.footer-links a:hover { color: var(--teal-hi); }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .panel, .panel.flip {
    position: static; min-height: 0;
    display: flex; flex-direction: column; gap: 40px;
    padding: 80px 24px 60px;
  }
  .panel.flip .feature-text { order: 1; }
  .panel.flip .feature-visual { order: 2; }
  .ghost-n { font-size: 110px; top: 18px; }
  .v-verdict, .panel.flip .v-verdict { margin: 0 auto; }
  .how-grid { grid-template-columns: 1fr; gap: 36px; padding-top: 90px; padding-bottom: 70px; }
  .sticky-block { position: static; }
  .install-cards { grid-template-columns: 1fr; }
  .v-phones { flex-wrap: wrap; }
  .v-phone { min-width: 45%; }
  .v-window { flex-direction: column; min-height: 0; }
  .v-chat { width: 100%; border-right: 0; border-bottom: 1px solid var(--line); }
  .dash-row { grid-template-columns: 1fr 90px; }
  .r-agent, .r-when, .r-dur { display: none; }
  .nav-links { display: none; }
  .hero-shot-wrap { padding-bottom: 10px; }
}
