/*
 * Site styles. Palette "Ink & Signal": deep slate ink, a sea-glass signal color and a brass accent.
 * Fonts: Schibsted Grotesk (headings), Atkinson Hyperlegible Next (body), Atkinson Hyperlegible Mono (labels).
 * Light mode is the default token set on :root; dark mode overrides it. ".ink" panels (hero, CTA, footer)
 * always use the dark token set, in both modes.
 */

:root {
  --bg: #f4f6f8;
  --surface: #ffffff;
  --surface-2: #e8edf1;
  --ink: #0c1620;
  --muted: #3b4957;
  --line: #c9d3dc;
  --line-strong: #6f8295;
  --brand: #0a6b60;
  --brand-hover: #07524a;
  --brand-ink: #ffffff;
  --accent: #8a5200;
  --accent-soft: #fbecd2;
  --signal: #0f8f80;
  --signal-2: #c98a1b;
  --signal-3: #5a6b7c;
  --chart-a: #0f8f80;
  --chart-b: #b87a10;
  --chart-c: #3f63c4;
  --grid: rgba(12, 22, 32, 0.06);
  --focus: #c26f00;
  --error: #a3261b;
  --ok: #0a6b60;
  --banner-bg: #fff3c4;
  --banner-ink: #3d2e00;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(12, 22, 32, 0.06), 0 10px 30px rgba(12, 22, 32, 0.07);
  --maxw: 76rem;
  --font-body: "Atkinson Hyperlegible Next", "Atkinson Hyperlegible", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-head: "Schibsted Grotesk", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-mono: "Atkinson Hyperlegible Mono", ui-monospace, "Cascadia Mono", Consolas, monospace;
  color-scheme: light;
}

/* Dark token set: used for the whole page in dark mode, and for .ink panels always. */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0a1017;
    --surface: #101922;
    --surface-2: #15212c;
    --ink: #e8eef3;
    --muted: #a9b7c4;
    --line: #243342;
    --line-strong: #587089;
    --brand: #62d2bf;
    --brand-hover: #8de2d4;
    --brand-ink: #03201b;
    --accent: #f0b54a;
    --accent-soft: #2c2213;
    --signal: #62d2bf;
    --signal-2: #f0b54a;
    --signal-3: #8ea3b8;
  --chart-a: #2aa894;
  --chart-b: #bb8624;
  --chart-c: #6f8fe0;
    --grid: rgba(142, 170, 196, 0.08);
    --focus: #f0b54a;
    --error: #ff9a8f;
    --ok: #62d2bf;
    --banner-bg: #3a2f10;
    --banner-ink: #fbe7a6;
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.35), 0 12px 32px rgba(0, 0, 0, 0.3);
    color-scheme: dark;
  }
}
.ink {
  --bg: #0a1017;
  --surface: #101922;
  --surface-2: #15212c;
  --ink: #e8eef3;
  --muted: #a9b7c4;
  --line: #243342;
  --line-strong: #587089;
  --brand: #62d2bf;
  --brand-hover: #8de2d4;
  --brand-ink: #03201b;
  --accent: #f0b54a;
  --accent-soft: #2c2213;
  --signal: #62d2bf;
  --signal-2: #f0b54a;
  --signal-3: #8ea3b8;
  --chart-a: #2aa894;
  --chart-b: #bb8624;
  --chart-c: #6f8fe0;
  --grid: rgba(142, 170, 196, 0.08);
  --focus: #f0b54a;
  --error: #ff9a8f;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.35), 0 12px 32px rgba(0, 0, 0, 0.3);
  background: var(--bg);
  color: var(--ink);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1.125rem, 1.07rem + 0.25vw, 1.25rem);
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; }

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.25rem, 1.55rem + 3.2vw, 4rem); }
h2 { font-size: clamp(1.85rem, 1.45rem + 1.8vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 1.2rem + 0.5vw, 1.55rem); letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
p, li { max-width: 68ch; overflow-wrap: break-word; }

a { color: var(--brand); text-underline-offset: 0.18em; text-decoration-thickness: 0.08em; }
a:hover { color: var(--brand-hover); text-decoration-thickness: 0.14em; }

:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 100;
  background: var(--surface); color: var(--ink);
  padding: 0.75rem 1rem; border-radius: 8px; box-shadow: var(--shadow);
}
.skip-link:focus { top: 1rem; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1rem; }
@media (min-width: 40rem) { .wrap { padding: 0 1.5rem; } }

.mono { font-family: var(--font-mono); }

/* Setup banner (only while config.js has TODO values) */
.dev-banner {
  background: var(--banner-bg); color: var(--banner-ink);
  border-bottom: 2px dashed currentColor; font-size: 0.95rem; padding: 0.75rem 0;
}
.dev-banner strong { font-weight: 700; }
.dev-banner ul { margin: 0.35rem 0 0; padding-left: 1.2rem; display: flex; flex-wrap: wrap; gap: 0.15rem 1.5rem; }
.dev-banner code { font-size: 0.9em; }

/* ---------- Header ---------- */
.site-header { border-bottom: 1px solid var(--line); position: relative; z-index: 20; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.75rem; min-height: 4.5rem; flex-wrap: wrap;
}
.brand {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; letter-spacing: -0.02em;
  color: var(--ink); text-decoration: none; white-space: nowrap;
}
.brand:hover { color: var(--ink); }
.brand-mark { width: 1.9rem; height: 1.9rem; flex: none; }
.brand-mark .bm-bg { fill: var(--surface-2); stroke: var(--line-strong); }
.brand-mark .bm-line { stroke: var(--signal); }
.brand-mark .bm-dot { fill: var(--signal); }
.brand-mark .bm-dot-2 { fill: var(--signal-2); }

.header-actions { display: flex; align-items: center; gap: 0.5rem; order: 3; }
.nav { order: 2; }
.menu-toggle {
  display: none;
  min-height: 2.75rem; padding: 0.4rem 0.9rem;
  border: 2px solid var(--line-strong); border-radius: 999px;
  background: transparent; color: var(--ink);
  font: inherit; font-size: 1rem; font-weight: 700; cursor: pointer;
}
.menu-toggle:hover { border-color: var(--brand); }
.nav { display: flex; align-items: center; gap: 0.25rem 1.1rem; flex-wrap: wrap; }
.nav a { color: var(--ink); text-decoration: none; font-size: 1.05rem; padding: 0.4rem 0; }
.nav a:hover { color: var(--brand); text-decoration: underline; }
.nav .nav-cta { display: none; }
.nav a[aria-current="page"] { text-decoration: underline; text-decoration-color: var(--signal-2); text-decoration-thickness: 0.14em; }

/* Mobile: with JS, the nav collapses behind the Menu button. Without JS it simply wraps below. */
@media (max-width: 74.99rem) {
  .header-actions { order: 2; }
  .nav { order: 3; width: 100%; padding: 0 0 0.9rem; gap: 0.1rem 1.1rem; }
  .js .menu-toggle { display: inline-flex; align-items: center; }
  .js .nav { display: none; }
  .js .nav.is-open {
    display: grid; grid-template-columns: 1fr; gap: 0;
    border-top: 1px solid var(--line); padding: 0.5rem 0 1rem;
  }
  .js .nav.is-open a { padding: 0.7rem 0.25rem; border-bottom: 1px solid var(--line); }
}
/* Small phones: the header "Book a call" button moves into the menu so the header fits on one line. */
@media (max-width: 29.99rem) {
  .header-actions .btn { display: none; }
  .nav .nav-cta { display: block; font-weight: 700; color: var(--brand); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 3rem; padding: 0.7rem 1.35rem;
  border-radius: 999px; border: 2px solid var(--brand);
  background: var(--brand); color: var(--brand-ink);
  font: inherit; font-weight: 700; font-size: 1.05rem; line-height: 1.2;
  text-align: center; text-decoration: none; cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover {
  background: var(--brand-hover); border-color: var(--brand-hover); color: var(--brand-ink);
  text-decoration: none; transform: translateY(-1px);
  box-shadow: 0 6px 18px -6px var(--brand);
}
.btn-ghost { background: transparent; color: var(--brand); }
.btn-ghost:hover { background: var(--surface-2); color: var(--brand); box-shadow: none; }
.btn-small { min-height: 2.75rem; padding: 0.45rem 1rem; font-size: 1rem; white-space: nowrap; }
.btn[aria-disabled="true"] { opacity: 0.6; pointer-events: none; }
.btn .arrow { transition: transform 0.18s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Sections ---------- */
main { display: block; }
.section { padding: clamp(3rem, 2rem + 4vw, 5.5rem) 0; }
.section + .section { border-top: 1px solid var(--line); }
.section-alt { background: var(--surface-2); }
.eyebrow {
  display: inline-flex; align-items: flex-start; gap: 0.55rem;
  font-family: var(--font-mono); font-size: 0.95rem; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.7rem;
}
.eyebrow::before {
  content: ""; width: 0.55rem; height: 0.55rem; border-radius: 2px;
  background: var(--signal-2); flex: none; margin-top: 0.42em;
}
.lead { font-size: clamp(1.2rem, 1.1rem + 0.45vw, 1.4rem); color: var(--muted); }
.section-head { max-width: 50rem; margin-bottom: 2.25rem; }

/* ---------- Hero (ink panel with grid + scanline) ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(2.75rem, 1.5rem + 5vw, 5.5rem) 0 clamp(2.5rem, 1.5rem + 4vw, 4.5rem);
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 35%, #000 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 35%, #000 40%, transparent 100%);
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 30%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(98, 210, 191, 0.05) 60%, transparent);
  transform: translateY(-100%);
  animation: scan 9s linear infinite;
}
@keyframes scan { to { transform: translateY(420%); } }
.hero > .wrap { position: relative; }
.hero-copy { max-width: 52rem; }
.hero h1 em { font-style: normal; color: var(--signal); }
.hero .lead { max-width: 44rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.75rem 0 1rem; }
.hero-note { font-size: 1rem; color: var(--muted); }
.page-hero { padding-bottom: clamp(2rem, 1.5rem + 2vw, 3rem); }
.status-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.95rem;
  padding: 0.25rem 0.8rem; border-radius: 999px;
  border: 1px solid var(--line-strong); color: var(--ink); background: var(--surface);
  margin-bottom: 1rem;
}
.status-pill .dot { width: 0.55rem; height: 0.55rem; border-radius: 50%; background: var(--signal); box-shadow: 0 0 0 0 var(--signal); animation: ping 2.4s ease-out infinite; }
.status-pill.is-custom .dot { background: var(--signal-2); }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(98, 210, 191, 0.55); } 70%, 100% { box-shadow: 0 0 0 8px rgba(98, 210, 191, 0); } }

/* ---------- System map (hero + command center) ---------- */
.sysmap {
  margin: clamp(2rem, 1.5rem + 2vw, 3rem) 0 0;
  background: linear-gradient(180deg, var(--surface), var(--bg));
  border: 1px solid var(--line); border-radius: calc(var(--radius) + 4px);
  padding: clamp(1rem, 0.75rem + 1.2vw, 1.75rem);
  box-shadow: var(--shadow);
}
.sm-head {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 0.5rem 1rem;
  font-family: var(--font-mono); font-size: 0.95rem; color: var(--muted);
  padding-bottom: 0.9rem; margin-bottom: 1rem; border-bottom: 1px dashed var(--line);
}
.sm-head .sm-dots { display: inline-flex; gap: 0.35rem; }
.sm-head .sm-dots i { width: 0.6rem; height: 0.6rem; border-radius: 50%; background: var(--line-strong); display: block; }
.sm-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 4.5rem minmax(0, 0.95fr) 4.5rem minmax(0, 1fr);
  align-items: stretch;
}
.sm-col { list-style: none; margin: 0; padding: 0; display: grid; grid-auto-rows: 1fr; gap: 0; }
.sm-grid .sm-node { margin: 0.3rem 0; }
.sm-col-title {
  font-family: var(--font-mono); font-size: 0.95rem; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 0.6rem; line-height: 1.6rem; height: 1.6rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sm-side { display: flex; flex-direction: column; }
.sm-side .sm-col { flex: 1; }
.sm-node {
  display: flex; align-items: center; gap: 0.6rem;
  min-height: 3.1rem; padding: 0.5rem 0.75rem;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-size: 1rem; line-height: 1.25; max-width: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.sm-node:hover { border-color: var(--signal); transform: translateX(2px); }
.sm-out .sm-node:hover { transform: translateX(-2px); }
.sm-node .led { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--signal); flex: none; opacity: 0.85; }
.sm-out .sm-node .led { background: var(--signal-2); }
.sm-wires { position: relative; }
.sm-wires svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.sm-side-pad { padding-top: 2.2rem; }
.sm-wires.sm-side-pad svg { top: 2.2rem; height: calc(100% - 2.2rem); }
.wire { fill: none; stroke: var(--line-strong); stroke-width: 1.5; }
.pulse {
  fill: none; stroke: var(--signal); stroke-width: 3; stroke-linecap: round;
  stroke-dasharray: 5 95; stroke-dashoffset: 100;
  animation: flow 3.2s linear infinite;
}
.pulse.p2 { animation-delay: -0.5s; } .pulse.p3 { animation-delay: -1.1s; }
.pulse.p4 { animation-delay: -1.7s; } .pulse.p5 { animation-delay: -2.2s; }
.pulse.p6 { animation-delay: -2.7s; }
.pulse.out { stroke: var(--signal-2); animation-duration: 3.6s; }
@keyframes flow { to { stroke-dashoffset: 0; } }

.sm-center { display: flex; align-items: center; }
.sm-hub {
  position: relative; width: 100%;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.6rem;
  padding: 1.25rem 0.9rem;
  border: 1px solid var(--signal); border-radius: calc(var(--radius) + 2px);
  background:
    radial-gradient(circle at 50% 0%, rgba(98, 210, 191, 0.14), transparent 70%),
    var(--surface);
  box-shadow: 0 0 0 4px rgba(98, 210, 191, 0.07), var(--shadow);
}
.sm-hub-title { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; line-height: 1.2; margin: 0; }
.sm-ring { width: 4.5rem; height: 4.5rem; }
.sm-ring .r1 { fill: none; stroke: var(--line-strong); stroke-width: 2; }
.sm-ring .r2 { fill: none; stroke: var(--signal); stroke-width: 2.5; stroke-dasharray: 30 70; stroke-linecap: round; transform-origin: 50% 50%; animation: spin 6s linear infinite; }
.sm-ring .r3 { fill: none; stroke: var(--signal-2); stroke-width: 2; stroke-dasharray: 12 88; stroke-linecap: round; transform-origin: 50% 50%; animation: spin 9s linear infinite reverse; }
.sm-ring .core { fill: var(--signal); }
@keyframes spin { to { transform: rotate(360deg); } }
.sm-steps { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.35rem; }
.sm-steps li {
  font-family: var(--font-mono); font-size: 0.9rem;
  padding: 0.1rem 0.5rem; border: 1px solid var(--line); border-radius: 6px; color: var(--muted);
}
.gate-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-mono); font-size: 0.9rem; font-weight: 500;
  padding: 0.2rem 0.6rem; border-radius: 6px;
  background: var(--accent-soft); color: var(--accent); border: 1px solid var(--signal-2);
}
.sm-vwire { display: none; }
.sm-caption { font-size: 1rem; color: var(--muted); margin: 1rem 0 0; max-width: none; }

@media (max-width: 47.99rem) {
  .sm-grid { grid-template-columns: 1fr; }
  .sm-wires { display: none; }
  .sm-vwire { display: block; height: 3rem; position: relative; }
  .sm-vwire svg { position: absolute; inset: 0; width: 100%; height: 100%; }
  .sm-col { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; gap: 0.5rem; }
  .sm-grid .sm-node { margin: 0; }
  .sm-side-pad { padding-top: 0; }
  .sm-col-title { height: auto; white-space: normal; }
  .sm-node { min-height: 2.9rem; font-size: 0.98rem; padding: 0.45rem 0.6rem; }
  .sm-node:hover, .sm-out .sm-node:hover { transform: none; }
  .sm-hub { width: 100%; }
}
@media (max-width: 23.5rem) { .sm-col { grid-template-columns: 1fr; } }

/* ---------- Event log (decorative) ---------- */
.eventlog {
  margin-top: 1rem;
  display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 0.95rem;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--bg); padding: 0.65rem 0.9rem;
}
.eventlog .el-label { color: var(--muted); white-space: nowrap; }
.eventlog .el-line {
  color: var(--ink); flex: 1 1 16rem; min-width: 0; min-height: 1.6em;
  overflow-wrap: anywhere;
}
.eventlog .el-line::before { content: "> "; color: var(--signal); }
.eventlog .caret {
  display: inline-block; width: 0.55em; height: 1.05em; vertical-align: -0.15em; margin-left: 2px;
  background: var(--signal); animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
@media (max-width: 40rem) { .eventlog .el-line { min-height: 4.8em; } }

/* ---------- Service cards ---------- */
.svc-grid { display: grid; gap: 1.25rem; }
@media (min-width: 44rem) { .svc-grid { grid-template-columns: 1fr 1fr; } }
.svc-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.svc-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--signal), var(--signal-2));
  transform: scaleX(0.18); transform-origin: left; transition: transform 0.35s ease;
}
.svc-card:hover { border-color: var(--line-strong); transform: translateY(-2px); box-shadow: var(--shadow); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-top { display: flex; justify-content: space-between; align-items: center; gap: 0.75rem; margin-bottom: 0.9rem; flex-wrap: wrap; }
.svc-id { font-family: var(--font-mono); font-size: 0.95rem; color: var(--muted); }
.svc-status {
  font-family: var(--font-mono); font-size: 0.9rem; font-weight: 500;
  padding: 0.15rem 0.6rem; border-radius: 999px;
  border: 1px solid var(--signal); color: var(--ink);
}
.svc-status.custom { border-color: var(--signal-2); }
.svc-card h3 { margin-bottom: 0.4rem; }
.svc-card h3 a { color: var(--ink); text-decoration: none; }
.svc-card h3 a::after { content: ""; position: absolute; inset: 0; }
.svc-card h3 a:hover { color: var(--brand); }
.svc-card:focus-within { outline: 3px solid var(--focus); outline-offset: 2px; }
.svc-card h3 a:focus-visible { outline: none; }
.svc-card ul { padding-left: 1.2rem; margin: 0 0 1.25rem; }
.svc-card li { margin-bottom: 0.3rem; }
.svc-price {
  margin-top: auto; padding-top: 1rem; border-top: 1px dashed var(--line);
  display: flex; justify-content: space-between; align-items: baseline; gap: 0.5rem 1rem; flex-wrap: wrap;
}
.svc-price strong { font-family: var(--font-head); font-size: 1.3rem; }
.svc-price span { font-size: 1rem; color: var(--muted); }
.svc-more { font-weight: 700; color: var(--brand); }

/* ---------- Charts (illustrative) ---------- */
.chart-grid { display: grid; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 56rem) { .chart-grid { grid-template-columns: 1.2fr 1fr; } }
.chart {
  margin: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.25rem 1.25rem 1rem; display: flex; flex-direction: column;
}
.chart-title { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; margin: 0 0 0.25rem; }
.chart-sub { color: var(--muted); font-size: 1rem; margin: 0 0 0.75rem; }
.legend { list-style: none; margin: 0 0 0.75rem; padding: 0; display: flex; flex-wrap: wrap; gap: 0.35rem 1.1rem; font-size: 1rem; }
.legend li { display: inline-flex; align-items: center; gap: 0.45rem; }
.legend .sw { width: 0.9rem; height: 0.9rem; border-radius: 3px; flex: none; }
.legend .sw.line { height: 3px; border-radius: 2px; width: 1.2rem; }
/* chart palette validated (dataviz validator) for light and dark surfaces */
.sw-a { background: var(--chart-a); }
.sw-b { background: var(--chart-b); }
.sw-c { background: var(--chart-c); }
.chart-plot { position: relative; aspect-ratio: 600 / 240; }
.chart-plot svg { position: absolute; inset: 0; width: 100%; height: 100%; }
@media (max-width: 40rem) { .chart-plot { aspect-ratio: 600 / 330; } }
.chart .gridline { stroke: var(--line); stroke-width: 1; }
.chart .baseline { stroke: var(--line-strong); stroke-width: 1.5; }
.chart .area { fill: var(--chart-a); opacity: 0.16; }
.chart .line-a { fill: none; stroke: var(--chart-a); stroke-width: 2.5; stroke-linejoin: round; stroke-linecap: round; }
.chart .line-b { fill: none; stroke: var(--chart-b); stroke-width: 2.5; stroke-linejoin: round; stroke-linecap: round; }
.chart .bar-a { fill: var(--chart-a); }
.chart .bar-b { fill: var(--chart-b); }
.chart .bar-c { fill: var(--chart-c); }
.x-labels { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 0.9rem; color: var(--muted); margin-top: 0.4rem; padding: 0 0.2rem; }
.x-labels.bars { justify-content: space-around; }
.chart figcaption, .flow-caption {
  margin-top: auto; padding-top: 0.75rem; font-size: 1rem; color: var(--muted);
}
.illus-tag {
  display: inline-block; font-family: var(--font-mono); font-size: 0.9rem;
  color: var(--accent); border: 1px solid var(--signal-2); border-radius: 6px; padding: 0 0.45rem; margin-right: 0.35rem;
}

/* Draw-in: final state is the default. Only when motion is allowed (html.motion) do we start hidden. */
.motion .chart .draw { stroke-dasharray: 100; stroke-dashoffset: 100; transition: stroke-dashoffset 1.8s cubic-bezier(.3,.7,.2,1); }
.motion .chart .line-b.draw { stroke-dasharray: 100; }
.motion .chart.in-view .draw { stroke-dashoffset: 0; }
.motion .chart.in-view .line-b.draw { transition: stroke-dashoffset 1.8s cubic-bezier(.3,.7,.2,1) 0.35s; }
.motion .chart .area { opacity: 0; transition: opacity 1s ease 0.9s; }
.motion .chart.in-view .area { opacity: 0.16; }
.motion .chart .bar { transform: scaleY(0); transform-box: fill-box; transform-origin: 50% 100%; transition: transform 0.8s cubic-bezier(.3,.7,.2,1); }
.motion .chart.in-view .bar { transform: scaleY(1); }
.motion .chart.in-view .col-2 .bar { transition-delay: 0.08s; }
.motion .chart.in-view .col-3 .bar { transition-delay: 0.16s; }
.motion .chart.in-view .col-4 .bar { transition-delay: 0.24s; }
.motion .chart.in-view .col-5 .bar { transition-delay: 0.32s; }
.motion .chart.in-view .col-6 .bar { transition-delay: 0.40s; }
.motion .chart.in-view .col-7 .bar { transition-delay: 0.48s; }

/* ---------- Flow diagrams (per service) ---------- */
.flow-wrap {
  margin: 0;
  background: var(--surface); border: 1px solid var(--line); border-radius: calc(var(--radius) + 4px);
  padding: clamp(1rem, 0.75rem + 1.2vw, 1.75rem);
}
.flow {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 2.25rem;
  grid-template-columns: repeat(var(--cols, 5), minmax(0, 1fr));
}
.flow-5 { --cols: 5; } .flow-6 { --cols: 6; } .flow-4 { --cols: 4; }
.flow-step {
  position: relative; max-width: none;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 0.9rem 0.9rem 1rem;
  display: flex; flex-direction: column; gap: 0.35rem;
}
.flow-step .fs-id { font-family: var(--font-mono); font-size: 0.9rem; color: var(--muted); }
.flow-step .fs-title { font-family: var(--font-head); font-weight: 700; font-size: 1.08rem; line-height: 1.2; margin: 0; }
.flow-step p { font-size: 1rem; margin: 0; color: var(--muted); line-height: 1.45; }
.flow-step.is-human { border-color: var(--signal-2); }
.flow-step.is-human .fs-id { color: var(--accent); }
.flow-step.is-gate { border-style: dashed; border-color: var(--signal-2); }
.branch { list-style: none; margin: 0.35rem 0 0; padding: 0; display: grid; gap: 0.35rem; }
.branch li { font-size: 0.95rem; line-height: 1.35; padding: 0.3rem 0.5rem; border-radius: 6px; background: var(--surface); border: 1px solid var(--line); max-width: none; }
.branch li strong { font-family: var(--font-mono); font-weight: 500; font-size: 0.9rem; display: block; }
.branch .b-auto strong { color: var(--brand); }
.branch .b-human strong { color: var(--accent); }

/* connectors between steps: a line plus a travelling dot */
.flow-step:not(:last-child)::after {
  content: ""; position: absolute; top: 50%; left: 100%; width: 2.25rem; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 6px, transparent 6px 10px);
}
.flow-step:not(:last-child)::before {
  content: ""; position: absolute; top: calc(50% - 4px); left: 100%; width: 10px; height: 10px; border-radius: 50%;
  background: var(--signal); z-index: 1;
  animation: hop 2.4s ease-in-out infinite;
}
.flow-step:nth-child(2)::before { animation-delay: 0.4s; }
.flow-step:nth-child(3)::before { animation-delay: 0.8s; }
.flow-step:nth-child(4)::before { animation-delay: 1.2s; }
.flow-step:nth-child(5)::before { animation-delay: 1.6s; }
.flow-step:nth-child(6)::before { animation-delay: 2.0s; }
@keyframes hop {
  0% { transform: translateX(0); opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { transform: translateX(calc(2.25rem - 10px)); opacity: 0; }
}
/* active-step highlight sweeps along the flow */
.flow-step { animation: stepglow 9s ease-in-out infinite; }
.flow-step:nth-child(2) { animation-delay: 1.5s; } .flow-step:nth-child(3) { animation-delay: 3s; }
.flow-step:nth-child(4) { animation-delay: 4.5s; } .flow-step:nth-child(5) { animation-delay: 6s; }
.flow-step:nth-child(6) { animation-delay: 7.5s; }
@keyframes stepglow {
  0%, 18%, 100% { box-shadow: 0 0 0 0 transparent; }
  6%, 12% { box-shadow: 0 0 0 3px rgba(98, 210, 191, 0.35); }
}
.flow-caption { display: block; margin-top: 1rem; padding-top: 0; }

@media (max-width: 63.99rem) {
  .flow, .flow-5, .flow-6, .flow-4 { grid-template-columns: 1fr; gap: 1.9rem; }
  .flow-step:not(:last-child)::after {
    top: 100%; left: 1.5rem; width: 2px; height: 1.9rem;
    background: repeating-linear-gradient(180deg, var(--line-strong) 0 6px, transparent 6px 10px);
  }
  .flow-step:not(:last-child)::before { top: 100%; left: calc(1.5rem - 4px); animation-name: hopv; }
  @keyframes hopv {
    0% { transform: translateY(0); opacity: 0; }
    15%, 85% { opacity: 1; }
    100% { transform: translateY(calc(1.9rem - 10px)); opacity: 0; }
  }
}

/* ---------- How we work ---------- */
.phases { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; counter-reset: ph; }
@media (min-width: 44rem) { .phases { grid-template-columns: 1fr 1fr; } }
@media (min-width: 64rem) { .phases { grid-template-columns: repeat(4, 1fr); } }
.phase {
  position: relative; counter-increment: ph;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.35rem 1.35rem 1.25rem;
}
.phase::before {
  content: "0" counter(ph); display: block;
  font-family: var(--font-mono); font-size: 0.95rem; color: var(--accent); margin-bottom: 0.6rem;
}
.phase h3 { margin-bottom: 0.35rem; }
.phase p { margin: 0; font-size: 1.05rem; }
.principles { list-style: none; margin: 1.75rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.principles li {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid var(--line-strong); border-radius: 999px; padding: 0.35rem 0.9rem;
  font-size: 1.02rem; background: var(--surface);
}
.principles li::before { content: ""; width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--signal); }

/* ---------- Integration chips ---------- */
.int-grid { display: grid; gap: 1rem; }
@media (min-width: 44rem) { .int-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 64rem) { .int-grid { grid-template-columns: repeat(3, 1fr); } }
.int-group { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.2rem; }
.int-group h3 { font-family: var(--font-mono); font-weight: 500; font-size: 0.95rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); margin: 0 0 0.7rem; }
.chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.45rem; }
.chips li {
  font-size: 1rem; padding: 0.3rem 0.7rem; border-radius: 8px;
  border: 1px solid var(--line); background: var(--surface-2); max-width: none;
  transition: border-color 0.2s ease;
}
.chips li:hover { border-color: var(--signal); }

/* ---------- Generic blocks (kept from v1) ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.25rem; counter-reset: step; }
@media (min-width: 56rem) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; counter-increment: step; }
.step::before {
  content: counter(step); display: grid; place-items: center;
  width: 2.5rem; height: 2.5rem; border-radius: 8px;
  background: var(--brand); color: var(--brand-ink);
  font-family: var(--font-mono); font-weight: 500; font-size: 1.2rem; margin-bottom: 1rem;
}
.step p:last-child { margin-bottom: 0; }
.steps.steps-single { grid-template-columns: 1fr; gap: 0.9rem; }
.steps-single .step { padding: 1.1rem 1.25rem; display: grid; grid-template-columns: auto 1fr; column-gap: 1rem; }
.steps-single .step::before { grid-row: span 2; margin: 0; }
.steps-single .step h3 { font-size: 1.2rem; margin-bottom: 0.2rem; }

.method { margin-top: 2rem; display: grid; gap: 1rem; }
@media (min-width: 48rem) { .method { grid-template-columns: 1fr 1fr; } }
.method-item { border-left: 4px solid var(--signal-2); background: var(--surface); border-radius: 0 var(--radius) var(--radius) 0; padding: 1rem 1.25rem; }
.method-item p { margin: 0; }

.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
@media (min-width: 48rem) { .checklist { grid-template-columns: 1fr 1fr; gap: 1.1rem 2rem; } }
.checklist li { position: relative; padding-left: 2.2rem; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 0.25em; width: 1.35rem; height: 1.35rem; border-radius: 50%;
  background: var(--brand);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1a11 11 0 1 0 0 22 11 11 0 0 0 0-22Zm-1.4 15.6-4.3-4.3 1.4-1.4 2.9 2.9 6.2-6.2 1.4 1.4-7.6 7.6Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1a11 11 0 1 0 0 22 11 11 0 0 0 0-22Zm-1.4 15.6-4.3-4.3 1.4-1.4 2.9 2.9 6.2-6.2 1.4 1.4-7.6 7.6Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.checklist strong { display: block; }
@media (min-width: 48rem) { .checklist.checklist-single { grid-template-columns: 1fr; } }
.plain-list { padding-left: 1.3rem; }
.plain-list li { margin-bottom: 0.45rem; }

.cards { display: grid; gap: 1.25rem; }
@media (min-width: 56rem) { .cards { grid-template-columns: repeat(3, 1fr); } }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; display: flex; flex-direction: column; }
.card p:last-child, .card ul:last-child { margin-bottom: 0; }
.card .card-note { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line); font-size: 1rem; color: var(--muted); }

.price-grid { display: grid; gap: 1.25rem; }
@media (min-width: 60rem) { .price-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 60rem) { .price-grid.two { grid-template-columns: 1fr 1fr; } }
.price-card { position: relative; }
.price-card.featured { border: 2px solid var(--brand); }
.price { font-family: var(--font-head); font-weight: 700; font-size: clamp(2rem, 1.8rem + 1vw, 2.6rem); line-height: 1.1; margin: 0.2rem 0; letter-spacing: -0.02em; }
.price small { font-family: var(--font-body); font-size: 1rem; font-weight: 400; color: var(--muted); letter-spacing: 0; }
.price-sub { color: var(--muted); font-size: 1rem; margin-bottom: 1rem; }
.price-card ul { padding-left: 1.2rem; margin: 0 0 1rem; }
.price-card li { margin-bottom: 0.4rem; }
.tag {
  display: inline-block; align-self: flex-start;
  font-family: var(--font-mono); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.03em; text-transform: uppercase;
  padding: 0.15rem 0.6rem; border-radius: 6px;
  background: var(--accent-soft); color: var(--accent); margin-bottom: 0.75rem;
}

.table-wrap { overflow-x: auto; margin: 1.5rem 0; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
table { width: 100%; border-collapse: collapse; font-size: 1.02rem; }
th, td { text-align: left; padding: 0.8rem 1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
thead th { background: var(--surface-2); font-weight: 700; }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
tbody th { font-weight: 700; }
tbody th a { color: var(--ink); }
@media (max-width: 40rem) {
  .stack-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .stack-table tr { display: block; border-bottom: 1px solid var(--line); padding: 0.5rem 0; }
  .stack-table tbody tr:last-child { border-bottom: 0; }
  .stack-table th, .stack-table td { display: block; border: 0; padding: 0.3rem 1rem; }
  .stack-table td::before { content: attr(data-label) ": "; font-weight: 700; }
}

.note-box {
  background: var(--surface); border: 1px solid var(--line); border-left: 5px solid var(--signal-2);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 1.25rem 1.5rem; margin: 1.5rem 0;
}
.note-box p:last-child, .note-box ul:last-child { margin-bottom: 0; }

.two-col { display: grid; gap: 2rem; }
@media (min-width: 56rem) { .two-col { grid-template-columns: 1fr 1fr; gap: 3rem; } }

.promise-grid { display: grid; gap: 1rem; margin-top: 1.5rem; }
@media (min-width: 48rem) { .promise-grid { grid-template-columns: 1fr 1fr; } }
.promise-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.promise-list li { position: relative; padding: 0.75rem 1rem 0.75rem 2.6rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); max-width: none; }
.promise-list li::before { position: absolute; left: 0.95rem; top: 0.72rem; font-family: var(--font-mono); font-weight: 500; }
.promise-list.no li::before { content: "\00D7"; color: var(--error); font-size: 1.2rem; line-height: 1.3; }
.promise-list.yes li::before { content: "\2713"; color: var(--brand); }

blockquote.guarantee { margin: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; }
blockquote.guarantee p:last-child { margin-bottom: 0; }

/* FAQ */
.faq { display: grid; gap: 0.75rem; max-width: 54rem; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); transition: border-color 0.2s ease; }
.faq details:hover, .faq details[open] { border-color: var(--line-strong); }
.faq summary { cursor: pointer; list-style: none; padding: 1.1rem 3rem 1.1rem 1.25rem; font-weight: 700; position: relative; min-height: 3rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 1.1rem; top: 50%; transform: translateY(-50%);
  font-family: var(--font-mono); font-size: 1.5rem; line-height: 1; color: var(--brand);
}
.faq details[open] summary::after { content: "\2212"; }
.faq .faq-body { padding: 0 1.25rem 1.1rem; }
.faq .faq-body p:last-child { margin-bottom: 0; }

/* CTA band (ink panel) */
.cta-band {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: calc(var(--radius) + 6px);
  padding: clamp(2rem, 1.5rem + 2vw, 3.25rem);
  display: grid; gap: 1.25rem; align-items: center;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 36px 36px;
}
.cta-band > * { position: relative; }
@media (min-width: 52rem) { .cta-band { grid-template-columns: 1.6fr auto; } }
.cta-band p { margin: 0; color: var(--muted); }

/* Forms */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(1.25rem, 1rem + 1.5vw, 2rem); }
.field { margin-bottom: 1.35rem; border: 0; padding: 0; min-width: 0; }
.field label, .field legend { display: block; font-weight: 700; margin-bottom: 0.35rem; padding: 0; }
.field .hint { display: block; font-size: 1rem; color: var(--muted); margin: -0.15rem 0 0.45rem; }
.optional { font-weight: 400; color: var(--muted); }
input[type="text"], input[type="email"], input[type="tel"], input[type="url"], select, textarea {
  width: 100%; min-height: 3.1rem; padding: 0.65rem 0.85rem;
  font: inherit; font-size: 1.1rem; color: var(--ink);
  background: var(--bg); border: 2px solid var(--line-strong); border-radius: 10px;
}
textarea { min-height: 7rem; resize: vertical; }
input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid var(--focus); outline-offset: 1px; border-color: var(--brand); }
input[aria-invalid="true"], select[aria-invalid="true"], fieldset[aria-invalid="true"] { border-color: var(--error); }
.field-row { display: grid; gap: 0 1.25rem; }
@media (min-width: 40rem) { .field-row { grid-template-columns: 1fr 1fr; } }
.check { display: flex; gap: 0.8rem; align-items: flex-start; }
.check input { width: 1.5rem; height: 1.5rem; margin-top: 0.2rem; flex: none; accent-color: var(--brand); }
.check label { font-weight: 400; margin: 0; }
.interest-list { display: grid; gap: 0.5rem; }
.interest-list .check {
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0.6rem 0.75rem; background: var(--bg);
}
.interest-list .check:has(input:checked) { border-color: var(--brand); }
.interest-list .check label strong { display: block; }
.interest-list .check label span { display: block; font-size: 1rem; color: var(--muted); }
.error-text { display: block; color: var(--error); font-weight: 700; font-size: 1rem; margin-top: 0.35rem; }
.error-text:empty { display: none; }
.form-status { margin-top: 1rem; padding: 1rem 1.2rem; border-radius: 10px; border: 2px solid var(--line); }
.form-status:empty { display: none; }
.form-status.is-ok { border-color: var(--ok); }
.form-status.is-error { border-color: var(--error); }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

/* Legal pages */
.draft-flag {
  display: block; background: var(--banner-bg); color: var(--banner-ink);
  border: 2px solid currentColor; border-radius: 10px; padding: 0.8rem 1rem; font-weight: 700; margin-bottom: 2rem;
}
.prose { max-width: 48rem; }
.prose h2 { font-size: clamp(1.45rem, 1.3rem + 0.6vw, 1.8rem); margin-top: 2.2rem; }
.prose ul { padding-left: 1.3rem; }
.prose li { margin-bottom: 0.4rem; }

/* Footer (ink panel) */
.site-footer { border-top: 1px solid var(--line); padding: 3rem 0 3rem; font-size: 1rem; color: var(--muted); }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 48rem) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.footer-links a { color: var(--ink); }
.footer-title { font-family: var(--font-mono); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); margin: 0 0 0.6rem; }
.site-footer p { margin: 0 0 0.5rem; }
.site-footer .brand { font-size: 1.25rem; margin-bottom: 0.75rem; }

.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1.25rem; }
.mt-2 { margin-top: 2.5rem; }
.muted { color: var(--muted); }
.h3-size { font-size: clamp(1.4rem, 1.25rem + 0.6vw, 1.7rem); margin-top: 2rem; }
.form-card .h3-size.mt-0 { margin-top: 0; }
.card [data-pay-link], .card [data-pay-soon] { margin-top: auto; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
[hidden] { display: none !important; }

@media (max-width: 24rem) {
  .brand { font-size: 1.15rem; gap: 0.45rem; }
  .brand-mark { width: 1.6rem; height: 1.6rem; }
  .header-inner { gap: 0.4rem; }
  .btn-small { padding: 0.4rem 0.75rem; }
  .menu-toggle { padding: 0.35rem 0.7rem; }
}

/* Motion only runs when boot.js set html.motion; off-screen zones are paused by motion.js. */
html:not(.motion) *, html:not(.motion) *::before, html:not(.motion) *::after { animation: none !important; }
html:not(.motion) .pulse, html:not(.motion) .hero::after, html:not(.motion) .flow-step::before { display: none; }
.motion .anim-zone:not(.is-live), .motion .anim-zone:not(.is-live) *,
.motion .anim-zone:not(.is-live)::before, .motion .anim-zone:not(.is-live)::after,
.motion .anim-zone:not(.is-live) *::before, .motion .anim-zone:not(.is-live) *::after { animation-play-state: paused !important; }

/* Reduced motion: show every diagram and chart in its final, static state. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .pulse, .hero::after, .flow-step::before, .eventlog .caret { display: none !important; }
}

@media print {
  .dev-banner, .site-header nav, .menu-toggle, .cta-band .btn, .hero::after, .pulse { display: none !important; }
  body, .ink { background: #fff; color: #000; }
}
