/* ═══════════════════════════════════════════════════════════════
   AGNISHWARBANERJEE.INFO — "COMMAND CENTER" DESIGN SYSTEM  v1.0
   Shared by index.html and all builds/*.html pages.
   Static / client-side only — safe for nginx:alpine bind mount.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg0:      #05070a;
  --bg1:      #090d13;
  --panel:    #0c1119;
  --panel2:   #111826;
  --line:     #1b2534;
  --line2:    #263243;
  --green:    #2ee87e;
  --green-hi: #52ff9d;
  --green-dk: rgba(46,232,126,.12);
  --cyan:     #5ad1ff;
  --amber:    #ffb454;
  --red:      #ff5f56;
  --text:     #e9eff6;
  --muted:    #93a1b3;
  --dim:      #5c6b7e;
  --mono:     'JetBrains Mono', 'SFMono-Regular', Consolas, 'Courier New', monospace;
  --sans:     'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --nav-h:    64px;
  --radius:   10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html:focus-within { scroll-behavior: smooth; }

body {
  background: var(--bg0);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.65;
  overflow-x: hidden;
}

/* subtle grid + vignette over the whole app */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -2;
  background:
    linear-gradient(rgba(46,232,126,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,232,126,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 75%);
}
body::after {
  content: '';
  position: fixed; inset: 0; z-index: -3;
  background: radial-gradient(ellipse at 15% 0%, rgba(46,232,126,.07), transparent 55%),
              radial-gradient(ellipse at 85% 100%, rgba(90,209,255,.05), transparent 55%),
              var(--bg0);
}

a { color: var(--green); text-decoration: none; transition: color .2s; }
a:hover { color: var(--green-hi); }
img { display: block; max-width: 100%; }
::selection { background: rgba(46,232,126,.28); }

h1, h2, h3, h4 { font-weight: 700; letter-spacing: -.02em; color: var(--text); }
h1 { font-size: clamp(2.4rem, 5.6vw, 4.4rem); line-height: 1.06; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); line-height: 1.15; }
h3 { font-size: 1.15rem; }
p  { color: var(--muted); font-size: 1.02rem; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.section   { padding: 96px 0; position: relative; }
.section--alt { background: linear-gradient(180deg, transparent, rgba(12,17,25,.75) 12%, rgba(12,17,25,.75) 88%, transparent); }

/* ── mono labels / section tags ─────────────────────────────── */
.sec-tag {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .16em;
  color: var(--green);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.1rem;
}
.sec-tag::before { content: '▸'; color: var(--dim); }
.sec-tag .dim { color: var(--dim); }

.section-header { margin-bottom: 3rem; max-width: 780px; }
.section-header p { margin-top: .9rem; }
.section-header--full { max-width: 100%; }

/* ── status chips / LEDs ────────────────────────────────────── */
.led { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px rgba(46,232,126,.8); animation: blink 2.2s ease-in-out infinite; }
.led--amber { background: var(--amber); box-shadow: 0 0 8px rgba(255,180,84,.8); }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.chip {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--mono); font-size: .68rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--green);
  background: var(--green-dk); border: 1px solid rgba(46,232,126,.3);
  border-radius: 4px; padding: .3rem .7rem;
}
.chip--amber { color: var(--amber); background: rgba(255,180,84,.1); border-color: rgba(255,180,84,.3); }
.chip--cyan  { color: var(--cyan);  background: rgba(90,209,255,.1); border-color: rgba(90,209,255,.3); }

/* ── panels ─────────────────────────────────────────────────── */
.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
}
.panel--pad { padding: 2rem 1.8rem; }

/* corner brackets */
.brkt::before, .brkt::after {
  content: ''; position: absolute; width: 14px; height: 14px; pointer-events: none;
}
.brkt::before { top: -1px; left: -1px; border-top: 2px solid var(--green); border-left: 2px solid var(--green); border-top-left-radius: var(--radius); }
.brkt::after  { bottom: -1px; right: -1px; border-bottom: 2px solid var(--green); border-right: 2px solid var(--green); border-bottom-right-radius: var(--radius); }

/* panel title bar (terminal style) */
.bar {
  display: flex; align-items: center; gap: .5rem;
  padding: .65rem 1rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono); font-size: .7rem; letter-spacing: .1em;
  color: var(--dim); text-transform: uppercase;
}
.bar .dots { display: flex; gap: .38rem; margin-right: .5rem; }
.bar .dots i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.bar .dots i:nth-child(1) { background: var(--red); }
.bar .dots i:nth-child(2) { background: var(--amber); }
.bar .dots i:nth-child(3) { background: var(--green); }

/* ── buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .8rem 1.7rem;
  border-radius: 6px;
  font-family: var(--mono);
  font-weight: 700; font-size: .82rem; letter-spacing: .08em;
  text-transform: uppercase;
  transition: all .18s; cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary { background: var(--green); color: #041008 !important; border-color: var(--green); box-shadow: 0 0 24px rgba(46,232,126,.25); }
.btn-primary:hover { background: var(--green-hi); border-color: var(--green-hi); transform: translateY(-1px); box-shadow: 0 0 34px rgba(46,232,126,.4); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--line2); }
.btn-outline:hover { border-color: var(--green); color: var(--green); }
.btn-ghost { background: transparent; color: var(--muted); border-color: transparent; padding-left: .6rem; padding-right: .6rem; }
.btn-ghost:hover { color: var(--green); }

/* ── navigation ─────────────────────────────────────────────── */
nav.cmd-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(5,7,10,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center;
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 2rem; width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav-logo { display: flex; align-items: center; gap: .7rem; }
.nav-logo img { height: 56px; width: auto; }
.nav-logo .sig { font-family: var(--mono); font-weight: 800; letter-spacing: .1em; color: var(--text); font-size: .95rem; }
.nav-logo .sig span { color: var(--green); }

.nav-links { display: flex; gap: 1.6rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--muted); font-family: var(--mono); font-size: .74rem;
  font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-cta {
  background: var(--green-dk); border: 1px solid rgba(46,232,126,.4);
  color: var(--green) !important; padding: .42rem 1.1rem; border-radius: 6px;
}
.nav-cta:hover { background: var(--green); color: #041008 !important; }

.nav-kbd {
  font-family: var(--mono); font-size: .66rem; color: var(--dim);
  border: 1px solid var(--line2); border-radius: 5px; padding: .25rem .55rem;
  cursor: pointer; transition: all .2s; white-space: nowrap;
}
.nav-kbd:hover { color: var(--green); border-color: var(--green); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

.mobile-nav {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 999;
  background: rgba(5,7,10,.97); border-bottom: 1px solid var(--line);
  flex-direction: column; padding: 1rem 2rem 1.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--muted); font-family: var(--mono); font-size: .85rem;
  letter-spacing: .1em; text-transform: uppercase; padding: .8rem 0;
  border-bottom: 1px solid var(--line);
}

/* ── command palette ────────────────────────────────────────── */
.palette-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(3,5,8,.7); backdrop-filter: blur(6px);
  display: none; align-items: flex-start; justify-content: center; padding-top: 14vh;
}
.palette-overlay.open { display: flex; }
.palette {
  width: min(560px, 92vw);
  background: var(--panel2); border: 1px solid var(--line2);
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(46,232,126,.15);
}
.palette input {
  width: 100%; background: transparent; border: none; outline: none;
  color: var(--text); font-family: var(--mono); font-size: 1rem;
  padding: 1.1rem 1.2rem; border-bottom: 1px solid var(--line);
}
.palette input::placeholder { color: var(--dim); }
.palette-list { max-height: 320px; overflow-y: auto; }
.palette-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: .8rem 1.2rem; cursor: pointer;
  font-family: var(--mono); font-size: .85rem; color: var(--muted);
}
.palette-item .hint { font-size: .68rem; color: var(--dim); }
.palette-item:hover, .palette-item.sel { background: var(--green-dk); color: var(--green); }

/* ── hero ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  display: flex; align-items: center; position: relative;
}
#net-canvas { position: absolute; inset: 0; z-index: -1; opacity: .5; }

.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 3.5rem; align-items: center;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--green);
  border: 1px solid rgba(46,232,126,.35); background: var(--green-dk);
  border-radius: 4px; padding: .4rem .9rem; margin-bottom: 1.6rem;
}
.hero h1 em { color: var(--green); font-style: normal; text-shadow: 0 0 30px rgba(46,232,126,.35); }
.hero-sub { font-size: 1.12rem; max-width: 540px; margin: 1.5rem 0 2.2rem; line-height: 1.75; }
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; }

/* typed caret */
.caret { display: inline-block; width: .55em; height: 1.05em; background: var(--green); vertical-align: -0.12em; animation: caret 1s steps(1) infinite; }
@keyframes caret { 50% { opacity: 0; } }

/* ── terminal ───────────────────────────────────────────────── */
.term { font-family: var(--mono); font-size: .85rem; box-shadow: 0 30px 80px rgba(0,0,0,.55); overflow: hidden; }
.term-body { padding: 1.1rem 1.2rem 1.3rem; min-height: 320px; max-height: 420px; overflow-y: auto; }
.term-body::-webkit-scrollbar { width: 6px; }
.term-body::-webkit-scrollbar-thumb { background: var(--line2); border-radius: 3px; }
.t-line { white-space: pre-wrap; word-break: break-word; line-height: 1.55; }
.t-line .p { color: var(--green); }
.t-line .c { color: var(--cyan); }
.t-line .a { color: var(--amber); }
.t-line .d { color: var(--dim); }
.t-line .w { color: var(--text); }
.t-out { color: var(--muted); }
.t-out a { text-decoration: underline; text-underline-offset: 3px; }
.term-input-row { display: flex; align-items: center; gap: .5rem; padding: .7rem 1.2rem; border-top: 1px solid var(--line); }
.term-input-row .p { color: var(--green); font-family: var(--mono); font-size: .85rem; }
.term-input-row input {
  flex: 1; background: transparent; border: none; outline: none;
  color: var(--text); font-family: var(--mono); font-size: .85rem; caret-color: var(--green);
}
.term-hints { display: flex; flex-wrap: wrap; gap: .5rem; padding: .8rem 1.2rem 1rem; border-top: 1px dashed var(--line); }
.term-hint {
  font-family: var(--mono); font-size: .68rem; color: var(--muted);
  border: 1px solid var(--line2); border-radius: 4px; padding: .22rem .6rem; cursor: pointer;
  transition: all .15s;
}
.term-hint:hover { color: var(--green); border-color: var(--green); }

/* ── ticker strip ───────────────────────────────────────────── */
.ticker-wrap { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(12,17,25,.6); overflow: hidden; padding: .85rem 0; }
.ticker { display: flex; gap: 3.5rem; width: max-content; animation: tick 42s linear infinite; }
.ticker span { font-family: var(--mono); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--dim); white-space: nowrap; }
.ticker span b { color: var(--muted); font-weight: 600; }
.ticker span i { color: var(--green); font-style: normal; }
@keyframes tick { to { transform: translateX(-50%); } }

/* ── stats ──────────────────────────────────────────────────── */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.stat-cell { background: var(--panel); padding: 1.6rem 1.2rem; text-align: center; }
.stat-num { font-family: var(--mono); font-size: 2rem; font-weight: 800; color: var(--green); display: block; }
.stat-label { font-family: var(--mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--dim); margin-top: .35rem; display: block; }

/* ── cards grid ─────────────────────────────────────────────── */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.5rem; display: flex; flex-direction: column;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
a.card { color: inherit; }
.card:hover { border-color: rgba(46,232,126,.55); transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0,0,0,.4), 0 0 0 1px rgba(46,232,126,.15); }
.card:hover .card-go { opacity: 1; transform: translateX(0); }
.card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.card-icon {
  width: 42px; height: 42px; border-radius: 8px;
  background: var(--green-dk); border: 1px solid rgba(46,232,126,.25);
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
}
.card-status { display: inline-flex; align-items: center; gap: .45rem; font-family: var(--mono); font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: var(--green); }
.card-status.amber { color: var(--amber); }
.card-tool { font-family: var(--mono); font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; color: var(--dim); margin-bottom: .5rem; }
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .9rem; flex: 1; }
.card-metric {
  display: inline-block; align-self: flex-start; margin-top: 1.1rem;
  font-family: var(--mono); font-size: .72rem; font-weight: 700;
  color: var(--green-hi); background: var(--green-dk);
  border: 1px solid rgba(46,232,126,.3); border-radius: 4px; padding: .3rem .7rem;
}
.card-go {
  margin-top: 1rem; font-family: var(--mono); font-size: .72rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--green);
  opacity: .55; transform: translateX(-4px); transition: all .25s;
}
.card-go::after { content: ' →'; }

/* ── services / offers ──────────────────────────────────────── */
.offers { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 1.4rem; align-items: stretch; }
.offer {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.7rem; display: flex; flex-direction: column; position: relative;
  transition: border-color .25s, transform .25s;
}
.offer:hover { border-color: rgba(46,232,126,.5); transform: translateY(-3px); }
.offer--flag { background: linear-gradient(165deg, rgba(46,232,126,.09), var(--panel) 55%); border-color: rgba(46,232,126,.45); }
.offer-tag { font-family: var(--mono); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--dim); margin-bottom: .9rem; display: flex; align-items: center; gap: .5rem; }
.offer h3 { font-size: 1.3rem; margin-bottom: .7rem; }
.offer p { font-size: .93rem; }
.offer ul { list-style: none; margin: 1.1rem 0 1.4rem; flex: 1; }
.offer ul li { font-size: .88rem; color: var(--muted); padding: .32rem 0 .32rem 1.4rem; position: relative; }
.offer ul li::before { content: '▸'; position: absolute; left: 0; color: var(--green); font-family: var(--mono); }

/* ── timeline ───────────────────────────────────────────────── */
.timeline { margin-top: 2.5rem; position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 6px; bottom: 0; width: 1px; background: linear-gradient(to bottom, var(--green), var(--line) 80%); }
.timeline-item { position: relative; padding: 0 0 2.4rem 1.8rem; }
.timeline-item::before {
  content: ''; position: absolute; left: calc(-2rem - 5px); top: 7px;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--bg0); border: 2px solid var(--green);
  box-shadow: 0 0 10px rgba(46,232,126,.5);
}
.timeline-date { font-family: var(--mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--green); margin-bottom: .3rem; }
.timeline-role { font-size: 1.06rem; font-weight: 700; color: var(--text); }
.timeline-company { font-size: .88rem; color: var(--dim); margin: .15rem 0 .5rem; font-family: var(--mono); }
.timeline-desc { font-size: .92rem; color: var(--muted); max-width: 720px; }

/* ── bio ────────────────────────────────────────────────────── */
.bio-grid { display: grid; grid-template-columns: .9fr 1.5fr; gap: 4rem; align-items: start; }
.bio-img-wrap { position: sticky; top: calc(var(--nav-h) + 2rem); }
.bio-img-wrap img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top; border-radius: var(--radius); border: 1px solid var(--line2); filter: saturate(.92); }
.bio-img-caption { font-family: var(--mono); font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; color: var(--dim); margin-top: .7rem; display: flex; align-items: center; gap: .5rem; }
.bio-content p { margin-bottom: 1.15rem; }
.bio-tags { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.6rem; }
.bio-tag {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .06em;
  background: var(--panel2); border: 1px solid var(--line2); border-radius: 4px;
  padding: .32rem .75rem; color: var(--muted); transition: all .2s;
}
.bio-tag:hover { border-color: var(--green); color: var(--green); }

/* ── image placeholder slots ────────────────────────────────── */
.img-slot {
  border: 1px dashed var(--line2); border-radius: var(--radius);
  background: repeating-linear-gradient(45deg, rgba(46,232,126,.03), rgba(46,232,126,.03) 12px, transparent 12px, transparent 24px), var(--panel);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 2rem 1.5rem; gap: .5rem; min-height: 200px;
}
.img-slot .slot-id { font-family: var(--mono); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--amber); }
.img-slot .slot-desc { font-size: .85rem; color: var(--dim); max-width: 420px; }

/* ── media / screenshot figures ─────────────────────────────── */
.shot { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--panel); }
.shot img { width: 100%; }
.shot figcaption { font-size: .84rem; color: var(--dim); padding: .9rem 1.1rem; border-top: 1px solid var(--line); font-family: var(--mono); }
.shot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-top: 2rem; }
.shot-grid .wide { grid-column: 1 / -1; }

/* ── before/after split ─────────────────────────────────────── */
.ba-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1.4rem; align-items: stretch; }
.ba-panel { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1.6rem; }
.ba-panel.after { border-color: rgba(46,232,126,.4); background: linear-gradient(165deg, rgba(46,232,126,.07), var(--panel) 60%); }
.ba-label { font-family: var(--mono); font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: .8rem; }
.ba-panel .ba-label { color: var(--red); }
.ba-panel.after .ba-label { color: var(--green); }
.ba-panel h3 { margin-bottom: .7rem; font-size: 1.12rem; }
.ba-panel p { font-size: .92rem; }
.ba-arrow { display: flex; align-items: center; color: var(--green); font-size: 1.6rem; font-family: var(--mono); }

/* ── process steps ──────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.1rem; margin-top: 2.4rem; counter-reset: step; }
.step { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.2rem; position: relative; }
.step-num { font-family: var(--mono); font-size: .66rem; color: var(--dim); letter-spacing: .14em; }
.step-icon { font-size: 1.4rem; margin: .5rem 0 .6rem; }
.step h3 { font-size: .98rem; margin-bottom: .35rem; }
.step p { font-size: .82rem; }

/* ── comparison table (vs) ──────────────────────────────────── */
.vs-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1.4rem; align-items: stretch; margin-top: 2rem; }
.vs-col { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.5rem; }
.vs-col.win { border-color: rgba(46,232,126,.45); background: linear-gradient(165deg, rgba(46,232,126,.08), var(--panel) 55%); }
.vs-col h3 { font-size: 1.05rem; margin: .3rem 0 1rem; }
.vs-col ul { list-style: none; }
.vs-col li { font-size: .88rem; color: var(--muted); padding: .38rem 0 .38rem 1.5rem; position: relative; border-bottom: 1px dashed var(--line); }
.vs-col li:last-child { border-bottom: none; }
.vs-col li::before { content: '−'; position: absolute; left: 0; color: var(--dim); font-family: var(--mono); }
.vs-col.win li::before { content: '✓'; color: var(--green); }
.vs-badge { align-self: center; font-family: var(--mono); font-weight: 800; color: var(--dim); display: flex; align-items: center; }

/* ── result stats (big) ─────────────────────────────────────── */
.results { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.4rem; margin-top: 2.4rem; }
.result { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1.5rem; }
.result .r-num { font-family: var(--mono); font-size: 2.1rem; font-weight: 800; color: var(--green); line-height: 1.1; }
.result .r-label { font-weight: 700; color: var(--text); margin: .4rem 0 .45rem; font-size: .95rem; }
.result p { font-size: .84rem; }

/* ── scorecard table ────────────────────────────────────────── */
.score-table { width: 100%; border-collapse: collapse; font-family: var(--mono); font-size: .82rem; }
.score-table th, .score-table td { text-align: left; padding: .65rem .9rem; border-bottom: 1px solid var(--line); }
.score-table th { color: var(--dim); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; }
.score-table td { color: var(--muted); }
.pill { font-size: .64rem; font-weight: 700; letter-spacing: .1em; border-radius: 4px; padding: .18rem .55rem; }
.pill.pass { color: var(--green); background: var(--green-dk); border: 1px solid rgba(46,232,126,.35); }
.pill.flag { color: var(--amber); background: rgba(255,180,84,.1); border: 1px solid rgba(255,180,84,.35); }
.pill.fail { color: var(--red); background: rgba(255,95,86,.1); border: 1px solid rgba(255,95,86,.35); }

/* ── security two-col ───────────────────────────────────────── */
.sec-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-top: 2rem; }
.sec-col { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.5rem; }
.sec-col.deny { border-color: rgba(255,95,86,.35); }
.sec-col.allow { border-color: rgba(46,232,126,.4); }
.sec-col h3 { margin-bottom: 1rem; font-size: 1.02rem; }
.sec-col ul { list-style: none; }
.sec-col li { font-size: .88rem; color: var(--muted); padding: .4rem 0 .4rem 1.6rem; position: relative; font-family: var(--mono); }
.sec-col.deny li::before  { content: '✕'; position: absolute; left: 0; color: var(--red); }
.sec-col.allow li::before { content: '✓'; position: absolute; left: 0; color: var(--green); }

/* ── breadcrumb (build pages) ───────────────────────────────── */
.crumbs { font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--dim); margin-bottom: 1.6rem; }
.crumbs a { color: var(--dim); }
.crumbs a:hover { color: var(--green); }
.crumbs .sep { margin: 0 .5rem; color: var(--line2); }
.crumbs .here { color: var(--green); }

/* ── build page hero ────────────────────────────────────────── */
.bhero { padding: calc(var(--nav-h) + 4.5rem) 0 4rem; }
.bhero-grid { display: grid; grid-template-columns: 1.35fr .85fr; gap: 3.5rem; align-items: center; }
.bhero .lede { font-size: 1.1rem; margin: 1.3rem 0 2rem; max-width: 620px; line-height: 1.75; }
.bhero-card { text-align: center; padding: 2.2rem 1.8rem; }
.bhero-card .avatar { width: 108px; height: 108px; border-radius: 50%; margin: 0 auto 1rem; border: 2px solid rgba(46,232,126,.5); object-fit: cover; box-shadow: 0 0 30px rgba(46,232,126,.25); }
.bhero-card .avatar-glyph { width: 108px; height: 108px; border-radius: 50%; margin: 0 auto 1rem; border: 2px solid rgba(46,232,126,.5); display: flex; align-items: center; justify-content: center; font-size: 3rem; background: var(--green-dk); }
.bhero-card .agent-name { font-family: var(--mono); font-weight: 800; font-size: 1.25rem; color: var(--text); }
.bhero-card .agent-sub { font-family: var(--mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--dim); margin-top: .25rem; }
.mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.mini-stat .m-num { font-family: var(--mono); font-weight: 800; font-size: 1.25rem; color: var(--green); display: block; }
.mini-stat .m-label { font-family: var(--mono); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: var(--dim); }

/* ── CTA band ───────────────────────────────────────────────── */
.cta-band { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { margin-bottom: 2.2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── contact form ───────────────────────────────────────────── */
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.6rem; text-align: left; }
.contact-form .full { grid-column: 1 / -1; }
.contact-form input, .contact-form textarea {
  width: 100%; background: var(--panel2); border: 1px solid var(--line2); border-radius: 6px;
  color: var(--text); font-family: var(--mono); font-size: .88rem;
  padding: .85rem 1rem; outline: none; transition: border-color .2s; resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--green); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--dim); }
.contact-form-status { grid-column: 1 / -1; font-family: var(--mono); font-size: .8rem; color: var(--green); min-height: 1.2em; }

/* ── footer ─────────────────────────────────────────────────── */
footer { border-top: 1px solid var(--line); background: rgba(5,7,10,.9); padding: 3rem 0 2rem; margin-top: 2rem; }
.footer-inner { max-width: 1160px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.footer-logo img { height: 64px; width: auto; }
.footer-links { display: flex; gap: 1.8rem; list-style: none; flex-wrap: wrap; }
.footer-links a { font-family: var(--mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.footer-links a:hover { color: var(--green); }
.footer-copy { width: 100%; text-align: center; font-family: var(--mono); font-size: .68rem; color: var(--dim); margin-top: 2rem; padding-top: 1.4rem; border-top: 1px solid var(--line); letter-spacing: .08em; }
.footer-copy .status-line { color: var(--green); }

/* ── reveal animation ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker { animation: none; }
  html { scroll-behavior: auto; }
}

/* ── responsive ─────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .hero-grid, .bhero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .offers { grid-template-columns: 1fr; }
  .bio-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .bio-img-wrap { position: static; max-width: 340px; }
  .ba-grid, .vs-grid { grid-template-columns: 1fr; }
  .ba-arrow, .vs-badge { transform: rotate(90deg); justify-content: center; padding: 0; }
  .sec-cols { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .cards-grid, .shot-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .container { padding: 0 1.25rem; }
  .nav-kbd { display: none; }
}
