/* ════════════════════════════════════════════
   VARIANT B — Technical Brutalist
   JetBrains Mono + IBM Plex Sans
   Dark panels / Metal grey / Cyan · Amber
   ════════════════════════════════════════════ */

:root {
  --bg: #0a0a0a;
  --panel: #111113;
  --panel-2: #16181b;
  --grid: rgba(255, 255, 255, 0.06);
  --grid-strong: rgba(255, 255, 255, 0.14);
  --text: #e6e6e6;
  --text-mute: #8a8a8a;
  --text-dim: #555;
  --metal: #8a8a8a;
  --cyan: #00d4ff;
  --amber: #ffb020;
  --red: #ff5c5c;
  --green: #7fff9d;

  --mono: "JetBrains Mono", "Space Mono", monospace;
  --sans: "IBM Plex Sans", "Pretendard", "Noto Sans KR", sans-serif;

  --max: 1440px;
  --gutter: clamp(16px, 3vw, 40px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grid background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: 0 0;
}
/* Scanlines */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 212, 255, 0.022) 0,
    rgba(0, 212, 255, 0.022) 1px,
    transparent 1px,
    transparent 3px
  );
  mix-blend-mode: screen;
}

main, nav, footer { position: relative; z-index: 2; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--cyan); }
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: transparent; }

/* ─────────────────────────────────────────── */
/* NAV                                         */
/* ─────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px var(--gutter);
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--grid-strong);
  font-family: var(--mono);
}
.nav__brand {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}
.nav__brand .bracket { color: var(--cyan); }
.nav__brand .dot { color: var(--amber); }

.nav__links {
  display: flex;
  gap: 4px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav__links a {
  padding: 8px 14px;
  border: 1px solid transparent;
  color: var(--text-mute);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.nav__links a:hover {
  color: var(--cyan);
  border-color: var(--grid-strong);
}
.nav__links a.is-active {
  color: var(--bg);
  background: var(--cyan);
  border-color: var(--cyan);
}
.nav__meta {
  justify-self: end;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.nav__meta .live { color: var(--green); margin-right: 8px; }
.nav__meta .live::before {
  content: "●";
  margin-right: 6px;
  animation: pulse 1.6s infinite;
}
@keyframes pulse { 0%,60%,100% { opacity: 1; } 70%,85% { opacity: 0.2; } }

@media (max-width: 860px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav__meta { display: none; }
  .nav__links a { padding: 6px 8px; font-size: 10px; letter-spacing: 0.12em; }
}

/* ─────────────────────────────────────────── */
/* SECTIONS                                    */
/* ─────────────────────────────────────────── */
.section {
  padding: clamp(72px, 9vw, 140px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.section--flush { padding-top: 0; }

/* Section header (measurement scale) */
.sec-head {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  align-items: end;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--grid-strong);
}
.sec-head__idx {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--cyan);
}
.sec-head__idx::before {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: var(--cyan);
  margin-bottom: 10px;
}
.sec-head__title {
  margin: 0;
  font-family: var(--mono);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.sec-head__title .dim { color: var(--text-dim); }
.sec-head__title .cy { color: var(--cyan); }
.sec-head__meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-mute);
  text-transform: uppercase;
}

/* ─────────────────────────────────────────── */
/* HERO                                        */
/* ─────────────────────────────────────────── */
.hero {
  min-height: 96vh;
  padding: 96px var(--gutter) 48px;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 40px;
}
.hero__strip {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--grid-strong);
  border-bottom: 1px solid var(--grid-strong);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.hero__strip span .cy { color: var(--cyan); }
.hero__strip span .am { color: var(--amber); }

.hero__main {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 960px) { .hero__main { grid-template-columns: 1fr; } }

.hero__title {
  font-family: var(--mono);
  font-weight: 500;
  font-size: clamp(48px, 9vw, 160px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin: 0;
  text-transform: uppercase;
}
.hero__title .row1 { color: var(--text); }
.hero__title .row2 { color: var(--cyan); display: block; }
.hero__title .row3 { color: var(--text-dim); display: block; font-size: 0.55em; letter-spacing: -0.02em; padding-left: 4px; }
.hero__title sup {
  font-size: 0.5em;
  vertical-align: super;
  color: var(--amber);
}

.hero__side {
  border-left: 1px solid var(--grid-strong);
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (max-width: 960px) {
  .hero__side { border-left: 0; border-top: 1px solid var(--grid-strong); padding: 24px 0 0; }
}
.hero__param {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: baseline;
  font-family: var(--mono);
}
.hero__param .key {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.hero__param .val {
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.hero__param .val .unit { color: var(--amber); font-size: 0.7em; margin-left: 4px; }
.hero__param .val .cy { color: var(--cyan); }

.hero__lede {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mute);
  max-width: 40ch;
  margin: 0;
}

/* Hero footer (ticker) */
.hero__ticker {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid var(--grid-strong);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.hero__ticker .green { color: var(--green); }
.hero__ticker .am { color: var(--amber); }

/* ─────────────────────────────────────────── */
/* SPEC GRID (process cards)                   */
/* ─────────────────────────────────────────── */
.specs {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--grid-strong);
}
@media (max-width: 900px) { .specs { grid-template-columns: 1fr; } }
.spec {
  padding: 32px 28px;
  border-right: 1px solid var(--grid-strong);
  position: relative;
  background: var(--panel);
  transition: background 0.3s ease;
}
.spec:last-child { border-right: 0; }
@media (max-width: 900px) {
  .spec { border-right: 0; border-bottom: 1px solid var(--grid-strong); }
  .spec:last-child { border-bottom: 0; }
}
.spec:hover { background: var(--panel-2); }
.spec__head {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 20px;
}
.spec__head .id { color: var(--cyan); }
.spec__title {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  text-transform: uppercase;
}
.spec__title .cy { color: var(--cyan); }
.spec__desc {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-mute);
}
.spec__rows {
  border-top: 1px solid var(--grid-strong);
  padding-top: 16px;
  display: grid;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.spec__rows .row {
  display: flex;
  justify-content: space-between;
}
.spec__rows .row .k { color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.2em; font-size: 10px; }
.spec__rows .row .v { color: var(--text); }

/* ─────────────────────────────────────────── */
/* READOUT (big number displays)               */
/* ─────────────────────────────────────────── */
.readout {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--grid-strong);
}
@media (max-width: 860px) { .readout { grid-template-columns: repeat(2, 1fr); } }
.readout > div {
  padding: 28px 24px;
  border-right: 1px solid var(--grid-strong);
  background: var(--panel);
}
.readout > div:last-child { border-right: 0; }
@media (max-width: 860px) {
  .readout > div:nth-child(2n) { border-right: 0; }
  .readout > div:nth-child(-n+2) { border-bottom: 1px solid var(--grid-strong); }
}
.readout__label {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 16px;
}
.readout__label .cy { color: var(--cyan); }
.readout__val {
  font-family: var(--mono);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
}
.readout__val .unit { font-size: 0.35em; color: var(--amber); margin-left: 6px; letter-spacing: 0.05em; }
.readout__bar {
  margin-top: 18px;
  height: 6px;
  background: rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.readout__bar::after {
  content: "";
  position: absolute;
  inset: 0 var(--to, 30%) 0 0;
  background: var(--cyan);
}

/* ─────────────────────────────────────────── */
/* PANEL (console block)                       */
/* ─────────────────────────────────────────── */
.panel {
  border: 1px solid var(--grid-strong);
  background: var(--panel);
  padding: 24px;
  position: relative;
}
.panel::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 14px; height: 14px;
  border-top: 1px solid var(--cyan);
  border-left: 1px solid var(--cyan);
}
.panel::after {
  content: "";
  position: absolute;
  bottom: -1px; right: -1px;
  width: 14px; height: 14px;
  border-bottom: 1px solid var(--cyan);
  border-right: 1px solid var(--cyan);
}

/* ─────────────────────────────────────────── */
/* ASCII PLACEHOLDER                           */
/* ─────────────────────────────────────────── */
.ph {
  border: 1px solid var(--grid-strong);
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
  padding: 18px 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
}
.ph::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(255,255,255,0.1);
  pointer-events: none;
}
.ph__head { display: flex; justify-content: space-between; z-index: 1; }
.ph__head .id { color: var(--cyan); }
.ph__core {
  flex: 1;
  display: grid;
  place-items: center;
  font-size: 11px;
  white-space: pre;
  line-height: 1.35;
  color: var(--text-dim);
  z-index: 1;
}
.ph__foot { display: flex; justify-content: space-between; z-index: 1; }
.ph__foot .am { color: var(--amber); }
.ph--wide { aspect-ratio: 16 / 9; }
.ph--sq { aspect-ratio: 1 / 1; }

/* ─────────────────────────────────────────── */
/* MATERIALS TICKER                            */
/* ─────────────────────────────────────────── */
.ticker {
  margin-top: 48px;
  border-top: 1px solid var(--grid-strong);
  border-bottom: 1px solid var(--grid-strong);
  padding: 18px 0;
  overflow: hidden;
  font-family: var(--mono);
  font-size: clamp(18px, 2.4vw, 32px);
  letter-spacing: -0.01em;
  white-space: nowrap;
  text-transform: uppercase;
  color: var(--text);
}
.ticker .track { display: inline-flex; gap: 36px; animation: marq 36s linear infinite; }
.ticker span .cy { color: var(--cyan); }
.ticker span .dim { color: var(--text-dim); }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─────────────────────────────────────────── */
/* TIMELINE (log table)                        */
/* ─────────────────────────────────────────── */
.log {
  margin-top: 32px;
  border: 1px solid var(--grid-strong);
  font-family: var(--mono);
  font-size: 12px;
}
.log__row {
  display: grid;
  grid-template-columns: 90px 120px 1fr 90px;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--grid-strong);
  align-items: baseline;
}
.log__row:last-child { border-bottom: 0; }
.log__row:nth-child(odd) { background: rgba(255,255,255,0.02); }
.log__row .time { color: var(--text-dim); letter-spacing: 0.1em; }
.log__row .code { color: var(--cyan); letter-spacing: 0.2em; }
.log__row .msg { color: var(--text); font-family: var(--sans); font-size: 14px; }
.log__row .level { text-align: right; letter-spacing: 0.2em; color: var(--amber); }
@media (max-width: 720px) {
  .log__row { grid-template-columns: 1fr 1fr; gap: 6px; }
  .log__row .msg { grid-column: 1 / -1; }
  .log__row .level { text-align: left; }
}

/* ─────────────────────────────────────────── */
/* EQUIPMENT TABLE                             */
/* ─────────────────────────────────────────── */
.rack {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--grid-strong);
}
@media (max-width: 860px) { .rack { grid-template-columns: 1fr; } }
.rack__cell {
  border-right: 1px solid var(--grid-strong);
  border-bottom: 1px solid var(--grid-strong);
  padding: 28px 24px;
  background: var(--panel);
  display: grid;
  gap: 16px;
}
.rack__cell:nth-child(2n) { border-right: 0; }
.rack__cell:nth-last-child(-n+2) { border-bottom: 0; }
@media (max-width: 860px) {
  .rack__cell { border-right: 0; border-bottom: 1px solid var(--grid-strong); }
  .rack__cell:last-child { border-bottom: 0; }
}
.rack__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.rack__id {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 40px;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
}
.rack__id .cy { color: var(--cyan); }
.rack__status {
  padding: 4px 10px;
  border: 1px solid var(--green);
  color: var(--green);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.rack__status.new { color: var(--amber); border-color: var(--amber); }
.rack__rows {
  display: grid;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
}
.rack__rows .row { display: grid; grid-template-columns: 140px 1fr; gap: 12px; }
.rack__rows .k { color: var(--text-mute); text-transform: uppercase; font-size: 10px; letter-spacing: 0.22em; }
.rack__rows .v { color: var(--text); }

/* ─────────────────────────────────────────── */
/* CLIENT / CERT GRID                          */
/* ─────────────────────────────────────────── */
.grid-cells {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--grid-strong);
}
.grid-cells > div {
  aspect-ratio: 3/2;
  border-right: 1px solid var(--grid-strong);
  border-bottom: 1px solid var(--grid-strong);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
  background: var(--panel);
}
.grid-cells > div:nth-child(6n) { border-right: 0; }
.grid-cells > div:nth-last-child(-n+6) { border-bottom: 0; }
.grid-cells > div strong {
  font-family: var(--mono);
  font-weight: 500;
  color: var(--cyan);
  font-size: 14px;
  letter-spacing: 0.1em;
}
@media (max-width: 860px) {
  .grid-cells { grid-template-columns: repeat(3, 1fr); }
  .grid-cells > div { border-right: 1px solid var(--grid-strong); }
  .grid-cells > div:nth-child(3n) { border-right: 0; }
  .grid-cells > div:nth-last-child(-n+3) { border-bottom: 0; }
}

/* ─────────────────────────────────────────── */
/* CTA / BUTTONS                               */
/* ─────────────────────────────────────────── */
.cta {
  margin: clamp(80px, 10vw, 140px) var(--gutter);
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding: 48px;
  border: 1px solid var(--grid-strong);
  background: var(--panel);
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
}
.cta::before, .cta::after {
  content: "";
  position: absolute;
  width: 20px; height: 20px;
}
.cta::before { top: -1px; left: -1px; border-top: 1px solid var(--cyan); border-left: 1px solid var(--cyan); }
.cta::after { bottom: -1px; right: -1px; border-bottom: 1px solid var(--cyan); border-right: 1px solid var(--cyan); }
@media (max-width: 760px) { .cta { grid-template-columns: 1fr; } }
.cta h2 {
  margin: 0;
  font-family: var(--mono);
  font-weight: 500;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.cta h2 .cy { color: var(--cyan); }
.cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 22px;
  border: 1px solid var(--text);
  color: var(--text);
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn:hover { background: var(--cyan); color: var(--bg); border-color: var(--cyan); }
.btn--cy { background: var(--cyan); color: var(--bg); border-color: var(--cyan); }
.btn--cy:hover { background: var(--text); color: var(--bg); border-color: var(--text); }
.btn--am { background: var(--amber); color: var(--bg); border-color: var(--amber); }
.btn--am:hover { background: var(--text); color: var(--bg); border-color: var(--text); }

/* ─────────────────────────────────────────── */
/* FOOTER                                      */
/* ─────────────────────────────────────────── */
.foot {
  border-top: 1px solid var(--grid-strong);
  padding: 80px var(--gutter) 36px;
  background: var(--panel);
}
.foot__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  font-family: var(--mono);
}
@media (max-width: 860px) { .foot__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot__inner { grid-template-columns: 1fr; } }
.foot h5 {
  margin: 0 0 18px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cyan);
}
.foot h5::before { content: "// "; color: var(--text-dim); }
.foot p, .foot li { font-size: 13px; line-height: 1.75; color: var(--text-mute); font-family: var(--sans); }
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot__brand {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.foot__brand .bracket { color: var(--cyan); }
.foot__brand .dot { color: var(--amber); }
.foot__bottom {
  max-width: var(--max);
  margin: 60px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--grid-strong);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ─────────────────────────────────────────── */
/* PAGE HEAD (inner pages)                     */
/* ─────────────────────────────────────────── */
.pagehead {
  padding: 128px var(--gutter) 56px;
  max-width: var(--max);
  margin: 0 auto;
}
.pagehead__meta {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid var(--grid-strong);
  border-bottom: 1px solid var(--grid-strong);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.pagehead__meta .cy { color: var(--cyan); }
.pagehead__title {
  margin-top: 40px;
  font-family: var(--mono);
  font-weight: 500;
  font-size: clamp(48px, 8vw, 128px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}
.pagehead__title .cy { color: var(--cyan); }
.pagehead__title .dim { color: var(--text-dim); }
.pagehead__lede {
  margin-top: 32px;
  max-width: 60ch;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-mute);
}

/* ─────────────────────────────────────────── */
/* FORM                                        */
/* ─────────────────────────────────────────── */
.form {
  display: grid;
  gap: 18px;
}
.form label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
}
.form label::before { content: "> "; color: var(--text-dim); }
.form input, .form textarea, .form select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--grid-strong);
  padding: 14px 16px;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--text);
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: 0;
  border-color: var(--cyan);
}
.form textarea { resize: vertical; min-height: 130px; }
.form .submit {
  justify-self: start;
  padding: 16px 24px;
  background: var(--cyan);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.25s ease;
}
.form .submit:hover { background: var(--amber); }

/* ─────────────────────────────────────────── */
/* TWO-COL                                     */
/* ─────────────────────────────────────────── */
.two-col {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
}
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }
.two-col p { color: var(--text-mute); line-height: 1.75; }
.two-col p + p { margin-top: 14px; }
.two-col h3 {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  text-transform: uppercase;
  color: var(--cyan);
}
