/* ============================================================
   MAINFRAME — Variant 4
   Midnight blue · electric cyan · network/hacker terminal vibe.
   ============================================================ */

:root {
  --bg:         #03081a;
  --bg-elev:    #0a1024;
  --bg-card:    #0e162e;
  --bg-deep:    #020512;
  --line:       #182142;
  --line-2:     #283360;
  --grid:       rgba(99, 165, 255, 0.07);
  --fg:         #d8e7ff;
  --fg-2:       #9ab4d8;
  --fg-3:       #5d7aa3;
  --fg-4:       #34466b;
  --blue:       oklch(0.74 0.19 255);
  --blue-2:     oklch(0.74 0.19 255 / 0.18);
  --cyan:       oklch(0.88 0.14 215);
  --cyan-2:     oklch(0.88 0.14 215 / 0.18);
  --hot:        oklch(0.75 0.22 20);

  --font-mono:    'IBM Plex Mono', 'JetBrains Mono', ui-monospace, monospace;
  --font-display: 'IBM Plex Mono', 'JetBrains Mono', ui-monospace, monospace;
  --font-sans:    'IBM Plex Mono', system-ui, sans-serif;

  --container: 1400px;
  --pad-x: 32px;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  background-image:
    radial-gradient(900px 700px at 90% 0%, oklch(0.45 0.22 255 / 0.20), transparent 60%),
    radial-gradient(700px 600px at 10% 40%, oklch(0.55 0.16 215 / 0.10), transparent 60%);
  background-attachment: fixed;
}

body.scanlines::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 60;
  background: repeating-linear-gradient(0deg, rgba(0,8,30,0.22) 0px, rgba(0,8,30,0.22) 1px, transparent 1px, transparent 3px);
  mix-blend-mode: multiply;
}
body.vignette::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 61;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(0,0,0,0.55) 100%);
}

::selection { background: var(--blue); color: #03081a; }

.up { text-transform: uppercase; letter-spacing: 0.08em; }
.dim { color: var(--fg-3); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  position: relative;
  z-index: 2;
}
.section { padding-top: 96px; padding-bottom: 96px; position: relative; z-index: 2; }

/* background grid layer */
.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(var(--grid) 1px, transparent 1px) 0 0 / 60px 60px,
    linear-gradient(90deg, var(--grid) 1px, transparent 1px) 0 0 / 60px 60px;
  mask-image: radial-gradient(ellipse at 60% 30%, black 30%, transparent 80%);
}
body.no-grid .bg-grid { display: none; }

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3,8,26,0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--blue);
  box-shadow: 0 0 24px oklch(0.74 0.19 255 / 0.25);
}
.nav-inner {
  display: flex;
  align-items: stretch;
  height: 56px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.nav-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-right: 1px solid var(--line);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-2);
  text-decoration: none;
  white-space: nowrap;
}
.nav-cell:hover { color: var(--cyan); background: rgba(99,165,255,0.06); }
.nav-cell.brand {
  color: var(--cyan);
  font-weight: 700;
  text-shadow: 0 0 12px var(--cyan-2);
}
.nav-cell.brand .x {
  color: var(--blue);
  margin: 0 2px;
}
.nav-spacer { flex: 1; border-right: 1px solid var(--line); display: flex; align-items: center; padding: 0 18px; color: var(--fg-3); font-size: 11px; }
.nav-spacer .ok { color: var(--cyan); margin-right: 6px; }
.nav-cell.cta {
  background: var(--blue);
  color: #03081a;
  font-weight: 600;
  text-shadow: none;
}
.nav-cell.cta:hover { background: var(--cyan); color: #03081a; }
.nav-cell.lang { padding: 0; }
.nav-cell.lang button {
  background: transparent;
  border: none;
  color: var(--fg-3);
  cursor: pointer;
  padding: 0 12px;
  height: 100%;
  font: inherit;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.nav-cell.lang button.active { color: var(--cyan); text-shadow: 0 0 8px var(--cyan-2); }
.nav-cell.lang button + button { border-left: 1px solid var(--line); }

/* ---- HERO ---- */
.hero { position: relative; border-bottom: 1px solid var(--line); }
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.hero-main {
  padding: 72px 48px 56px;
  border-right: 1px solid var(--line);
  position: relative;
}
.hero-conn {
  display: flex; align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-3);
  margin-bottom: 48px;
}
.hero-conn .ok {
  color: var(--cyan);
  text-shadow: 0 0 8px var(--cyan);
  animation: blink 1.6s infinite;
}
.hero-conn .pre { color: var(--blue); }
.hero-conn .sep { color: var(--fg-4); }

@keyframes blink { 50% { opacity: 0.4; } }

.hero-ascii {
  font-family: var(--font-mono);
  white-space: pre;
  font-size: 9px;
  line-height: 1.05;
  color: var(--blue);
  text-shadow: 0 0 8px var(--blue-2);
  margin-bottom: 32px;
  user-select: none;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 8vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.05em;
  margin: 0;
  text-transform: uppercase;
}
.hero h1 .ln { display: block; }
.hero h1 .ln em {
  font-style: normal;
  color: var(--cyan);
  text-shadow:
    0 0 20px var(--cyan-2),
    0 0 40px oklch(0.88 0.14 215 / 0.25);
}
.hero h1 .ln .blue {
  color: var(--blue);
  text-shadow: 0 0 20px var(--blue-2);
}
.hero h1 .punct { color: var(--hot); }
.hero h1 .caret {
  display: inline-block;
  width: 0.5em; height: 0.85em;
  background: var(--cyan);
  vertical-align: -0.05em;
  margin-left: 0.08em;
  animation: blink 1.05s steps(2) infinite;
  box-shadow: 0 0 14px var(--cyan);
}

.hero-sub {
  max-width: 720px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-2);
  margin: 40px 0 36px;
  text-transform: none;
}
.hero-sub b { color: var(--cyan); font-weight: 500; }

.hero-cta { display: flex; gap: 0; border: 1px solid var(--line-2); width: max-content; }
.btn-block {
  padding: 14px 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg);
  text-decoration: none;
  border-right: 1px solid var(--line-2);
  background: transparent;
  cursor: pointer;
  border-top: none; border-bottom: none; border-left: none;
}
.btn-block:last-child { border-right: none; }
.btn-block:hover { background: var(--blue); color: #03081a; }
.btn-block.prim { background: var(--blue); color: #03081a; font-weight: 600; }
.btn-block.prim:hover { background: var(--cyan); }
.btn-block.cyan { color: var(--cyan); }
.btn-block.cyan:hover { background: var(--cyan); color: #03081a; }

/* ---- Network panel (right side) ---- */
.netpanel {
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
}
.np-head {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-elev);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-3);
}
.np-head .ok { color: var(--cyan); }
.np-head .ok::before { content: "◉ "; text-shadow: 0 0 8px var(--cyan); }
.np-head .right { margin-left: auto; color: var(--fg-3); font-size: 10px; }
.np-topology {
  position: relative;
  height: 280px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(var(--grid) 1px, transparent 1px) 0 0 / 30px 30px,
    linear-gradient(90deg, var(--grid) 1px, transparent 1px) 0 0 / 30px 30px;
  overflow: hidden;
}
.np-topology svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.np-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.np-stats > div {
  padding: 14px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.np-stats > div:nth-child(2n) { border-right: none; }
.np-stats > div:nth-last-child(-n+2) { border-bottom: none; }
.np-stats .l {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-3);
  margin-bottom: 6px;
}
.np-stats .v {
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.np-stats .v em {
  font-style: normal;
  color: var(--cyan);
  text-shadow: 0 0 12px var(--cyan-2);
}
.np-log {
  flex: 1;
  padding: 12px 16px;
  font-size: 11px;
  line-height: 1.7;
  color: var(--fg-2);
  max-height: 200px;
  overflow: hidden;
  position: relative;
}
.np-log .l { display: block; }
.np-log .ts { color: var(--fg-4); margin-right: 8px; }
.np-log .ok { color: var(--cyan); }
.np-log .blue { color: var(--blue); }
.np-log .warn { color: oklch(0.85 0.18 90); }
.np-log .err { color: var(--hot); }
.np-log::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 50%;
  background: linear-gradient(transparent, var(--bg-deep));
  pointer-events: none;
}

/* hero stats row */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--blue);
  background: var(--bg);
  box-shadow: 0 -1px 24px oklch(0.74 0.19 255 / 0.15);
}
.hero-stats > div {
  padding: 22px 28px;
  border-right: 1px solid var(--line);
}
.hero-stats > div:last-child { border-right: none; }
.hero-stats .l {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-3);
  margin-bottom: 8px;
}
.hero-stats .v {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.03em;
}
.hero-stats .v em {
  color: var(--cyan);
  font-style: normal;
  text-shadow: 0 0 16px var(--cyan-2);
}

/* ---- packet stream marquee ---- */
.packets {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-deep);
  padding: 12px 0;
}
.packets-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: scroll 50s linear infinite;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-2);
}
.packets-track > span { display: inline-flex; align-items: center; gap: 8px; }
.packets-track .pre { color: var(--blue); }
.packets-track .ok { color: var(--cyan); }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- SECTION HEAD ---- */
.s-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--blue);
}
.s-head .s-id {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 16px;
}
.s-head .s-id::before { content: "[ "; color: var(--fg-3); }
.s-head .s-id::after  { content: " ]"; color: var(--fg-3); }
.s-head h2 {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0;
}
.s-head h2 em { font-style: normal; color: var(--cyan); text-shadow: 0 0 16px var(--cyan-2); }
.s-head h2 .blue { color: var(--blue); text-shadow: 0 0 16px var(--blue-2); }
.s-head p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-2);
  margin: 0;
  max-width: 480px;
}

/* ---- EXPERTISE ---- */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
  background: var(--bg-deep);
}
.exp-block {
  padding: 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background 0.2s;
}
.exp-block:nth-child(2n) { border-right: none; }
.exp-block:nth-last-child(-n+2) { border-bottom: none; }
.exp-block:hover { background: rgba(99,165,255,0.04); }
.exp-block .corner {
  position: absolute;
  top: 0; right: 0;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-4);
  padding: 12px 14px;
  letter-spacing: 0.1em;
}
.exp-block .corner::before { content: "│ "; }
.exp-block .lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 22px;
}
.exp-block .lbl::before { content: "▸ "; color: var(--cyan); }
.exp-block h3 {
  font-family: var(--font-mono);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 30px;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0 0 20px;
  max-width: 90%;
}
.exp-block .desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-2);
  margin: 0 0 28px;
  max-width: 92%;
}
.exp-block .stack {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-3);
  border-top: 1px dashed var(--line-2);
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}
.exp-block .stack span { color: var(--fg); }
.exp-block .stack span::before { content: "◇ "; color: var(--cyan); }

.exp-block .ascii-num {
  position: absolute;
  bottom: 24px;
  right: 28px;
  font-family: var(--font-mono);
  font-size: 9px;
  line-height: 1.05;
  white-space: pre;
  color: var(--line-2);
  text-align: right;
}

/* ---- PROCESS — pipeline ---- */
.proc-pipeline {
  border: 1px solid var(--line);
  background: var(--bg-deep);
  padding: 0;
  overflow: hidden;
}
.proc-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr 180px;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  transition: background 0.18s;
  position: relative;
}
.proc-row:last-child { border-bottom: none; }
.proc-row:hover { background: rgba(99,165,255,0.04); }
.proc-row > * { padding: 26px 24px; border-right: 1px solid var(--line); }
.proc-row > *:last-child { border-right: none; }
.proc-row .step {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elev);
  position: relative;
}
.proc-row .step::after {
  content: "";
  position: absolute;
  right: -5px; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  border: 1px solid var(--bg);
  z-index: 1;
}
.proc-row h4 {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  align-self: center;
}
.proc-row h4 em { font-style: normal; color: var(--cyan); }
.proc-row p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--fg-2);
  margin: 0;
  align-self: center;
}
.proc-row .meta {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.proc-row .meta .dur {
  color: var(--cyan);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  text-shadow: 0 0 10px var(--cyan-2);
}
.proc-row .meta .out { color: var(--fg); }
.proc-row .meta .out span { color: var(--fg-3); }

/* ---- CAREERS ---- */
.jobs {
  border: 1px solid var(--line);
  background: var(--bg-deep);
}
.job {
  display: grid;
  grid-template-columns: 100px 1fr 220px 160px 80px;
  align-items: center;
  padding: 20px 28px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--fg);
  gap: 24px;
  cursor: pointer;
  transition: background 0.15s;
}
.job:last-child { border-bottom: none; }
.job:hover { background: rgba(99,165,255,0.05); }
.job:hover .arrow { color: var(--cyan); transform: translateX(4px); text-shadow: 0 0 8px var(--cyan-2); }
.job .id { font-family: var(--font-mono); font-size: 11px; color: var(--blue); letter-spacing: 0.08em; }
.job .id::before { content: "#"; color: var(--fg-3); }
.job .title { font-family: var(--font-mono); font-weight: 700; font-size: 17px; text-transform: uppercase; letter-spacing: -0.01em; }
.job .stack { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-3); }
.job .where {
  font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-2);
  display: flex; align-items: center; gap: 8px;
}
.job .where::before {
  content: ""; width: 6px; height: 6px;
  background: var(--cyan); border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan);
}
.job .arrow {
  font-family: var(--font-mono);
  color: var(--fg-3);
  text-align: right;
  transition: all 0.18s;
}
.job-footer {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.job-footer::before { content: "// "; color: var(--blue); }

/* ---- CONTACT ---- */
.contact {
  border: 1px solid var(--blue);
  background:
    radial-gradient(900px 600px at 50% 0%, oklch(0.5 0.22 255 / 0.18), transparent 60%),
    linear-gradient(135deg, var(--bg-deep) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px oklch(0.74 0.19 255 / 0.2) inset;
}
.contact-inner { position: relative; padding: clamp(56px, 8vw, 100px) clamp(32px, 6vw, 80px); }
.contact .s-id { color: var(--blue); font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 24px; }
.contact .s-id::before { content: "[ "; color: var(--fg-3); }
.contact .s-id::after { content: " ]"; color: var(--fg-3); }
.contact h2 {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(36px, 6.5vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  margin: 0 0 36px;
  text-wrap: balance;
  overflow-wrap: anywhere;
}
.contact h2 .email-line {
  display: block;
  font-size: 0.62em;
  letter-spacing: -0.03em;
  margin-top: 0.12em;
  overflow-wrap: anywhere;
}
.contact h2 em { font-style: normal; color: var(--cyan); text-shadow: 0 0 24px var(--cyan-2); }
.contact h2 .blue { color: var(--blue); text-shadow: 0 0 24px var(--blue-2); }
.contact h2 .punct { color: var(--hot); }
.contact p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 640px;
  margin: 0 0 48px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
  background: var(--bg);
  max-width: 740px;
}
.contact-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--fg);
  transition: all 0.15s;
}
.contact-grid a:nth-child(2n) { border-right: none; }
.contact-grid a:nth-last-child(-n+2) { border-bottom: none; }
.contact-grid a:hover { background: var(--blue); color: #03081a; }
.contact-grid a:hover .lbl { color: rgba(3,8,26,0.6); }
.contact-grid a .lbl {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-3);
  margin-bottom: 6px;
}
.contact-grid a .v { font-size: 14px; color: inherit; }

/* ---- FOOTER ---- */
.footer {
  border-top: 1px solid var(--blue);
  background: var(--bg-deep);
  padding: 56px 0 28px;
  box-shadow: 0 0 36px oklch(0.74 0.19 255 / 0.18) inset;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-grid h5 {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin: 0 0 16px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-grid a { font-family: var(--font-mono); color: var(--fg-2); text-decoration: none; font-size: 13px; }
.footer-grid a:hover { color: var(--cyan); }
.footer-bottom {
  display: flex; justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-3);
}
.footer-bottom .ok { color: var(--cyan); }
.footer-bottom .ok::before { content: "◉ "; text-shadow: 0 0 8px var(--cyan); }

/* ASCII logo footer */
.ascii-logo {
  font-family: var(--font-mono);
  white-space: pre;
  font-size: 10px;
  line-height: 1.1;
  color: var(--blue);
  text-shadow: 0 0 8px var(--blue-2);
  margin: 0 0 20px;
}

/* matrix rain canvas */
.matrix {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
}
body.no-matrix .matrix { display: none; }

/* responsive */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .netpanel { border-left: none; border-top: 1px solid var(--line); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stats > div:nth-child(2n) { border-right: none; }
  .hero-stats > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .s-head { grid-template-columns: 1fr; gap: 16px; }
  .exp-grid { grid-template-columns: 1fr; }
  .exp-block { border-right: none !important; }
  .proc-row { grid-template-columns: 60px 1fr; }
  .proc-row > * { padding: 18px 20px; border-right: none; }
  .proc-row p, .proc-row .meta { grid-column: 1 / -1; padding-top: 0 !important; padding-left: 80px; border-top: 1px dashed var(--line); }
  .job { grid-template-columns: 60px 1fr 40px; gap: 12px; }
  .job .stack, .job .where { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  :root { --pad-x: 16px; }
  .hero-main { padding: 48px 24px; }
  .nav-cell:not(.brand):not(.cta):not(.lang) { display: none; }
  .nav-spacer { display: none; }
}
