/* ===== Tokens ===== */
:root {
  --ink: #0a0c12;
  --ink-2: #0d1018;
  --surface: #141a26;
  --surface-2: #1b2233;
  --line: #232c3f;
  --text: #e9eef6;
  --muted: #8892a6;
  --faint: #5c6579;
  --azure: #4c8dff;
  --azure-soft: #7bacff;
  --amber: #f5a623;
  --green: #46d59e;

  --display: "Space Grotesk", system-ui, sans-serif;
  --body: system-ui, -apple-system, "PingFang SC", "Segoe UI", Roboto, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html.nav-open { overflow: hidden; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ambient wash */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60vw 40vw at 78% -6%, rgba(76, 141, 255, 0.16), transparent 60%),
    radial-gradient(50vw 40vw at 0% 8%, rgba(245, 166, 35, 0.06), transparent 55%);
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--display); font-weight: 600; letter-spacing: -0.02em; margin: 0; }

section { padding: clamp(64px, 9vw, 128px) var(--pad); }
section > * { max-width: var(--maxw); margin-inline: auto; }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--azure-soft);
  margin: 0 0 18px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.98rem;
  padding: 13px 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
}
.btn-sm { padding: 9px 16px; font-size: 0.9rem; }
.btn-primary { background: var(--azure); color: #061021; }
.btn-primary:hover { background: var(--azure-soft); transform: translateY(-2px); }
.btn-ghost { border-color: var(--line); color: var(--text); background: rgba(255, 255, 255, 0.02); }
.btn-ghost:hover { border-color: var(--azure); transform: translateY(-2px); }

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px var(--pad);
  background: rgba(10, 12, 18, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav::after {
  content: "";
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(76, 141, 255, 0.65), transparent);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.nav:hover::after { opacity: 1; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 700; }
.brand-mark {
  width: 20px; height: 20px; border-radius: 7px;
  background: conic-gradient(from 210deg, var(--azure), var(--azure-soft), var(--amber), var(--azure));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}
.brand-name { letter-spacing: -0.01em; }
.nav-links { display: flex; gap: 24px; margin-left: 10px; margin-right: auto; align-items: center; }
.nav-links a { color: var(--muted); font-size: 0.94rem; transition: color 0.15s; }
.nav-links a { position: relative; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 1px;
  background: var(--azure-soft); transform: scaleX(0); transform-origin: left;
  transition: transform 0.18s ease;
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-signin { color: var(--text) !important; font-weight: 500; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-burger {
  display: none; align-items: center; justify-content: center;
  flex: 0 0 42px; width: 42px; height: 42px; padding: 0;
  color: var(--text); background: var(--surface); border: 1px solid #354158; border-radius: 11px;
  appearance: none; -webkit-appearance: none; cursor: pointer;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.nav-burger:hover { border-color: var(--azure); background: var(--surface-2); }
.nav-burger span { display: block; position: relative; width: 18px; height: 2px; border-radius: 0; background: currentColor; transition: background 0.15s; }
.nav-burger span::before, .nav-burger span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; border-radius: 0; background: currentColor; transition: transform 0.2s; }
.nav-burger span::before { top: -6px; }
.nav-burger span::after { top: 6px; }
.nav.open .nav-burger span { background: transparent; }
.nav.open .nav-burger span::before { transform: translateY(6px) rotate(45deg); }
.nav.open .nav-burger span::after { transform: translateY(-6px) rotate(-45deg); }

.lang-toggle {
  display: inline-flex; align-items: center; gap: 5px;
  background: transparent; border: 1px solid var(--line);
  border-radius: 10px; padding: 6px 11px;
  font-family: var(--mono); font-size: 0.82rem; color: var(--muted);
  cursor: pointer; transition: border-color 0.15s;
}
.lang-toggle:hover { border-color: var(--azure); }
.lang-opt { transition: color 0.15s; }
.lang-opt.is-active { color: var(--text); }
.lang-sep { color: var(--faint); }

/* ===== Hero ===== */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(56px, 8vw, 104px);
  padding-bottom: clamp(56px, 8vw, 104px);
}
.hero-title {
  font-size: clamp(2.5rem, 5.6vw, 4.3rem);
  line-height: 1.02;
  margin: 0 0 22px;
}
.hero-sub { font-size: clamp(1.02rem, 1.5vw, 1.18rem); color: var(--muted); max-width: 46ch; margin: 0 0 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.hero-meta { font-family: var(--mono); font-size: 0.82rem; color: var(--faint); margin: 0; }

/* ===== Hero diagram (signature) ===== */
.hero-diagram { position: relative; }
.diagram-frame {
  position: relative;
  height: 340px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), var(--ink-2));
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.8);
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  overflow: hidden;
}
.col { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 2; }
.col-hub { align-items: center; }
.col-dest { align-items: flex-end; }
.col-label {
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--faint);
}
.node {
  font-family: var(--mono); font-size: 0.78rem;
  padding: 9px 12px; border-radius: 9px;
  border: 1px solid var(--line); background: var(--surface-2);
  white-space: nowrap;
}
.node-app { border-left: 2px solid var(--azure); }
.node-dest.is-proxy { border-right: 2px solid var(--azure); }
.node-dest.is-direct { border-right: 2px solid var(--amber); color: var(--amber); }
.hub {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 16px 18px; border-radius: 14px;
  border: 1px solid var(--azure);
  background: radial-gradient(circle at 50% 30%, rgba(76, 141, 255, 0.22), var(--surface-2));
  box-shadow: 0 0 40px -8px rgba(76, 141, 255, 0.5);
}
.hub-title { font-family: var(--display); font-weight: 600; font-size: 0.92rem; }
.hub-sub { font-family: var(--mono); font-size: 0.64rem; color: var(--muted); }

.wires { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.wire { stroke: var(--line); stroke-width: 1.4; }
.wire-direct { stroke: rgba(245, 166, 35, 0.3); }

.pkt-azure { fill: var(--azure-soft); filter: drop-shadow(0 0 5px rgba(123, 172, 255, 0.95)); }
.pkt-amber { fill: var(--amber); filter: drop-shadow(0 0 5px rgba(245, 166, 35, 0.9)); }

.diagram-legend {
  display: flex; gap: 20px; justify-content: center;
  margin-top: 16px; font-family: var(--mono); font-size: 0.76rem; color: var(--muted);
}
.diagram-legend span { display: inline-flex; align-items: center; gap: 7px; }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot-azure { background: var(--azure-soft); }
.dot-amber { background: var(--amber); }

/* ===== Strip ===== */
.strip { padding-block: clamp(40px, 6vw, 72px); border-block: 1px solid var(--line); background: var(--ink-2); }
.strip p {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  line-height: 1.4; color: var(--text); text-align: center; margin: 0;
  max-width: 60ch;
}

/* ===== Section head ===== */
.section-head { margin-bottom: 52px; max-width: 62ch; }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); line-height: 1.1; }
.section-sub { color: var(--muted); margin: 18px 0 0; font-size: 1.05rem; }

/* ===== Features ===== */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature {
  padding: 26px; border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--surface);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.feature:hover { transform: translateY(-4px); border-color: var(--azure); }
.feature-accent { background: linear-gradient(180deg, rgba(76, 141, 255, 0.1), var(--surface)); border-color: rgba(76, 141, 255, 0.35); }
.feature-num { font-family: var(--mono); font-size: 0.82rem; color: var(--faint); }
.feature h3 { font-size: 1.2rem; margin: 12px 0 10px; }
.feature p { color: var(--muted); font-size: 0.96rem; margin: 0; }

/* ===== Deep dive ===== */
.dive {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.dive-copy h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.12; margin-bottom: 18px; }
.dive-copy > p { color: var(--muted); font-size: 1.05rem; }
.dive-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.dive-list li { position: relative; padding-left: 26px; color: var(--text); font-size: 0.98rem; }
.dive-list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px; border-radius: 2px; background: var(--azure);
}
.dive-cta { margin-top: 26px; }

/* trace card */
.trace-card {
  margin: 0; padding: 22px; border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--ink-2);
  font-family: var(--mono); box-shadow: 0 30px 60px -40px rgba(0, 0, 0, 0.9);
}
.trace-head { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding-bottom: 16px; border-bottom: 1px solid var(--line); font-size: 0.86rem; }
.trace-app { color: var(--azure-soft); }
.trace-arrow { color: var(--faint); }
.trace-dst { color: var(--text); }
.trace-badge { margin-left: auto; font-size: 0.72rem; padding: 3px 9px; border-radius: 20px; }
.badge-proxy { background: rgba(76, 141, 255, 0.16); color: var(--azure-soft); border: 1px solid rgba(76, 141, 255, 0.4); }
.trace-steps { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 8px; font-size: 0.82rem; }
.trace-steps li { display: grid; grid-template-columns: 68px 1fr auto; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 8px; }
.trace-steps .tk { color: var(--faint); }
.trace-steps .tr { font-size: 0.72rem; }
.trace-steps .skip { opacity: 0.5; }
.trace-steps .skip .tr { color: var(--faint); }
.trace-steps .hit { background: rgba(76, 141, 255, 0.1); border: 1px solid rgba(76, 141, 255, 0.3); }
.trace-steps .hit .tr { color: var(--azure-soft); }
.trace-steps .out { background: rgba(70, 213, 158, 0.08); }
.trace-steps .out .tk { color: var(--green); }
.trace-steps .out .tv { color: var(--text); }
.trace-foot { margin: 14px 0 0; font-size: 0.74rem; color: var(--faint); }

.dive-alt { direction: ltr; }

/* terminal */
.term { margin: 0; border-radius: var(--radius); border: 1px solid var(--line); background: var(--ink-2); overflow: hidden; box-shadow: 0 30px 60px -40px rgba(0, 0, 0, 0.9); }
.term-bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; border-bottom: 1px solid var(--line); background: var(--surface); }
.term-bar i { width: 11px; height: 11px; border-radius: 50%; background: var(--line); }
.term-bar i:nth-child(1) { background: #ff5f57; } .term-bar i:nth-child(2) { background: #febc2e; } .term-bar i:nth-child(3) { background: #28c840; }
.term-bar span { margin-left: auto; font-family: var(--mono); font-size: 0.76rem; color: var(--faint); }
.term-body { margin: 0; padding: 20px; font-family: var(--mono); font-size: 0.82rem; line-height: 1.9; overflow-x: auto; }
.c-dim { color: var(--faint); } .c-str { color: var(--azure-soft); } .c-ok { color: var(--green); } .c-arrow { color: var(--amber); }

/* ===== Comparison ===== */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); }
.cmp { width: 100%; border-collapse: collapse; font-size: 0.95rem; min-width: 520px; }
.cmp th, .cmp td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.cmp thead th { font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.06em; color: var(--muted); background: var(--surface); }
.cmp tbody tr:last-child td { border-bottom: none; }
.cmp .col-us { background: rgba(76, 141, 255, 0.06); }
.cmp thead .col-us { color: var(--azure-soft); }
.cmp .yes { color: var(--text); font-weight: 500; }
.cmp .yes::before { content: "✓ "; color: var(--azure); }
.cmp .no { color: var(--faint); }
.cmp .no::before { content: "✕ "; }
.cmp .partial { color: var(--muted); }

/* ===== Pricing ===== */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.plan {
  position: relative; padding: 30px 26px; border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--surface);
  display: flex; flex-direction: column;
}
.plan-featured { border-color: var(--azure); background: linear-gradient(180deg, rgba(76, 141, 255, 0.12), var(--surface)); box-shadow: 0 30px 70px -44px rgba(76, 141, 255, 0.7); }
.plan-tag { position: absolute; top: -11px; left: 26px; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; background: var(--azure); color: #061021; padding: 4px 10px; border-radius: 20px; }
.plan h3 { font-size: 1.25rem; margin-bottom: 14px; }
.plan-price { display: flex; align-items: baseline; gap: 8px; margin: 0 0 20px; }
.plan-amt { font-family: var(--display); font-weight: 700; font-size: 2.6rem; line-height: 1; }
.plan-unit { color: var(--muted); font-size: 0.9rem; }
.plan ul { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 10px; }
.plan li { position: relative; padding-left: 22px; color: var(--muted); font-size: 0.94rem; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--azure); }
.plan-cta { margin-top: auto; justify-content: center; }
.pricing-note { text-align: center; color: var(--faint); font-size: 0.9rem; margin: 34px auto 0; max-width: 52ch; }

/* ===== Checkout feedback ===== */
.checkout-error {
  position: fixed; z-index: 10000; left: 50%; bottom: 24px; transform: translateX(-50%);
  width: min(680px, calc(100vw - 32px)); display: grid; grid-template-columns: 1fr auto; gap: 18px;
  align-items: center; padding: 18px 54px 18px 20px; color: var(--text);
  border: 1px solid rgba(255, 128, 128, 0.48); border-radius: 14px;
  background: rgba(20, 26, 38, 0.98); box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}
.checkout-error strong { display: block; font-family: var(--display); font-size: 1rem; }
.checkout-error p { margin: 4px 0 0; color: var(--muted); font-size: 0.84rem; line-height: 1.45; }
.checkout-error-close {
  position: absolute; top: 7px; right: 10px; padding: 4px 8px; color: var(--muted);
  border: 0; background: transparent; font-size: 1.35rem; cursor: pointer;
}

/* ===== FAQ ===== */
.faq { border-top: 1px solid var(--line); background: linear-gradient(180deg, rgba(20, 26, 38, 0.42), transparent); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.faq details { border: 1px solid var(--line); border-radius: 14px; background: var(--surface); padding: 0 20px; }
.faq details[open] { border-color: rgba(76, 141, 255, 0.45); background: linear-gradient(180deg, rgba(76, 141, 255, 0.08), var(--surface)); }
.faq summary { position: relative; padding: 19px 28px 19px 0; cursor: pointer; list-style: none; font-family: var(--display); font-weight: 600; line-height: 1.35; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 17px; color: var(--azure-soft); font-family: var(--mono); font-size: 1.15rem; }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: -2px 0 19px; color: var(--muted); font-size: 0.95rem; }
.faq-more { margin: 26px auto 0; color: var(--muted); }
.faq-more a { color: var(--azure-soft); text-decoration: underline; text-underline-offset: 3px; }

/* ===== Footer ===== */
.foot { padding: 56px var(--pad); border-top: 1px solid var(--line); text-align: center; background: var(--ink-2); }
.foot-brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 700; }
.foot-tag { color: var(--muted); margin: 14px 0 8px; }
.foot-legal { color: var(--faint); font-size: 0.85rem; margin: 0; }
.foot-legal a { color: var(--muted); }
.foot-legal a:hover { color: var(--text); }

/* ===== Responsive ===== */
@media (max-width: 1060px) {
  .nav-burger { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    margin: 0; padding: 8px var(--pad) 16px;
    background: rgba(10, 12, 18, 0.97); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
  }
  .nav.open .nav-links { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav-links a::after { display: none; }
  .nav-links a:last-child { border-bottom: none; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-diagram { order: -1; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .dive { grid-template-columns: 1fr; }
  .dive-alt .term { order: 2; }
  .plan-grid { grid-template-columns: 1fr; max-width: 440px; }
  .nav-burger { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    margin: 0; padding: 8px var(--pad) 16px;
    background: rgba(10, 12, 18, 0.97); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
  }
  .nav.open .nav-links { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav-links a::after { display: none; }
  .nav-links a:last-child { border-bottom: none; }
}
@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .nav { gap: 12px; }
  .nav-actions { gap: 8px; margin-left: auto; }
  .nav-actions > .btn { display: none; }
  .lang-toggle { padding-inline: 8px; }
  .checkout-error { grid-template-columns: 1fr; }
  .diagram-frame { height: 300px; padding: 14px; }
  .node { font-size: 0.7rem; padding: 7px 9px; }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .feature { transition: none; }
}

/* ===== Focus ===== */
:focus-visible { outline: 2px solid var(--azure); outline-offset: 3px; border-radius: 4px; }

/* ===== Footer legal nav ===== */
.foot-nav {
  display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: center;
  margin: 22px auto 6px; max-width: 720px;
  font-size: 0.88rem;
}
.foot-nav a { color: var(--muted); }
.foot-nav a:hover { color: var(--text); }
.foot-nav .sep { color: var(--faint); }

/* ===== Document pages (legal / info) ===== */
.doc { max-width: 760px; margin-inline: auto; padding: clamp(48px, 8vw, 96px) var(--pad) 72px; }
.doc-eyebrow { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--azure-soft); margin: 0 0 14px; }
.doc h1 { font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1.08; margin: 0 0 10px; }
.doc-updated { color: var(--faint); font-family: var(--mono); font-size: 0.82rem; margin: 0 0 40px; }
.doc h2 { font-size: 1.35rem; margin: 40px 0 12px; }
.doc h3 { font-size: 1.08rem; margin: 26px 0 8px; }
.doc p, .doc li { color: var(--muted); line-height: 1.7; }
.doc p { margin: 0 0 14px; }
.doc ul, .doc ol { margin: 0 0 16px; padding-left: 22px; }
.doc li { margin-bottom: 8px; }
.doc a { color: var(--azure-soft); text-decoration: underline; text-underline-offset: 3px; }
.doc strong { color: var(--text); }
.doc code { font-family: var(--mono); font-size: 0.9em; background: var(--surface-2); padding: 2px 6px; border-radius: 5px; color: var(--text); }
.doc .callout { border: 1px solid var(--line); background: var(--surface); border-radius: 12px; padding: 16px 20px; margin: 0 0 20px; }
.doc .callout p:last-child { margin-bottom: 0; }
.doc table { width: 100%; border-collapse: collapse; margin: 0 0 20px; font-size: 0.95rem; }
.doc th, .doc td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.doc th { color: var(--text); font-family: var(--mono); font-size: 0.8rem; }
.placeholder { color: var(--amber); font-style: italic; }
