/* OBSRVR — Enterprise. Near-white, coral accent, IBM Plex. */

:root {
  --bg: #FAFAF8;
  --bg-card: #F4F4F0;
  --bg-well: #EFEFEA;
  --border: #E8E8E4;
  --border-strong: #D8D8D2;
  --text: #1A1A1A;
  --text-2: #5C5C58;
  --text-3: #A8A8A4;
  --accent: #FF7F50;
  --accent-ink: #E05E2B;
  --teal: #1F4E5F;
  --ink-dark: #111110;
  --code-bg: #17171A;
  --code-fg: #E6E6E1;
  --code-muted: #7A7A78;
  --code-string: #E8B86E;
  --code-keyword: #9CB4D8;
  --code-fn: #C8A3E3;

  --ff-sans: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --ff-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;

  --max: 1240px;
  --max-prose: 960px;
  --pad-section: 120px;
  --radius: 8px;
  --radius-lg: 12px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--ff-sans);
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }
::selection { background: #FFD7C2; color: var(--ink-dark); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.prose { max-width: var(--max-prose); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 500; letter-spacing: -0.005em;
  padding: 12px 20px; border-radius: var(--radius);
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent); color: #fff;
}
.btn-primary:hover { background: var(--accent-ink); }
.btn-secondary {
  background: transparent; color: var(--text);
  border: 1px solid var(--text);
}
.btn-secondary:hover { background: var(--text); color: var(--bg); }
.btn-tertiary {
  padding: 0; color: var(--text); font-weight: 500;
  position: relative;
}
.btn-tertiary .arrow { transition: transform 160ms ease; }
.btn-tertiary:hover .arrow { transform: translateX(3px); }

.btn-sm { padding: 8px 14px; font-size: 14px; }

/* ---------- Typography utilities ---------- */
.eyebrow {
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
}
.eyebrow.coral { color: var(--accent-ink); }

.h1 {
  font-size: clamp(42px, 6.2vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 0;
  text-wrap: balance;
}
.h2 {
  font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0;
  text-wrap: balance;
}
.h3 {
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 600;
  margin: 0;
}
.lead {
  font-size: 19px; line-height: 1.55; color: var(--text-2);
  max-width: 640px;
  text-wrap: pretty;
}
.mono { font-family: var(--ff-mono); }

.section { padding: var(--pad-section) 0; position: relative; }
.section-top-hr { border-top: 1px solid var(--border); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: saturate(1.2) blur(10px);
  -webkit-backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.nav.scrolled { border-bottom-color: var(--border); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 17px; letter-spacing: -0.01em;
}
.brand-mark {
  width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
}
.brand-mark img {
  width: 24px; height: 24px;
  display: block;
  object-fit: contain;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 14.5px; color: var(--text-2);
  transition: color 140ms ease;
  position: relative;
  display: inline-flex; align-items: center; gap: 4px;
}
.nav-links a:hover { color: var(--text); }
.nav-dropdown-caret {
  width: 10px; height: 10px; stroke: currentColor; stroke-width: 1.6;
  fill: none;
}
.nav-cta { display: flex; gap: 10px; align-items: center; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-panel {
  position: absolute; top: calc(100% + 14px); left: -12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px;
  width: 320px;
  box-shadow: 0 18px 40px -18px rgba(20, 20, 18, 0.12);
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
}
.dropdown:hover .dropdown-panel,
.dropdown:focus-within .dropdown-panel {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 14px; border-radius: 6px;
  color: var(--text) !important;
  transition: background 120ms ease;
}
.dropdown-item:hover { background: var(--bg-card); }
.dropdown-item-title { font-weight: 600; font-size: 14.5px; }
.dropdown-item-desc { font-size: 13px; color: var(--text-2); margin-top: 2px; line-height: 1.45; }
.dropdown-item-icon {
  width: 32px; height: 32px; border-radius: 6px;
  background: var(--bg-card); border: 1px solid var(--border);
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--text-2);
}

/* ---------- Hero ---------- */
.hero { padding-top: 80px; padding-bottom: 100px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 12px; background: #fff;
  border: 1px solid var(--border); border-radius: 999px;
  font-size: 12.5px; color: var(--text-2);
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,127,80,0.18);
}
.hero h1 { margin-top: 22px; }
.hero-lead {
  font-size: 19.5px; line-height: 1.55; color: var(--text-2);
  margin: 26px 0 36px; max-width: 560px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-band {
  margin-top: 64px; padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 28px 40px;
  color: var(--text-2); font-size: 13.5px;
  align-items: center;
}
.hero-band strong {
  color: var(--text); font-weight: 600;
  font-family: var(--ff-mono); font-size: 12.5px;
  letter-spacing: 0.04em;
}
.hero-band .dot-sep {
  width: 3px; height: 3px; border-radius: 50%; background: var(--text-3);
}

/* Hero visual — a restrained schematic card */
.hero-visual {
  position: relative;
  aspect-ratio: 4/3.4;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 30px 60px -40px rgba(20, 20, 18, 0.15);
  overflow: hidden;
}
.hv-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 14px; border-bottom: 1px solid var(--border);
  font-size: 12px; color: var(--text-2);
  font-family: var(--ff-mono);
}
.hv-head .live {
  display: inline-flex; gap: 6px; align-items: center;
  color: var(--accent-ink);
}
.hv-head .live .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.hv-rows { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.hv-row {
  display: grid; grid-template-columns: 88px 1fr auto;
  gap: 14px; align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--border); border-radius: 6px;
  font-size: 12.5px;
  background: var(--bg);
}
.hv-row .tag {
  font-family: var(--ff-mono); color: var(--text-2);
  font-size: 11px; letter-spacing: 0.04em;
}
.hv-row .tag.coral { color: var(--accent-ink); }
.hv-row .desc { color: var(--text); font-size: 13px; line-height: 1.4; }
.hv-row .desc b { font-weight: 600; }
.hv-row .ts { font-family: var(--ff-mono); font-size: 11px; color: var(--text-3); }

.hv-foot {
  margin-top: 18px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--ff-mono); font-size: 11px; color: var(--text-3);
  padding-top: 14px; border-top: 1px dashed var(--border);
}

/* ---------- Proof band ---------- */
.proof {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}
.proof-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px;
}
.proof-cell .num {
  font-family: var(--ff-mono);
  font-size: 34px; letter-spacing: -0.02em;
  font-weight: 500; color: var(--text);
  display: block;
}
.proof-cell .num .unit { color: var(--accent); }
.proof-cell .label { font-size: 13.5px; color: var(--text-2); margin-top: 6px; max-width: 260px; line-height: 1.5; }

/* ---------- Segment cards ---------- */
.segments-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end;
  margin-bottom: 56px;
}
.segments-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.seg-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  display: flex; flex-direction: column;
  min-height: 380px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.seg-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  box-shadow: 0 24px 40px -28px rgba(20, 20, 18, 0.18);
}
.seg-eyebrow {
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-2);
  padding-bottom: 20px; margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.seg-card h3 {
  font-size: 24px; line-height: 1.2; letter-spacing: -0.015em;
  font-weight: 600; margin: 0 0 14px;
}
.seg-card p { color: var(--text-2); font-size: 15.5px; line-height: 1.55; margin: 0 0 28px; }
.seg-card .cta { margin-top: auto; font-size: 14.5px; color: var(--accent-ink); font-weight: 500; display: inline-flex; gap: 6px; align-items: center; }
.seg-card .cta .arrow { transition: transform 160ms ease; }
.seg-card:hover .cta .arrow { transform: translateX(3px); }

/* ---------- Prism spotlight ---------- */
.spotlight-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: center;
}
.spotlight-copy .eyebrow { margin-bottom: 20px; display: inline-block; }
.spotlight-copy h2 { margin-bottom: 20px; }
.spotlight-copy p { font-size: 17px; color: var(--text-2); line-height: 1.6; max-width: 480px; }
.spotlight-quote {
  margin-top: 32px;
  padding: 20px 22px;
  border-left: 2px solid var(--accent);
  background: #fff;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 15px;
  color: var(--text);
}
.spotlight-quote .light { color: var(--text-2); font-size: 13.5px; display: block; margin-bottom: 6px; font-family: var(--ff-mono); }
.spotlight-quote b { font-weight: 600; }

/* The Prism mock */
.prism-mock {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -40px rgba(20, 20, 18, 0.15);
}
.prism-top {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-family: var(--ff-mono); font-size: 12px; color: var(--text-2);
}
.prism-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.prism-dot.live { background: var(--accent); }
.prism-url {
  flex: 1; background: var(--bg-card);
  border-radius: 4px; padding: 4px 10px;
  font-size: 11.5px; color: var(--text-2);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.prism-body { padding: 24px 28px 28px; }
.prism-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-family: var(--ff-mono);
  color: var(--teal); background: #E5EEF1;
  padding: 4px 10px; border-radius: 999px;
}
.prism-title {
  font-size: 22px; line-height: 1.3; letter-spacing: -0.015em;
  font-weight: 500; margin: 16px 0 6px;
  text-wrap: balance;
}
.prism-title b { font-weight: 600; color: var(--accent-ink); }
.prism-sub {
  font-family: var(--ff-mono); font-size: 12px; color: var(--text-3);
  margin-bottom: 24px;
}
.prism-meta {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--border); padding-top: 18px;
}
.prism-meta .cell { padding-right: 16px; }
.prism-meta .cell + .cell { padding-left: 20px; border-left: 1px solid var(--border); }
.prism-meta .k { font-size: 11px; color: var(--text-3); font-family: var(--ff-mono); text-transform: uppercase; letter-spacing: 0.08em; }
.prism-meta .v { font-size: 14.5px; color: var(--text); margin-top: 4px; font-family: var(--ff-mono); }
.prism-meta .v.coral { color: var(--accent-ink); }

.prism-flow {
  margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 14px;
  font-family: var(--ff-mono); font-size: 12.5px;
}
.prism-flow .addr { color: var(--text-2); }
.prism-flow .arrow-line { flex: 1; height: 1px; background: var(--border); position: relative; }
.prism-flow .arrow-line::after {
  content: ""; position: absolute; right: 0; top: -3px;
  border: 4px solid transparent; border-left-color: var(--text-3); border-right: 0;
}
.prism-flow .amt {
  padding: 3px 8px; background: var(--bg-card);
  border-radius: 4px; font-size: 11.5px; color: var(--text);
}

/* ---------- Platform section ---------- */
.platform {
  background: var(--bg-card);
}
.platform-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 64px; }
.platform-features { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 40px; }
.pf-item .num {
  font-family: var(--ff-mono); font-size: 12px; color: var(--accent-ink);
  margin-bottom: 10px; letter-spacing: 0.04em;
}
.pf-item h4 { font-size: 17px; font-weight: 600; margin: 0 0 8px; letter-spacing: -0.01em; }
.pf-item p { font-size: 14.5px; color: var(--text-2); line-height: 1.55; margin: 0; }

/* Architecture diagram */
.arch-diagram {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  min-height: 400px;
}
.arch-label { font-family: var(--ff-mono); font-size: 11px; color: var(--text-3); letter-spacing: 0.08em; text-transform: uppercase; }
.arch-node {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 13px;
  background: var(--bg);
}
.arch-node .t { font-weight: 600; font-size: 13px; }
.arch-node .s { font-family: var(--ff-mono); font-size: 11px; color: var(--text-3); margin-top: 2px; }
.arch-node.accent { border-color: var(--accent); }
.arch-node.accent .t { color: var(--accent-ink); }
.arch-layer {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px;
}
.arch-section { margin-top: 14px; }
.arch-section:first-of-type { margin-top: 18px; }
.arch-connector {
  height: 18px;
  position: relative;
}
.arch-connector::before,
.arch-connector::after {
  content: ""; position: absolute; left: 50%;
  width: 1px; background: var(--border);
}
.arch-connector::before { top: 0; bottom: 0; }

/* ---------- Customer band ---------- */
.cust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.cust-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; flex-direction: column;
  min-height: 280px;
}
.cust-logo {
  font-family: var(--ff-mono); font-size: 13px;
  letter-spacing: -0.01em; font-weight: 600; color: var(--text);
  padding-bottom: 20px; margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.cust-outcome { font-size: 16px; line-height: 1.5; color: var(--text); margin-bottom: 20px; }
.cust-quote {
  font-size: 14.5px; color: var(--text-2); line-height: 1.55;
  font-style: normal;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.cust-quote .attrib { display: block; margin-top: 10px; color: var(--text-3); font-size: 12.5px; font-family: var(--ff-mono); }

/* ---------- Developer section ---------- */
.dev {
  background: var(--ink-dark);
  color: #EDEDE8;
}
.dev .eyebrow { color: rgba(255, 255, 255, 0.55); }
.dev .h2 { color: #fff; }
.dev .lead { color: rgba(237, 237, 232, 0.7); }
.dev-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 72px;
  align-items: center; margin-top: 56px;
}
.dev-entries { display: flex; flex-direction: column; gap: 4px; margin-top: 32px; }
.dev-entry {
  display: grid; grid-template-columns: 120px 1fr auto;
  gap: 24px; align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.dev-entry:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.dev-entry .name { font-family: var(--ff-mono); font-size: 13.5px; color: var(--accent); }
.dev-entry .desc { font-size: 14.5px; color: rgba(237, 237, 232, 0.85); line-height: 1.5; }
.dev-entry .arrow { color: rgba(237, 237, 232, 0.4); }
.dev-entry:hover .arrow { color: var(--accent); }

/* Code block */
.code {
  background: var(--code-bg);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-family: var(--ff-mono);
  font-size: 13px;
  line-height: 1.7;
}
.code-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 11.5px; color: var(--code-muted);
  letter-spacing: 0.04em;
}
.code-head .lang { color: #EDEDE8; }
.code-head .copy {
  color: var(--code-muted);
  display: inline-flex; gap: 5px; align-items: center;
  transition: color 120ms ease;
}
.code-head .copy:hover { color: #EDEDE8; }
.code-body {
  padding: 18px 20px;
  color: var(--code-fg);
  overflow-x: auto;
  white-space: pre;
}
.code .k { color: var(--code-keyword); }
.code .s { color: var(--code-string); }
.code .fn { color: var(--code-fn); }
.code .c { color: var(--code-muted); }
.code .n { color: #E7C9A3; }

/* ---------- Ecosystem band ---------- */
.eco {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.eco-row {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 24px;
}
.eco-label { font-family: var(--ff-mono); font-size: 11.5px; color: var(--text-3); letter-spacing: 0.1em; text-transform: uppercase; }
.eco-items { display: flex; gap: 48px; flex-wrap: wrap; }
.eco-item { font-size: 14.5px; color: var(--text-2); font-weight: 500; letter-spacing: -0.005em; }

/* ---------- Closing CTA ---------- */
.closing {
  padding: 140px 0;
  text-align: center;
}
.closing h2 { font-size: clamp(32px, 4vw, 52px); letter-spacing: -0.025em; font-weight: 600; line-height: 1.1; text-wrap: balance; max-width: 780px; margin: 0 auto; }
.closing p { font-size: 17.5px; color: var(--text-2); margin: 20px auto 32px; max-width: 540px; }
.closing .hero-cta { justify-content: center; }

/* ---------- Footer ---------- */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 72px 0 48px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 56px;
}
.foot-brand .brand { margin-bottom: 18px; }
.foot-brand p { font-size: 13.5px; color: var(--text-2); line-height: 1.55; max-width: 260px; }
.foot-col h5 {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-3);
  margin: 0 0 18px; font-weight: 500;
}
.foot-col a { display: block; font-size: 14px; color: var(--text-2); margin-bottom: 10px; transition: color 120ms ease; }
.foot-col a:hover { color: var(--text); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid var(--border);
  font-size: 12.5px; color: var(--text-3);
  font-family: var(--ff-mono);
}
.foot-bottom .right { display: flex; gap: 24px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  :root { --pad-section: 80px; }
  .hero-grid, .spotlight-grid, .platform-grid, .dev-grid, .segments-head { grid-template-columns: 1fr; gap: 48px; }
  .segments-grid, .cust-grid, .proof-grid { grid-template-columns: 1fr; }
  .proof { padding: 40px 0; }
  .proof-grid { gap: 28px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { display: none; }
  .hero { padding-top: 48px; padding-bottom: 64px; }
  .platform-features { grid-template-columns: 1fr; }
}

/* ---------- Accent-density toggle (for tweaks) ---------- */
body[data-accent="muted"] { --accent: #D96A3E; --accent-ink: #B8501F; }
body[data-accent="bright"] { --accent: #FF7F50; --accent-ink: #E05E2B; }

/* ---------- Typeface toggle ---------- */
body[data-type="plex"] {
  --ff-sans: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --ff-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}
body[data-type="inter"] {
  --ff-sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --ff-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}
body[data-type="helvetica"] {
  --ff-sans: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  --ff-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}

/* Hero variant: "editorial" uses no visual card */
body[data-hero="editorial"] .hero-visual { display: none; }
body[data-hero="editorial"] .hero-grid { grid-template-columns: 1fr; text-align: left; max-width: 980px; }
body[data-hero="editorial"] .hero h1 { font-size: clamp(48px, 8vw, 92px); }
body[data-hero="editorial"] .hero-lead { font-size: 22px; max-width: 720px; }
