/* ============================================================
   GECKCORP / CORPORATE VISUAL SYSTEM GC-VIS-003
   Three colours. The fourth colour is disciplinary.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --acid:   #d6ff00;
  --ink:    #0b0b0b;
  --paper:  #f4f1e8;
  --alert:  #ff2e00;

  --display: 'Archivo Black', sans-serif;
  --body:    'Space Grotesk', sans-serif;
  --mono:    'IBM Plex Mono', monospace;

  --border: 3px solid var(--ink);
  --shadow: 8px 8px 0 var(--ink);
}

html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
}
::selection { background: var(--ink); color: var(--acid); }

a { color: inherit; }
img, svg { display: block; max-width: 100%; }

/* ── NAV ────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  height: 64px;
  gap: 16px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo { width: 26px; height: 26px; }
.nav-name { font-family: var(--display); font-size: 19px; letter-spacing: .02em; }
.nav-name sup { font-size: 9px; vertical-align: super; }
.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-link {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  padding: 2px 0;
}
.nav-link:hover, .nav-link.active { border-bottom-color: var(--ink); background: var(--acid); }
.btn {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--acid);
  border: var(--border);
  padding: 10px 18px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .1s, box-shadow .1s;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 0 0 0 var(--ink); }
.btn.alt { background: var(--acid); color: var(--ink); }

/* ── HERO ───────────────────────────────────────────── */
.hero {
  background: var(--acid);
  border-bottom: var(--border);
  padding: 72px 28px 88px;
  position: relative;
  overflow: hidden;
  background-image:
    repeating-linear-gradient(0deg, rgba(11,11,11,.06) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(90deg, rgba(11,11,11,.06) 0 1px, transparent 1px 64px);
}
.hero-inner { max-width: 1200px; margin: 0 auto; position: relative; }
.hero-meta {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(42px, 13.5vw, 190px);
  line-height: .88;
  letter-spacing: -.01em;
  text-transform: uppercase;
}
.hero-title.small { font-size: clamp(28px, 8.6vw, 130px); }
.hero-title .outline {
  color: var(--acid);
  -webkit-text-stroke: 3px var(--ink);
  text-stroke: 3px var(--ink);
}
.hero-row { display: flex; align-items: flex-end; gap: 40px; flex-wrap: wrap; }
.hero-gecko { width: clamp(120px, 18vw, 230px); flex-shrink: 0; }
.hero-statement {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-line {
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 700;
  max-width: 560px;
  line-height: 1.35;
}
.hero-line em { font-style: normal; background: var(--ink); color: var(--acid); padding: 0 8px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 36px; }

.stamp-badge {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
  animation: spin 18s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── SECTIONS ───────────────────────────────────────── */
.section { padding: 96px 28px; border-bottom: var(--border); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section.paper { background: var(--paper); }
.section.acid { background: var(--acid); }
.section.ink { background: var(--ink); color: var(--paper); }

.sec-head { display: flex; align-items: baseline; gap: 20px; margin-bottom: 16px; flex-wrap: wrap; }
.sec-index {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .15em;
  padding: 4px 10px;
  border: var(--border);
  background: var(--acid);
  color: var(--ink);
}
.section.acid .sec-index { background: var(--ink); color: var(--acid); }
.section.ink .sec-index { border-color: var(--acid); }
.sec-title {
  font-family: var(--display);
  font-size: clamp(38px, 6vw, 76px);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -.01em;
}
.section.ink .sec-title { color: var(--acid); }
.sec-sub {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 56px;
  max-width: 720px;
}

/* ── DIVISIONS ──────────────────────────────────────── */
.div-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.div-card {
  background: var(--paper);
  border: var(--border);
  box-shadow: var(--shadow);
  padding: 32px;
  position: relative;
  transition: transform .12s, box-shadow .12s;
}
.div-card:hover { transform: translate(-4px, -4px); box-shadow: 12px 12px 0 var(--ink); }
.div-id {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  display: inline-block;
  background: var(--ink);
  color: var(--acid);
  padding: 4px 10px;
  margin-bottom: 20px;
}
.div-name {
  font-family: var(--display);
  font-size: clamp(22px, 2.6vw, 30px);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 14px;
}
.div-desc { font-size: 15px; line-height: 1.7; max-width: 46ch; }

/* ── THE EXECUTIVE ──────────────────────────────────── */
.exec-grid { display: grid; grid-template-columns: minmax(280px, 400px) 1fr; gap: 48px; align-items: start; }
.exec-photo { border: 3px solid var(--acid); background: var(--paper); }
.exec-photo svg { width: 100%; height: auto; filter: grayscale(1) contrast(1.12); }
.exec-caption {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 14px;
  color: var(--paper);
  opacity: .7;
}
.exec-name {
  font-family: var(--display);
  font-size: clamp(34px, 4.6vw, 60px);
  text-transform: uppercase;
  color: var(--acid);
  line-height: 1;
  margin-bottom: 28px;
}
.exec-roles { border-top: 2px solid var(--acid); margin-bottom: 30px; }
.exec-role {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 4px;
  border-bottom: 2px solid rgba(214,255,0,.28);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.exec-role .who { color: var(--acid); }
.exec-bio { font-size: 15.5px; line-height: 1.8; max-width: 62ch; }
.exec-bio p { margin-bottom: 14px; }
.exec-bio b { color: var(--acid); font-weight: 700; }

/* ── ENGAGEMENTS (redacted dossiers) ────────────────── */
.eng-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.eng-card {
  background: var(--paper);
  border: var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.eng-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-bottom: var(--border);
  background: var(--ink);
  color: var(--acid);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eng-body { padding: 24px 20px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.eng-type { font-family: var(--display); font-size: 19px; text-transform: uppercase; line-height: 1.1; }
.eng-desc { font-size: 14.5px; line-height: 1.7; }
.redact {
  background: var(--ink);
  color: var(--ink);
  user-select: none;
  padding: 0 4px;
  border-radius: 1px;
}
.eng-stamp {
  font-family: var(--display);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--alert);
  border: 3px solid var(--alert);
  padding: 3px 10px;
  transform: rotate(-4deg);
  align-self: flex-start;
  margin-top: auto;
}
.eng-stamp.ok { color: var(--ink); border-color: var(--ink); }
.eng-note { font-family: var(--mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; margin-top: 36px; }

/* ── NUMBERS ────────────────────────────────────────── */
.num-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 64px; }
.num-cell { border: 3px solid var(--acid); padding: 28px 22px; }
.num-val {
  font-family: var(--display);
  font-size: clamp(34px, 4.4vw, 56px);
  color: var(--acid);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.01em;
}
.num-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 14px;
  color: var(--paper);
}
.chart-wrap { border: 3px solid var(--acid); padding: 32px; overflow: visible; }
.chart-title {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 24px;
}
.chart-note {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .04em;
  margin-top: 20px;
  color: var(--paper);
  opacity: .75;
}

/* ── DOCTRINE ───────────────────────────────────────── */
.doctrine { list-style: none; counter-reset: doc; }
.doctrine li {
  counter-increment: doc;
  font-family: var(--display);
  font-size: clamp(20px, 3.4vw, 40px);
  text-transform: uppercase;
  line-height: 1.15;
  padding: 22px 0;
  border-bottom: 3px solid var(--ink);
  display: flex;
  gap: 24px;
  align-items: baseline;
}
.doctrine li:last-child { border-bottom: none; }
.doctrine li::before {
  content: counter(doc, upper-roman) ".";
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
  width: 52px;
  color: var(--alert);
}
.doctrine li:hover { background: var(--ink); color: var(--acid); padding-left: 12px; }

/* ── STATEMENTS ─────────────────────────────────────── */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.quote-card {
  border: var(--border);
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.quote-card:nth-child(2) { transform: rotate(.8deg); }
.quote-card:nth-child(3) { transform: rotate(-.7deg); }
.quote-text { font-size: 17px; font-weight: 700; line-height: 1.55; }
.quote-text::before { content: '\201C'; font-family: var(--display); font-size: 34px; color: var(--alert); display: block; line-height: .6; margin-bottom: 10px; }
.quote-src {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: auto;
  border-top: 2px solid var(--ink);
  padding-top: 14px;
}

/* ── PRESS ──────────────────────────────────────────── */
.press-list { border: var(--border); background: var(--paper); box-shadow: var(--shadow); }
.press-row { border-bottom: var(--border); }
.press-row:last-child { border-bottom: none; }
.press-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}
.press-head:hover { background: var(--acid); }
.press-ref { font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .1em; flex-shrink: 0; width: 110px; }
.press-date { font-family: var(--mono); font-size: 11px; flex-shrink: 0; width: 90px; opacity: .7; }
.press-headline { font-family: var(--display); font-size: clamp(14px, 1.7vw, 19px); text-transform: uppercase; line-height: 1.2; flex: 1; }
.press-toggle { font-family: var(--mono); font-size: 18px; font-weight: 700; flex-shrink: 0; }
.press-body {
  display: none;
  padding: 0 24px 24px 154px;
  font-size: 15px;
  line-height: 1.7;
  max-width: 76ch;
}
.press-row.open .press-body { display: block; }
.press-row.open .press-head { background: var(--ink); color: var(--acid); }

/* ── HOLDINGS ───────────────────────────────────────── */
.hold-list { display: flex; flex-direction: column; gap: 24px; max-width: 900px; }
.hold-row {
  border: 3px solid var(--acid);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hold-info { flex: 1; min-width: 260px; }
.hold-name { font-family: var(--display); font-size: clamp(20px, 2.4vw, 28px); text-transform: uppercase; color: var(--acid); line-height: 1.1; }
.hold-meta { font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin: 10px 0 12px; opacity: .7; color: var(--paper); }
.hold-desc { font-size: 15px; line-height: 1.7; max-width: 62ch; color: var(--paper); }
.hold-desc .redact { background: var(--paper); color: var(--paper); }
.btn.hold-btn { border-color: var(--acid); box-shadow: 4px 4px 0 var(--acid); background: var(--acid); color: var(--ink); }
.btn.hold-btn:hover { box-shadow: 6px 6px 0 var(--acid); }
.hold-tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--alert);
  border: 2px solid var(--alert);
  padding: 8px 14px;
  transform: rotate(-2deg);
}

/* ── AUDIENCE ───────────────────────────────────────── */
.aud-box { border: var(--border); background: var(--ink); color: var(--paper); box-shadow: var(--shadow); max-width: 860px; }
.aud-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 24px;
  border-bottom: 3px solid var(--acid);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--acid);
}
.aud-body { padding: 32px 24px; }
.aud-prompt { font-size: 15px; line-height: 1.7; margin-bottom: 26px; max-width: 64ch; }
.aud-form { display: flex; gap: 14px; flex-wrap: wrap; }
.aud-form input {
  flex: 1;
  min-width: 240px;
  background: var(--ink);
  border: 3px solid var(--acid);
  color: var(--acid);
  font-family: var(--mono);
  font-size: 15px;
  padding: 15px 18px;
  outline: none;
}
.aud-form input::placeholder { color: var(--acid); opacity: .45; }
.aud-form input:focus { background: #161610; }
.aud-out { margin-top: 28px; min-height: 30px; font-family: var(--mono); font-size: 14px; line-height: 1.8; }
.aud-out .ref { opacity: .6; font-size: 12px; }
.stamp {
  display: inline-block;
  font-family: var(--display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--alert);
  border: 4px solid var(--alert);
  padding: 4px 14px;
  transform: rotate(-6deg);
  margin: 10px 0;
  animation: stampin .18s cubic-bezier(.2, 2.4, .6, 1) both;
}
@keyframes stampin { from { transform: rotate(-6deg) scale(2.6); opacity: 0; } to { transform: rotate(-6deg) scale(1); opacity: 1; } }

/* ── CONTACT ────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px; }
.contact-card { border: var(--border); background: var(--paper); box-shadow: var(--shadow); padding: 36px; }
.contact-card.filled { background: var(--ink); color: var(--paper); }
.contact-title { font-family: var(--display); font-size: clamp(26px, 3.4vw, 40px); text-transform: uppercase; line-height: 1.05; margin-bottom: 18px; color: var(--acid); }
.contact-card:not(.filled) .contact-title { color: var(--ink); }
.contact-body { font-size: 15px; line-height: 1.75; max-width: 52ch; }
.contact-rows { display: flex; flex-direction: column; gap: 18px; }
.contact-row { display: flex; flex-direction: column; gap: 4px; border-bottom: 2px solid var(--ink); padding-bottom: 14px; }
.contact-row:last-child { border-bottom: none; }
.cr-label { font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; opacity: .75; }
.cr-value { font-size: 16px; font-weight: 700; }
.cr-value a { text-decoration-thickness: 2px; }

/* ── FOOTER ─────────────────────────────────────────── */
footer {
  background: var(--ink);
  color: var(--paper);
  padding: 44px 28px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 30px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand .nav-name { color: var(--acid); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--paper);
  text-decoration: none;
  border-bottom: 2px solid var(--acid);
}
.footer-links a:hover { color: var(--acid); }
.footer-legal {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .05em;
  line-height: 2;
  text-transform: uppercase;
  opacity: .65;
}
.footer-legal b { color: var(--acid); font-weight: 700; }

/* ── COOKIE BANNER ──────────────────────────────────── */
#cookiebar {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 600px;
  z-index: 300;
  background: var(--paper);
  color: var(--ink);
  border: var(--border);
  box-shadow: var(--shadow);
  padding: 22px;
  display: none;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
#cookiebar.show { display: flex; }
#cookiebar p { font-family: var(--mono); font-size: 12px; font-weight: 500; line-height: 1.7; flex: 1; min-width: 220px; text-transform: uppercase; letter-spacing: .03em; }

/* ── MODAL ──────────────────────────────────────────── */
.modal-veil {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(11,11,11,.72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-veil.show { display: flex; }
.modal {
  background: var(--paper);
  border: var(--border);
  box-shadow: 12px 12px 0 var(--acid);
  max-width: 520px;
  width: 100%;
  padding: 36px;
}
.modal h3 { font-family: var(--display); font-size: 24px; text-transform: uppercase; line-height: 1.1; margin-bottom: 16px; }
.modal p { font-size: 15px; line-height: 1.7; margin-bottom: 12px; }
.modal .ref-line { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; opacity: .6; margin: 18px 0; }

/* ── TERMINAL (easter egg) ──────────────────────────── */
#term {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(11,11,11,.97);
  display: none;
  flex-direction: column;
  padding: 40px;
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.85;
  color: var(--paper);
}
#term.open { display: flex; }
#term-head {
  color: var(--acid);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
#term-out { flex: 1; overflow-y: auto; white-space: pre-wrap; }
#term-out .ok { color: var(--acid); }
#term-out .warn { color: var(--alert); }
#term-out .wht { color: #ffffff; }
#term-out .dim { color: #777; }
#term-line { display: flex; align-items: center; gap: 10px; border-top: 2px solid var(--acid); padding-top: 14px; margin-top: 12px; }
#term-line .ps { color: var(--acid); font-weight: 700; }
#term-in { flex: 1; background: none; border: none; outline: none; color: #fff; font-family: var(--mono); font-size: 14px; }

/* ── PERSONNEL ──────────────────────────────────────── */
.file-card {
  border: var(--border);
  background: var(--paper);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
}
.file-photo { border-right: var(--border); background: var(--paper); }
.file-photo svg { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.12); }
.file-fields { padding: 32px; display: flex; flex-direction: column; gap: 0; }
.file-field {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 2px solid rgba(11,11,11,.15);
  font-size: 15px;
}
.file-field:last-child { border-bottom: none; }
.file-field .k {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .65;
  padding-top: 3px;
  flex-shrink: 0;
}
.file-field .v { font-weight: 700; text-align: right; }

.orgchart-wrap { border: var(--border); background: var(--paper); box-shadow: var(--shadow); padding: 48px 32px; text-align: center; }
.orgchart-wrap svg { margin: 0 auto; max-width: 320px; }
.orgchart-note { font-family: var(--mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; margin-top: 24px; }

.perk-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.perk {
  border: var(--border);
  background: var(--paper);
  padding: 26px;
  box-shadow: 6px 6px 0 var(--ink);
}
.perk h3 { font-family: var(--display); font-size: 17px; text-transform: uppercase; margin-bottom: 10px; line-height: 1.15; }
.perk p { font-size: 14px; line-height: 1.65; }

.vacancy-box {
  border: var(--border);
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 40px;
  max-width: 720px;
}
.vacancy-box h3 { font-family: var(--display); font-size: clamp(22px, 3vw, 32px); text-transform: uppercase; line-height: 1.1; margin-bottom: 16px; }
.vacancy-box p { font-size: 15px; line-height: 1.75; margin-bottom: 24px; max-width: 58ch; }

/* ── 404 ────────────────────────────────────────────── */
.err-wrap {
  min-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 28px;
  background: var(--acid);
  background-image:
    repeating-linear-gradient(0deg, rgba(11,11,11,.06) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(90deg, rgba(11,11,11,.06) 0 1px, transparent 1px 64px);
}
.err-code {
  font-family: var(--display);
  font-size: clamp(120px, 24vw, 320px);
  line-height: .9;
  letter-spacing: -.02em;
}
.err-stamp {
  font-family: var(--display);
  font-size: clamp(20px, 3vw, 34px);
  text-transform: uppercase;
  color: var(--alert);
  border: 5px solid var(--alert);
  padding: 8px 22px;
  transform: rotate(-7deg);
  margin: 8px 0 34px;
}
.err-body { font-size: 16px; line-height: 1.7; max-width: 54ch; margin-bottom: 36px; font-weight: 500; }

/* ── UTILITIES ──────────────────────────────────────── */
.mono-note { font-family: var(--mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1020px) {
  .num-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { grid-template-columns: 1fr; }
  .eng-grid { grid-template-columns: 1fr; }
  .exec-grid { grid-template-columns: 1fr; }
  .exec-photo { max-width: 400px; }
}
@media (max-width: 760px) {
  nav { padding: 0 16px; height: 58px; }
  .nav-links .nav-link { display: none; }
  nav .btn { font-size: 9px; padding: 8px 10px; box-shadow: 3px 3px 0 var(--ink); white-space: nowrap; }
  .section { padding: 64px 18px; }
  .hero { padding: 48px 18px 64px; }
  .div-grid { grid-template-columns: 1fr; }
  .num-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .num-cell { padding: 18px 14px; }
  .contact-grid { grid-template-columns: 1fr; }
  .perk-grid { grid-template-columns: 1fr; }
  .press-head { flex-wrap: wrap; gap: 8px 16px; }
  .press-body { padding: 0 24px 24px; }
  .press-date { width: auto; }
  .stamp-badge { width: 110px; height: 110px; }
  .doctrine li { gap: 14px; }
  .doctrine li::before { width: 36px; }
  .file-card { grid-template-columns: 1fr; }
  .file-photo { border-right: none; border-bottom: var(--border); }
  .file-field { flex-direction: column; gap: 4px; }
  .file-field .v { text-align: left; }
  #term { padding: 20px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}
