/* =====================================================================
   Tavrik — Site styles
   ===================================================================== */

@import url("./tokens.css");

* { box-sizing: border-box; }

.vstage {
  width: 100%;
  background: var(--bg);
  color: var(--fg-1);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
}
.vstage a { color: inherit; text-decoration: none; }
.vstage h1, .vstage h2, .vstage h3, .vstage h4, .vstage p, .vstage ul, .vstage ol { margin: 0; }
.vstage ul, .vstage ol { padding: 0; list-style: none; }
.vstage hr { border: 0; }
.vstage button { font: inherit; cursor: pointer; }

/* ========== Shared rails / chrome ========== */
.va-rail, .vc-rail {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

/* ========== Buttons (scoped to .vstage to override host page) ========== */
.vstage .btn {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 18px;
  border-radius: 2px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 120ms ease;
  cursor: pointer;
  text-decoration: none;
}
.vstage .btn-primary { background: var(--accent); color: var(--accent-fg); border-color: var(--accent); }
.vstage .btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.vstage .btn-secondary { background: transparent; color: var(--fg-1); border-color: var(--fg-1); }
.vstage .btn-secondary:hover { background: var(--fg-1); color: var(--bg); }
.vstage .btn-ghost { background: transparent; color: var(--fg-1); padding: 11px 0; border: 0; }
.vstage .btn-ghost:hover { color: var(--accent-deep); }
.vstage .btn-sm { font-size: 13px; padding: 8px 14px; }
.vstage .va-btn-on-ink { color: var(--bone-100); border-color: var(--bone-100); }
.vstage .va-btn-on-ink:hover { background: var(--bone-100); color: var(--ink-900); }
.vstage .btn-ghost-ink {
  background: transparent;
  color: var(--bone-100);
  padding: 11px 0;
  font-size: 14px;
  font-weight: 600;
  border: 0;
  border-bottom: 1px solid var(--bone-500);
}
.vstage .btn-ghost-ink:hover { color: var(--copper-300); border-color: var(--copper-300); }

/* ========== Eyebrows / rules ========== */
.vstage .eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
  font-weight: 500;
}
.vstage .eyebrow.accent { color: var(--accent-deep); }
.vstage .copper { color: var(--accent-deep); }

/* =====================================================================
   MASTHEAD
   ===================================================================== */

.vmh {
  border-bottom: 1px solid var(--border-1);
  background: var(--bg);
  position: relative;
  z-index: 5;
}
.vmh--ink {
  background: var(--ink-900);
  border-bottom-color: var(--ink-700);
  color: var(--bone-100);
}
.vmh-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
  display: flex;
  justify-content: space-between;
  padding: 8px max(calc((100% - 1440px) / 2 + 64px), clamp(20px, 4vw, 64px));
  border-bottom: 1px solid var(--border-1);
}
.vmh--ink .vmh-meta { border-bottom-color: var(--ink-700); color: var(--bone-500); }
.vmh-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px max(calc((100% - 1440px) / 2 + 64px), clamp(20px, 4vw, 64px));
  gap: 32px;
}
.vmh-left { display: flex; align-items: center; gap: 40px; }
.vmh-lockup { display: flex; align-items: center; gap: 10px; }
.vmh-glyph {
  width: 22px;
  height: 22px;
  position: relative;
  flex-shrink: 0;
}
.vmh-glyph::before, .vmh-glyph::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--fg-1);
}
.vmh-glyph::before { top: 0; left: 0; }
.vmh-glyph::after { right: 0; bottom: 0; background: var(--fg-1); border-color: var(--fg-1); }
.vmh-glyph .dot {
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  z-index: 2;
}
.vmh--ink .vmh-glyph::before { border-color: var(--bone-100); }
.vmh--ink .vmh-glyph::after { background: var(--bone-100); border-color: var(--bone-100); }
.vmh-word {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--fg-1);
}
.vmh--ink .vmh-word { color: var(--bone-50); }
.vmh-nav { display: flex; gap: 28px; }
.vmh-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-2);
  transition: color 120ms ease;
}
.vmh-nav a:hover, .vmh-nav a.active { color: var(--fg-1); }
.vmh--ink .vmh-nav a { color: var(--bone-500); }
.vmh--ink .vmh-nav a:hover, .vmh--ink .vmh-nav a.active { color: var(--bone-50); }
.vmh-right { display: flex; align-items: center; gap: 22px; }
.vmh-signin { font-size: 14px; font-weight: 500; color: var(--fg-2); }
.vmh-signin:hover { color: var(--fg-1); }
.vmh--ink .vmh-signin { color: var(--bone-500); }
.vmh--ink .vmh-signin:hover { color: var(--bone-50); }

/* =====================================================================
   FOOTER
   ===================================================================== */

.vft {
  background: var(--ink-900);
  color: var(--bone-500);
  padding: 80px max(calc((100% - 1440px) / 2 + 64px), clamp(20px, 4vw, 64px)) 32px;
}
.vft-top {
  display: grid;
  grid-template-columns: 1.5fr 3fr;
  gap: 64px;
}
.vft-cols {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 24px;
}
.vft-soon { color: var(--bone-700, #6F6657); font-size: 14px; font-style: italic; cursor: default; }
.vft-lockup { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.vft-glyph {
  width: 22px; height: 22px; position: relative;
}
.vft-glyph::before, .vft-glyph::after {
  content: ""; position: absolute; width: 14px; height: 14px; border: 1.5px solid var(--bone-100);
}
.vft-glyph::before { top: 0; left: 0; }
.vft-glyph::after { right: 0; bottom: 0; background: var(--bone-100); border-color: var(--bone-100); }
.vft-glyph .dot { position: absolute; right: 5px; bottom: 5px; width: 4px; height: 4px; background: var(--accent); border-radius: 50%; z-index: 2; }
.vft-word { font-family: var(--font-serif); font-size: 22px; font-weight: 600; color: var(--bone-50); letter-spacing: -0.01em; }
.vft-brand p { font-size: 14px; line-height: 1.6; color: var(--bone-500); max-width: 36ch; margin-bottom: 24px; }
.vft-addr { display: flex; flex-direction: column; gap: 6px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bone-500); }
.vft h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bone-100); margin-bottom: 16px; font-weight: 500; }
.vft ul li { margin-bottom: 10px; }
.vft a { color: var(--bone-500); font-size: 14px; }
.vft a:hover { color: var(--bone-50); }
.vft-base {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 64px; padding-top: 24px;
  border-top: 1px solid var(--ink-700);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--bone-500);
}

/* =====================================================================
   VARIATION A — Editorial Compliance
   ===================================================================== */

.va-hero {
  background: var(--bg);
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--border-1);
}
.va-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 36px;
}
.va-eyebrow .dot {
  width: 6px; height: 6px; background: var(--accent); border-radius: 50%;
}
.va-h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(40px, 7vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  max-width: 14ch;
  margin-bottom: 28px;
}
.va-h1 .copper { color: var(--accent-deep); }
.va-lede {
  font-size: 20px;
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 58ch;
  margin-bottom: 36px;
}
.va-ctas { display: flex; gap: 14px; align-items: center; }
.va-rule {
  border-top: 1px solid var(--border-2);
  margin: 64px 0 32px;
}
.va-foot {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.va-foot div {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 14px;
  color: var(--fg-2);
}
.va-foot .kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-1);
  font-weight: 500;
}

.va-section {
  padding: clamp(56px, 8vw, 96px) 0;
  border-top: 1px solid var(--border-1);
  background: var(--bg);
}
.va-section--ink {
  background: var(--ink-900);
  color: var(--bone-100);
  border: 0;
}
.va-section--quiet { background: var(--bone-50); }

.va-section--ink .eyebrow { color: var(--accent); }
.va-section--ink h2 { color: var(--bone-50); }
.va-section--ink p { color: var(--bone-100); }
.va-section--ink .va-section-head p { color: var(--bone-100); }

.va-eyebrow-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}
.va-eyebrow-rule .line { flex: 1; height: 1px; background: var(--border-2); }
.va-section--ink .va-eyebrow-rule .line { background: var(--ink-700); }

.va-section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.va-section-head h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 14ch;
}
.va-section-head p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 50ch;
}

.va-cards { display: grid; gap: 16px; }
.va-cards-2 { grid-template-columns: 1fr 1fr; }
.va-cards-3 { grid-template-columns: 1fr 1fr 1fr; }

.va-nc {
  padding: 32px 28px;
  border: 1px solid var(--border-1);
  background: var(--bg-elevated);
  border-radius: 2px;
  transition: border-color 120ms ease;
}
.va-nc:hover { border-color: var(--fg-1); }
.va-nc--ink {
  background: transparent;
  border-color: var(--ink-700);
}
.va-nc--ink:hover { border-color: var(--bone-100); }
.va-nc-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 18px; }
.va-nc-head .idx {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--accent-deep);
}
.va-section--ink .va-nc-head .idx { color: var(--accent); }
.va-nc h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--fg-1);
  margin-bottom: 14px;
}
.va-nc--ink h3 { color: var(--bone-50); }
.va-nc p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-2);
}
.va-nc--ink p { color: var(--bone-500); }
.va-nc hr {
  border-top: 1px solid var(--border-1);
  margin: 22px 0 12px;
}
.va-nc--ink hr { border-top-color: var(--ink-700); }
.va-nc .meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--fg-3);
}
.va-section--ink .va-nc .meta { color: var(--ink-300); }

/* Frameworks grid */
.va-fw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.va-fw {
  padding: 24px 22px;
  border: 1px solid var(--border-1);
  border-radius: 2px;
  background: var(--bg-elevated);
}
.va-fw-name {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 600;
  color: var(--fg-1);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.va-fw-clauses {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--accent-deep);
  line-height: 1.5;
}

/* Closing CTA */
.va-cta {
  background: var(--ink-900);
  color: var(--bone-100);
  padding: 96px 0;
  text-align: center;
}
.va-cta h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--bone-50);
  margin: 24px auto;
  max-width: 22ch;
}
.va-cta h2 .copper { color: var(--accent); }
.va-cta p {
  font-size: 18px;
  color: var(--bone-500);
  margin-bottom: 36px;
}
.va-cta-row { display: flex; gap: 16px; justify-content: center; }

/* IS / IS-NOT */
.va-iin { width: 100%; border-collapse: collapse; }
.va-iin th {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--fg-1);
  font-weight: 500;
}
.va-iin td {
  padding: 18px;
  border-bottom: 1px solid var(--border-1);
  vertical-align: top;
  font-size: 17px;
  line-height: 1.45;
}
.va-iin td.is { color: var(--fg-1); font-weight: 600; }
.va-iin td.isnot {
  color: var(--fg-3);
  text-decoration: line-through;
  text-decoration-color: var(--border-2);
}

/* =====================================================================
   VARIATION B — Architecture First (full midnight hero)
   ===================================================================== */

.vb-hero {
  background: var(--ink-900);
  color: var(--bone-100);
  padding: clamp(48px, 6vw, 80px) clamp(20px, 5vw, 80px) clamp(56px, 7vw, 96px);
}
.vb-hero-grid {
  max-width: 1440px;
  margin: 0 auto;
}
.vb-hero-text {
  max-width: 920px;
  margin-bottom: 64px;
}
.vb-hero-text .eyebrow.accent { color: var(--accent); margin-bottom: 28px; display: inline-block; }
.vb-hero-text h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(40px, 7vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--bone-50);
  margin-bottom: 28px;
}
.vb-hero-text h1 .copper { color: var(--accent); }
.vb-hero-text p {
  font-size: 20px;
  line-height: 1.55;
  color: var(--bone-500);
  max-width: 60ch;
  margin-bottom: 32px;
}
.vb-hero-ctas { display: flex; gap: 24px; align-items: center; }

/* Bus diagram */
.vb-bus {
  display: grid;
  grid-template-columns: 220px 60px 1fr 60px 220px;
  gap: 0;
  align-items: stretch;
  padding: 28px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--ink-700);
  border-radius: 2px;
  margin-bottom: 56px;
  color: var(--bone-100);
}
.vb-bus-lane { display: flex; flex-direction: column; gap: 10px; }
.vb-bus-lane .lane-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-500);
  margin-bottom: 6px;
}
.vb-bus .bus-tile {
  padding: 14px 16px;
  background: var(--ink-700);
  border: 1px solid #364065;
  border-radius: 2px;
}
.vb-bus .bus-tile .name {
  font-size: 14px;
  font-weight: 600;
  color: var(--bone-50);
}
.vb-bus .bus-tile .sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--bone-500);
  margin-top: 4px;
  text-transform: uppercase;
}
.vb-bus-conn {
  display: flex;
  align-items: stretch;
  color: var(--copper-700);
}
.vb-bus-conn svg { width: 100%; height: 100%; }
.vb-bus-spine {
  background: linear-gradient(180deg, #0F1320 0%, #08090E 100%);
  border: 1px solid var(--copper-700);
  border-radius: 2px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}
.vb-bus-spine .spine-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.vb-bus-spine .spine-title {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 600;
  color: var(--bone-50);
  letter-spacing: -0.01em;
}
.vb-bus-spine .spine-pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.vb-bus-spine .spine-pills span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  padding: 5px 10px;
  border: 1px solid var(--copper-700);
  color: var(--accent);
  border-radius: 2px;
}

.vb-hero-foot {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink-700);
  padding-top: 28px;
}
.vb-hero-foot > div {
  padding-right: 24px;
  border-right: 1px solid var(--ink-700);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vb-hero-foot > div:last-child { border-right: 0; }
.vb-hero-foot .num {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 600;
  color: var(--bone-50);
  letter-spacing: -0.02em;
  line-height: 1;
}
.vb-hero-foot .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-500);
}

/* =====================================================================
   VARIATION C — Manifesto
   ===================================================================== */

.vc-strip {
  background: var(--ink-900);
  color: var(--bone-500);
  padding: 8px 0;
  border-bottom: 1px solid var(--ink-700);
  overflow: hidden;
}
.vc-strip-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
}
.vc-strip-inner .sep { color: var(--copper-700); }
.vc-strip-inner span:first-child { color: var(--accent); font-weight: 500; }

.vc-hero {
  background: var(--bg);
  padding: 96px 0 80px;
}
.vc-hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 56px;
}
.vc-hero-meta .dot {
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
}
.vc-h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(48px, 9vw, 132px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  color: var(--fg-1);
  margin-bottom: 64px;
}
.vc-underline {
  position: relative;
  display: inline-block;
  font-style: italic;
  color: var(--accent-deep);
}
.vc-underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 4px;
  background: var(--accent);
  z-index: -1;
  opacity: 0.6;
}

.vc-hero-body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
  border-top: 1px solid var(--border-2);
  padding-top: 40px;
}
.vc-lede p {
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.4;
  color: var(--fg-1);
  text-wrap: pretty;
  margin-bottom: 32px;
  font-style: italic;
}
.vc-hero-ctas { display: flex; gap: 18px; align-items: center; }

.vc-aside {
  border-left: 2px solid var(--accent);
  padding: 4px 0 4px 24px;
}
.vc-aside-head {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 14px;
  font-weight: 500;
}
.vc-aside p {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-1);
  margin-bottom: 18px;
}
.vc-aside-sig {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--fg-3);
}

.vc-hr { border-top: 1px solid var(--ink-900); margin: 0 64px; }

.vc-section { padding: 96px 0; }
.vc-section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 56px;
}
.vc-section-head .eyebrow.accent { font-weight: 500; }
.vc-section-head h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--fg-1);
}

/* Manifesto numbered list */
.vc-manifesto {
  display: flex;
  flex-direction: column;
}
.vc-manifesto li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 36px;
  padding: 40px 0;
  border-top: 1px solid var(--border-2);
}
.vc-manifesto li:last-child { border-bottom: 1px solid var(--border-2); }
.vc-manifesto .num {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--accent-deep);
  font-weight: 500;
  padding-top: 8px;
}
.vc-manifesto h3 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--fg-1);
  margin-bottom: 14px;
  max-width: 24ch;
}
.vc-manifesto p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 64ch;
}
.vc-manifesto p em {
  color: var(--fg-1);
  font-style: italic;
}

/* Before / after */
.vc-binary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--fg-1);
  border-bottom: 1px solid var(--fg-1);
}
.vc-binary-col {
  padding: 32px 32px 32px 0;
}
.vc-binary-col--after {
  padding: 32px 0 32px 32px;
  border-left: 1px solid var(--border-1);
  background: var(--bone-50);
  margin: 0 -32px 0 0;
  padding-left: 32px;
  padding-right: 32px;
}
.vc-binary-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 24px;
  font-weight: 500;
}
.vc-binary-col--after .vc-binary-label { color: var(--accent-deep); }
.vc-binary ul li {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.45;
  color: var(--fg-1);
  padding: 14px 0;
  border-top: 1px solid var(--border-1);
}
.vc-binary ul li:first-child { border-top: 0; }
.vc-binary-col:not(.vc-binary-col--after) ul li {
  color: var(--fg-3);
  text-decoration: line-through;
  text-decoration-color: var(--border-2);
}

/* Closing */
.vc-close {
  padding: 96px 0 120px;
  text-align: left;
}
.vc-close h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5.2vw, 80px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 16px 0 28px;
  color: var(--fg-1);
  max-width: 18ch;
}
.vc-close h2 .copper { color: var(--accent-deep); }
.vc-close p {
  font-size: 18px;
  color: var(--fg-2);
  margin-bottom: 36px;
  max-width: 56ch;
}
.vc-close-row { display: flex; gap: 16px; }

/* =====================================================================
   Tiny presentational tweaks
   ===================================================================== */

.vstage em { font-style: italic; }

/* =====================================================================
   PAGEHEAD — top of Product / Compliance pages (cream)
   ===================================================================== */

.vstage .tb-pagehead {
  background: var(--bg);
  padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
  border-bottom: 1px solid var(--border-1);
}
.vstage .tb-pagehead .crumbs {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent-deep);
  margin-bottom: 28px;
}
.vstage .tb-pagehead h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 88px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  color: var(--fg-1);
  max-width: 18ch;
}
.vstage .tb-pagehead h1 .copper { color: var(--accent-deep); }
.vstage .tb-pagehead .lede {
  font-size: 22px;
  line-height: 1.45;
  color: var(--fg-2);
  max-width: 64ch;
  margin: 0 0 36px;
  text-wrap: pretty;
}
.vstage .tb-pagehead-ctas { display: flex; gap: 16px; }

/* =====================================================================
   STAGES — call lifecycle on Product page
   ===================================================================== */

.vstage .tb-stages {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 0;
  border: 1px solid var(--border-on-ink);
  background: var(--ink-900);
}
.vstage .tb-stages-tabs { display: flex; flex-direction: column; border-right: 1px solid var(--border-on-ink); }
.vstage .tb-stage-tab {
  display: grid;
  grid-template-columns: 32px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: baseline;
  padding: 22px 24px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border-on-ink);
  text-align: left;
  cursor: pointer;
  color: var(--fg-2-on-ink, #B8B2A4);
  transition: background 120ms ease;
}
.vstage .tb-stage-tab:last-child { border-bottom: 0; }
.vstage .tb-stage-tab:hover { background: rgba(255,255,255,0.03); }
.vstage .tb-stage-tab .num {
  grid-row: 1 / span 2;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.08em;
}
.vstage .tb-stage-tab .name {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--bg);
  letter-spacing: -0.01em;
}
.vstage .tb-stage-tab .meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--fg-3-on-ink, #8A8474);
  margin-top: 4px;
}
.vstage .tb-stage-tab.is-active {
  background: rgba(224, 138, 74, 0.08);
  border-left: 3px solid var(--accent);
  padding-left: 21px;
}
.vstage .tb-stage-tab.is-active .name { color: #fff; }
.vstage .tb-stage-tab.is-active .meta { color: var(--accent); }

.vstage .tb-stage-panel { padding: 36px 40px; }
.vstage .tb-stage-panel-header {
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 1px solid var(--border-on-ink);
  padding-bottom: 12px;
  margin-bottom: 24px;
}
.vstage .tb-stage-time {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--fg-3-on-ink, #8A8474);
}
.vstage .tb-stage-panel h3 {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--bg);
  margin: 0 0 16px;
}
.vstage .tb-stage-panel p {
  font-size: 17px;
  line-height: 1.55;
  color: #C9C2B5;
  max-width: 60ch;
  margin: 0 0 24px;
}
.vstage .tb-codeblock {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.6;
  color: #DCD5C7;
  background: #060810;
  border: 1px solid var(--border-on-ink);
  padding: 20px 24px;
  margin: 0;
  white-space: pre;
  overflow-x: auto;
}

/* =====================================================================
   KICKERS — top-of-Compliance numbers
   ===================================================================== */

.vstage .tb-kickers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
}
.vstage .tb-kickers > div {
  padding: 28px 28px 32px;
  border-right: 1px solid var(--border-1);
}
.vstage .tb-kickers > div:last-child { border-right: 0; }
.vstage .tb-kickers .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--accent-deep);
  margin-bottom: 14px;
}
.vstage .tb-kickers .value {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  margin-bottom: 10px;
}
.vstage .tb-kickers .sub {
  font-size: 13px;
  line-height: 1.45;
  color: var(--fg-2);
}

/* =====================================================================
   FRAMEWORK EXPLORER — Compliance page
   ===================================================================== */

.vstage .tb-fw-explorer {
  display: grid;
  grid-template-columns: 320px 1fr;
  border: 1px solid var(--border-1);
  background: #FBF8F2;
}
.vstage .tb-fw-list {
  display: flex; flex-direction: column;
  border-right: 1px solid var(--border-1);
  max-height: 560px;
  overflow-y: auto;
}
.vstage .tb-fw-item {
  display: flex; flex-direction: column; gap: 4px;
  text-align: left;
  padding: 16px 20px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border-1);
  cursor: pointer;
  transition: background 120ms ease;
}
.vstage .tb-fw-item:last-child { border-bottom: 0; }
.vstage .tb-fw-item:hover { background: rgba(0,0,0,0.025); }
.vstage .tb-fw-item .name {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--fg-1);
  letter-spacing: -0.01em;
}
.vstage .tb-fw-item .clauses {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--fg-2);
}
.vstage .tb-fw-item.is-active {
  background: var(--bg);
  border-left: 3px solid var(--accent);
  padding-left: 17px;
}
.vstage .tb-fw-item.is-active .name { color: var(--accent-deep); }

.vstage .tb-fw-detail { padding: 32px 36px; }
.vstage .tb-fw-detail-head {
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 1px solid var(--border-1);
  padding-bottom: 14px;
  margin-bottom: 24px;
}
.vstage .tb-fw-detail-clauses {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--fg-2);
}
.vstage .tb-fw-detail h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--fg-1);
  margin: 0 0 20px;
}
.vstage .tb-fw-controls {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}
.vstage .tb-fw-controls li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-1);
  font-size: 15px;
  line-height: 1.5;
  color: var(--fg-1);
}
.vstage .tb-fw-controls li:last-child { border-bottom: 0; }
.vstage .tb-fw-controls .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-deep);
  letter-spacing: 0.08em;
}
.vstage .tb-fw-evidence {
  border-top: 1px solid var(--border-1);
  padding-top: 18px;
}
.vstage .tb-fw-evidence-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 8px 0;
}
.vstage .tb-fw-evidence-row .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--fg-2);
}
.vstage .tb-fw-evidence-row .val {
  font-size: 13px;
  color: var(--fg-1);
}

/* =====================================================================
   AUDIT LOG — Compliance page
   ===================================================================== */

.vstage .tb-auditlog {
  border: 1px solid var(--border-on-ink);
  background: #060810;
}
.vstage .tb-auditlog-row {
  display: grid;
  grid-template-columns: 180px 1fr 1fr 1fr 140px;
  gap: 24px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-on-ink);
  font-family: var(--font-mono);
  font-size: 12px;
  color: #C9C2B5;
}
.vstage .tb-auditlog-row:last-child { border-bottom: 0; }
.vstage .tb-auditlog-row .col-id { color: var(--accent); letter-spacing: 0.04em; }
.vstage .tb-auditlog-row .col-policy { color: #fff; }
.vstage .tb-auditlog-row .col-redact { color: #B8B2A4; }
.vstage .tb-auditlog-row .col-provider { color: #B8B2A4; }
.vstage .tb-auditlog-row .col-hash { color: #9A9485; text-align: right; }

.vstage .tb-auditlog-foot {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  color: var(--bone-400);
  margin: 14px 0 0;
}

/* =====================================================================
   Masthead variant — cream chrome on Product/Compliance
   ===================================================================== */

.vstage .vmh:not(.vmh--ink) {
  background: var(--bg);
  border-bottom: 1px solid var(--border-1);
}
.vstage .vmh:not(.vmh--ink) .vmh-meta {
  color: var(--fg-2);
  border-bottom: 1px solid var(--border-1);
}
.vstage .vmh:not(.vmh--ink) .vmh-word { color: var(--fg-1); }
.vstage .vmh:not(.vmh--ink) .vmh-nav a { color: var(--fg-2); }
.vstage .vmh:not(.vmh--ink) .vmh-nav a:hover,
.vstage .vmh:not(.vmh--ink) .vmh-nav a.active { color: var(--fg-1); }
.vstage .vmh:not(.vmh--ink) .vmh-nav a.active {
  border-bottom: 1px solid var(--accent-deep);
}
.vstage .vmh:not(.vmh--ink) .vmh-signin { color: var(--fg-2); }
.vstage .vmh:not(.vmh--ink) .vmh-signin:hover { color: var(--fg-1); }

/* Active state on ink masthead */
.vstage .vmh--ink .vmh-nav a.active { color: #fff; border-bottom: 1px solid var(--accent); }

/* Responsive — collapse stages and explorer to single column */
@media (max-width: 900px) {
  .vstage .tb-stages,
  .vstage .tb-fw-explorer { grid-template-columns: 1fr; }
  .vstage .tb-stages-tabs { border-right: 0; border-bottom: 1px solid var(--border-on-ink); flex-direction: row; overflow-x: auto; }
  .vstage .tb-fw-list { border-right: 0; border-bottom: 1px solid var(--border-1); max-height: 280px; }
  .vstage .tb-kickers { grid-template-columns: 1fr 1fr; }
  .vstage .tb-pagehead h1 { font-size: 56px; }
  .vstage .tb-auditlog-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .vstage .tb-auditlog-row .col-hash { text-align: left; }
}

/* =====================================================================
   COMPANY PAGE — is/is-not, principles, timeline, meta-grid
   ===================================================================== */

.vstage .tb-isnot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border-1);
  background: #FBF8F2;
}
.vstage .tb-isnot-col { padding: 32px 36px; border-right: 1px solid var(--border-1); }
.vstage .tb-isnot-col:last-child { border-right: 0; }
.vstage .tb-isnot-col--neg { background: var(--bg); }
.vstage .tb-isnot-head {
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 1px solid var(--border-1);
  padding-bottom: 12px;
  margin-bottom: 18px;
}
.vstage .tb-isnot-head .neg { color: var(--fg-2); }
.vstage .tb-isnot-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent-deep);
}
.vstage .tb-isnot ul { list-style: none; margin: 0; padding: 0; }
.vstage .tb-isnot li {
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-1);
  padding: 14px 0 14px 24px;
  border-bottom: 1px solid var(--border-1);
  position: relative;
  text-wrap: pretty;
}
.vstage .tb-isnot li:last-child { border-bottom: 0; }
.vstage .tb-isnot-col li::before {
  content: '+';
  position: absolute;
  left: 0;
  top: 14px;
  font-family: var(--font-mono);
  color: var(--accent-deep);
  font-size: 14px;
}
.vstage .tb-isnot-col--neg li::before {
  content: '−';
  color: var(--fg-2);
}

/* Timeline */
.vstage .tb-timeline {
  border-top: 1px solid var(--border-1);
}
.vstage .tb-tl-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-1);
  align-items: start;
}
.vstage .tb-tl-tag {
  display: flex; flex-direction: column; gap: 8px;
  font-family: var(--font-mono);
}
.vstage .tb-tl-tag .tag {
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--accent-deep);
  font-weight: 600;
}
.vstage .tb-tl-tag .dot {
  width: 8px; height: 8px;
  background: var(--border-1);
  border-radius: 50%;
  margin: 2px 0;
}
.vstage .tb-tl--shipped .tb-tl-tag .dot { background: #3F7A5A; }
.vstage .tb-tl--current .tb-tl-tag .dot { background: var(--accent); box-shadow: 0 0 0 4px rgba(224,138,74,0.18); }
.vstage .tb-tl-tag .date {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--fg-2);
}
.vstage .tb-tl-headrow {
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 1px solid var(--border-1);
  padding-bottom: 8px;
  margin-bottom: 12px;
}
.vstage .tb-tl-body h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--fg-1);
  margin: 0;
}
.vstage .tb-tl-state {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--fg-2);
}
.vstage .tb-tl--shipped .tb-tl-state { color: #3F7A5A; }
.vstage .tb-tl--current .tb-tl-state { color: var(--accent); }
.vstage .tb-tl-body p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0;
  max-width: 64ch;
}

/* Meta grid */
.vstage .tb-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.vstage .tb-meta-grid > div {
  padding: 24px;
  border: 1px solid var(--border-on-ink);
}
.vstage .tb-meta-grid p {
  font-size: 14px;
  line-height: 1.55;
  color: #C9C2B5;
  margin: 12px 0 0;
}

/* =====================================================================
   PRICING PAGE — billing toggle, tiers, included grid, FAQ
   ===================================================================== */

.vstage .tb-billing-toggle {
  display: inline-flex;
  border: 1px solid var(--border-1);
  background: #FBF8F2;
  margin-top: 8px;
}
.vstage .tb-billing-toggle button {
  background: transparent;
  border: 0;
  border-right: 1px solid var(--border-1);
  padding: 10px 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--fg-2);
  text-transform: uppercase;
  cursor: pointer;
  transition: background 120ms ease;
}
.vstage .tb-billing-toggle button:last-child { border-right: 0; }
.vstage .tb-billing-toggle button:hover { color: var(--fg-1); }
.vstage .tb-billing-toggle button.is-active {
  background: var(--ink-900);
  color: var(--bg);
}

.vstage .tb-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border-1);
  background: #FBF8F2;
}
.vstage .tb-tier {
  padding: 32px 32px 36px;
  border-right: 1px solid var(--border-1);
  display: flex;
  flex-direction: column;
}
.vstage .tb-tier:last-child { border-right: 0; }
.vstage .tb-tier.is-featured {
  background: var(--ink-900);
  color: var(--bg);
}
.vstage .tb-tier-head { margin-bottom: 24px; }
.vstage .tb-tier h3 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 12px 0 12px;
  color: var(--fg-1);
}
.vstage .tb-tier.is-featured h3 { color: var(--bg); }
.vstage .tb-tier-blurb {
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg-2);
  margin: 0;
  text-wrap: pretty;
}
.vstage .tb-tier.is-featured .tb-tier-blurb { color: #C9C2B5; }
.vstage .tb-tier-price {
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
  padding: 18px 0;
  margin-bottom: 20px;
}
.vstage .tb-tier.is-featured .tb-tier-price {
  border-top-color: var(--border-on-ink);
  border-bottom-color: var(--border-on-ink);
}
.vstage .tb-tier-price .amount {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg-1);
}
.vstage .tb-tier.is-featured .tb-tier-price .amount { color: var(--bg); }
.vstage .tb-tier-price .unit {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--fg-2);
  margin-top: 6px;
}
.vstage .tb-tier .btn { align-self: stretch; text-align: center; margin-bottom: 24px; }
.vstage .tb-tier-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--border-1); }
.vstage .tb-tier.is-featured .tb-tier-list { border-top-color: var(--border-on-ink); }
.vstage .tb-tier-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-1);
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg-1);
}
.vstage .tb-tier.is-featured .tb-tier-list li {
  color: #DCD5C7;
  border-bottom-color: var(--border-on-ink);
}
.vstage .tb-tier-list li:last-child { border-bottom: 0; }
.vstage .tb-tier-list .check {
  font-family: var(--font-mono);
  color: var(--accent-deep);
  font-size: 13px;
}
.vstage .tb-tier.is-featured .tb-tier-list .check { color: var(--accent); }

/* Included grid */
.vstage .tb-included {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border-1);
  background: #FBF8F2;
}
.vstage .tb-incl-row {
  padding: 24px 24px 28px;
  border-right: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
}
.vstage .tb-incl-row:nth-child(3n) { border-right: 0; }
.vstage .tb-incl-row:nth-last-child(-n+3) { border-bottom: 0; }
.vstage .tb-incl-row h4 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: var(--fg-1);
}
.vstage .tb-incl-row p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0;
  text-wrap: pretty;
}

/* FAQ */
.vstage .tb-faq {
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
}
.vstage .tb-faq-row { border-bottom: 1px solid var(--border-1); }
.vstage .tb-faq-row:last-child { border-bottom: 0; }
.vstage .tb-faq-q {
  width: 100%;
  display: grid;
  grid-template-columns: 40px 1fr 32px;
  gap: 16px;
  align-items: baseline;
  padding: 20px 0;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg-1);
}
.vstage .tb-faq-q:hover { color: var(--accent-deep); }
.vstage .tb-faq-q .num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--accent-deep);
}
.vstage .tb-faq-q .chev {
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--fg-2);
  text-align: right;
}
.vstage .tb-faq-row.is-open .tb-faq-q .chev { color: var(--accent-deep); }
.vstage .tb-faq-a {
  padding: 0 56px 24px 56px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 80ch;
}

@media (max-width: 900px) {
  .vstage .tb-isnot { grid-template-columns: 1fr; }
  .vstage .tb-isnot-col { border-right: 0; border-bottom: 1px solid var(--border-1); }
  .vstage .tb-isnot-col:last-child { border-bottom: 0; }
  .vstage .tb-tl-row { grid-template-columns: 1fr; gap: 12px; }
  .vstage .tb-meta-grid { grid-template-columns: 1fr; }
  .vstage .tb-tiers { grid-template-columns: 1fr; }
  .vstage .tb-tier { border-right: 0; border-bottom: 1px solid var(--border-1); }
  .vstage .tb-tier:last-child { border-bottom: 0; }
  .vstage .tb-included { grid-template-columns: 1fr; }
  .vstage .tb-incl-row { border-right: 0; }
  .vstage .tb-incl-row:nth-last-child(-n+3) { border-bottom: 1px solid var(--border-1); }
  .vstage .tb-incl-row:last-child { border-bottom: 0; }
}


/* =====================================================================
   Responsive — global breakpoints
   ===================================================================== */
@media (max-width: 960px) {
  .vmh-meta { display: none; }
  .vmh-row { flex-wrap: wrap; gap: 16px; }
  .vmh-nav { gap: 18px; flex-wrap: wrap; }
  .vmh-nav a { font-size: 13px; }
  .vmh-right { gap: 14px; }

  .vb-hero-foot { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .vb-hero-foot > div { border-right: 0; padding-right: 0; }
  .vb-hero-foot > div:nth-child(odd) { border-right: 1px solid var(--ink-700); padding-right: 24px; }

  .vb-bus { grid-template-columns: 1fr; gap: 24px; }
  .vb-bus-spine { margin: 0; padding: 24px; }

  .va-h1, .vstage .tb-pagehead h1 { max-width: none; }
  .va-section-head { grid-template-columns: 1fr; gap: 16px; }
  .va-section-head h2 { max-width: none; }

  .vft-top { grid-template-columns: 1fr; gap: 40px; }
  .vft-cols { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }

  .vc-strip-inner { font-size: 10px; gap: 8px; }
}

@media (max-width: 640px) {
  .vmh-row { padding: 14px 0; }
  .vmh-nav { display: none; }
  .vmh-signin { display: none; }
  .vmh-right .btn { padding: 9px 12px; font-size: 12px; }

  .vb-hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  .vb-hero-ctas .btn { text-align: center; }

  .vb-hero-foot { grid-template-columns: 1fr; }
  .vb-hero-foot > div:nth-child(odd) { border-right: 0; padding-right: 0; }
  .vb-hero-foot > div { padding-bottom: 16px; border-bottom: 1px solid var(--ink-700); }
  .vb-hero-foot > div:last-child { border-bottom: 0; }

  .vft-cols { grid-template-columns: 1fr; gap: 28px; }
  .vft-base { flex-direction: column; gap: 6px; align-items: flex-start; }

  .va-cta-row, .vc-close-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .va-cta-row .btn, .vc-close-row .btn { text-align: center; }

  .tb-pagehead-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  .tb-pagehead-ctas .btn { text-align: center; }
}


/* =====================================================================
   Page · Not Found  (404 / 500 in-app, mirrors static pages)
   ===================================================================== */

.vstage .tk-nf-head { padding-bottom: clamp(56px, 8vw, 96px); }

.vstage .tk-nf-rail {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}

.vstage .tk-nf-rail h1 {
  max-width: 14ch;
}

.vstage .tk-nf-path {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.9em;
  background: var(--ink-50, rgba(0,0,0,0.04));
  border: 1px solid var(--border-1);
  padding: 2px 8px;
  border-radius: 2px;
  word-break: break-all;
}

.vstage .tk-nf-numeral {
  font-family: var(--font-serif);
  font-size: clamp(180px, 22vw, 320px);
  font-weight: 600;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--border-2, rgba(0,0,0,0.12));
  text-align: right;
  user-select: none;
}
.vstage .tk-nf-numeral .copper { color: var(--accent, #C97A3F); }

.vstage .tk-nf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.vstage .tk-nf-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 8px;
  padding: 28px 24px 24px;
  background: var(--bg-elevated, #fff);
  border: 1px solid var(--border-1);
  text-decoration: none;
  color: inherit;
  transition: border-color 120ms ease, transform 120ms ease;
}
.vstage .tk-nf-card:hover {
  border-color: var(--accent, #C97A3F);
  transform: translateY(-2px);
}
.vstage .tk-nf-card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent, #C97A3F);
}
.vstage .tk-nf-card-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}
.vstage .tk-nf-card-blurb {
  font-size: 14px;
  color: var(--ink-600, #555);
  line-height: 1.5;
}
.vstage .tk-nf-card-arrow {
  font-family: var(--font-mono);
  color: var(--ink-400, #999);
  margin-top: 12px;
  transition: color 120ms ease, transform 120ms ease;
}
.vstage .tk-nf-card:hover .tk-nf-card-arrow {
  color: var(--accent, #C97A3F);
  transform: translateX(4px);
}

@media (max-width: 1000px) {
  .vstage .tk-nf-rail { grid-template-columns: 1fr; gap: 32px; }
  .vstage .tk-nf-numeral { text-align: left; font-size: clamp(120px, 30vw, 220px); }
  .vstage .tk-nf-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .vstage .tk-nf-grid { grid-template-columns: 1fr; }
}
