/* ==========================================================================
   Intuitive Pathos — site stylesheet
   Zero dependencies, zero build step. Hand-authored.

   The color system encodes the product principle: Yang (warm) and Yin (cool)
   are always used at equal weight, never one as "good" and one as "bad".
   Elevated and suppressed are the same distance from a person's own baseline.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
  /* Surfaces + text (light) */
  --paper:      #FBF9F6;
  --paper-2:    #F3EFE9;
  --paper-3:    #EAE4DA;
  --ink:        #0C1218;
  --ink-soft:   #414F5C;
  --ink-faint:  #556270;
  --rule:       #DED7CC;

  /* Yang (elevated) / Yin (suppressed) — symmetric by construction */
  --yang:       #A04522;
  --yang-tint:  #F6E3D9;
  --yin:        #24657F;
  --yin-tint:   #DBE8EE;

  --focus:      #24657F;

  /* Type */
  --serif: "Iowan Old Style", "Palatino Linotype", "Palatino", "Charter",
           "Bitstream Charter", Georgia, "Times New Roman", serif;
  --sans:  ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
           "Inter", "Helvetica Neue", Arial, sans-serif;
  --mono:  ui-monospace, "SF Mono", "SFMono-Regular", "JetBrains Mono",
           "Roboto Mono", Menlo, Consolas, monospace;

  --step--2: clamp(0.75rem, 0.735rem + 0.07vw, 0.80rem);
  --step--1: clamp(0.86rem, 0.838rem + 0.11vw, 0.925rem);
  --step-0:  clamp(1.00rem, 0.968rem + 0.16vw, 1.09rem);
  --step-1:  clamp(1.19rem, 1.135rem + 0.27vw, 1.34rem);
  --step-2:  clamp(1.41rem, 1.325rem + 0.43vw, 1.66rem);
  --step-3:  clamp(1.68rem, 1.539rem + 0.70vw, 2.06rem);
  --step-4:  clamp(2.00rem, 1.780rem + 1.10vw, 2.56rem);
  --step-5:  clamp(2.37rem, 2.043rem + 1.64vw, 3.17rem);
  --step-6:  clamp(2.82rem, 2.330rem + 2.45vw, 3.93rem);

  /* Space */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;
  --sp-4: 1rem;     --sp-5: 1.5rem;   --sp-6: 2rem;
  --sp-7: 3rem;     --sp-8: 4rem;     --sp-9: 6rem;
  --sp-10: 8rem;

  --measure: 34rem;
  --container: 70rem;
  --container-wide: 82rem;

  --radius: 4px;
  --radius-lg: 10px;

  --shadow-1: 0 1px 2px rgba(12, 18, 24, 0.05),
              0 4px 16px -8px rgba(12, 18, 24, 0.12);
  --shadow-2: 0 2px 4px rgba(12, 18, 24, 0.06),
              0 18px 44px -22px rgba(12, 18, 24, 0.30);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper:     #0B1015;
    --paper-2:   #121A21;
    --paper-3:   #1A242D;
    --ink:       #ECE7DF;
    --ink-soft:  #A8B3BD;
    --ink-faint: #8F9AA4;
    --rule:      #24303A;

    --yang:      #E4996E;
    --yang-tint: #2B1E17;
    --yin:       #7FBBD8;
    --yin-tint:  #14242C;

    --focus:     #7FBBD8;

    --shadow-1: 0 1px 2px rgba(0, 0, 0, 0.4),
                0 4px 16px -8px rgba(0, 0, 0, 0.6);
    --shadow-2: 0 2px 4px rgba(0, 0, 0, 0.4),
                0 18px 44px -22px rgba(0, 0, 0, 0.8);
  }
}

/* Inverted blocks: same tokens, flipped. Used for full-bleed dark bands. */
.invert {
  --paper:     #0B1015;
  --paper-2:   #121A21;
  --paper-3:   #1A242D;
  --ink:       #ECE7DF;
  --ink-soft:  #A8B3BD;
  --ink-faint: #8F9AA4;
  --rule:      #26323C;
  --yang:      #E4996E;
  --yang-tint: #2B1E17;
  --yin:       #7FBBD8;
  --yin-tint:  #14242C;
  --focus:     #7FBBD8;
  background: var(--paper);
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   2. Reset + base
   -------------------------------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.018em;
  margin: 0 0 var(--sp-4);
  text-wrap: balance;
}

h1 { font-size: var(--step-6); letter-spacing: -0.028em; }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); line-height: 1.2; }
h4 { font-size: var(--step-1); line-height: 1.3; }

p, ul, ol, dl, blockquote, figure, table { margin: 0 0 var(--sp-5); }
p { text-wrap: pretty; }
:where(p, li) { max-width: 46rem; }

a {
  color: inherit;
  text-decoration-color: color-mix(in oklab, currentColor 38%, transparent);
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
  transition: color 0.18s var(--ease),
              text-decoration-color 0.18s var(--ease);
}
a:hover { color: var(--yin); text-decoration-color: currentColor; }

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

strong, b { font-weight: 650; }

code, kbd, samp {
  font-family: var(--mono);
  font-size: 0.885em;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 0.08em 0.34em;
}

hr {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: var(--sp-7) 0;
}

::selection { background: var(--yang-tint); color: var(--ink); }

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}
.container--wide { width: min(100% - 2.5rem, var(--container-wide)); }
.container--narrow { width: min(100% - 2.5rem, 48rem); }

@media (max-width: 40rem) {
  .container, .container--wide, .container--narrow {
    width: min(100% - 2rem, var(--container));
  }
}

.section { padding-block: clamp(3.5rem, 2.4rem + 5.5vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 1.9rem + 3vw, 4.5rem); }
.section--flush-top { padding-top: 0; }

.band { background: var(--paper-2); }
.band--rule { border-block: 1px solid var(--rule); }
.band--yang { background: var(--yang-tint); }
.band--yin  { background: var(--yin-tint); }

.stack > * + * { margin-top: var(--sp-5); }
.stack-lg > * + * { margin-top: var(--sp-7); }

.prose { max-width: var(--measure); }
.prose--wide { max-width: 44rem; }
.center { margin-inline: auto; text-align: center; }
.center :where(p, li) { margin-inline: auto; }

.grid { display: grid; gap: var(--sp-5); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr)); }
/* 18rem, not 16rem: at the container width this resolves to three columns, so
   the six-card product grid fills two rows evenly instead of leaving a ragged
   4 + 2. */
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr)); }

.split {
  display: grid;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
}
@media (min-width: 56rem) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-left { grid-template-columns: 1.15fr 0.85fr; }
  .split--wide-right { grid-template-columns: 0.85fr 1.15fr; }
  .split--top { align-items: start; }
}

/* --------------------------------------------------------------------------
   4. Type helpers
   -------------------------------------------------------------------------- */

.eyebrow {
  font-family: var(--sans);
  font-size: var(--step--2);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 var(--sp-4);
  display: flex;
  align-items: center;
  gap: 0.65em;
}
.eyebrow::before {
  content: "";
  width: 1.6rem;
  height: 1px;
  background: currentColor;
  flex: none;
  opacity: 0.7;
}
.center .eyebrow { justify-content: center; }

.lede {
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 42rem;
}

.small { font-size: var(--step--1); color: var(--ink-soft); }
.tiny  { font-size: var(--step--2); color: var(--ink-faint); }
.muted { color: var(--ink-soft); }

.pull {
  font-family: var(--serif);
  font-size: var(--step-3);
  line-height: 1.28;
  letter-spacing: -0.018em;
  border-left: 2px solid var(--yang);
  padding-left: var(--sp-5);
  margin-block: var(--sp-6);
  max-width: 36rem;
}
.pull cite {
  display: block;
  margin-top: var(--sp-4);
  font: 500 var(--step--1)/1.5 var(--sans);
  font-style: normal;
  color: var(--ink-faint);
  letter-spacing: 0.01em;
}

.yang { color: var(--yang); }
.yin  { color: var(--yin); }

/* Statement band — one line, full bleed, nothing else competing with it.
   Deliberately rationed: it only carries weight while it stays rare. */
.statement-band {
  border-block: 1px solid var(--rule);
  padding-block: clamp(3rem, 2.2rem + 3.6vw, 5.5rem);
  background: var(--paper);
  text-align: center;
}
.statement {
  font-family: var(--serif);
  font-size: var(--step-4);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.022em;
  text-wrap: balance;
  max-width: 24ch;
  margin: 0 auto;
}
.statement + .statement-note {
  margin: var(--sp-5) auto 0;
  max-width: 34rem;
  font-size: var(--step--1);
  color: var(--ink-soft);
}
/* The two arcs as a rule: warm and cool, equal and opposite. */
.statement-rule {
  display: block;
  width: 3.25rem;
  height: auto;
  margin: 0 auto var(--sp-5);
  opacity: 0.9;
}

/* --------------------------------------------------------------------------
   5. Header + navigation
   -------------------------------------------------------------------------- */

.skip-link {
  position: absolute;
  left: var(--sp-4);
  top: -4rem;
  z-index: 200;
  background: var(--ink);
  color: var(--paper);
  padding: 0.65rem 1rem;
  border-radius: var(--radius);
  font-size: var(--step--1);
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: var(--sp-4); color: var(--paper); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in oklab, var(--paper) 88%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
@supports (backdrop-filter: blur(1px)) {
  .site-header { backdrop-filter: saturate(1.6) blur(14px); }
}
.site-header[data-scrolled="true"] {
  border-bottom-color: var(--rule);
  background: color-mix(in oklab, var(--paper) 94%, transparent);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  min-height: 4.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--ink);
  flex: none;
}
.brand:hover { color: var(--ink); }
.brand-mark { width: 1.75rem; height: 1.75rem; flex: none; }
.brand-name { white-space: nowrap; }
.brand-name span { color: var(--ink-faint); font-weight: 500; }

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  color: var(--ink);
  font: 600 var(--step--1)/1 var(--sans);
  padding: 0.55rem 0.75rem;
  cursor: pointer;
}
.nav-toggle-bars {
  display: grid;
  gap: 3px;
  width: 15px;
}
.nav-toggle-bars i {
  display: block;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.22s var(--ease), opacity 0.16s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars i:nth-child(1) {
  transform: translateY(4.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars i:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars i:nth-child(3) {
  transform: translateY(-4.5px) rotate(-45deg);
}

.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 0.2rem + 1.4vw, 1.7rem);
}
.nav a {
  font-size: var(--step--1);
  font-weight: 550;
  text-decoration: none;
  color: var(--ink-soft);
  white-space: nowrap;
  padding-block: 0.35rem;
  position: relative;
}
.nav a:hover { color: var(--ink); }
.nav a[aria-current="page"] { color: var(--ink); }
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1.5px;
  background: var(--yang);
}
.nav .btn { color: var(--paper); }
.nav .btn:hover { color: var(--paper); }

@media (max-width: 68rem) {
  .nav {
    position: absolute;
    inset: 100% 0 auto;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    box-shadow: var(--shadow-2);
    padding: var(--sp-4) 0 var(--sp-6);
    display: block;
  }
  .js .nav { display: none; }
  .js .nav[data-open="true"] { display: block; }
  .js .nav-toggle { display: inline-flex; }
  .nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: min(100% - 2.5rem, var(--container));
    margin-inline: auto;
  }
  .nav li + li { border-top: 1px solid var(--rule); }
  .nav a { display: block; padding: 0.85rem 0; font-size: var(--step-0); }
  .nav a[aria-current="page"]::after { display: none; }
  .nav a[aria-current="page"] { color: var(--yang); }
  .nav .btn { margin-top: var(--sp-4); text-align: center; }
}
@media (min-width: 68.001rem) {
  .nav-toggle { display: none; }
  .nav { display: block !important; }
}

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font: 600 var(--step--1)/1 var(--sans);
  letter-spacing: 0.005em;
  padding: 0.82rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s var(--ease), background 0.18s var(--ease),
              border-color 0.18s var(--ease), color 0.18s var(--ease),
              box-shadow 0.18s var(--ease);
}
.btn:hover {
  color: var(--paper);
  transform: translateY(-1px);
  box-shadow: var(--shadow-1);
}
.btn:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}
.btn--ghost:hover { color: var(--ink); border-color: var(--ink); }

.btn--yang { background: var(--yang); border-color: var(--yang); }
.btn--sm { padding: 0.58rem 0.95rem; font-size: var(--step--2); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}
.center .btn-row { justify-content: center; }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--step--1);
  font-weight: 600;
  text-decoration: none;
  color: var(--yin);
}
.arrow-link::after {
  content: "→";
  transition: transform 0.18s var(--ease);
}
.arrow-link:hover::after { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  padding-block: clamp(3rem, 1.6rem + 6vw, 6.5rem) clamp(3rem, 2rem + 4vw, 5rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto;
  height: 70%;
  background:
    radial-gradient(60% 60% at 22% 30%,
      color-mix(in oklab, var(--yang) 13%, transparent), transparent 70%),
    radial-gradient(55% 55% at 78% 20%,
      color-mix(in oklab, var(--yin) 13%, transparent), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

.hero h1 { max-width: 15ch; }
.hero .lede { font-size: var(--step-2); line-height: 1.45; max-width: 34rem; }

/* The hero text runs as one column so the interactive panel below it can take
   the full container width — the demo is the pitch, not a decoration. */
.hero-intro { max-width: 46rem; }

.page-hero {
  padding-block: clamp(2.75rem, 1.9rem + 4vw, 5rem) clamp(1.5rem, 1rem + 2vw, 2.5rem);
  border-bottom: 1px solid var(--rule);
  background: var(--paper-2);
}
.page-hero h1 { max-width: 20ch; margin-bottom: var(--sp-5); }
.page-hero .lede { max-width: 44rem; }

/* --------------------------------------------------------------------------
   8. Cards
   -------------------------------------------------------------------------- */

.card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 1rem + 1vw, 1.85rem);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
              border-color 0.2s var(--ease);
}
.card > :last-child { margin-bottom: 0; }
.card h3 { font-size: var(--step-1); margin-bottom: 0; }
.card p { font-size: var(--step--1); color: var(--ink-soft); margin-bottom: 0; }

.card--link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-1);
  border-color: color-mix(in oklab, var(--ink) 26%, var(--rule));
}
.card--link a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}
.card--link { position: relative; }
.card--link a { text-decoration: none; }

.card__meta {
  font: 600 var(--step--2)/1 var(--sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.card__num {
  font-family: var(--mono);
  font-size: var(--step--2);
  color: var(--yang);
  letter-spacing: 0.08em;
}

.card--accent { border-top: 3px solid var(--yang); }
.card--accent-yin { border-top: 3px solid var(--yin); }

/* Audience doors */
.doors { display: grid; gap: 1px; background: var(--rule);
         border: 1px solid var(--rule); border-radius: var(--radius-lg);
         overflow: hidden; }
@media (min-width: 46rem) { .doors { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 68rem) { .doors { grid-template-columns: repeat(4, 1fr); } }
.door {
  position: relative;
  background: var(--paper);
  padding: clamp(1.4rem, 1.1rem + 1vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: background 0.2s var(--ease);
}
.door:hover { background: var(--paper-2); }
.door h3 { font-size: var(--step-1); margin: 0; }
.door p { font-size: var(--step--1); color: var(--ink-soft); margin: 0; flex: 1; }
.door a { text-decoration: none; }
.door a::after { content: ""; position: absolute; inset: 0; }
.door .arrow-link { pointer-events: none; }

/* --------------------------------------------------------------------------
   9. Principles, steps, stats, definitions
   -------------------------------------------------------------------------- */

.principle {
  border-top: 1px solid var(--rule);
  padding-top: var(--sp-5);
  display: grid;
  gap: var(--sp-4);
}
@media (min-width: 52rem) {
  .principle { grid-template-columns: 15rem 1fr; gap: var(--sp-6); }
}
.principle h3 { margin: 0; font-size: var(--step-2); }
.principle .principle__gloss {
  font-family: var(--mono);
  font-size: var(--step--2);
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  margin-top: var(--sp-2);
}
.principle > div > :last-child { margin-bottom: 0; }

.steps { list-style: none; padding: 0; margin: 0; counter-reset: step; }
.steps > li {
  counter-increment: step;
  position: relative;
  padding-left: 3.25rem;
  padding-bottom: var(--sp-6);
  border-left: 1px solid var(--rule);
  margin-left: 1.1rem;
  max-width: 44rem;
}
.steps > li:last-child { padding-bottom: 0; border-left-color: transparent; }
.steps > li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: -1.1rem;
  top: -0.15rem;
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 50%;
  font: 600 var(--step--2)/1 var(--mono);
  color: var(--yang);
}
.steps h3 { font-size: var(--step-1); margin-bottom: var(--sp-2); }
.steps p { margin-bottom: 0; color: var(--ink-soft); font-size: var(--step--1); }

.stats {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
}
.stat { border-top: 2px solid var(--ink); padding-top: var(--sp-4); }
.stat dt {
  font-family: var(--serif);
  font-size: var(--step-3);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-2);
}
.stat dd {
  margin: 0;
  font-size: var(--step--1);
  color: var(--ink-soft);
  max-width: 22rem;
}

.deflist { display: grid; gap: var(--sp-5); }
.deflist > div {
  display: grid;
  gap: var(--sp-2);
  padding-bottom: var(--sp-5);
  border-bottom: 1px solid var(--rule);
}
.deflist > div:last-child { border-bottom: 0; padding-bottom: 0; }
@media (min-width: 52rem) {
  .deflist > div { grid-template-columns: 14rem 1fr; gap: var(--sp-6); }
}
.deflist dt { font-weight: 650; font-size: var(--step-0); }
.deflist dd { margin: 0; color: var(--ink-soft); font-size: var(--step--1); }
.deflist dd > :last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   10. Callouts, tags, tables, FAQ
   -------------------------------------------------------------------------- */

.callout {
  border: 1px solid var(--rule);
  border-left: 3px solid var(--yin);
  border-radius: var(--radius);
  background: var(--paper-2);
  padding: var(--sp-5);
  font-size: var(--step--1);
  color: var(--ink-soft);
}
.callout > :last-child { margin-bottom: 0; }
.callout h3, .callout h4 {
  font-family: var(--sans);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: var(--sp-3);
}
.callout--regulatory { border-left-color: var(--yang); }

.tags { display: flex; flex-wrap: wrap; gap: var(--sp-2); list-style: none;
        padding: 0; margin: 0; }
.tag {
  font: 600 var(--step--2)/1 var(--sans);
  letter-spacing: 0.05em;
  padding: 0.35rem 0.6rem;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--paper);
  white-space: nowrap;
}
.tag--yang { color: var(--yang); border-color: color-mix(in oklab, var(--yang) 40%, transparent); }
.tag--yin  { color: var(--yin);  border-color: color-mix(in oklab, var(--yin) 40%, transparent); }

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  margin-bottom: var(--sp-5);
  -webkit-overflow-scrolling: touch;
}
table { border-collapse: collapse; width: 100%; margin: 0; font-size: var(--step--1); }
th, td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
th {
  font-weight: 650;
  font-size: var(--step--2);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-faint);
  background: var(--paper-2);
  white-space: nowrap;
}
tbody tr:last-child td { border-bottom: 0; }
td code { white-space: nowrap; }

.faq { border-top: 1px solid var(--rule); }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: var(--sp-5) 2.5rem var(--sp-5) 0;
  font-family: var(--serif);
  font-size: var(--step-1);
  font-weight: 600;
  letter-spacing: -0.012em;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  font: 400 1.5rem/1 var(--sans);
  color: var(--yang);
}
.faq details[open] summary::after { content: "–"; }
.faq details > :not(summary) { margin-bottom: var(--sp-5); }
.faq details p { color: var(--ink-soft); font-size: var(--step--1); }

/* --------------------------------------------------------------------------
   11. Figures + diagrams
   -------------------------------------------------------------------------- */

figure { margin: 0 0 var(--sp-5); }
figure svg { width: 100%; height: auto; }
figcaption {
  font-size: var(--step--2);
  color: var(--ink-faint);
  margin-top: var(--sp-3);
  max-width: 34rem;
  line-height: 1.55;
}

.figure-frame {
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  background: var(--paper);
  padding: clamp(1rem, 0.7rem + 1.2vw, 1.75rem);
  box-shadow: var(--shadow-1);
}

/* Diagram element theming — drives the inline SVGs. */
.dg-axis   { stroke: var(--rule); stroke-width: 1; }
.dg-grid   { stroke: var(--rule); stroke-width: 1; stroke-dasharray: 2 5; opacity: 0.8; }
.dg-band   { fill: var(--paper-3); }
.dg-yang   { fill: var(--yang); }
.dg-yin    { fill: var(--yin); }
.dg-yang-s { stroke: var(--yang); fill: none; stroke-width: 2; stroke-linecap: round; }
.dg-yin-s  { stroke: var(--yin);  fill: none; stroke-width: 2; stroke-linecap: round; }
.dg-ink-s  { stroke: var(--ink);  fill: none; stroke-width: 1.5; }
.dg-label  { fill: var(--ink-soft); font: 500 12px var(--sans); }
.dg-label--strong { fill: var(--ink); font-weight: 650; }
/* Accent labels must go through the tokens, never a hardcoded hex: a literal
   fill stays warm-dark in dark mode and drops to unreadable contrast. */
.dg-label--yang { fill: var(--yang); }
.dg-label--yin  { fill: var(--yin); }
/* Same reason for the brand mark's two arcs. */
.mark-yang { stroke: var(--yang); }
.mark-yin  { stroke: var(--yin); }
.dg-label--mono { fill: var(--ink-faint); font: 500 11px var(--mono); letter-spacing: 0.03em; }

/* Diagram text is inside a scaling viewBox: bump it up on narrow screens so it
   stays legible. All load-bearing explanation lives in the figcaption, not
   inside the SVG. */
@media (max-width: 48rem) {
  .dg-label { font-size: 15px; }
  .dg-label--mono { font-size: 13px; }
  .dg-flag-text { font-size: 16px; }
}
.dg-box    { fill: var(--paper); stroke: var(--rule); stroke-width: 1; }
.dg-box--accent { fill: var(--paper-2); stroke: var(--yang); stroke-width: 1.5; }
.dg-flow   { stroke: var(--ink-faint); stroke-width: 1.25; fill: none; marker-end: url(#arrow); }

.draw {
  stroke-dasharray: var(--len, 600);
  stroke-dashoffset: var(--len, 600);
  animation: draw 1.6s var(--ease) forwards;
}
.draw--2 { animation-delay: 0.35s; }
.draw--3 { animation-delay: 0.7s; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.fade-up { animation: fadeUp 0.7s var(--ease) both; }
.fade-up--2 { animation-delay: 0.1s; }
.fade-up--3 { animation-delay: 0.2s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   12. Forms
   -------------------------------------------------------------------------- */

.field { display: grid; gap: var(--sp-2); margin-bottom: var(--sp-5); }
.field label { font-weight: 650; font-size: var(--step--1); }
.field .hint { font-size: var(--step--2); color: var(--ink-faint); }

input[type="text"], input[type="email"], input[type="tel"],
select, textarea {
  font: inherit;
  font-size: var(--step--1);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 0.7rem 0.85rem;
  width: 100%;
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
textarea { min-height: 9rem; resize: vertical; }
input:focus, select:focus, textarea:focus {
  border-color: var(--focus);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--focus) 18%, transparent);
  outline: none;
}
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */

.site-footer {
  padding-block: var(--sp-8) var(--sp-6);
  border-top: 1px solid var(--rule);
  font-size: var(--step--1);
}
.footer-grid {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  margin-bottom: var(--sp-7);
}
.footer-grid > div:first-child { grid-column: 1 / -1; max-width: 26rem; }
@media (min-width: 62rem) {
  .footer-grid { grid-template-columns: 1.5fr repeat(4, 1fr); }
  .footer-grid > div:first-child { grid-column: auto; }
}
.footer-grid h2 {
  font-family: var(--sans);
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: var(--sp-4);
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.footer-grid a { text-decoration: none; color: var(--ink-soft); }
.footer-grid a:hover { color: var(--ink); }

.footer-legal {
  border-top: 1px solid var(--rule);
  padding-top: var(--sp-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4) var(--sp-6);
  justify-content: space-between;
  align-items: baseline;
  font-size: var(--step--2);
  color: var(--ink-faint);
}
.footer-legal p { margin: 0; max-width: 52rem; }
.footer-legal a { color: inherit; }

.disclaimer-strip {
  background: var(--paper-3);
  border-top: 1px solid var(--rule);
  padding-block: var(--sp-5);
  font-size: var(--step--2);
  color: var(--ink-soft);
  line-height: 1.6;
}
.disclaimer-strip p { margin: 0 0 var(--sp-3); max-width: 68rem; }
.disclaimer-strip p:last-child { margin-bottom: 0; }
.disclaimer-strip strong { color: var(--ink); }

/* --------------------------------------------------------------------------
   14. Utilities
   -------------------------------------------------------------------------- */

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.no-mb { margin-bottom: 0 !important; }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mt-7 { margin-top: var(--sp-7); }
.measure-46 { max-width: 46rem; }
.tags--spaced { margin-bottom: var(--sp-4); }
.brand--footer { margin-bottom: var(--sp-4); }

/* The site ships a strict Content-Security-Policy with no 'unsafe-inline' for
   styles, so nothing here may live in a style attribute — including the custom
   properties that drive the SVG draw-in animations. */
.draw--420 { --len: 420; }
.draw--520 { --len: 520; }
.draw--600 { --len: 600; }

@media print {
  .site-header, .nav, .btn-row, .skip-link { display: none !important; }
  body { background: #fff; color: #000; }
  a::after { content: " (" attr(href) ")"; font-size: 0.85em; }
}

/* --------------------------------------------------------------------------
   15. Interactive baseline demo
   The site's core claim, made playable and given the weight of a real
   instrument panel. Controls stay hidden until the JS marks the figure
   [data-active], so with scripts off the figure degrades to a static SVG,
   a rendered readout and the caption (no dead slider).
   -------------------------------------------------------------------------- */

.baseline-demo {
  position: relative;
  overflow: hidden;
  margin-top: clamp(2.25rem, 1.6rem + 2.6vw, 3.75rem);
  padding-top: clamp(1.25rem, 1rem + 1.2vw, 2rem);
}
/* Warm-to-cool edge: the two arcs of the mark, flattened into a rule. */
.baseline-demo::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--yang), var(--yin));
}

/* Until the visitor touches it, the panel asks to be touched. */
@media (prefers-reduced-motion: no-preference) {
  .baseline-demo[data-active]:not([data-touched]) {
    animation: demoBreathe 3.4s var(--ease) infinite;
  }
}
@keyframes demoBreathe {
  0%, 100% { box-shadow: var(--shadow-1); }
  50% {
    box-shadow: var(--shadow-2),
                0 0 0 4px color-mix(in oklab, var(--yang) 14%, transparent);
  }
}

.demo-head { max-width: 44rem; }
.demo-eyebrow { color: var(--yang); margin-bottom: var(--sp-3); }
.demo-eyebrow::before { display: none; }
.demo-eyebrow__pulse {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: currentColor;
  flex: none;
}
@media (prefers-reduced-motion: no-preference) {
  .baseline-demo[data-active] .demo-eyebrow__pulse { animation: demoPulse 2s ease-in-out infinite; }
}
@keyframes demoPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.35; transform: scale(0.7); }
}

.demo-title {
  font-size: var(--step-3);
  line-height: 1.15;
  margin-bottom: var(--sp-3);
  max-width: 26ch;
}
.demo-sub {
  font-size: var(--step-0);
  color: var(--ink-soft);
  margin-bottom: 0;
  max-width: 40rem;
}
.demo-hint { display: none; }
.baseline-demo[data-active] .demo-hint { display: inline; color: var(--ink); font-weight: 650; }

.demo-grid {
  display: grid;
  gap: var(--sp-5);
  margin-top: var(--sp-5);
  align-items: start;
}
@media (min-width: 64rem) {
  .demo-grid { grid-template-columns: minmax(0, 1.5fr) minmax(15rem, 0.7fr); gap: var(--sp-6); }
}

/* ---- Controls --------------------------------------------------------- */

.baseline-demo:not([data-active]) .demo-controls { display: none; }
.demo-controls { margin-top: var(--sp-4); }

/* The track is aligned to the plot area of the SVG above it (the value axis
   runs from 24.375% to 96.25% of the viewBox), so dragging feels like moving
   the reading itself. Below that width the chart is too small to bother. */
@media (min-width: 52rem) {
  .demo-slider { margin: 0 3.75% 0 24.375%; }
}

.demo-slider { display: block; }
.demo-slider__label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font: 600 var(--step--2)/1 var(--sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: var(--sp-3);
}
.demo-slider__drag {
  font-size: var(--step--2);
  letter-spacing: 0.08em;
  color: var(--yang);
  border: 1px solid color-mix(in oklab, var(--yang) 45%, transparent);
  background: color-mix(in oklab, var(--yang-tint) 55%, var(--paper));
  border-radius: 999px;
  padding: 0.15rem 0.5rem;
}
.demo-slider__drag::after { content: " \2194"; }
.baseline-demo[data-touched] .demo-slider__drag { display: none; }
@media (prefers-reduced-motion: no-preference) {
  .demo-slider__drag { animation: demoNudge 1.9s var(--ease) infinite; }
}
@keyframes demoNudge {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(4px); }
}

/* Range input, themed in both light and dark without leaving the token system. */
.demo-slider input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg,
    var(--yin-tint) 0%, var(--paper-3) 50%, var(--yang-tint) 100%);
  border: 1px solid var(--rule);
  cursor: pointer;
  padding: 0;
}
.demo-slider input[type="range"]:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 4px;
}
.demo-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--paper);
  box-shadow: var(--shadow-2);
  cursor: grab;
}
.demo-slider input[type="range"]::-webkit-slider-thumb:active { cursor: grabbing; }
.demo-slider input[type="range"]::-moz-range-thumb {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--paper);
  box-shadow: var(--shadow-2);
  cursor: grab;
}

/* ---- Scenario shortcuts ----------------------------------------------- */

.demo-scenarios {
  display: grid;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
}
@media (min-width: 34rem) {
  .demo-scenarios { grid-template-columns: repeat(3, 1fr); }
}
.demo-scenario {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: left;
  font: inherit;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink-soft);
  cursor: pointer;
  transition: border-color 0.18s var(--ease), color 0.18s var(--ease),
              background 0.18s var(--ease);
}
.demo-scenario:hover { border-color: var(--ink); color: var(--ink); }
.demo-scenario[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--paper-2);
  color: var(--ink);
}
.demo-scenario__num {
  font: 600 var(--step--1)/1 var(--mono);
  letter-spacing: 0.02em;
  color: var(--yang);
}
.demo-scenario__name { font-size: var(--step--2); line-height: 1.3; }

/* ---- Readout ---------------------------------------------------------- */

.demo-readout {
  border-top: 1px solid var(--rule);
  padding-top: var(--sp-4);
}
@media (min-width: 64rem) {
  .demo-readout {
    border-top: 0;
    border-left: 1px solid var(--rule);
    padding: 0 0 0 var(--sp-5);
  }
}

.demo-readout__label {
  font: 600 var(--step--2)/1 var(--sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: var(--sp-2);
}

.demo-value {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: var(--sp-3);
  font-variant-numeric: tabular-nums;
  transition: color 0.18s var(--ease);
}
.demo-value__num {
  font: 600 var(--step-5)/0.95 var(--mono);
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: color 0.18s var(--ease);
}
.demo-value__unit {
  font: 600 var(--step--1)/1 var(--mono);
  letter-spacing: 0.06em;
  color: var(--ink-faint);
}
.demo-value[data-state="alert"] .demo-value__num { color: var(--yang); }

.demo-verdict {
  font-family: var(--serif);
  font-size: var(--step-1);
  line-height: 1.3;
  letter-spacing: -0.012em;
  color: var(--ink);
  border-left: 2px solid var(--rule);
  padding-left: var(--sp-4);
  margin-bottom: var(--sp-5);
  min-height: 3.4em;
}
.demo-verdict[data-state="miss"]  { border-left-color: var(--yang); }
.demo-verdict[data-state="alarm"] { border-left-color: var(--yin); }
.demo-verdict[data-state="agree"] { border-left-color: var(--ink); }

.demo-verdicts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--sp-3);
}
.demo-vrow {
  display: grid;
  gap: 0.35rem;
  max-width: none;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--rule);
}
.demo-vrow:first-child { padding-top: 0; border-top: 0; }
.demo-vrow__who {
  display: block;
  font: 650 var(--step--1)/1.3 var(--sans);
  color: var(--ink);
}
.demo-vrow__ref {
  display: block;
  font: 500 var(--step--2)/1.4 var(--mono);
  letter-spacing: 0.02em;
  color: var(--ink-faint);
  text-transform: none;
}
.demo-vrow__delta {
  font-size: var(--step--2);
  line-height: 1.45;
  color: var(--ink-faint);
}

.demo-note {
  margin: var(--sp-4) 0 0;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--rule);
  font-size: var(--step--2);
  line-height: 1.5;
  color: var(--ink-faint);
}

.demo-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-self: start;
  font: 600 var(--step--2)/1.3 var(--sans);
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--rule);
  background: var(--paper);
  color: var(--ink-soft);
  transition: color 0.18s var(--ease), border-color 0.18s var(--ease),
              background 0.18s var(--ease);
}
.demo-chip::before {
  content: "";
  width: 0.6rem; height: 0.6rem;
  border-radius: 50%;
  background: currentColor;
  flex: none;
}
[data-state="within"] > .demo-chip {
  color: var(--yin);
  border-color: color-mix(in oklab, var(--yin) 40%, transparent);
  background: color-mix(in oklab, var(--yin-tint) 60%, var(--paper));
}
[data-state="departure"] > .demo-chip {
  color: var(--yang);
  border-color: color-mix(in oklab, var(--yang) 40%, transparent);
  background: color-mix(in oklab, var(--yang-tint) 60%, var(--paper));
}

/* ---- Diagram parts specific to the demo ------------------------------- */

.dg-reading {
  stroke: var(--ink);
  stroke-width: 1.5;
  stroke-dasharray: 4 4;
}
.dg-reading[data-state="alert"] { stroke: var(--yang); }
/* Lane rule per row, so the eye carries a label across to its band. */
.dg-lane { stroke: var(--rule); stroke-width: 1; opacity: 0.6; }
.dg-flag { fill: var(--ink); }
.dg-flag-text {
  fill: var(--paper);
  font: 600 13px var(--mono);
  letter-spacing: 0.02em;
}
[data-demo-flag][data-state="alert"] .dg-flag { fill: var(--yang); }
[data-demo-flag][data-state="alert"] .dg-flag-text { fill: var(--paper); }

.dg-delta { stroke: var(--yang); stroke-width: 1.25; }
.dg-delta-text { fill: var(--yang); font-weight: 600; }
[data-demo-delta] { transition: opacity 0.18s var(--ease); }
[data-demo-delta][data-state="within"] { opacity: 0; }

[data-demo-row][data-state="departure"] .dg-rowname { fill: var(--yang); }

/* The reading is direct manipulation: the dashed line, the three intersection
   dots, the value pill and the pill's label must all sit at the same x on the
   same frame. Position must never be transitioned here, because CSS can only
   animate some of these parts: `cx` on a circle and `x` on a rect are
   animatable geometry properties, but `x1`/`x2` on a line and `x` on a <text>
   are not. Easing position therefore pulls the figure apart while it moves —
   the dots lag the line they are supposed to intersect, and the pill leaves
   its label behind, stranding paper-coloured text on the paper background so
   the reading appears to vanish mid-drag. Only colour eases. */
.baseline-demo [data-demo-line],
.baseline-demo [data-demo-dot],
.baseline-demo [data-demo-flag] rect,
.baseline-demo [data-demo-flag] text { transition: none; }
@media (prefers-reduced-motion: no-preference) {
  .baseline-demo[data-active] [data-demo-dot] { transition: fill 0.18s var(--ease); }
  .baseline-demo[data-active] [data-demo-line] { transition: stroke 0.18s var(--ease); }
  .baseline-demo[data-active] [data-demo-flag] rect { transition: fill 0.18s var(--ease); }
}

/* --------------------------------------------------------------------------
   16. Reference list (evidence page)
   -------------------------------------------------------------------------- */

.reflist {
  list-style: none;
  counter-reset: ref;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--sp-5);
}
.reflist > li {
  counter-increment: ref;
  position: relative;
  padding-left: 3rem;
  padding-bottom: var(--sp-5);
  border-bottom: 1px solid var(--rule);
  max-width: 46rem;
}
.reflist > li:last-child { border-bottom: 0; padding-bottom: 0; }
.reflist > li::before {
  content: counter(ref, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.1rem;
  font: 600 var(--step--2)/1 var(--mono);
  color: var(--yang);
  letter-spacing: 0.06em;
}
.ref__title {
  font-family: var(--serif);
  font-size: var(--step-1);
  line-height: 1.25;
  letter-spacing: -0.012em;
  margin: 0 0 var(--sp-2);
}
.ref__meta { margin: 0 0 var(--sp-2); font-size: var(--step--1); color: var(--ink-soft); }
.ref__meta cite { font-style: italic; }
.ref__note { margin: 0; font-size: var(--step--1); color: var(--ink-faint); max-width: 40rem; }

/* DOI link on reference entries */
.ref__doi {
  font-family: var(--mono);
  font-size: var(--step--2);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Contact-form status message */
.honeypot { display: none; }
.form-status { border-left: 2px solid var(--rule); padding-left: var(--sp-4); }
.form-status[data-state="ok"]    { border-left-color: var(--yin); color: var(--ink); }
.form-status[data-state="error"] { border-left-color: var(--yang); color: var(--ink); }
.form-status[data-state="info"]  { border-left-color: var(--ink-faint); }
