/* XMight v2 — Design System
   Tokens: _context/design-tokens.css (locked)
   Do not modify token values without updating the source file.
*/

:root {
  --bg:        #0a0b0d;
  --bg-2:      #101114;
  --bg-3:      #16181c;
  --line:      #22242a;
  --line-2:    #2d3038;
  --ink:       #f4f3ee;
  --ink-2:     #c9cad0;
  --muted:     #7a7d86;
  --accent:    #efce18;
  --accent-dim:#8a7a15;
  --green:     #3ae07a;
  --red:       #d93a3a;
  --purple:    #a68cff;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-size: 17px;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== GRID BACKGROUND ===== */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(239,206,24,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239,206,24,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.8) 0%, transparent 75%);
}
main, nav, section, footer, header { position: relative; z-index: 1; }

/* ===== LAYOUT ===== */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 700px) { .wrap { padding: 0 20px; } }

/* ===== NAV ===== */
nav.top {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,11,13,.85);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--line);
}
nav.top .inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 56px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; letter-spacing: .02em; font-size: 15px;
  flex-shrink: 0;
}
.logo .dot {
  width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  flex-shrink: 0;
}
.nav-links {
  display: flex; gap: 24px;
  font-size: 13px; color: var(--muted);
}
.nav-links a { transition: color .15s; }
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }
.nav-right { display: flex; gap: 14px; align-items: center; }
.lang {
  font-size: 11px; color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .08em; white-space: nowrap;
}
.lang a { transition: color .15s; }
.lang a:hover { color: var(--ink-2); }
.lang a.active-lang { color: var(--ink); font-weight: 600; }
.nav-mobile-toggle {
  display: none; background: none; border: none;
  color: var(--muted); cursor: pointer; padding: 4px;
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 56px; left: 0; right: 0;
    background: rgba(10,11,13,.97);
    border-bottom: 1px solid var(--line);
    padding: 16px 20px; gap: 14px; z-index: 49;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--accent);
  background: var(--accent); color: var(--bg);
  font-size: 12px; font-weight: 600; border-radius: 2px;
  letter-spacing: .04em; text-transform: uppercase;
  transition: all .2s; font-family: 'Inter', sans-serif;
  cursor: pointer; white-space: nowrap;
}
.btn:hover { background: #fbe04a; box-shadow: 0 0 24px rgba(239,206,24,.4); }
.btn.ghost {
  background: transparent; color: var(--ink);
  border-color: var(--line-2);
}
.btn.ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 80px 0 48px;
  border-bottom: 1px solid var(--line);
}
.page-header .tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--accent);
  letter-spacing: .16em; text-transform: uppercase;
  margin-bottom: 20px;
}
.page-header h1 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500; letter-spacing: -.025em; line-height: 1.08;
}
.page-header .sub {
  margin-top: 16px; font-size: 16px; line-height: 1.65;
  color: var(--ink-2); max-width: 640px;
}

/* ===== HERO (home) ===== */
.hero {
  padding: 96px 0 80px;
  position: relative; min-height: 65vh;
  display: flex; align-items: center;
}
.hero .glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  top: -120px; right: -100px;
  background: radial-gradient(closest-side, rgba(239,206,24,.18), transparent 70%);
  filter: blur(30px); pointer-events: none;
}
.hero-content { max-width: 740px; }
.hero .kicker {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 5px 14px; border: 1px solid var(--line-2); border-radius: 40px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--accent); letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero .kicker .dot {
  width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 500; letter-spacing: -0.025em; line-height: 1.05;
}
.hero h1 em { font-style: normal; color: var(--accent); text-shadow: 0 0 32px rgba(239,206,24,.35); }
.hero .lede {
  margin-top: 22px; font-size: 1.15rem; line-height: 1.7;
  color: var(--ink-2); max-width: 620px;
}
.hero .cta-row { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== SECTIONS ===== */
section.block { padding: 96px 0; border-top: 1px solid var(--line); }
.sec-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--accent);
  letter-spacing: .16em; text-transform: uppercase;
  margin-bottom: 20px;
}
.sec-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500; letter-spacing: -0.02em; line-height: 1.15;
}
.sec-sub {
  font-size: 15px; line-height: 1.65; color: var(--ink-2);
  max-width: 560px; margin-top: 14px;
}

/* ===== CARDS ===== */
.card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 3px;
  padding: 32px; position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239,206,24,.4), transparent);
}
.card .card-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--accent);
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 14px;
}
.card h3 { font-size: 18px; font-weight: 500; margin-bottom: 12px; }
.card p { font-size: 14.5px; line-height: 1.65; color: var(--ink-2); }

/* ===== PANEL ===== */
.panel {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 4px;
  position: relative; overflow: hidden;
}
.panel::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239,206,24,.6), transparent);
}
.panel-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 18px; border-bottom: 1px solid var(--line);
  font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--muted);
  letter-spacing: .1em; text-transform: uppercase;
}

/* ===== PRODUCT CARDS ===== */
.product-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 4px; overflow: hidden; position: relative;
}
.product-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239,206,24,.5), transparent);
}
.product-illus {
  background: var(--bg); border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  padding: 48px 32px; min-height: 300px;
}
.product-illus svg { max-width: 100%; height: auto; }
.product-card-body { padding: 36px; }
.product-card-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--accent);
  letter-spacing: .12em; text-transform: uppercase;
  font-weight: 500; margin-bottom: 16px;
}
.product-card-desc {
  font-size: 15px; line-height: 1.65; color: var(--ink-2);
  max-width: 680px; margin-bottom: 24px;
}
.iface-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; color: var(--muted);
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 10px;
}
.iface-list { list-style: none; margin-bottom: 20px; }
.iface-list li {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--ink-2);
  padding: 8px 0; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 8px;
}
.iface-list li:last-child { border-bottom: none; }
.iface-list li::before {
  content: ""; width: 4px; height: 4px;
  background: var(--accent); border-radius: 50%; flex-shrink: 0;
}
.cert-line {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--muted); letter-spacing: .06em;
  margin-top: 16px;
}
.patent-line {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--muted); letter-spacing: .06em;
  margin-top: 8px;
}

/* ===== CONTROL LOOP ===== */
.loop-panel { background: var(--bg-2); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; position: relative; }
.loop-panel::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(239,206,24,.6), transparent); }
.loop-head {
  padding: 10px 24px; border-bottom: 1px solid var(--line);
  font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--muted);
  letter-spacing: .12em; text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
.loop-head .pulse {
  width: 6px; height: 6px; background: var(--accent);
  border-radius: 50%; box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
.loop-row {
  display: grid; grid-template-columns: 110px 180px 1fr;
  gap: 20px; padding: 18px 24px;
  border-bottom: 1px dashed var(--line); align-items: center;
}
.loop-row:last-child { border-bottom: none; }
.loop-phase {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 500; color: var(--accent);
}
.loop-actor {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--muted);
  letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 12px; border: 1px solid var(--line-2);
  border-radius: 40px; text-align: center; white-space: nowrap;
}
.loop-label { font-size: 14px; color: var(--ink-2); }
@media (max-width: 720px) { .loop-row { grid-template-columns: 1fr; gap: 6px; } }

/* ===== COMPLIANCE CARDS ===== */
.compliance-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 3px; padding: 36px;
}
.compliance-card .standard-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--accent);
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 16px;
}
.compliance-card h2 { font-size: 22px; font-weight: 500; margin-bottom: 20px; }
.compliance-card blockquote {
  border-left: 2px solid var(--accent);
  padding: 12px 20px; margin: 0 0 12px 0;
  background: rgba(239,206,24,.04); border-radius: 0 2px 2px 0;
}
.compliance-card blockquote p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; color: var(--ink); line-height: 1.6;
}
.compliance-card .clause {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--muted); letter-spacing: .06em;
  margin-bottom: 16px;
}
.compliance-card .dpo-stmt {
  font-size: 14px; color: var(--ink-2); line-height: 1.6;
  margin-top: 12px; padding-top: 12px;
  border-top: 1px solid var(--line);
}
.compliance-card .note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--muted); margin-top: 8px;
}

/* ===== TABLE ===== */
.data-table {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 3px; overflow: hidden; width: 100%;
}
.data-table table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.data-table th {
  text-align: left; padding: 14px 20px;
  font-size: 10px; font-family: 'JetBrains Mono', monospace; color: var(--muted);
  text-transform: uppercase; letter-spacing: .12em;
  background: #0c0d0f; border-bottom: 1px solid var(--line); font-weight: 500;
}
.data-table td {
  padding: 16px 20px; border-bottom: 1px solid var(--line);
  vertical-align: top; line-height: 1.5; color: var(--ink-2);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table td:first-child {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  color: var(--ink); font-weight: 500;
}
.data-table td.hl { background: rgba(239,206,24,.05); border-left: 2px solid var(--accent); color: var(--ink); }

/* ===== PILLS / STATUS ===== */
.pill {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  background: rgba(239,206,24,.12); color: var(--accent);
  padding: 3px 9px; border-radius: 2px; letter-spacing: .08em;
  border: 1px solid rgba(239,206,24,.3); display: inline-block;
}
.status-gap {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: .06em; padding: 3px 9px; border-radius: 2px;
  display: inline-block;
  background: rgba(217,58,58,.12); color: var(--red);
  border: 1px solid rgba(217,58,58,.25);
}
.status-extends {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: .06em; padding: 3px 9px; border-radius: 2px;
  display: inline-block;
  background: rgba(239,206,24,.12); color: var(--accent);
  border: 1px solid rgba(239,206,24,.3);
}
.status-review {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: .06em; padding: 3px 9px; border-radius: 2px;
  display: inline-block;
  background: rgba(166,140,255,.12); color: var(--purple);
  border: 1px solid rgba(166,140,255,.25);
}
.req-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.req-pill {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: .06em; padding: 2px 8px; border-radius: 2px;
  background: rgba(58,224,122,.08); color: var(--green);
  border: 1px solid rgba(58,224,122,.2);
}

/* ===== FACTS GRID (company) ===== */
.facts-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: 3px;
  overflow: hidden; margin-top: 40px;
}
.fact { background: var(--bg-2); padding: 28px 24px; }
.fact .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--muted);
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 8px;
}
.fact .value { font-size: 15px; font-weight: 500; color: var(--ink); line-height: 1.5; }
@media (max-width: 500px) { .facts-grid { grid-template-columns: 1fr; } }

/* ===== PAPER CARD (ocp) ===== */
.paper-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 3px; padding: 32px; margin-top: 32px;
}
.paper-card .paper-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--accent);
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 10px;
}
.paper-card .paper-venue {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--muted); margin-top: 6px;
}
.paper-card h3 { font-size: 17px; font-weight: 500; line-height: 1.4; margin-bottom: 14px; }
.paper-card p { font-size: 14px; line-height: 1.65; color: var(--ink-2); }

/* ===== CONTACT CARD ===== */
.contact-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 3px; padding: 32px; position: relative; overflow: hidden;
}
.contact-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.contact-card .row {
  display: flex; justify-content: space-between;
  padding: 16px 0; border-bottom: 1px solid var(--line);
  font-size: 14px; align-items: baseline; gap: 24px;
}
.contact-card .row:last-child { border-bottom: none; }
.contact-card .row .lbl {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: var(--muted); letter-spacing: .12em; text-transform: uppercase;
  font-weight: 500; white-space: nowrap;
}
.contact-card .row .val { color: var(--ink); font-weight: 500; }
.contact-card .row .val a { color: var(--ink-2); }
.contact-card .row .val a:hover { color: var(--accent); }

/* ===== FOOTNOTES ===== */
footer.footnotes {
  border-top: 1px solid var(--line);
  padding: 40px 0;
}
footer.footnotes h3 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--muted);
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 16px;
}
footer.footnotes ol {
  padding-left: 18px; list-style: decimal;
  color: var(--muted); font-size: 12.5px; line-height: 1.9;
}
footer.footnotes a { color: var(--ink-2); border-bottom: 1px solid var(--line-2); }
footer.footnotes a:hover { color: var(--accent); border-color: var(--accent); }
sup {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; color: var(--accent);
  vertical-align: super; margin-left: 1px;
}

/* ===== SITE FOOTER ===== */
footer.site-footer {
  padding: 32px 0; border-top: 1px solid var(--line);
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: var(--muted); letter-spacing: .08em; text-transform: uppercase;
}
footer.site-footer .inner {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
footer.site-footer a:hover { color: var(--accent); }

/* ===== GRID LAYOUTS ===== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
@media (max-width: 860px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

/* ===== OCP HIERARCHY ===== */
.hierarchy-box {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 3px; padding: 32px; overflow-x: auto;
}
.hierarchy-box svg { display: block; margin: 0 auto; min-width: 700px; }

/* ===== LOGO IMG ===== */
.top .logo img { height: 28px; width: auto; display: block; }
@media (max-width: 700px) { .top .logo img { height: 22px; } }

/* ===== GAP CARDS (technology) ===== */
.gap-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 32px;
}
.gap-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 3px; padding: 28px;
}
.gap-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--red);
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 8px;
}
.gap-id {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2rem; color: var(--line-2);
  font-weight: 600; line-height: 1; margin-bottom: 12px;
}
.gap-card h3 { font-size: 16px; font-weight: 500; margin-bottom: 10px; }
.gap-card p { font-size: 13.5px; line-height: 1.65; color: var(--ink-2); }
.gap-closing {
  margin-top: 24px; font-size: 14px; color: var(--muted);
  line-height: 1.6; max-width: 720px;
  padding: 16px 20px; background: var(--bg-2);
  border: 1px solid var(--line); border-radius: 3px;
}
@media (max-width: 700px) { .gap-grid { grid-template-columns: 1fr; } }

/* ===== DPO ARCHITECTURE DIAGRAM ===== */
.pom-engine-bar {
  background: rgba(239,206,24,.12); border: 1px solid var(--accent);
  border-radius: 3px; padding: 16px 24px; text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; font-weight: 600; color: var(--accent);
  letter-spacing: .06em; margin-bottom: 8px;
}
.pom-connector { text-align: center; color: var(--line-2); font-size: 20px; margin-bottom: 8px; line-height: 1; }
.pom-blocks {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: 3px;
  overflow: hidden;
}
.pom-block { background: var(--bg-2); padding: 20px 22px; }
.pom-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 600; color: var(--accent);
  letter-spacing: .06em; margin-bottom: 6px;
}
.pom-sub { font-size: 13px; color: var(--muted); line-height: 1.5; }
.pom-caption {
  margin-top: 16px; font-size: 13px; color: var(--muted);
  line-height: 1.65; max-width: 680px;
}
@media (max-width: 600px) { .pom-blocks { grid-template-columns: 1fr; } }
/* ===== DPO DIAGRAM INLINE SVG ===== */
.pom-diagram { max-width: 1100px; margin: 56px auto 0; }
.pom-diagram__inner {
  background: #fafaf7;
  padding: 32px 40px;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow-x: auto;
}
.pom-diagram__inner svg { display: block; width: 100%; height: auto; }
.pom-diagram figcaption {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--muted);
  text-align: center; margin-top: 16px;
  letter-spacing: 0.08em; text-transform: uppercase;
}
@media (max-width: 700px) {
  .pom-diagram__inner { padding: 16px 12px; }
}

/* ===== JURISDICTION TABLE (compliance) ===== */
.jurisdiction-table { width: 100%; }

/* ===== WHY NOW (home) ===== */
.why-now-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 3px; padding: 40px; max-width: 860px;
}
.why-now-card p {
  font-size: 16px; line-height: 1.75; color: var(--ink-2);
  margin-bottom: 20px;
}
.why-now-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 500; color: var(--accent);
  letter-spacing: .04em; transition: opacity .2s;
}
.why-now-link:hover { opacity: .75; }

/* ===== HEADROOM CALLOUT (product architecture) ===== */
.headroom-callout {
  border-left: 3px solid var(--accent);
  padding: 24px 32px;
  background: rgba(239,206,24,0.03);
  margin: 40px auto;
  max-width: 900px;
}
.headroom-callout .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--accent);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 12px;
}
.headroom-callout .body {
  font-size: 17px; line-height: 1.7;
  color: var(--ink); margin-bottom: 16px;
}
.headroom-callout .sources {
  font-size: 12px; color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  line-height: 1.6;
}
.headroom-callout .sources span { color: var(--accent); }

/* ===== JURISDICTION TABLE — 5th column ===== */
.jurisdiction-table th:nth-child(5),
.jurisdiction-table td:nth-child(5) { width: 30%; }
.jurisdiction-table td { font-size: 13.5px; line-height: 1.5; }

/* ===== VOLTAGE EVENT TIMING DIAGRAMS ===== */
.timing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 40px 0 32px;
}
.timing-col-header {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-bottom: 6px;
  text-align: center;
  border-bottom: 2px solid;
}
.timing-col-left  { color: var(--red);   border-bottom-color: rgba(217,58,58,.35); }
.timing-col-right { color: var(--green); border-bottom-color: rgba(58,224,122,.30); }

.timing-panel {
  background: #f4f3ee;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  margin: 0;
}
.timing-panel svg {
  display: block;
  width: 100%;
  height: auto;
}

.voltage-event-summary {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-2);
  max-width: 900px;
  margin: 24px 0 0;
}

@media (max-width: 860px) {
  .timing-grid { grid-template-columns: 1fr; }
  .timing-col-header { display: none; }
}
