/* ============================================================
   VOXARN — style.css
   ============================================================ */

/* Tokens */
:root {
  --bg:      #040709;
  --surface: #070D16;
  --card:    #09111E;
  --border:  #0F1E30;
  --bd2:     #182D48;
  --cyan:    #00E5D4;
  --text:    #EDF0F7;
  --sub:     #7A9AB8;
  --muted:   #374F66;
  --sans:    'Plus Jakarta Sans', sans-serif;
  --mono:    'JetBrains Mono', monospace;
  --nav-h:   52px;
  --bar-h:   28px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { background: var(--bg); color: var(--text); font-family: var(--sans); scroll-behavior: smooth; }
body { padding-top: var(--nav-h); padding-bottom: var(--bar-h); overflow-x: hidden; min-height: 100vh; }
a { text-decoration: none; }
button { font-family: inherit; }

/* Subtle grid overlay */
body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(0,229,212,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,212,.022) 1px, transparent 1px);
  background-size: 52px 52px;
}

/* ── LOADING SCREEN ──────────────────────── */
#vxn-load {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
  transition: opacity .35s ease, visibility .35s ease;
}
#vxn-load.out { opacity: 0; visibility: hidden; pointer-events: none; }
#vxn-load.gone { display: none; }
.vxn-logo-txt {
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  letter-spacing: .44em; color: var(--muted);
}
.vxn-bar { width: 100px; height: 1px; background: var(--border); overflow: hidden; }
.vxn-fill { height: 100%; width: 0; background: var(--cyan); animation: fillBar .9s cubic-bezier(.4,0,.2,1) .1s forwards; }
@keyframes fillBar { to { width: 100%; } }

/* ── CURSOR ──────────────────────────────── */
/* ── TOPBAR ──────────────────────────────── */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  background: rgba(4,7,9,.88); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  padding: 0 52px; gap: 16px; z-index: 500;
}
.t-logo { cursor: pointer;
  font-family: var(--mono); font-size: 13px; font-weight: 700;
  letter-spacing: .24em;
  background: linear-gradient(155deg,#b5bcc4 0%,#d6dbe1 16%,#f3f4f6 32%,#dfe3e8 44%,#c6cbd2 58%,#eceef2 76%,#ccd0d6 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
 
}
.t-nav { margin-left: auto; display: flex; align-items: stretch; }
.t-nav a { cursor: pointer;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em;
  color: var(--muted); padding: 0 18px; height: var(--nav-h);
  display: flex; align-items: center;
  border-bottom: 2px solid transparent;
  transition: color .15s, background .15s, border-color .15s;
}
.t-nav a:hover  { color: var(--sub); background: rgba(9,17,30,.3); }
.t-nav a.active { color: var(--text); border-bottom-color: var(--cyan); background: rgba(9,17,30,.2); }
.t-cta {
  color: var(--cyan) !important;
  border: 1px solid rgba(0,229,212,.5) !important;
  border-radius: 3px; height: auto !important;
  align-self: center; margin-left: 10px;
  padding: 7px 16px !important;
  box-shadow: 0 0 12px rgba(0,229,212,.06);
}
.t-cta:hover { background: var(--cyan) !important; color: var(--bg) !important; border-color: var(--cyan) !important; }
/* Hamburger */
.t-ham { cursor: pointer;
  display: none; margin-left: auto;
  background: none; border: 1px solid var(--bd2);
  color: var(--sub); font-family: var(--mono); font-size: 9px;
  letter-spacing: .1em; padding: 7px 13px;
  align-items: center; gap: 8px;
  transition: color .15s, border-color .15s;
}
.t-ham:hover { color: var(--text); border-color: var(--sub); }

/* ── MOBILE NAV OVERLAY ──────────────────── */
.mob-nav {
  position: fixed; inset: 0; z-index: 600;
  background: rgba(4,7,9,.98);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .22s ease;
}
.mob-nav.open { opacity: 1; pointer-events: all; }
.mob-close { cursor: pointer;
  position: absolute; top: 14px; right: 20px;
  font-family: var(--mono); font-size: 9px; color: var(--muted);
  background: none; border: 1px solid var(--border);
  padding: 7px 14px; letter-spacing: .08em;
  transition: color .15s, border-color .15s;
}
.mob-close:hover { color: var(--sub); border-color: var(--bd2); }
.mob-word { font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .28em; color: var(--muted); margin-bottom: 48px; }
.mob-links { width: 100%; max-width: 320px; border-top: 1px solid var(--border); }
.mob-links a { cursor: pointer;
  display: block; width: 100%; font-family: var(--mono); font-size: 13px;
  letter-spacing: .12em; color: var(--sub); padding: 20px 0;
  text-align: center; border-bottom: 1px solid var(--border);
  transition: color .15s;
}
.mob-links a:hover, .mob-links a.active { color: var(--cyan); }
.mob-links a.mob-cta { color: var(--cyan); }

/* ── STATUS BAR ──────────────────────────── */
.statusbar {
  position: fixed; bottom: 0; left: 0; right: 0; height: var(--bar-h);
  background: rgba(4,7,9,.88); backdrop-filter: blur(18px);
  border-top: 1px solid var(--border);
  display: flex; align-items: center;
  padding: 0 52px; gap: 0; z-index: 500; overflow: hidden;
}
.sbar-item {
  font-family: var(--mono); font-size: 9px; color: var(--muted);
  letter-spacing: .05em; white-space: nowrap;
  padding: 0 16px; border-right: 1px solid var(--border);
  display: flex; align-items: center; gap: 5px;
}
.sbar-item:first-child { padding-left: 0; }
.sbar-item .sv { color: var(--sub); }
.sbar-right { margin-left: auto; padding: 0; border-right: none; font-family: var(--mono); font-size: 9px; color: var(--muted); }

/* ── PAGE SYSTEM ─────────────────────────── */
.page { display: none; min-height: calc(100vh - var(--nav-h) - var(--bar-h)); position: relative; z-index: 1; }
.page.active { display: block; animation: pageIn .3s ease; }
@keyframes pageIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ── SHARED LAYOUT ───────────────────────── */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 52px; }
.sec { padding: 80px 0; border-bottom: 1px solid var(--border); }
.sec:last-child { border-bottom: none; }
.sec-hdr { display: flex; align-items: center; gap: 10px; padding-bottom: 18px; margin-bottom: 52px; border-bottom: 1px solid var(--border); }
.sec-id  { font-family: var(--mono); font-size: 10px; color: var(--cyan); font-weight: 700; letter-spacing: .08em; }
.sec-lbl { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: .1em; }
.sec-badge { margin-left: auto; font-family: var(--mono); font-size: 8px; padding: 2px 8px; letter-spacing: .1em; border-radius: 2px; }
.b-open { color: var(--muted); border: 1px solid var(--border); }
.b-res  { color: var(--cyan);  border: 1px solid var(--cyan); }

/* Typography */
.h2 {
  font-size: clamp(28px,3vw,44px); font-weight: 600; line-height: 1.12;
  background: linear-gradient(155deg,#a8b0b9 0%,#cfd6db 18%,#eaeef1 34%,#ccd3d9 48%,#b4bec7 63%,#e0e5e8 80%,#c0c9d1 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.body-lg { font-size: 16px; color: var(--sub); line-height: 1.8; }
.body-sm { font-size: 13.5px; color: var(--sub); line-height: 1.75; }
.eyebrow { font-family: var(--mono); font-size: 10px; color: var(--cyan); letter-spacing: .14em; }

/* Buttons */
.btn-p, .btn-s { cursor: pointer;
  font-family: var(--mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: .07em; padding: 13px 28px;
  border-radius: 4px; display: inline-flex; align-items: center;
  position: relative; overflow: hidden; transition: all .15s;
}
.btn-p { background: var(--cyan); color: var(--bg); border: none; box-shadow: 0 1px 8px rgba(0,229,212,.18); }
.btn-p:hover { box-shadow: 0 2px 18px rgba(0,229,212,.32); opacity: .9; }
.btn-s { background: transparent; color: var(--sub); border: 1px solid var(--bd2); box-shadow: 0 1px 4px rgba(0,0,0,.3); }
.btn-s:hover { color: var(--text); border-color: var(--sub); }
/* Sheen on hover */
.btn-p::after, .btn-s::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
  transform: translateX(-200%); transition: transform .6s ease; pointer-events: none;
}
.btn-p:hover::after, .btn-s:hover::after { transform: translateX(200%); }

/* Entrance animations */
@keyframes secIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.page.active .sec           { animation: secIn .6s ease both; }
.page.active .sec:nth-child(1) { animation-delay: .05s; }
.page.active .sec:nth-child(2) { animation-delay: .18s; }
.page.active .sec:nth-child(3) { animation-delay: .30s; }
.page.active .diff-card         { animation: secIn .5s ease both; }
.page.active .diff-card:nth-child(1) { animation-delay: .10s; }
.page.active .diff-card:nth-child(2) { animation-delay: .22s; }
.page.active .diff-card:nth-child(3) { animation-delay: .34s; }
.page.active .cap               { animation: secIn .5s ease both; }
.page.active .cap:nth-child(1)  { animation-delay: .10s; }
.page.active .cap:nth-child(2)  { animation-delay: .20s; }
.page.active .cap:nth-child(3)  { animation-delay: .30s; }
.page.active .cap:nth-child(4)  { animation-delay: .40s; }
.page.active .cap:nth-child(5)  { animation-delay: .50s; }

/* Typewriter cursor */
.tw-done::after { content: '_'; color: var(--cyan); animation: twBlink .9s step-end infinite; }
@keyframes twBlink { 50% { opacity: 0; } }

/* ── HOME HERO ───────────────────────────── */
.hero-stage {
  position: relative; width: 100%;
  height: calc(100vh - var(--nav-h) - var(--bar-h)); overflow: hidden;
}
#hero-cv { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
/* Fade edges */
.hero-stage::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 14%;
  background: linear-gradient(to bottom, var(--bg), transparent);
  pointer-events: none; z-index: 1;
}
.hero-stage::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 28%;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
}
.hero-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 0 48px;
}
.hero-eyebrow {
  font-family: var(--mono); font-size: 10px; color: var(--cyan);
  letter-spacing: .18em; margin-bottom: 22px;
}
@keyframes metalShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 100% center; }
}

.hero-h1 {
  font-size: clamp(48px, 6.5vw, 86px); font-weight: 600;
  line-height: 1.02; letter-spacing: -.025em; margin-bottom: 20px;
  /* 30-stop brushed-titanium gradient — irregular light/dark bands simulate grain.
     300% wide so the animation slides a bright specular highlight across the text. */
  background: linear-gradient(170deg,
    #6e7780  0%,
    #9aa3ac  2.5%,
    #d2d8de  5%,
    #f0f2f4  8%,
    #e4e7ea  10%,
    #c6ced5  12.5%,
    #9ca5ae  15%,
    #b4bdc6  17.5%,
    #dce1e6  20%,
    #f3f4f6  22.5%,
    #e8eaed  25%,
    #bec7ce  27.5%,
    #9ea8b1  30%,
    #b8c1ca  32.5%,
    #d6dce1  35%,
    #eef0f2  37.5%,
    #f6f7f8  41%,
    #fefefe  44%,
    #ffffff  50%,   /* ← peak — the sweeping light catch */
    #f8f9fa  56%,
    #eaecee  59%,
    #d0d6db  62%,
    #b2bbc4  65%,
    #9aa3ac  68%,
    #bcc4cc  71%,
    #d8dde2  74%,
    #eff1f3  77%,
    #e0e4e7  80%,
    #c2cad1  84%,
    #9ca5ae  88%,
    #adb6be  92%,
    #cdd3d8  96%,
    #7a8390  100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: metalShimmer 6s ease-in-out infinite alternate;
  filter: contrast(1.06);
}
.hero-h1 em {
  font-style: normal;
  background: linear-gradient(172deg,#00E5D4 0%,#00C8BA 55%,rgba(0,175,165,.82) 100%);
  -webkit-background-clip: text; background-clip: text;
}
.hero-kicker { font-size: 17px; color: var(--sub); margin-bottom: 10px; }
.hero-kicker strong { color: var(--text); font-weight: 600; }
.hero-sub { font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 480px; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Spec strip */
.spec-strip {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  background: rgba(4,7,9,.78); backdrop-filter: blur(14px);
}
.spec-cell { padding: 16px 28px; border-right: 1px solid var(--border); }
.spec-cell:last-child { border-right: none; }
.spec-k { font-family: var(--mono); font-size: 8px; color: var(--muted); letter-spacing: .1em; margin-bottom: 5px; }
.spec-v {
  font-size: 17px; font-weight: 600; line-height: 1.15;
  background: linear-gradient(155deg,#a8b0b9 0%,#cfd6db 18%,#eaeef1 34%,#ccd3d9 48%,#b4bec7 63%,#e0e5e8 80%,#c0c9d1 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.spec-v em {
  font-style: normal;
  background: linear-gradient(155deg,#00E5D4 0%,#00CFC0 45%,rgba(0,178,165,.85) 100%);
  -webkit-background-clip: text; background-clip: text;
}
.spec-sub { font-family: var(--mono); font-size: 7.5px; color: var(--muted); margin-top: 3px; letter-spacing: .05em; }

/* HW bar */
.hw-bar {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 8px 32px; padding: 16px 52px;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(7,13,22,.75); backdrop-filter: blur(14px);
}
.hw-item { font-family: var(--mono); font-size: 9.5px; color: var(--muted); letter-spacing: .1em; display: flex; align-items: center; gap: 8px; }
.hw-item::before { content: ''; width: 3px; height: 3px; background: var(--muted); border-radius: 50%; }
.hw-item:first-child::before { display: none; }

/* Diff cards */
.diff-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--border); }
.diff-card {
  padding: 40px 38px; border-right: 1px solid var(--border);
  background: rgba(9,17,30,.3); backdrop-filter: blur(10px);
  transition: background .25s, backdrop-filter .25s;
}
.diff-card:last-child { border-right: none; }
.diff-card:hover { background: rgba(9,17,30,.65); backdrop-filter: blur(18px); box-shadow: 0 4px 24px rgba(0,0,0,.5); }
.diff-n { font-family: var(--mono); font-size: 9px; color: var(--cyan); letter-spacing: .1em; margin-bottom: 14px; }
.diff-t {
  font-size: 18px; font-weight: 600; line-height: 1.2; margin-bottom: 12px;
  background: linear-gradient(155deg,#a8b0b9 0%,#cfd6db 18%,#eaeef1 34%,#ccd3d9 48%,#b4bec7 63%,#e0e5e8 80%,#c0c9d1 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.diff-b { font-size: 13px; color: var(--sub); line-height: 1.75; }

/* Footer (inside pages) */
.site-foot { display: flex; align-items: center; justify-content: space-between; padding: 20px 52px; max-width: 1240px; margin: 0 auto; position: relative; z-index: 1; }
.f-logo {
  font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: .22em;
  background: linear-gradient(155deg,#b5bcc4 0%,#d6dbe1 16%,#f3f4f6 32%,#dfe3e8 44%,#c6cbd2 58%,#eceef2 76%,#ccd0d6 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.f-copy { font-family: var(--mono); font-size: 8.5px; color: var(--muted); }

/* ── SYSTEM PAGE ─────────────────────────── */
.vs-table { width: 100%; border-collapse: collapse; border: 1px solid var(--border); margin-bottom: 64px; }
.vs-table th {
  font-family: var(--mono); font-size: 9px; letter-spacing: .1em;
  color: var(--muted); padding: 11px 22px;
  border-bottom: 1px solid var(--border); text-align: left;
  background: rgba(9,17,30,.65); backdrop-filter: blur(10px);
}
.vs-table th.ours { color: var(--cyan); }
.vs-table td { padding: 16px 22px; font-size: 13px; color: var(--sub); border-bottom: 1px solid var(--border); vertical-align: top; line-height: 1.65; }
.vs-table td.ours { color: var(--text); background: rgba(0,229,212,.018); }
.vs-table tr:last-child td { border-bottom: none; }
.vs-table .row-lbl { font-family: var(--mono); font-size: 8.5px; color: var(--muted); letter-spacing: .06em; width: 140px; }

.cap-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--border); }
.cap { padding: 32px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); transition: background .2s; }
.cap:nth-child(even) { border-right: none; }
.cap:nth-last-child(-n+2) { border-bottom: none; }
.cap:nth-last-child(1):nth-child(odd) { grid-column: 1/-1; border-right: none; }
.cap:hover { background: rgba(9,17,30,.55); backdrop-filter: blur(14px); }
.cap-id { font-family: var(--mono); font-size: 9px; color: var(--cyan); letter-spacing: .1em; margin-bottom: 14px; }
.cap-t {
  font-size: 18px; font-weight: 600; margin-bottom: 10px; line-height: 1.2;
  background: linear-gradient(155deg,#a8b0b9 0%,#cfd6db 18%,#eaeef1 34%,#ccd3d9 48%,#b4bec7 63%,#e0e5e8 80%,#c0c9d1 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.cap-b { font-size: 13px; color: var(--sub); line-height: 1.75; }
.cap-tag { display: inline-block; margin-top: 16px; font-family: var(--mono); font-size: 8.5px; color: var(--muted); border: 1px solid var(--border); padding: 3px 10px; letter-spacing: .06em; border-radius: 10px; }

/* ── FIELD SPECS ─────────────────────────── */
.fs-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }

.sim-wrap { border: 1px solid var(--border); background: rgba(9,17,30,.5); backdrop-filter: blur(10px); margin-bottom: 20px; position: relative; overflow: hidden; }
.sim-wrap::before { /* scan line */
  content: ''; position: absolute; left: 0; right: 0; height: 60px; z-index: 8; pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(0,229,212,.02), transparent);
  animation: scanLine 7s linear infinite;
}
@keyframes scanLine { from { top: -60px; } to { top: calc(100% + 60px); } }
.sim-bar { display: flex; align-items: center; gap: 10px; padding: 9px 16px; border-bottom: 1px solid var(--border); }
.sim-dots { display: flex; gap: 5px; }
.sim-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border); }
.sim-t { font-family: var(--mono); font-size: 9.5px; color: var(--muted); }
.sim-foot { display: flex; gap: 20px; padding: 8px 16px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.sim-s { font-family: var(--mono); font-size: 8.5px; color: var(--muted); display: flex; gap: 5px; }
.sim-s .sv { color: var(--sub); }

.spec-list { border: 1px solid var(--border); }
.spec-item { padding: 24px 28px; border-bottom: 1px solid var(--border); transition: background .2s; }
.spec-item:last-child { border-bottom: none; }
.spec-item:hover { background: rgba(9,17,30,.55); backdrop-filter: blur(12px); }
.spec-hdr { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.spec-sid { font-family: var(--mono); font-size: 9px; color: var(--cyan); letter-spacing: .08em; }
.spec-st {
  font-size: 15px; font-weight: 600;
  background: linear-gradient(155deg,#8a959f 0%,#a5b2ba 22%,#c1ccd2 38%,#a4b1b9 54%,#8e9ba4 70%,#b0bcc4 86%,#94a1aa 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.spec-sb { font-size: 13px; color: var(--sub); line-height: 1.75; }

.stk-block { border: 1px solid var(--bd2); padding: 20px; margin-bottom: 10px; background: rgba(9,17,30,.5); backdrop-filter: blur(10px); box-shadow: 0 1px 0 rgba(255,255,255,.025) inset, 0 -1px 0 rgba(0,0,0,.3) inset; }
.stk-hdr { font-family: var(--mono); font-size: 9px; color: var(--cyan); letter-spacing: .1em; padding-bottom: 10px; margin-bottom: 12px; border-bottom: 1px solid var(--border); }
.stk-row { display: flex; align-items: center; gap: 9px; margin-bottom: 7px; font-family: var(--mono); font-size: 10px; color: var(--muted); }
.stk-row::before { content: ''; width: 4px; height: 4px; background: var(--bd2); border-radius: 1px; flex-shrink: 0; }
.stk-row.on { color: var(--sub); }
.stk-row.on::before { background: var(--cyan); }
.ms-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 9px; font-size: 12px; color: var(--muted); line-height: 1.5; }
.ms-dot { width: 8px; height: 8px; border: 1px solid var(--bd2); flex-shrink: 0; margin-top: 3px; transition: background .3s; }
.ms-dot.done { background: var(--cyan); border-color: var(--cyan); }
.ms-dot.wip  { border-color: var(--cyan); }
.sim-note { font-family: var(--mono); font-size: 10px; color: var(--muted); border: 1px solid var(--border); padding: 14px; line-height: 1.7; background: rgba(9,17,30,.4); backdrop-filter: blur(8px); }
.sim-note strong { color: var(--cyan); }

/* Media gallery tabs */
.tab-strip { display: flex; border-bottom: 1px solid var(--border); overflow-x: auto; scrollbar-width: none; }
.tab-strip::-webkit-scrollbar { display: none; }
.tab-btn { cursor: pointer; font-family: var(--mono); font-size: 9px; letter-spacing: .09em; color: var(--muted); padding: 10px 18px; background: none; border: none; border-bottom: 2px solid transparent; white-space: nowrap; flex-shrink: 0; transition: all .15s; }
.tab-btn:hover { color: var(--sub); }
.tab-btn.active { color: var(--cyan); border-bottom-color: var(--cyan); }
.tab-btn.locked { opacity: .4; pointer-events: none; }
.tab-badge { font-family: var(--mono); font-size: 7px; color: var(--muted); border: 1px solid var(--border); padding: 1px 5px; letter-spacing: .07em; margin-left: 5px; vertical-align: middle; border-radius: 2px; }
.tab-badge.wip { color: var(--cyan); border-color: rgba(0,229,212,.4); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* Image frames */
.img-frame { position: relative; width: 100%; overflow: hidden; background: var(--card); border: 1px solid var(--border); border-radius: 4px; }
.img-frame img { width: 100%; height: 100%; object-fit: cover; display: block; position: absolute; inset: 0; z-index: 1; }
.img-ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; background: rgba(4,7,9,.4); }
.img-ph-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,229,212,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(0,229,212,.025) 1px,transparent 1px); background-size: 32px 32px; }
.img-ph-lbl { font-family: var(--mono); font-size: 9px; color: var(--muted); letter-spacing: .12em; position: relative; z-index: 1; }
.img-ph-badge { font-family: var(--mono); font-size: 8px; color: var(--cyan); border: 1px solid rgba(0,229,212,.35); padding: 2px 9px; letter-spacing: .1em; position: relative; z-index: 1; }
.cap-btn { cursor: pointer; position: absolute; bottom: 10px; right: 10px; z-index: 5; font-family: var(--mono); font-size: 8px; letter-spacing: .08em; background: rgba(4,7,9,.82); color: var(--muted); border: 1px solid var(--bd2); padding: 5px 10px; backdrop-filter: blur(8px); transition: all .15s; }
.cap-btn:hover { color: var(--cyan); border-color: rgba(0,229,212,.5); }
.media-row { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.media-cell { border-right: 1px solid var(--border); }
.media-cell:last-child { border-right: none; }
.media-lbl { font-family: var(--mono); font-size: 8.5px; color: var(--muted); letter-spacing: .1em; padding: 8px 16px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 6px; }
.media-lbl .mv { color: var(--sub); }

/* ── COMPANY PAGE ────────────────────────── */
.founder-card { border: 1px solid var(--border); display: grid; grid-template-columns: 200px 1fr; background: rgba(9,17,30,.4); backdrop-filter: blur(12px); box-shadow: 0 8px 40px rgba(0,0,0,.5); }
.f-side { border-right: 1px solid var(--border); padding: 28px 22px; }
.f-id { font-family: var(--mono); font-size: 8.5px; color: var(--muted); letter-spacing: .07em; margin-bottom: 8px; }
.f-name {
  font-size: 22px; font-weight: 600; margin-bottom: 4px;
  background: linear-gradient(155deg,#b5bcc4 0%,#d6dbe1 16%,#f3f4f6 32%,#dfe3e8 44%,#c6cbd2 58%,#eceef2 76%,#ccd0d6 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.f-role { font-family: var(--mono); font-size: 9px; color: var(--cyan); letter-spacing: .08em; margin-bottom: 20px; }
.f-stamp { font-family: var(--mono); font-size: 8px; font-weight: 700; letter-spacing: .1em; background: var(--cyan); color: var(--bg); padding: 3px 10px; border-radius: 100px; display: inline-block; box-shadow: 0 1px 8px rgba(0,229,212,.22); }
.f-loc { margin-top: 14px; font-family: var(--mono); font-size: 9px; color: var(--muted); line-height: 1.6; }
.f-main { padding: 28px 32px; }
.f-block { padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--border); }
.f-block:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: none; }
.f-lbl { font-family: var(--mono); font-size: 9px; color: var(--muted); letter-spacing: .08em; margin-bottom: 7px; }
.f-text { font-size: 13.5px; color: var(--sub); line-height: 1.75; }
.f-text strong { color: var(--text); font-weight: 600; }
.f-text a { color: var(--cyan); text-decoration: none; }
.f-text a:hover { text-decoration: underline; }
.redact { display: inline-block; height: 13px; background: var(--sub); vertical-align: middle; opacity: .28; margin: 0 2px; }

/* ── DEPLOY/RFQ ──────────────────────────── */
.deploy-layout { display: grid; grid-template-columns: 1fr 480px; gap: 72px; align-items: start; }
.target-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.pill { font-family: var(--mono); font-size: 9.5px; color: var(--sub); border: 1px solid var(--border); padding: 5px 14px; letter-spacing: .06em; border-radius: 100px; }

.rfq { border: 1px solid var(--bd2); background: rgba(9,17,30,.5); backdrop-filter: blur(16px); box-shadow: 0 0 0 .5px rgba(0,229,212,.05), 0 12px 48px rgba(0,0,0,.65), 0 1px 0 rgba(255,255,255,.03) inset; }
.rfq-hdr { padding: 14px 20px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.rfq-title { font-family: var(--mono); font-size: 9.5px; color: var(--muted); letter-spacing: .07em; }
.rfq-badge { font-family: var(--mono); font-size: 8px; color: var(--cyan); border: 1px solid var(--cyan); padding: 2px 8px; letter-spacing: .1em; border-radius: 2px; }
.rfq-body { padding: 24px 20px; display: flex; flex-direction: column; gap: 16px; }
.rfq-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.rfq-field { display: flex; flex-direction: column; gap: 6px; }
.rfq-lbl { font-family: var(--mono); font-size: 9px; color: var(--muted); letter-spacing: .09em; }
.rfq-input, .rfq-select, .rfq-textarea {
  background: rgba(0,0,0,.35); border: 1px solid var(--bd2);
  color: var(--text); font-family: var(--sans); font-size: 13.5px;
  padding: 10px 14px; outline: none; width: 100%; border-radius: 2px;
  transition: border-color .15s, box-shadow .15s;
}
.rfq-input:focus, .rfq-select:focus, .rfq-textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 2px rgba(0,229,212,.08); }
.rfq-input::placeholder, .rfq-textarea::placeholder { color: var(--muted); }
.rfq-select { font-family: var(--mono); font-size: 11px; color: var(--sub); letter-spacing: .04em; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233A5570' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.rfq-select option { background: var(--bg); }
.rfq-textarea { resize: none; line-height: 1.6; }
.rfq-footer { padding: 0 20px 20px; }
.rfq-submit { cursor: pointer; font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .08em; background: var(--cyan); color: var(--bg); border: none; padding: 13px; width: 100%; border-radius: 3px; transition: opacity .15s, box-shadow .15s; box-shadow: 0 1px 8px rgba(0,229,212,.18); }
.rfq-submit:hover { opacity: .88; box-shadow: 0 2px 18px rgba(0,229,212,.32); }
.rfq-submit:disabled { cursor: not-allowed; opacity: .45; }
.rfq-note { font-family: var(--mono); font-size: 8.5px; color: var(--muted); text-align: center; margin-top: 10px; line-height: 1.5; }
.rfq-err { font-family: var(--mono); font-size: 9px; color: rgba(0,229,212,.8); letter-spacing: .06em; margin-top: 4px; }
.rfq-input.err, .rfq-select.err, .rfq-textarea.err { border-color: rgba(0,229,212,.5); }
.rfq-success { display: none; padding: 32px 20px; text-align: center; font-family: var(--mono); font-size: 12px; color: var(--cyan); line-height: 1.8; }
.rfq-ref { color: var(--sub); font-size: 10px; margin-top: 8px; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .wrap, .site-foot, .topbar, .statusbar { padding-left: 24px; padding-right: 24px; }
  .spec-strip { grid-template-columns: 1fr 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .diff-card { border-right: none; border-bottom: 1px solid var(--border); }
  .diff-card:last-child { border-bottom: none; }
  .cap-grid { grid-template-columns: 1fr; }
  .cap { border-right: none; }
  .cap:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .cap:last-child { border-bottom: none; }
  .fs-layout { grid-template-columns: 1fr; }
  .founder-card { grid-template-columns: 1fr; }
  .f-side { border-right: none; border-bottom: 1px solid var(--border); }
  .deploy-layout { grid-template-columns: 1fr; }
  .hw-bar { padding: 14px 24px; }
  .vs-table .row-lbl { width: 90px; }
  .media-row { grid-template-columns: 1fr; }
  .media-cell { border-right: none; border-bottom: 1px solid var(--border); }
  .media-cell:last-child { border-bottom: none; }
}
@media (max-width: 768px) {
  .t-nav { display: none; }
  .t-ham { cursor: pointer; display: flex; }
  .rfq-row { grid-template-columns: 1fr; }
  .hero-h1 { font-size: clamp(36px, 9vw, 52px); }
  .hero-content { padding: 0 20px; }
}
@media (max-width: 600px) {
  .hero-h1 { font-size: 36px; }
  .sbar-item:not(:first-child):not(.sbar-right) { display: none; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } }