/* ═══════════════════════════════════════════════════════════════
   ORBICOMPUTE.COM — Solar Power Density / Orbital Energy Grid
   Molten copper (#ff6b35) + solar gold (#ffb627) on deep space black.
   Power infrastructure diagrams. Energy flow. The shortage made visible.
   Distinct from: cyan space, amber foundry, green lab, violet orbit,
   solar-flare mission control, crystalline silicon.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --void:        #04030a;
  --deep:        #0a0612;
  --surface:     #100a1c;
  --panel:       #150e24;
  --raise:       #1c1430;
  --line:        #271a3c;
  --line-hi:     #3a2856;
  --copper:      #ff6b35;
  --ember:       #ff8c42;
  --gold:        #ffb627;
  --solar:       #ffd93d;
  --copper-glow: rgba(255,107,53,0.12);
  --copper-soft: rgba(255,107,53,0.06);
  --gold-glow:   rgba(255,182,39,0.10);
  --white:       #fff4e6;
  --fog:         #8577a3;
  --ghost:       #3d2f55;
  --ff-head:     'Orbitron', sans-serif;
  --ff-body:     'Inter', sans-serif;
  --ff-mono:     'JetBrains 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(--void); }
::-webkit-scrollbar-thumb { background: var(--copper); }

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

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

.copper { color: var(--copper); }
.gold   { color: var(--gold); }
.solar  { color: var(--solar); }

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

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 0;
  font-family: var(--ff-head);
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 1.2rem;
}
.nl-orbi { color: var(--copper); }
.nl-compute { color: var(--white); }
.nl-tld { font-family: var(--ff-mono); font-size: 0.66rem; color: var(--fog); margin-left: 2px; letter-spacing: 0.04em; align-self: flex-end; margin-bottom: 1px; }

.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  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(--copper);
  transition: width 0.22s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  font-family: var(--ff-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--void);
  background: linear-gradient(135deg, var(--copper), var(--gold));
  padding: 9px 20px;
  text-decoration: none;
  transition: all var(--fast);
  clip-path: polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%);
}
.nav-cta:hover {
  box-shadow: 0 0 28px rgba(255,107,53,0.5);
}

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

.hero-alert-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(255,182,39,0.35);
  padding: 6px 16px;
  margin-bottom: 36px;
  opacity: 0;
  animation: surge 0.7s 0.1s var(--ease) forwards;
}
.alert-pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 8px var(--copper);
  animation: alert-blink 1.6s infinite;
}
@keyframes alert-blink {
  0%,100% { opacity:1; box-shadow: 0 0 10px var(--copper); }
  50%      { opacity:0.3; box-shadow: none; }
}

/* FINK QUOTE BANNER */
.fink-banner {
  max-width: 680px;
  margin: 0 auto 36px;
  padding: 18px 28px;
  border-left: 2px solid var(--copper);
  background: rgba(255,107,53,0.05);
  text-align: left;
  opacity: 0;
  animation: surge 0.7s 0.2s var(--ease) forwards;
}
.fink-quote {
  font-family: var(--ff-body);
  font-weight: 400;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.6;
}
.fink-attr {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
}

.hero-title {
  margin-bottom: 30px;
  line-height: 0.88;
  opacity: 0;
  animation: surge 0.8s 0.32s var(--ease) forwards;
}
.ht-orbi {
  display: block;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(4.5rem, 14vw, 12.5rem);
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, var(--copper) 0%, var(--gold) 60%, var(--solar) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 60px rgba(255,107,53,0.35));
}
.ht-compute {
  display: block;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(4.5rem, 14vw, 12.5rem);
  letter-spacing: 0.01em;
  color: var(--white);
}
.ht-tld {
  display: block;
  font-family: var(--ff-mono);
  font-size: clamp(1rem, 2.4vw, 2.1rem);
  color: var(--fog);
  letter-spacing: 0.16em;
  margin-top: 6px;
}

/* POWER GRID DIAGRAM */
.grid-diagram {
  position: relative;
  width: 280px;
  height: 200px;
  margin: 24px auto 32px;
  opacity: 0;
  animation: surge 0.8s 0.48s var(--ease) forwards;
}
.gd-sat {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  font-size: 1.8rem;
  filter: drop-shadow(0 0 14px rgba(255,182,39,0.6));
  animation: sat-drift 4s ease-in-out infinite;
}
@keyframes sat-drift {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-6px); }
}
.gd-panel {
  position: absolute;
  top: 28px;
  width: 56px; height: 16px;
  background: linear-gradient(135deg, rgba(255,182,39,0.5), rgba(255,107,53,0.3));
  border: 1px solid rgba(255,182,39,0.5);
}
.gd-panel-l { left: calc(50% - 76px); transform: skewY(8deg); }
.gd-panel-r { left: calc(50% + 20px); transform: skewY(-8deg); }

.gd-beam {
  position: absolute;
  top: 52px; left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 110px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--copper) 50%, transparent 100%);
  opacity: 0.7;
  animation: beam-pulse 1.4s ease-in-out infinite;
}
@keyframes beam-pulse {
  0%,100% { opacity: 0.4; }
  50%      { opacity: 0.9; }
}
.gd-pulse-dot {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--solar);
  box-shadow: 0 0 8px var(--solar);
  left: 50%;
  transform: translateX(-50%);
  animation: beam-travel 1.4s linear infinite;
}
@keyframes beam-travel {
  0%   { top: 54px; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 158px; opacity: 0; }
}

.gd-earth-arc {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 280px; height: 60px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center top, rgba(255,107,53,0.12) 0%, transparent 70%);
  border-top: 1px solid rgba(255,107,53,0.25);
}
.gd-dc-icon {
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
}
.gd-label {
  position: absolute;
  font-family: var(--ff-mono);
  font-size: 0.48rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,182,39,0.55);
  white-space: nowrap;
}
.gdl-top { top: -16px; left: 50%; transform: translateX(-50%); }
.gdl-bot { bottom: -16px; left: 50%; transform: translateX(-50%); }

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

.hero-tagline {
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  color: var(--fog);
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto 32px;
  opacity: 0;
  animation: surge 0.7s 0.62s var(--ease) forwards;
}
.hero-tagline strong { color: var(--white); font-weight: 500; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  opacity: 0;
  animation: surge 0.7s 0.76s var(--ease) forwards;
}
.hero-badges span {
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(255,182,39,0.25);
  padding: 5px 12px;
}

.hero-shortage-bar {
  display: flex;
  align-items: stretch;
  background: var(--panel);
  border: 1px solid var(--line-hi);
  margin-bottom: 32px;
  opacity: 0;
  animation: surge 0.7s 0.9s var(--ease) forwards;
  clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%);
}
.sb-block {
  padding: 16px 24px;
  text-align: center;
  border-right: 1px solid var(--line-hi);
  flex: 1;
}
.sb-block:last-child { border-right: none; }
.sb-val {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.6rem;
  background: linear-gradient(135deg, var(--copper), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.sb-lbl {
  font-family: var(--ff-mono);
  font-size: 0.52rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fog);
  margin-top: 4px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  opacity: 0;
  animation: surge 0.7s 1.04s var(--ease) forwards;
}

/* ── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  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-power {
  color: var(--void);
  background: linear-gradient(135deg, var(--copper), var(--gold));
}
.btn-power::before {
  content:'';
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, var(--gold), var(--solar));
  opacity: 0;
  transition: opacity 0.22s;
}
.btn-power:hover::before { opacity: 1; }
.btn-power:hover { box-shadow:0 0 36px rgba(255,107,53,0.5); }
.btn-power span { position:relative; z-index:1; }
.btn-power.lg { font-size:0.84rem; padding:18px 48px; }

.btn-wire {
  color: var(--gold);
  border: 1px solid rgba(255,182,39,0.4);
  background: transparent;
}
.btn-wire:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
  box-shadow: 0 0 22px rgba(255,182,39,0.18);
}

/* ── 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: tick-scroll 34s linear infinite;
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--fog);
  align-items: center;
}
.ticker-inner b { color: var(--copper); font-size: 0.42rem; }
@keyframes tick-scroll { from { transform:translateX(0); } to { transform:translateX(-50%); } }

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

.eyebrow {
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 22px; height: 1px;
  background: linear-gradient(90deg, var(--copper), var(--gold));
}

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

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

.anatomy-grid {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
}
.anat-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 44px 36px;
  transition: border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.anat-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--copper), var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}
.anat-panel:hover::before { transform: scaleX(1); }
.anat-panel:hover { border-color: rgba(255,107,53,0.4); }

.ap-num { font-family:var(--ff-mono); font-size:0.56rem; letter-spacing:0.2em; color:var(--copper); opacity:0.55; margin-bottom:18px; }
.ap-word {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.ap-orbi .ap-word    { background: linear-gradient(135deg, var(--copper), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ap-compute .ap-word { color: var(--white); }

.ap-sub { font-family:var(--ff-mono); font-size:0.6rem; 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.92rem; color:var(--fog); line-height:1.78; margin-bottom:22px; }
.ap-tags { display:flex; flex-wrap:wrap; gap:6px; }
.ap-tags span {
  font-family:var(--ff-mono); font-size:0.55rem; letter-spacing:0.1em;
  color:var(--gold); background:var(--copper-soft);
  border:1px solid rgba(255,182,39,0.18); padding:3px 10px;
}

.anat-bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--void);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  gap: 14px;
}
.ab-op { font-family:var(--ff-head); font-size:1.7rem; color:var(--copper); font-weight:300; opacity:0.65; }

.anatomy-result {
  background: linear-gradient(135deg, rgba(255,107,53,0.07) 0%, rgba(255,182,39,0.04) 100%);
  border: 1px solid rgba(255,107,53,0.22);
  padding: 52px;
  text-align: center;
}
.ar-name {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(2.1rem, 6vw, 5.6rem);
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: 16px;
  background: linear-gradient(90deg, var(--copper) 0%, var(--gold) 40%, var(--solar) 70%, var(--white) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(255,107,53,0.2));
}
.anatomy-result p { font-family:var(--ff-body); font-weight:300; font-size:1rem; color:var(--fog); max-width:680px; margin:0 auto; line-height:1.78; }

/* ── 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 0.22s;
}
.pillar::after {
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height:2px;
  background: linear-gradient(90deg, transparent, var(--copper), var(--gold), 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-mono); font-size:0.56rem; letter-spacing:0.2em; color:var(--copper); opacity:0.45; margin-bottom:16px; }
.p-icon { font-size:1.5rem; display:block; margin-bottom:16px; }
.pillar h3 { font-family:var(--ff-body); font-weight:600; font-size:0.87rem; letter-spacing:0.04em; 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.87rem; color:var(--fog); line-height:1.73; }

/* ── 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: 36px;
  transition: border-color 0.22s, box-shadow 0.22s;
}
.buyer:hover { border-color:rgba(255,107,53,0.35); box-shadow:0 0 28px rgba(255,107,53,0.05); }
.b-tier { font-family:var(--ff-mono); font-size:0.55rem; letter-spacing:0.18em; color:var(--copper); background:rgba(255,107,53,0.07); padding:3px 10px; display:inline-block; margin-bottom:14px; }
.buyer h3 { font-family:var(--ff-body); font-weight:600; font-size:0.97rem; letter-spacing:0.03em; text-transform:uppercase; color:var(--white); margin-bottom:10px; }
.buyer p { font-family:var(--ff-body); font-weight:300; font-size:0.87rem; color:var(--fog); line-height:1.73; }

/* ── CTA ────────────────────────────────────── */
.cta-sec { padding: 112px 0; }
.cta-shell { position:relative; border:1px solid rgba(255,107,53,0.25); background:var(--surface); overflow:hidden; text-align:center; }
.cta-topbar {
  height: 3px;
  background: linear-gradient(90deg, var(--void), var(--copper), var(--gold), var(--solar), var(--gold), var(--copper), var(--void));
  background-size: 200% 100%;
  animation: cta-flow 3.5s linear infinite;
}
@keyframes cta-flow { from { background-position:0% 0%; } to { background-position:200% 0%; } }
.cta-body { padding:80px 48px; position:relative; }
.cta-body::before {
  content:'';
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:600px; height:300px;
  background:radial-gradient(ellipse, rgba(255,107,53,0.07) 0%, transparent 65%);
  pointer-events:none;
}
.cta-h { font-family:var(--ff-head); font-weight:700; font-size:clamp(2.4rem,6vw,4.6rem); line-height:1.05; letter-spacing:0.01em; color:var(--white); margin:14px 0 18px; }
.cta-sub { font-family:var(--ff-body); font-weight:300; font-size:1rem; 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-mono); font-size:0.58rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--ghost); }

/* ── FOOTER ─────────────────────────────────── */
.footer { position:relative; z-index:1; background:var(--panel); border-top:1px solid var(--line); padding:48px 0 30px; }
.footer-inner { display:flex; flex-direction:column; align-items:center; gap:24px; }
.footer-nav { display:flex; flex-wrap:wrap; justify-content:center; gap:24px; }
.footer-nav a { font-family:var(--ff-mono); font-size:0.6rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--fog); text-decoration:none; transition:color var(--fast); }
.footer-nav a:hover { color:var(--gold); }
.footer-copy { font-family:var(--ff-mono); font-size:0.54rem; letter-spacing:0.08em; color:var(--ghost); }

/* ── PAGE HERO ──────────────────────────────── */
.page-hero { padding:160px 0 76px; border-bottom:1px solid var(--line); background:linear-gradient(180deg,rgba(255,107,53,0.05) 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.6rem,7vw,6rem); letter-spacing:0.01em; line-height:1.05; 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.73; }

/* ── CONTENT SECTIONS ───────────────────────── */
.cs { padding:84px 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:64px; align-items:start; }
.tc h2 { font-family:var(--ff-head); font-weight:700; font-size:clamp(1.7rem,3.4vw,2.8rem); letter-spacing:0.01em; line-height:1.1; margin-bottom:22px; }
.tc p { font-family:var(--ff-body); font-weight:300; font-size:0.92rem; color:var(--fog); line-height:1.8; margin-bottom:16px; }

.dbox { background:var(--panel); border:1px solid var(--line); padding:22px 26px; margin-bottom:12px; transition:border-color 0.22s; }
.dbox:hover { border-color:rgba(255,107,53,0.3); }
.dbox-v { font-family:var(--ff-head); font-weight:700; font-size:2.1rem; line-height:1; margin-bottom:5px; background:linear-gradient(135deg, var(--copper), var(--gold)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.dbox-l { font-family:var(--ff-mono); font-size:0.56rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--fog); }

.tl-item { display:flex; gap:24px; padding:24px 0; border-bottom:1px solid var(--line); }
.tl-yr { font-family:var(--ff-head); font-weight:700; font-size:1.8rem; color:var(--copper); min-width:72px; line-height:1; }
.tl-body h3 { font-family:var(--ff-body); font-weight:600; font-size:0.87rem; letter-spacing:0.05em; text-transform:uppercase; margin-bottom:5px; }
.tl-body p { font-family:var(--ff-body); font-weight:300; font-size:0.87rem; color:var(--fog); line-height:1.65; }

.dtable { width:100%; border-collapse:collapse; }
.dtable th { font-family:var(--ff-mono); font-weight:500; font-size:0.58rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--gold); padding:12px 14px; background:var(--panel); border-bottom:2px solid rgba(255,182,39,0.25); text-align:left; }
.dtable td { padding:12px 14px; border-bottom:1px solid var(--line); color:var(--fog); font-family:var(--ff-body); font-size:0.87rem; }
.dtable tr:hover td { background:var(--copper-soft); color:var(--white); }
.dtable .row-hi td { color:var(--gold); background:rgba(255,182,39,0.05); font-weight:600; }

.uc-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:var(--line); margin:44px 0; }
.uc { background:var(--deep); padding:36px; transition:background 0.22s; }
.uc:hover { background:var(--surface); }
.uc-n { font-family:var(--ff-head); font-weight:700; font-size:3rem; line-height:1; margin-bottom:8px; background:linear-gradient(135deg, var(--copper), var(--gold)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; opacity:0.22; }
.uc h3 { font-family:var(--ff-body); font-weight:600; font-size:0.87rem; letter-spacing:0.05em; text-transform:uppercase; color:var(--white); margin-bottom:10px; }
.uc p { font-family:var(--ff-body); font-weight:300; font-size:0.87rem; color:var(--fog); line-height:1.7; }

.f-field { margin-bottom:18px; }
.f-field label { display:block; font-family:var(--ff-mono); font-size:0.56rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold); margin-bottom:7px; }
.f-field input,.f-field select,.f-field textarea { width:100%; background:var(--panel); 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 0.22s; appearance:none; }
.f-field input:focus,.f-field select:focus,.f-field textarea:focus { border-color:var(--copper); box-shadow:0 0 12px rgba(255,107,53,0.08); }
.f-field textarea { min-height:112px; resize:vertical; }

.cg { display:grid; grid-template-columns:1fr 1.6fr; gap:60px; padding:76px 0; position:relative; z-index:1; }
.cgi h2 { font-family:var(--ff-head); font-weight:700; font-size:clamp(1.8rem,3.4vw,3rem); line-height:1.05; margin-bottom:18px; letter-spacing:0.01em; }
.cgi p { font-family:var(--ff-body); font-weight:300; font-size:0.92rem; color:var(--fog); line-height:1.75; margin-bottom:14px; }
.cgi-row { display:flex; gap:14px; padding:15px 0; border-bottom:1px solid var(--line); }
.cgi-icon { color:var(--copper); }
.cgi-text { font-size:0.85rem; color:var(--fog); line-height:1.5; }
.cgi-text strong { display:block; font-family:var(--ff-mono); font-size:0.56rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--white); margin-bottom:2px; }

.legal-body { padding:64px 0; max-width:760px; position:relative; z-index:1; }
.legal-body h2 { font-family:var(--ff-head); font-weight:700; font-size:1.6rem; letter-spacing:0.01em; color:var(--gold); margin:44px 0 12px; line-height:1.1; }
.legal-body p { font-family:var(--ff-body); font-weight:300; font-size:0.92rem; color:var(--fog); line-height:1.8; margin-bottom:12px; }
.legal-body ul { list-style:none; padding:0; margin:12px 0; }
.legal-body li { font-size:0.87rem; color:var(--fog); padding:5px 0 5px 18px; position:relative; line-height:1.6; }
.legal-body li::before { content:'⚡'; position:absolute; left:0; top:3px; color:var(--copper); font-size:0.6rem; }

@media (max-width:960px) {
  .nav-links { display:none; }
  .wrap { padding:0 22px; }
  .anatomy-grid,.pillars-grid,.buyers-grid,.uc-grid,.two-col,.cg { grid-template-columns:1fr; }
  .anat-bridge { flex-direction:row; padding:12px; border:none; border-left:1px solid var(--line); border-right:1px solid var(--line); justify-content:center; }
  .hero-shortage-bar { flex-direction:column; gap:0; }
  .sb-block { border-right:none; border-bottom:1px solid var(--line-hi); }
  .sb-block:last-child { border-bottom:none; }
  .cta-trust { flex-direction:column; gap:8px; }
  .grid-diagram { width:220px; height:160px; }
}
