/* ═══════════════════════════════════════════════════════════
   INFERENCEWAFERS.COM — Deep Foundry / Photolithography Lab
   Cleanroom green (#00ff88) on near-black obsidian.
   Electron microscope precision. Zero decoration.
   ═══════════════════════════════════════════════════════════ */

:root {
  --void:        #050506;
  --deep:        #080a0c;
  --surface:     #0d1014;
  --raise:       #121720;
  --line:        #1a2030;
  --line-hi:     #263040;
  --green:       #00ff88;
  --green-dim:   #00cc6a;
  --green-deep:  #009950;
  --green-glow:  rgba(0,255,136,0.10);
  --green-trace: rgba(0,255,136,0.05);
  --lime:        #88ffcc;
  --white:       #e8edf2;
  --fog:         #6b7a8d;
  --ghost:       #3a4455;
  --ff-head:     'Space Grotesk', sans-serif;
  --ff-body:     'DM Sans', sans-serif;
  --ff-code:     'Space Mono', monospace;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --fast:        0.22s;
}

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

body {
  background: var(--void);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: var(--green-deep); }

/* ── CANVAS ─────────────────────────────────── */
#lab-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
}

/* ── LAYOUT ─────────────────────────────────── */
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 44px;
  position: relative;
  z-index: 1;
}

.green { color: var(--green); }

/* ── NAV ────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 44px;
  background: rgba(5,5,6,0.90);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: border-color var(--fast);
}

.nav-logo {
  text-decoration: none;
  font-family: var(--ff-code);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nl-top { color: var(--green); font-weight: 700; }
.nl-bot { color: var(--fog); font-weight: 400; font-size: 0.68rem; letter-spacing: 0.18em; }

.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-family: var(--ff-code);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fog);
  text-decoration: none;
  transition: color var(--fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--green);
  transition: width 0.2s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--green); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-btn {
  font-family: var(--ff-code);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--void);
  background: var(--green);
  padding: 9px 20px;
  text-decoration: none;
  transition: background var(--fast), box-shadow var(--fast);
  clip-path: polygon(5px 0%, 100% 0%, calc(100%-5px) 100%, 0% 100%);
}
.nav-btn:hover {
  background: var(--lime);
  box-shadow: 0 0 28px rgba(0,255,136,0.4);
}

/* ── HERO ───────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 40px 80px;
  position: relative;
  z-index: 1;
  gap: 0;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-code);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(0,255,136,0.25);
  padding: 6px 16px;
  margin-bottom: 44px;
  opacity: 0;
  animation: rise 0.6s 0.1s var(--ease) forwards;
}
.status-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; }
  50%      { opacity:0.25; }
}

.hero-domain {
  margin-bottom: 36px;
  opacity: 0;
  animation: rise 0.7s 0.25s var(--ease) forwards;
}
.hd-inference {
  display: block;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(4rem, 13vw, 12rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--white);
}
.hd-wafers {
  display: block;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(4rem, 13vw, 12rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--green);
  text-shadow: 0 0 80px rgba(0,255,136,0.3);
}
.hd-ext {
  display: block;
  font-family: var(--ff-code);
  font-weight: 400;
  font-size: clamp(1.2rem, 3vw, 2.8rem);
  color: var(--ghost);
  letter-spacing: 0.1em;
  margin-top: 8px;
}

.hero-line {
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: clamp(0.95rem, 1.8vw, 1.35rem);
  color: var(--fog);
  line-height: 1.65;
  letter-spacing: 0.01em;
  max-width: 680px;
  margin: 0 auto 44px;
  opacity: 0;
  animation: rise 0.6s 0.4s var(--ease) forwards;
}
.hero-line strong { color: var(--white); font-weight: 500; }

/* WAFER DIAGRAM */
.wafer-diagram {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto 44px;
  opacity: 0;
  animation: rise 0.7s 0.55s var(--ease) forwards;
}
.wd-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,255,136,0.15);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.wdc-1 { width: 280px; height: 280px; border-color: rgba(0,255,136,0.20); background: radial-gradient(circle at 40% 35%, rgba(0,255,136,0.06) 0%, transparent 65%); }
.wdc-2 { width: 220px; height: 220px; border-color: rgba(0,255,136,0.10); }
.wdc-3 { width: 160px; height: 160px; border-color: rgba(0,255,136,0.08); }
.wdc-4 { width: 100px; height: 100px; border-color: rgba(0,255,136,0.06); }

.die-field {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  display: grid;
  grid-template-columns: repeat(10,1fr);
  grid-template-rows: repeat(10,1fr);
  gap: 2px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  padding: 10px;
}
.d { border-radius: 1px; transition: opacity 0.3s; }
.d-gpu  { background: rgba(0,255,136,0.65); }
.d-cpu  { background: rgba(0,200,255,0.55); }
.d-good { background: rgba(0,255,136,0.22); }
.d-dim  { background: rgba(0,255,136,0.08); }
.d-off  { background: transparent; }

.wd-scan {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,255,136,0.8) 50%, transparent 100%);
  top: 0;
  pointer-events: none;
}
.wd-notch {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--void);
  border: 1px solid rgba(0,255,136,0.3);
}
.wd-label {
  position: absolute;
  font-family: var(--ff-code);
  font-size: 0.5rem;
  letter-spacing: 0.12em;
  color: var(--green-dim);
  text-transform: uppercase;
}
.wdl-gpu { top: 22%; left: -42px; }
.wdl-cpu { top: 22%; right: -36px; }
.wdl-het { bottom: -18px; left: 50%; transform: translateX(-50%); white-space:nowrap; }

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 44px;
  opacity: 0;
  animation: rise 0.6s 0.7s var(--ease) forwards;
}
.hero-tags span {
  font-family: var(--ff-code);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(0,255,136,0.22);
  padding: 5px 12px;
}

.hero-data {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--surface);
  border: 1px solid var(--line-hi);
  padding: 20px 36px;
  clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%);
  margin-bottom: 36px;
  opacity: 0;
  animation: rise 0.6s 0.85s var(--ease) forwards;
}
.hd-stat { text-align: center; }
.hd-val {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--green);
  line-height: 1;
}
.hd-lbl {
  font-family: var(--ff-code);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fog);
  margin-top: 4px;
}
.hd-rule { width: 1px; height: 36px; background: var(--line-hi); }

.hero-ctas {
  display: flex;
  gap: 14px;
  opacity: 0;
  animation: rise 0.6s 1.0s var(--ease) forwards;
}

@keyframes rise {
  from { opacity:0; transform: translateY(16px); }
  to   { opacity:1; transform: translateY(0); }
}

/* ── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-code);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  transition: all var(--fast) var(--ease);
  clip-path: polygon(8px 0%,100% 0%,calc(100%-8px) 100%,0% 100%);
  position: relative;
  overflow: hidden;
}
.btn-green {
  color: var(--void);
  background: var(--green);
}
.btn-green::before {
  content:'';
  position:absolute;
  inset:0;
  background: var(--lime);
  transform: translateX(-100%);
  transition: transform 0.22s var(--ease);
}
.btn-green:hover::before { transform: translateX(0); }
.btn-green:hover { box-shadow: 0 0 36px rgba(0,255,136,0.45); }
.btn-green span { position:relative; z-index:1; }
.btn-green.lg { font-size:0.82rem; padding:18px 44px; }

.btn-ghost {
  color: var(--green);
  border: 1px solid rgba(0,255,136,0.35);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--green-glow);
  border-color: var(--green);
  box-shadow: 0 0 20px rgba(0,255,136,0.15);
}

/* ── TICKER ─────────────────────────────────── */
.ticker {
  position: relative; z-index:1;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--deep);
  padding: 11px 0;
}
.ticker-inner {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: scroll 32s linear infinite;
  font-family: var(--ff-code);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--fog);
  align-items: center;
}
.ticker-inner b { color: var(--green); font-size: 0.45rem; }
@keyframes scroll {
  from { transform:translateX(0); }
  to   { transform:translateX(-50%); }
}

/* ── SECTION SCAFFOLDING ────────────────────── */
section { position:relative; z-index:1; }

.eyebrow {
  font-family: var(--ff-code);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content:'';
  display: block;
  width: 22px; height: 1px;
  background: var(--green);
}

.sec-title {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 52px;
}

/* ── ANATOMY ────────────────────────────────── */
.anatomy { padding: 112px 0; background: var(--deep); }

.anatomy-row {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 2px;
}
.anat-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 40px 36px;
  transition: border-color var(--fast);
}
.anat-panel:hover { border-color: rgba(0,255,136,0.3); }

.ap-num {
  font-family: var(--ff-code);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: var(--green);
  opacity: 0.5;
  margin-bottom: 20px;
}
.ap-term {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.ap-inference .ap-term { color: var(--white); }
.ap-wafers .ap-term    { color: var(--green); }

.ap-sub {
  font-family: var(--ff-code);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fog);
  margin-bottom: 18px;
}
.anat-panel p {
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 0.93rem;
  color: var(--fog);
  line-height: 1.78;
  margin-bottom: 20px;
}
.ap-chips { display:flex; flex-wrap:wrap; gap:6px; }
.ap-chips span {
  font-family: var(--ff-code);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: var(--green);
  background: var(--green-trace);
  border: 1px solid rgba(0,255,136,0.18);
  padding: 3px 9px;
}

.anat-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  gap: 20px;
  background: var(--void);
}
.ac-sym {
  font-family: var(--ff-head);
  font-size: 1.8rem;
  color: var(--green);
  font-weight: 300;
  opacity: 0.7;
}

.anatomy-synthesis {
  background: linear-gradient(135deg, rgba(0,255,136,0.06) 0%, rgba(0,200,255,0.03) 100%);
  border: 1px solid rgba(0,255,136,0.2);
  padding: 48px;
  text-align: center;
}
.as-domain {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 5.5rem);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 16px;
  background: linear-gradient(90deg, var(--white) 0%, var(--green) 50%, var(--lime) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.anatomy-synthesis p {
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 1rem;
  color: var(--fog);
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── PILLARS ────────────────────────────────── */
.pillars { padding: 112px 0; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--line);
}
.pillar {
  background: var(--void);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: background var(--fast);
}
.pillar::after {
  content:'';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.pillar:hover { background: var(--surface); }
.pillar:hover::after { transform: scaleX(1); }

.p-idx {
  font-family: var(--ff-code);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: var(--green);
  opacity: 0.45;
  margin-bottom: 18px;
}
.p-icon {
  font-size: 1.5rem;
  color: var(--green);
  display: block;
  margin-bottom: 16px;
}
.pillar h3 {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.35;
}
.pillar p {
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 0.88rem;
  color: var(--fog);
  line-height: 1.72;
}

/* ── BUYERS ─────────────────────────────────── */
.buyers { padding: 112px 0; background: var(--deep); }
.buyers-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 18px;
}
.buyer {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 34px;
  clip-path: polygon(16px 0%,100% 0%,calc(100%-16px) 100%,0% 100%);
  transition: border-color var(--fast), box-shadow var(--fast);
}
.buyer:hover {
  border-color: rgba(0,255,136,0.3);
  box-shadow: 0 0 28px rgba(0,255,136,0.05);
}
.b-tier {
  font-family: var(--ff-code);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: var(--green);
  background: rgba(0,255,136,0.07);
  padding: 3px 9px;
  display: inline-block;
  margin-bottom: 14px;
}
.buyer h3 {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.buyer p {
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 0.88rem;
  color: var(--fog);
  line-height: 1.72;
}

/* ── CTA BLOCK ──────────────────────────────── */
.cta-block { padding: 112px 0; }
.cta-wrap {
  position: relative;
  border: 1px solid rgba(0,255,136,0.25);
  background: var(--surface);
  overflow: hidden;
  text-align: center;
}
.cta-topline {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--green-deep), var(--green), var(--lime), var(--green), var(--green-deep), transparent);
}
.cta-body {
  padding: 72px 48px;
  position: relative;
}
.cta-body::before {
  content:'';
  position: absolute;
  top:50%; left:50%;
  transform: translate(-50%,-50%);
  width: 500px; height: 260px;
  background: radial-gradient(ellipse, rgba(0,255,136,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.cta-h {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 14px 0 18px;
}
.cta-sub {
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 0.98rem;
  color: var(--fog);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-trust {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 26px;
  font-family: var(--ff-code);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ghost);
}

/* ── FOOTER ─────────────────────────────────── */
.footer {
  position: relative; z-index:1;
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 44px 0 28px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}
.footer-nav a {
  font-family: var(--ff-code);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fog);
  text-decoration: none;
  transition: color var(--fast);
}
.footer-nav a:hover { color: var(--green); }
.footer-copy {
  font-family: var(--ff-code);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  color: var(--ghost);
}

/* ── INNER PAGE HERO ────────────────────────── */
.page-hero {
  padding: 155px 0 72px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(0,255,136,0.03) 0%, transparent 100%);
  text-align: center;
  position: relative; z-index:1;
}
.page-hero h1 {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 18px;
}
.page-hero p {
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--fog);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.72;
}

/* ── CONTENT SECTIONS ───────────────────────── */
.cs {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
  position: relative; z-index:1;
}
.cs.alt { background: var(--deep); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.text-col h2 {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 22px;
}
.text-col p {
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 0.92rem;
  color: var(--fog);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* DATA BOX */
.dbox {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 22px 26px;
  margin-bottom: 12px;
  transition: border-color var(--fast);
}
.dbox:hover { border-color: rgba(0,255,136,0.25); }
.dbox-v {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--green);
  line-height: 1;
  margin-bottom: 5px;
}
.dbox-l {
  font-family: var(--ff-code);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fog);
}

/* TIMELINE */
.tl-item {
  display: flex;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.tl-yr {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--green);
  min-width: 68px;
  line-height: 1;
}
.tl-body h3 {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.tl-body p {
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 0.88rem;
  color: var(--fog);
  line-height: 1.65;
}

/* TABLE */
.dtable {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--ff-body);
  font-size: 0.88rem;
}
.dtable th {
  font-family: var(--ff-code);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  padding: 12px 14px;
  background: var(--surface);
  border-bottom: 2px solid rgba(0,255,136,0.25);
  text-align: left;
}
.dtable td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--fog);
}
.dtable tr:hover td { background: var(--green-trace); color: var(--white); }
.dtable .row-hi td { color: var(--green); background: rgba(0,255,136,0.04); font-weight: 600; }

/* USE CASE GRID */
.uc-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1px;
  background: var(--line);
  margin: 44px 0;
}
.uc {
  background: var(--deep);
  padding: 34px;
  transition: background var(--fast);
}
.uc:hover { background: var(--surface); }
.uc-n {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 3.2rem;
  color: rgba(0,255,136,0.10);
  line-height: 1;
  margin-bottom: 8px;
}
.uc h3 {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.uc p {
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 0.88rem;
  color: var(--fog);
  line-height: 1.7;
}

/* FORM */
.f-field { margin-bottom: 18px; }
.f-field label {
  display: block;
  font-family: var(--ff-code);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 7px;
}
.f-field input,
.f-field select,
.f-field textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.92rem;
  padding: 12px 14px;
  outline: none;
  transition: border-color var(--fast);
  appearance: none;
}
.f-field input:focus,
.f-field select:focus,
.f-field textarea:focus {
  border-color: var(--green-deep);
  box-shadow: 0 0 12px rgba(0,255,136,0.07);
}
.f-field textarea { min-height: 112px; resize: vertical; }

/* CONTACT LAYOUT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  padding: 72px 0;
  position: relative; z-index:1;
}
.cg-info h2 {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.5vw, 3.2rem);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.cg-info p {
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 0.92rem;
  color: var(--fog);
  line-height: 1.75;
  margin-bottom: 14px;
}
.cg-row {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.cg-icon { color: var(--green); }
.cg-text { font-size: 0.85rem; color: var(--fog); line-height: 1.5; }
.cg-text strong { display:block; font-family:var(--ff-code); font-size:0.62rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--white); margin-bottom:2px; }

/* LEGAL */
.legal-wrap { padding: 64px 0; max-width: 760px; position:relative; z-index:1; }
.legal-wrap h2 {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: -0.01em;
  color: var(--green);
  margin: 44px 0 12px;
  line-height: 1;
}
.legal-wrap p {
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 0.92rem;
  color: var(--fog);
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-wrap ul { list-style:none; padding:0; margin:12px 0; }
.legal-wrap li {
  font-size: 0.88rem;
  color: var(--fog);
  padding: 5px 0 5px 16px;
  position: relative;
  line-height: 1.6;
}
.legal-wrap li::before {
  content:'▸';
  position:absolute;
  left:0; top:5px;
  color: var(--green);
  font-size: 0.55rem;
}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 940px) {
  .nav-links { display:none; }
  .wrap { padding:0 22px; }
  .anatomy-row,
  .pillars-grid,
  .buyers-grid,
  .uc-grid,
  .two-col,
  .contact-grid { grid-template-columns:1fr; }
  .anat-connector { flex-direction:row; width:100%; padding:12px; border:none; border-left:1px solid var(--line); border-right:1px solid var(--line); justify-content:center; }
  .hero-data { flex-direction:column; gap:14px; }
  .hd-rule { display:none; }
  .cta-trust { flex-direction:column; gap:8px; }
  .wafer-diagram { width:220px; height:220px; }
  .wd-circle.wdc-1 { width:220px; height:220px; }
  .die-field { width:190px; height:190px; }
  .wdl-gpu,.wdl-cpu,.wdl-het { display:none; }
}
