/* ============================================================================
   InsightStorm — Public Marketing Landing
   Cinematic chapter-alternation (dark ↔ paper)
   ========================================================================== */

/* ───── L1 · PRIMITIVES ───────────────────────────────────────────── */
:root {
  --warm-0:  oklch(0.995 0.003 75);
  --warm-1:  oklch(0.98  0.004 75);
  --warm-2:  oklch(0.955 0.005 75);
  --warm-3:  oklch(0.92  0.006 75);
  --warm-4:  oklch(0.85  0.007 75);
  --warm-6:  oklch(0.58  0.009 75);
  --warm-7:  oklch(0.46  0.009 75);
  --warm-11: oklch(0.12  0.005 75);
  --warm-12: oklch(0.05  0.004 75);

  --night-0:  oklch(0.07 0.006 260);
  --night-1:  oklch(0.10 0.007 260);
  --night-2:  oklch(0.135 0.008 260);
  --night-3:  oklch(0.17 0.009 260);
  --night-4:  oklch(0.22 0.010 260);
  --night-ink:        oklch(0.985 0.003 75);
  --night-ink-muted:  oklch(0.78  0.005 75);
  --night-ink-soft:   oklch(0.60  0.006 75);
  --night-ink-faint:  oklch(0.42  0.006 75);
  --night-hairline:        color-mix(in oklab, white 8%, transparent);
  --night-hairline-strong: color-mix(in oklab, white 14%, transparent);

  --signal:      oklch(0.74 0.16 60);
  --signal-soft: oklch(0.92 0.06 60);
  --signal-deep: oklch(0.55 0.18 50);

  --cool:       oklch(0.78 0.13 230);
  --cool-soft:  oklch(0.88 0.07 230);

  --status-ok-fg:     oklch(0.62 0.16 152);
  --status-danger-fg: oklch(0.65 0.20 25);
  --status-info-fg:   oklch(0.72 0.14 230);

  --font-sans:  'IBM Plex Sans', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono:  'IBM Plex Mono', ui-monospace, 'SF Mono', monospace;
  --font-serif: 'IBM Plex Serif', 'Iowan Old Style', Georgia, serif;

  --t-micro: 10px; --lh-micro: 14px;
  --t-tiny:  12px; --lh-tiny:  16px;
  --t-small: 13px; --lh-small: 20px;
  --t-body:  14px; --lh-body:  22px;
  --t-lede:  17px; --lh-lede:  28px;
  --t-h4:    19px; --lh-h4:    26px;
  --t-h3:    24px; --lh-h3:    32px;

  /* responsive display scale — hero, atlas counter, section headings */
  --t-display-xl:   clamp(2.75rem, 6.6vw, 6rem);
  --t-display-lg:   clamp(2.25rem, 5.2vw, 4rem);
  --t-display-md:   clamp(24px, 2.6vw, 34px);
  --t-display-sm:   clamp(22px, 2.4vw, 30px);
  --t-display-huge: clamp(64px, 9vw, 132px);
  --t-hero-sub:     clamp(15px, 1.4vw, 18px);

  --r-sharp: 2px;
  --r-soft:  6px;
  --r-card:  12px;
  --r-card-lg: 16px;
  --r-pill:  999px;

  /* spacing scale — 4px base */
  --space-xxs: 4px;
  --space-xs:  8px;
  --space-sm:  12px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  32px;
  --space-2xl: 40px;
  --space-3xl: 48px;
  --space-4xl: 64px;
  --space-5xl: 96px;
  --space-6xl: 128px;

  /* breakpoint reference (CSS @media can't read custom props; mirrored for docs)
     640  — 1-col → 2-col card grids
     768  — tablet container padding (24 → 48)
     900  — nav menu reveal · bento 12-col · steps horizontal · atlas 2-col
     1024 — compare table desktop layout
     1100 — atlas 6-up breakdown
     1280 — max container width                                                  */

  --e-1: 0 1px 2px oklch(0 0 0 / 0.04), 0 1px 1px oklch(0 0 0 / 0.03);
  --e-2: 0 6px 18px -6px oklch(0 0 0 / 0.12), 0 2px 4px oklch(0 0 0 / 0.06);
  --e-3: 0 20px 50px -16px oklch(0 0 0 / 0.30), 0 6px 12px oklch(0 0 0 / 0.08);

  --measure-wide: 64ch;
  --measure-base: 56ch;

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-storm:  cubic-bezier(0.7, 0.05, 0.2, 1);
  --ease-emph:   cubic-bezier(0.16, 0.84, 0.24, 1);

  --nav-h: 62px;
  --anchor-offset: 70px;
}
@media (min-width: 768px) {
  :root { --nav-h: 70px; --anchor-offset: 76px; }
}

/* ───── L2 · SEMANTIC PAPER (default) ─────────────────────────────── */
.paper {
  color-scheme: light;

  --bg:           var(--warm-1);
  --bg-canvas:    var(--warm-0);
  --bg-raised:    var(--warm-0);
  --bg-sunken:    var(--warm-2);
  --bg-deep:      var(--warm-3);

  --fg:         var(--warm-12);
  --fg-muted:   var(--warm-7);
  --fg-soft:    var(--warm-6);
  --fg-faint:   var(--warm-4);

  --line:       color-mix(in oklch, var(--warm-12) 10%, transparent);
  --line-soft:  color-mix(in oklch, var(--warm-12) 6%, transparent);
  --line-strong:color-mix(in oklch, var(--warm-12) 18%, transparent);

  --accent:      var(--warm-12);
  --accent-fg:   var(--warm-0);

  --serif-display: var(--font-serif);
}

/* ───── ZONES · cinematic alternation ─────────────────────────────── */
.iz-zone {
  position: relative;
}

.iz-zone--dark {
  color-scheme: dark;

  --bg:           var(--night-0);
  --bg-canvas:    var(--night-1);
  --bg-raised:    var(--night-2);
  --bg-sunken:    var(--night-1);
  --bg-deep:      var(--night-3);

  --fg:         var(--night-ink);
  --fg-muted:   var(--night-ink-muted);
  --fg-soft:    var(--night-ink-soft);
  --fg-faint:   var(--night-ink-faint);

  --line:        var(--night-hairline);
  --line-soft:   color-mix(in oklab, white 4%, transparent);
  --line-strong: var(--night-hairline-strong);

  background: var(--night-0);
  color: var(--fg);
}

.iz-section--quiet {
  background: var(--warm-1);
}

/* ───── BASE ──────────────────────────────────────────────────────── */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  font-size: var(--t-body);
  line-height: var(--lh-body);
  background: var(--bg);
  color: var(--fg);
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--signal); color: var(--warm-12); }

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

.iz-code {
  font-family: var(--font-mono);
  font-size: 0.92em;
  background: var(--bg-sunken);
  padding: 1px 6px;
  border-radius: 3px;
  border: 1px solid var(--line-soft);
}

a { color: inherit; }

.skip {
  position: absolute;
  inset-inline-start: 8px;
  top: -40px;
  z-index: 100;
  padding: 8px 14px;
  background: var(--signal);
  color: var(--warm-12);
  text-decoration: none;
  border-radius: var(--r-soft);
  font-size: var(--t-small);
}
.skip:focus { top: 8px; }

.iz-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}
@media (min-width: 768px) { .iz-container { padding: 0 var(--space-3xl); } }

/* ───── DISPLAY TYPE — Fraunces editorial ─────────────────────────── */
.iz-display {
  margin: 0;
  font-family: var(--serif-display);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.02;
  color: var(--fg);
}
.iz-display em {
  font-style: italic;
  font-weight: 500;
  color: var(--signal);
}
.iz-display--xl {
  font-size: var(--t-display-xl);
  letter-spacing: -0.028em;
  line-height: 1.0;
}
.iz-display--lg {
  font-size: var(--t-display-lg);
  line-height: 1.05;
  max-width: 22ch;
}

.iz-display--xl[data-split] .iz-word {
  display: inline-block;
  white-space: nowrap;
}
.iz-display--xl[data-split] .iz-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.4em);
  filter: blur(6px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-emph),
    filter 0.9s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 22ms);
}
.iz-display--xl[data-split].iz-in .iz-char {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ───── NAV ───────────────────────────────────────────────────────── */
.iz-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: oklch(from var(--warm-1) l c h / 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
  color: var(--warm-12);
  transition: background 320ms var(--ease-out), color 320ms var(--ease-out), border-color 320ms var(--ease-out);
  isolation: isolate;
  transform: translateZ(0);
  will-change: background-color;
}

.iz-nav.is-dark {
  background: oklch(from var(--night-0) l c h / 0.78);
  color: var(--night-ink);
  border-bottom-color: var(--night-hairline);
}

.iz-nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  padding: 14px var(--space-lg);
}
@media (min-width: 768px) { .iz-nav__inner { padding: var(--space-md) var(--space-3xl); } }

.iz-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1;
  color: inherit;
  text-decoration: none;
  user-select: none;
}
.iz-wordmark__mark {
  display: inline-flex;
  width: 22px;
  height: 22px;
  color: var(--signal);
  animation: iz-spin 22s linear infinite;
}
.iz-wordmark__mark svg { width: 100%; height: 100%; }
.iz-wordmark__type { display: inline-flex; align-items: baseline; gap: 0; }
.iz-wordmark__accent { color: var(--signal); }

@keyframes iz-spin {
  to { transform: rotate(360deg); }
}

.iz-nav__menu {
  display: none;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0; padding: 0;
}
@media (min-width: 900px) { .iz-nav__menu { display: flex; } }
@media (min-width: 1100px) { .iz-nav__menu { gap: 28px; } }

.iz-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in oklab, currentColor 65%, transparent);
  padding: 6px 2px;
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}
.iz-nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s var(--ease-storm);
  box-shadow: 0 0 10px oklch(from var(--signal) l c h / 0.5);
}
.iz-nav-link:hover,
.iz-nav-link:focus-visible {
  color: currentColor;
  outline: none;
}
.iz-nav-link:hover::after,
.iz-nav-link:focus-visible::after,
.iz-nav-link.active::after { transform: scaleX(1); }
.iz-nav-link.active { color: currentColor; }

/* ───── BUTTONS ───────────────────────────────────────────────────── */
.iz-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-size: var(--t-body);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
  padding: 11px 18px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  background: transparent;
  color: inherit;
  transition:
    background 220ms var(--ease-out),
    color 220ms var(--ease-out),
    transform 220ms var(--ease-out),
    box-shadow 280ms var(--ease-out),
    border-color 220ms var(--ease-out);
}
.iz-btn:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
}
.iz-btn svg {
  width: 14px;
  height: 14px;
  transition: transform 250ms var(--ease-emph);
}
.iz-btn:hover svg { transform: translateX(2px); }

.iz-btn--lg { padding: 14px 22px; font-size: var(--t-lede); }
.iz-btn--lg svg { width: 16px; height: 16px; }

.iz-btn--primary {
  background: var(--signal);
  color: var(--warm-12);
  border-color: oklch(from var(--signal) l c h / 0.4);
}
.iz-btn--primary:hover {
  background: oklch(from var(--signal) calc(l + 0.04) c h);
}

.iz-cta-primary {
  box-shadow:
    inset 0 1px 0 oklch(from var(--signal) calc(l + 0.18) c h / 0.6),
    0 0 0 1px oklch(from var(--signal) l c h / 0.35),
    0 10px 30px -10px oklch(from var(--signal) l c h / 0.55),
    0 24px 60px -20px oklch(from var(--signal) l c h / 0.45);
}
.iz-cta-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    oklch(from var(--signal) calc(l + 0.08) c h / 0.25) 0%,
    transparent 45%,
    oklch(from var(--signal) calc(l - 0.08) c h / 0.25) 100%
  );
  pointer-events: none;
  opacity: 1;
}
.iz-cta-primary:hover {
  box-shadow:
    inset 0 1px 0 oklch(from var(--signal) calc(l + 0.18) c h / 0.7),
    0 0 0 1px oklch(from var(--signal) l c h / 0.55),
    0 16px 40px -12px oklch(from var(--signal) l c h / 0.7),
    0 32px 80px -24px oklch(from var(--signal) l c h / 0.55);
}

.iz-btn--ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--line);
}
.iz-btn--ghost:hover {
  background: var(--bg-sunken);
  border-color: var(--line-strong);
}
.iz-btn--ghost--dark {
  color: var(--night-ink);
  border-color: var(--night-hairline-strong);
}
.iz-btn--ghost--dark:hover {
  background: var(--night-2);
  border-color: var(--night-ink-faint);
}

.iz-magnetic { will-change: transform; }

/* ───── EYEBROW (mono catalog tag) ────────────────────────────────── */
.iz-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
  font-family: var(--font-mono);
  font-size: var(--t-tiny);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-soft);
}
.iz-eyebrow__num {
  color: var(--signal);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}
.iz-eyebrow__sep {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--line);
}
.iz-eyebrow--dark { color: var(--night-ink-soft); }

/* ───── BREATHE indicator ─────────────────────────────────────────── */
.iz-breathe {
  position: relative;
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: var(--r-pill);
  background: var(--signal);
  box-shadow: 0 0 12px oklch(from var(--signal) l c h / 0.7);
  animation: iz-breathe 2.4s ease-in-out infinite;
}
.iz-breathe--md { width: 8px; height: 8px; }
.iz-breathe::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid oklch(from var(--signal) l c h / 0.6);
  animation: iz-breathe-ring 2.4s ease-out infinite;
}
@keyframes iz-breathe {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}
@keyframes iz-breathe-ring {
  0%   { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ───── REVEAL ────────────────────────────────────────────────────── */
.iz-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.95s var(--ease-out),
    transform 0.95s var(--ease-emph);
}
.iz-reveal.iz-in {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════ */
.iz-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: calc(100vh - var(--nav-h));
  min-height: calc(100svh - var(--nav-h));
  padding: 0;
  display: flex;
  flex-direction: column;
}

.iz-hero__field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.iz-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, color-mix(in oklab, white 5%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in oklab, white 5%, transparent) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 35%, black 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 35%, black 0%, transparent 78%);
}

.iz-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.65;
  will-change: transform;
}
.iz-hero__glow--a {
  top: -10%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle at 50% 50%,
    oklch(from var(--signal) l c h / 0.45),
    transparent 70%);
  animation: iz-drift-a 22s ease-in-out infinite alternate;
}
.iz-hero__glow--b {
  bottom: -20%;
  left: -10%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle at 50% 50%,
    oklch(from var(--cool) l c h / 0.30),
    transparent 70%);
  animation: iz-drift-b 28s ease-in-out infinite alternate-reverse;
}
@keyframes iz-drift-a {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-4%, 6%) scale(1.08); }
}
@keyframes iz-drift-b {
  0%   { transform: translate(0, 0) scale(1.04); }
  100% { transform: translate(5%, -3%) scale(1); }
}

.iz-constellation {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--night-ink);
}

/* Cosmic Core */
.iz-radar-ring {
  stroke-width: 0.8px;
  pointer-events: none;
}

.iz-radar-tag {
  font-family: var(--font-mono);
  font-size: 7.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  user-select: none;
  pointer-events: none;
}

.iz-hero-core-ring {
  transform-origin: center;
  transform-box: fill-box;
}

.iz-hero-core-ring--1 {
  animation: iz-spin 25s linear infinite;
}

.iz-hero-core-ring--2 {
  animation: iz-spin 18s linear infinite;
}

.iz-hero-core-ring--3 {
  animation: iz-spin 12s linear infinite;
}

.iz-hero-core-ring--reverse {
  animation: iz-spin-reverse 22s linear infinite;
}

.iz-hero-core-glow {
  fill: url(#iz-node-glow);
  color: var(--signal);
  opacity: 0.65;
}

.iz-hero-core-pulse {
  transform-origin: center;
  transform-box: fill-box;
  animation: iz-hero-core-pulse-wave 3.2s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  stroke: var(--signal);
  stroke-opacity: 0.6;
}

@keyframes iz-hero-core-pulse-wave {
  0% { r: 30px; opacity: 0.9; stroke-width: 1.5px; }
  100% { r: 95px; opacity: 0; stroke-width: 0.5px; }
}

.iz-hero__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 52% 70% at 32% 52%,
      oklch(from var(--night-0) l c h / 0.92) 0%,
      oklch(from var(--night-0) l c h / 0.55) 40%,
      transparent 75%),
    linear-gradient(180deg,
      oklch(from var(--night-0) l c h / 0.4) 0%,
      transparent 18%,
      transparent 78%,
      oklch(from var(--night-0) l c h / 0.85) 100%);
}

.iz-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
@media (min-width: 768px) {
  .iz-hero__inner { padding: var(--space-2xl) var(--space-3xl) var(--space-xl); }
}

.iz-hero__title {
  max-width: 16ch;
  margin-bottom: 24px;
  color: var(--night-ink);
  line-height: 1;
  text-wrap: balance;
}

.iz-hero__sub {
  margin: 0 0 var(--space-lg);
  max-width: 56ch;
  font-size: var(--t-hero-sub);
  line-height: 1.55;
  color: var(--night-ink-muted);
  letter-spacing: -0.005em;
}

.iz-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.iz-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 36px;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--night-hairline);
  max-width: 720px;
}
@media (min-width: 640px) {
  .iz-hero__stats { grid-template-columns: repeat(4, 1fr); }
}
.iz-hero__stats > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.iz-hero__stats dt {
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--night-ink-soft);
  margin: 0;
}
.iz-hero__stats dd {
  margin: 0;
  font-family: var(--serif-display);
  font-size: var(--t-display-sm);
  font-weight: 500;
  color: var(--night-ink);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.015em;
  line-height: 1;
}

/* ───── TICKER (bottom of hero) ───────────────────────────────────── */
.iz-ticker {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px var(--space-lg);
  border-top: 1px solid var(--night-hairline);
  background: oklch(from var(--night-0) l c h / 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}
@media (min-width: 768px) {
  .iz-ticker { padding: var(--space-md) var(--space-3xl); }
}
.iz-ticker__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal);
  white-space: nowrap;
  flex-shrink: 0;
}
.iz-ticker__rail {
  position: relative;
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0, black 60px, black calc(100% - 60px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 60px, black calc(100% - 60px), transparent 100%);
}
.iz-ticker__stream {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--night-ink-muted);
  animation: iz-ticker-roll 50s linear infinite;
  will-change: transform;
}
@keyframes iz-ticker-roll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.iz-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.iz-ticker__name { color: var(--night-ink); }
.iz-ticker__sep  { color: var(--night-ink-faint); }
.iz-ticker__dec  { font-weight: 600; }
.iz-ticker__dec--accepted  { color: var(--status-ok-fg); }
.iz-ticker__dec--rejected  { color: var(--status-danger-fg); }
.iz-ticker__dec--analyzing { color: var(--signal); }
.iz-ticker__dec--discovered { color: var(--status-info-fg); }
.iz-ticker__note { color: var(--night-ink-faint); }

/* ═══════════════════════════════════════════════════════════════════
   SECTION SCAFFOLD
   ═══════════════════════════════════════════════════════════════════ */
.iz-section {
  position: relative;
  padding: var(--space-xl) 0 72px;
  scroll-margin-top: 0;
}
@media (min-width: 768px) {
  .iz-section { padding: 36px 0 var(--space-5xl); }
}

.iz-section__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: var(--space-xl);
  align-items: end;
}
@media (min-width: 900px) {
  .iz-section__head {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: var(--space-4xl);
  }
}

.iz-section__intro {
  margin: 0;
  max-width: 38ch;
  font-size: var(--t-lede);
  line-height: 1.55;
  color: var(--fg-muted);
}

/* ───── GRID HELPERS ──────────────────────────────────────────────── */
.iz-grid-3, .iz-grid-2 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.iz-grid-3 { grid-template-columns: 1fr; }
.iz-grid-2 { grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .iz-grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .iz-grid-3 { grid-template-columns: 1fr 1fr 1fr; } }

/* ───── CARD ──────────────────────────────────────────────────────── */
.iz-card {
  position: relative;
  border-radius: var(--r-card);
  border: 1px solid var(--line);
  background: var(--bg-raised);
}
.iz-card-hover {
  transition:
    box-shadow 320ms var(--ease-out),
    border-color 320ms var(--ease-out);
}
.iz-card-hover:hover {
  box-shadow: var(--e-3);
  border-color: var(--line-strong);
}

.iz-card__title {
  margin: 0;
  font-family: var(--serif-display);
  font-size: var(--t-h4);
  line-height: var(--lh-h4);
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--fg);
}
.iz-card__title--lg {
  font-size: var(--t-h3);
  line-height: var(--lh-h3);
}
.iz-card__body {
  margin: 0;
  font-size: var(--t-body);
  line-height: var(--lh-body);
  color: var(--fg-muted);
}

/* ═══════════════════════════════════════════════════════════════════
   001 — GAP
   ═══════════════════════════════════════════════════════════════════ */
.iz-gap-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: var(--space-xl);
}
@media (min-width: 768px) { .iz-gap-col { padding: var(--space-2xl); } }

.iz-gap-col__label {
  font-family: var(--font-mono);
  font-size: var(--t-tiny);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-soft);
}
.iz-gap-col__label--us { color: var(--signal); }

.iz-gap-col--us {
  background:
    linear-gradient(180deg, oklch(from var(--signal) l c h / 0.08) 0%, var(--bg-raised) 100%),
    var(--bg-raised);
  border-color: oklch(from var(--signal) l c h / 0.4);
  box-shadow:
    inset 0 1px 0 oklch(from var(--signal) l c h / 0.2),
    0 12px 40px -16px oklch(from var(--signal) l c h / 0.35);
}

/* ═══════════════════════════════════════════════════════════════════
   002 — BENTO
   ═══════════════════════════════════════════════════════════════════ */
.iz-bento {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .iz-bento {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 1fr;
  }
  .iz-bento__tile--lg { grid-column: span 7; }
  .iz-bento__tile--sm { grid-column: span 5; }
  .iz-bento__tile--lg + .iz-bento__tile--sm { grid-column: span 5; }
}
@media (min-width: 900px) {
  .iz-bento > .iz-bento__tile:nth-child(2) { grid-column: span 5; }
  .iz-bento > .iz-bento__tile:nth-child(3) { grid-column: span 4; }
  .iz-bento > .iz-bento__tile:nth-child(4) { grid-column: span 8; }
  .iz-bento > .iz-bento__tile:nth-child(5),
  .iz-bento > .iz-bento__tile:nth-child(6) { grid-column: span 6; }
}

.iz-bento__tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: var(--space-lg);
  overflow: hidden;
}
@media (min-width: 900px) { .iz-bento__tile { padding: 28px; } }
.iz-bento__tile::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(600px 200px at var(--mx, 50%) var(--my, 0%),
      oklch(from var(--signal) l c h / 0.10), transparent 60%);
  opacity: 0;
  transition: opacity 280ms var(--ease-out);
}
.iz-bento__tile:hover::after { opacity: 1; }

.iz-tile-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-card);
  color: var(--signal);
  background: oklch(from var(--signal) l c h / 0.10);
  border: 1px solid oklch(from var(--signal) l c h / 0.28);
}
.iz-tile-icon svg { width: 22px; height: 22px; }

.iz-tags {
  list-style: none;
  margin: auto 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.iz-tags li {
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1;
  padding: 6px 12px;
  border: 1px solid var(--line);
  background: var(--bg-canvas);
  border-radius: var(--r-pill);
  color: var(--fg);
  letter-spacing: 0.02em;
}

.iz-forms {
  list-style: none;
  margin: auto 0 0;
  padding: 12px 0 0;
  border-top: 1px dashed var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}
.iz-forms li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--fg);
}
.iz-forms__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 8px oklch(from var(--signal) l c h / 0.6);
}
.iz-forms li:nth-child(2) .iz-forms__dot { background: var(--cool); box-shadow: 0 0 8px oklch(from var(--cool) l c h / 0.6); }
.iz-forms li:nth-child(3) .iz-forms__dot { background: oklch(0.70 0.15 320); box-shadow: 0 0 8px oklch(0.70 0.15 320 / 0.6); }
.iz-forms li:nth-child(4) .iz-forms__dot { background: oklch(0.70 0.15 150); box-shadow: 0 0 8px oklch(0.70 0.15 150 / 0.6); }
.iz-forms li:nth-child(5) .iz-forms__dot { background: var(--warm-7); box-shadow: none; }

/* ═══════════════════════════════════════════════════════════════════
   003 — CORNELIUS terminal
   ═══════════════════════════════════════════════════════════════════ */
.iz-cornelius { overflow: hidden; }

.iz-terminal {
  border-radius: var(--r-card-lg);
  border: 1px solid var(--night-hairline-strong);
  background:
    linear-gradient(180deg, var(--night-2) 0%, var(--night-1) 100%);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 color-mix(in oklab, white 6%, transparent),
    0 30px 80px -20px oklch(0 0 0 / 0.6),
    0 0 0 1px var(--night-hairline);
}

.iz-terminal__head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--night-hairline);
  background: var(--night-1);
}
.iz-terminal__dots {
  display: inline-flex;
  gap: 6px;
}
.iz-terminal__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--night-3);
  border: 1px solid var(--night-hairline-strong);
}
.iz-terminal__dots span:nth-child(1) { background: oklch(0.55 0.18 25); }
.iz-terminal__dots span:nth-child(2) { background: oklch(0.74 0.16 80); }
.iz-terminal__dots span:nth-child(3) { background: oklch(0.62 0.16 152); }

.iz-terminal__path {
  flex: 1;
  font-size: 12px;
  color: var(--night-ink-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.iz-terminal__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--signal);
}

.iz-terminal__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--night-hairline);
  min-height: 320px;
}
@media (min-width: 768px) {
  .iz-terminal__body { grid-template-columns: 1.1fr 1.2fr 1fr; }
}

.iz-terminal__col {
  display: flex;
  flex-direction: column;
  background: var(--night-1);
  min-height: 300px;
}
.iz-terminal__col-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid var(--night-hairline);
  background: var(--night-2);
}
.iz-terminal__col-label {
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--night-ink-soft);
}
.iz-terminal__col-meta {
  font-size: 10px;
  color: var(--night-ink-faint);
  font-variant-numeric: tabular-nums;
}

.iz-terminal__col-list {
  list-style: none;
  margin: 0;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--night-ink-muted);
  flex: 1;
  overflow: hidden;
}
.iz-corn-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 8px;
  border-radius: var(--r-sharp);
  transition: background 240ms var(--ease-out), opacity 280ms var(--ease-out);
  animation: iz-corn-enter 420ms var(--ease-emph);
}
@keyframes iz-corn-enter {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.iz-corn-row--leave { opacity: 0; }
.iz-corn-row__ts { color: var(--night-ink-faint); font-size: 10px; flex-shrink: 0; }
.iz-corn-row__name { color: var(--night-ink); flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.iz-corn-row__tag {
  font-size: 9px;
  letter-spacing: 0.12em;
  padding: 2px 6px;
  border-radius: var(--r-pill);
  background: var(--night-2);
  border: 1px solid var(--night-hairline);
  color: var(--night-ink-soft);
  text-transform: uppercase;
  flex-shrink: 0;
}
.iz-corn-row--rejected .iz-corn-row__name {
  color: var(--night-ink-faint);
  text-decoration: line-through;
}

.iz-terminal__col-list--scoring .iz-corn-row {
  flex-wrap: wrap;
  gap: 4px 10px;
  padding: 6px 8px;
}
.iz-corn-score {
  flex: 1 0 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.iz-corn-score__bar {
  flex: 1;
  height: 4px;
  border-radius: var(--r-pill);
  background: var(--night-3);
  overflow: hidden;
  position: relative;
}
.iz-corn-score__fill {
  position: absolute;
  inset: 0;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--signal-deep), var(--signal));
  box-shadow: 0 0 12px oklch(from var(--signal) l c h / 0.5);
  transition: width 1.2s var(--ease-storm);
}
.iz-corn-score__num {
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  color: var(--signal);
  width: 36px;
  text-align: right;
}

.iz-corn-row--approved {
  background: oklch(from var(--signal) l c h / 0.08);
  border: 1px solid oklch(from var(--signal) l c h / 0.25);
  padding: 6px 10px;
}
.iz-corn-row--approved .iz-corn-row__name {
  color: var(--signal);
}
.iz-corn-row--approved .iz-corn-row__tag {
  background: oklch(from var(--signal) l c h / 0.15);
  border-color: oklch(from var(--signal) l c h / 0.4);
  color: var(--signal);
}

.iz-terminal__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 18px;
  border-top: 1px solid var(--night-hairline);
  background: var(--night-1);
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--night-ink-faint);
  font-variant-numeric: tabular-nums;
}

/* ═══════════════════════════════════════════════════════════════════
   004 — STEPS
   ═══════════════════════════════════════════════════════════════════ */
.iz-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .iz-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.iz-steps__line {
  display: none;
  position: absolute;
  left: 6%;
  right: 6%;
  top: 26px;
  height: 4px;
  color: var(--line);
  pointer-events: none;
}
@media (min-width: 900px) { .iz-steps__line { display: block; } }
.iz-steps__line line {
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 1.8s var(--ease-storm);
}
.iz-steps.iz-in .iz-steps__line line { stroke-dashoffset: 0; }

.iz-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.iz-step__head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.iz-step__num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg);
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: var(--t-body);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  border: 1px solid oklch(from var(--signal) l c h / 0.4);
  box-shadow:
    0 0 0 6px var(--bg),
    inset 0 0 0 1px oklch(from var(--signal) l c h / 0.1),
    0 0 24px -4px oklch(from var(--signal) l c h / 0.45);
}
.iz-step__icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-soft);
  background: var(--bg-sunken);
  color: var(--fg-soft);
}
.iz-step__icon svg { width: 18px; height: 18px; }

/* ═══════════════════════════════════════════════════════════════════
   005 — ATLAS
   ═══════════════════════════════════════════════════════════════════ */
.iz-atlas { overflow: hidden; }

.iz-atlas__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 40px;
}
@media (min-width: 900px) {
  .iz-atlas__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    gap: 48px;
  }
}

.iz-atlas__counter {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.iz-atlas__counter-num {
  font-family: var(--serif-display);
  font-size: var(--t-display-huge);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--signal);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 80px oklch(from var(--signal) l c h / 0.45);
}

.iz-atlas__counter-label {
  font-family: var(--font-mono);
  font-size: var(--t-tiny);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--night-ink-soft);
  max-width: 30ch;
}

.iz-atlas__rings {
  position: absolute;
  inset: -40px -40px auto auto;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 280px;
  height: 280px;
  pointer-events: none;
  z-index: -1;
}
.iz-atlas__rings li {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid oklch(from var(--signal) l c h / 0.18);
  animation: iz-ring 6s linear infinite;
}
.iz-atlas__rings li:nth-child(2) { animation-delay: -2s; }
.iz-atlas__rings li:nth-child(3) { animation-delay: -4s; }
@keyframes iz-ring {
  0%   { transform: scale(0.3); opacity: 0; }
  20%  { opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

.iz-atlas__map {
  position: relative;
  border-radius: var(--r-card-lg);
  border: 1px solid var(--night-hairline);
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, oklch(from var(--signal) l c h / 0.06), transparent 70%),
    var(--night-1);
  overflow: hidden;
  aspect-ratio: 1000 / 507;
}
.iz-atlas__map svg {
  width: 100%;
  height: 100%;
  display: block;
}
.iz-atlas__continents {
  color: var(--night-ink);
}
.iz-atlas__continents path {
  transition: opacity 0.6s var(--ease-out);
}

.iz-atlas__callouts {
  pointer-events: none;
}
.iz-atlas__callout-line {
  stroke: var(--signal);
  stroke-opacity: 0.5;
  stroke-width: 0.7;
  stroke-dasharray: 2 3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.iz-atlas__callout-text {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  fill: var(--night-ink-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}
.iz-atlas__callout-num {
  fill: var(--signal);
  font-weight: 600;
}
.iz-atlas__beacons circle.iz-beacon-glow {
  fill: var(--signal);
  fill-opacity: 0.12;
  animation: iz-beacon-pulse 4.2s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
}
.iz-atlas__beacons circle.iz-beacon-core {
  fill: var(--signal);
  filter: drop-shadow(0 0 4px oklch(from var(--signal) l c h / 0.8));
}
@keyframes iz-beacon-pulse {
  0%   { transform: scale(0.8); opacity: 0.85; }
  100% { transform: scale(7.5); opacity: 0; }
}

.iz-atlas__breakdown {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .iz-atlas__breakdown { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .iz-atlas__breakdown { grid-template-columns: repeat(6, 1fr); } }

.iz-atlas__breakdown li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid var(--night-hairline);
  border-radius: var(--r-card);
  background: var(--night-1);
  transition: border-color 280ms var(--ease-out), background 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
}
.iz-atlas__breakdown li:hover {
  border-color: oklch(from var(--signal) l c h / 0.5);
  background: var(--night-2);
  box-shadow: 0 6px 20px -6px oklch(from var(--signal) l c h / 0.28);
}
.iz-atlas__type {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--night-ink-soft);
}
.iz-atlas__count {
  font-family: var(--serif-display);
  font-size: var(--t-display-md);
  font-weight: 400;
  line-height: 1;
  color: var(--night-ink);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.iz-atlas__sub {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--night-ink-faint);
}

.iz-trust-strip {
  list-style: none;
  margin: 0;
  padding: 18px 0;
  border-top: 1px solid var(--night-hairline);
  border-bottom: 1px solid var(--night-hairline);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px 32px;
}
.iz-trust-strip li {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--night-ink-soft);
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════════
   006 — COMPARE
   ═══════════════════════════════════════════════════════════════════ */
.iz-compare-wrap { overflow: hidden; padding: 0; }

.iz-compare {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  text-align: start;
}
.iz-compare thead tr {
  background: var(--bg-sunken);
}
.iz-compare th {
  padding: 16px 20px;
  text-align: start;
  vertical-align: bottom;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 500;
  color: var(--fg-soft);
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.iz-compare__us-head {
  color: var(--signal) !important;
  font-weight: 700 !important;
  background: oklch(from var(--signal) l c h / 0.06);
  position: relative;
}
.iz-compare__us-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, oklch(from var(--signal) l c h / 0.10), transparent);
  pointer-events: none;
}

.iz-compare tbody tr {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.6s var(--ease-out),
    transform 0.6s var(--ease-emph),
    background-color 0.2s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.iz-compare.iz-in tbody tr {
  opacity: 1;
  transform: translateY(0);
}
.iz-compare tbody tr:hover { background: var(--bg-sunken); }

.iz-compare tbody th {
  text-align: start;
  vertical-align: top;
  padding: 14px 20px;
  font-family: var(--serif-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.3;
  color: var(--fg);
  border-bottom: 1px solid var(--line-soft);
}
.iz-compare tbody td {
  padding: 14px 20px;
  vertical-align: top;
  font-family: var(--font-sans);
  font-size: var(--t-body);
  line-height: 1.45;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--line-soft);
}
.iz-compare__us {
  color: var(--fg) !important;
  font-weight: 600 !important;
  background: oklch(from var(--signal) l c h / 0.06);
  border-inline: 1px solid oklch(from var(--signal) l c h / 0.22);
  position: relative;
}
.iz-compare__us::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--signal), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.iz-compare.iz-in .iz-compare__us::before { opacity: 1; }
.iz-compare tbody tr:last-child th,
.iz-compare tbody tr:last-child td { border-bottom: none; }

@media (max-width: 1023px) {
  .iz-compare-wrap { padding: 16px; }
  .iz-compare,
  .iz-compare thead,
  .iz-compare tbody,
  .iz-compare tr,
  .iz-compare th,
  .iz-compare td { display: block; }
  .iz-compare thead { display: none; }
  .iz-compare colgroup { display: none; }
  .iz-compare tbody tr {
    margin-bottom: 16px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--r-card);
    background: var(--bg-raised);
  }
  .iz-compare tbody tr:hover { background: var(--bg-raised); }
  .iz-compare tbody th {
    padding: 0 0 14px;
    border-bottom: 1px solid var(--line-soft);
    margin-bottom: 14px;
    font-size: var(--t-h4);
  }
  .iz-compare tbody td {
    padding: 8px 0;
    border: none;
    position: relative;
    padding-inline-start: 140px;
    font-size: var(--t-small);
  }
  .iz-compare tbody td::before {
    content: attr(data-vendor);
    position: absolute;
    inset-inline-start: 0;
    top: 8px;
    font-family: var(--font-mono);
    font-size: var(--t-micro);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fg-soft);
  }
  .iz-compare__us {
    background: oklch(from var(--signal) l c h / 0.08);
    border: none;
    padding: 10px 12px;
    padding-inline-start: 140px;
    border-radius: var(--r-soft);
    margin: 4px 0;
  }
  .iz-compare__us::before { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   007 — USE CASES
   ═══════════════════════════════════════════════════════════════════ */
.iz-uc {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 36px;
  overflow: hidden;
}
.iz-uc__num {
  position: absolute;
  top: 28px;
  right: 32px;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--signal);
  opacity: 0.7;
}
.iz-uc::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--signal) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}
.iz-uc:hover::before { opacity: 1; }

/* ═══════════════════════════════════════════════════════════════════
   008 — FINAL CTA
   ═══════════════════════════════════════════════════════════════════ */
.iz-cta-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: var(--space-6xl) 0 144px;
  text-align: center;
}
@media (min-width: 768px) {
  .iz-cta-section { padding: 168px 0 192px; }
}

.iz-cta-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.iz-cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, color-mix(in oklab, white 5%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in oklab, white 5%, transparent) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 0%, transparent 80%);
}
.iz-cta-glow {
  position: absolute;
  left: 50%;
  bottom: -20%;
  width: 80vw;
  height: 80vw;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%,
    oklch(from var(--signal) l c h / 0.35),
    transparent 65%);
  filter: blur(80px);
  transform: translateX(-50%);
  animation: iz-cta-pulse 8s ease-in-out infinite;
}
@keyframes iz-cta-pulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  50%      { opacity: 0.9; transform: translateX(-50%) scale(1.1); }
}

.iz-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.iz-cta-inner .iz-eyebrow {
  justify-content: center;
}
.iz-cta-inner .iz-display {
  text-align: center;
  max-width: 18ch;
  color: var(--night-ink);
}
.iz-cta__body {
  max-width: 52ch;
  margin: 36px auto 48px;
  font-size: var(--t-lede);
  line-height: 1.55;
  color: var(--night-ink-muted);
  text-align: center;
}
.iz-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */
.iz-footer {
  border-top: 1px solid var(--night-hairline);
  padding: 56px 0 var(--space-4xl);
  color: var(--night-ink-soft);
  background: var(--night-0);
}
.iz-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .iz-footer__inner { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.iz-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.iz-footer__tagline {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--night-ink-faint);
}
.iz-footer__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--night-ink-soft);
}
@media (min-width: 768px) {
  .iz-footer__meta { align-items: flex-end; }
}
.iz-footer__meta p { margin: 0; }

/* ═══════════════════════════════════════════════════════════════════
   BACK TO TOP
   ═══════════════════════════════════════════════════════════════════ */
.iz-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--night-1);
  color: var(--night-ink);
  border: 1px solid var(--night-hairline-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 10px, 0) scale(0.92);
  box-shadow: 0 12px 30px -10px oklch(0 0 0 / 0.5);
  isolation: isolate;
  will-change: opacity, transform;
  transition:
    opacity 0.32s var(--ease-out),
    transform 0.36s var(--ease-emph),
    background 0.22s var(--ease-out),
    color 0.22s var(--ease-out),
    border-color 0.22s var(--ease-out);
}
.iz-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}
.iz-to-top:hover {
  background: var(--signal);
  color: var(--warm-12);
  border-color: var(--signal);
}
.iz-to-top:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
}
.iz-to-top svg { width: 18px; height: 18px; }
@media (min-width: 768px) {
  .iz-to-top { right: 32px; bottom: 32px; width: 48px; height: 48px; }
  .iz-to-top svg { width: 20px; height: 20px; }
}

/* ═══════════════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .iz-hero__glow,
  .iz-hero__glow--a,
  .iz-hero__glow--b,
  .iz-breathe,
  .iz-breathe::after,
  .iz-wordmark__mark,
  .iz-cta-glow,
  .iz-atlas__rings li,
  .iz-atlas__beacons circle,
  .iz-constellation__nodes .iz-node--active,
  .iz-constellation__lines line.is-active,
  .iz-ticker__stream { animation: none !important; }
  .iz-reveal,
  .iz-display--xl[data-split] .iz-char {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
  .iz-cta-primary:hover,
  .iz-card-hover:hover { transform: none; }
  .iz-steps__line line { stroke-dashoffset: 0 !important; }
}

/* ============================================================================
   005 — GOLDEN RECORD ENGINE STYLING
   ========================================================================== */
.iz-golden-section {
  background: var(--night-0);
  border-top: 1px solid var(--night-hairline);
  padding: 80px 0;
}

.iz-golden-workspace {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}
@media (min-width: 1100px) {
  .iz-golden-workspace {
    grid-template-columns: 1fr 1.1fr 1.2fr;
  }
  .iz-golden-panel {
    height: 575px;
  }
}

.iz-golden-panel {
  display: flex;
  flex-direction: column;
  background: var(--night-1);
  border: 1px solid var(--night-hairline);
  border-radius: var(--r-card-lg);
  overflow: hidden;
  box-shadow: var(--e-2);
}

.iz-golden-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--night-hairline);
  background: var(--night-2);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--night-ink-soft);
}

.iz-golden-badge {
  font-size: 10px;
  letter-spacing: 0.10em;
  padding: 2px 8px;
  border-radius: var(--r-pill);
  background: var(--night-3);
  border: 1px solid var(--night-hairline-strong);
  color: var(--night-ink-soft);
}
.iz-golden-badge--gold {
  background: oklch(from var(--signal) l c h / 0.15);
  border-color: oklch(from var(--signal) l c h / 0.4);
  color: var(--signal);
}

/* Claims Col */
.iz-golden-claims-list {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.iz-claim-card {
  padding: 14px 16px;
  border: 1px solid var(--night-hairline-strong);
  border-radius: var(--r-card);
  background: var(--night-2);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-emph), border-color 0.3s var(--ease-out);
  position: relative;
}
.iz-claim-card.active {
  border-color: var(--night-hairline-strong);
  opacity: 1;
}
.iz-claim-card.dimmed {
  opacity: 0.35;
  transform: scale(0.97);
  border-color: transparent;
}
.iz-claim-card.picked {
  border-color: oklch(from var(--signal) l c h / 0.7);
  box-shadow: 0 0 15px oklch(from var(--signal) l c h / 0.15);
  transform: scale(1.02);
}

.iz-claim-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.iz-claim-source {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--night-ink-soft);
}
.iz-claim-time {
  font-size: 9px;
  color: var(--night-ink-faint);
}

.iz-claim-text {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--night-ink-muted);
}
.iz-claim-text .iz-highlight {
  color: var(--night-ink);
  font-weight: 500;
}

.iz-prop-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  background: var(--night-3);
  border: 1px solid var(--night-hairline);
  border-radius: var(--r-soft);
  padding: 1px 6px;
  color: var(--signal);
}

.iz-claim-metrics {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  color: var(--night-ink-faint);
  border-top: 1px dashed var(--night-hairline);
  padding-top: 8px;
}

/* Engine Col */
.iz-engine-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.iz-engine-instruction {
  margin: 0;
  font-size: 12px;
  color: var(--night-ink-muted);
}

.iz-rule-selectors {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.iz-rule-btn {
  background: var(--night-2);
  border: 1px solid var(--night-hairline-strong);
  border-radius: var(--r-card);
  padding: 10px 14px;
 text-align: left;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
}
.iz-rule-btn:hover {
  background: var(--night-3);
  border-color: var(--night-ink-soft);
}
.iz-rule-btn.active {
  background: oklch(from var(--signal) l c h / 0.04);
  border-color: oklch(from var(--signal) l c h / 0.5);
  box-shadow: 0 4px 12px -4px oklch(from var(--signal) l c h / 0.15);
}

.iz-rule-btn-title {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--night-ink-muted);
  margin-bottom: 2px;
  transition: color 0.2s;
}
.iz-rule-btn.active .iz-rule-btn-title {
  color: var(--signal);
}
.iz-rule-btn-desc {
  font-size: 10px;
  color: var(--night-ink-faint);
  line-height: 1.3;
}

/* Chamber */
.iz-chamber {
  flex: 1;
  min-height: 260px;
  background: var(--night-2);
  border: 1px solid var(--night-hairline);
  border-radius: var(--r-card-lg);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 10px;
}

.iz-chamber-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--night-hairline-strong) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.5;
}

.iz-chamber-core {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--night-1);
  border: 2px solid var(--night-hairline-strong);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all 0.4s var(--ease-emph);
}
.iz-chamber-core.resolving {
  border-color: var(--signal);
  transform: scale(1.18);
  box-shadow:
    0 0 40px oklch(from var(--signal) l c h / 0.45),
    inset 0 0 15px oklch(from var(--signal) l c h / 0.2);
}

.iz-core-text {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--night-ink-soft);
  z-index: 2;
  transition: color 0.4s;
  text-align: center;
  padding: 0 4px;
}
.iz-chamber-core.resolving .iz-core-text {
  color: var(--signal);
  text-shadow: 0 0 8px oklch(from var(--signal) l c h / 0.5);
}

.iz-core-glow {
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  background: radial-gradient(circle, oklch(from var(--signal) l c h / 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.iz-chamber-core.resolving .iz-core-glow {
  opacity: 1;
}

.iz-core-pulse {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1px solid oklch(from var(--signal) l c h / 0.5);
  opacity: 0;
}
.iz-chamber-core.resolving .iz-core-pulse {
  animation: iz-core-ripple 1.5s ease-out infinite;
}

.iz-core-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed var(--night-hairline-strong);
  animation: iz-spin 12s linear infinite;
}
.iz-core-ring--reverse {
  inset: -12px !important;
  border-style: dotted !important;
  border-color: var(--night-hairline-strong) !important;
  animation: iz-spin-reverse 16s linear infinite !important;
  opacity: 0.5;
}
.iz-chamber-core.resolving .iz-core-ring {
  border-color: oklch(from var(--signal) l c h / 0.3);
}
.iz-chamber-core.resolving .iz-core-ring--reverse {
  border-color: oklch(from var(--signal) l c h / 0.2) !important;
}

@keyframes iz-spin-reverse {
  to { transform: rotate(-360deg); }
}

@keyframes iz-core-ripple {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* Golden Col */
.iz-golden-result {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.iz-golden-card {
  padding: 16px;
  background: linear-gradient(135deg, oklch(from var(--signal) l c h / 0.05) 0%, var(--night-2) 100%);
  border: 1px solid oklch(from var(--signal) l c h / 0.25);
  border-radius: var(--r-card-lg);
  box-shadow: 0 8px 32px -12px oklch(from var(--signal) l c h / 0.25);
}

.iz-golden-card--center {
  border-color: oklch(from var(--signal) l c h / 0.45) !important;
  box-shadow:
    0 12px 35px -15px oklch(from var(--signal) l c h / 0.35),
    inset 0 1px 0 oklch(from var(--signal) l c h / 0.2) !important;
  background: linear-gradient(180deg, oklch(from var(--signal) l c h / 0.04) 0%, var(--night-2) 100%) !important;
  transition: box-shadow 0.6s var(--ease-out), border-color 0.6s var(--ease-out), transform 0.6s var(--ease-emph);
  min-height: 215px;
}

.iz-golden-card--center.pulse-glow {
  border-color: var(--signal) !important;
  box-shadow:
    0 16px 50px -10px oklch(from var(--signal) l c h / 0.6),
    inset 0 1px 0 oklch(from var(--signal) l c h / 0.3) !important;
  transform: scale(1.025);
}

.iz-golden-card-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.iz-golden-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--signal);
  color: var(--warm-12);
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px oklch(from var(--signal) l c h / 0.4);
}

.iz-golden-card-name {
  margin: 0;
  font-family: var(--serif-display);
  font-size: 16px;
  color: var(--night-ink);
}

.iz-golden-card-type {
  font-size: 9px;
  color: var(--signal);
  letter-spacing: 0.1em;
}

.iz-golden-props {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.iz-gold-prop-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 12px;
  background: var(--night-1);
  border: 1px solid var(--night-hairline);
  border-radius: var(--r-soft);
  opacity: 0.12;
  transform: translateX(12px) scale(0.97);
  transition:
    opacity 0.6s var(--ease-out),
    transform 0.6s var(--ease-emph),
    border-color 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out),
    background-color 0.4s var(--ease-out);
  pointer-events: none;
}
.iz-gold-prop-row.resolved-animate {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
  border-color: var(--night-hairline-strong);
}
.iz-gold-prop-row.highlighted {
  border-color: oklch(from var(--signal) l c h / 0.6) !important;
  background: oklch(from var(--signal) l c h / 0.06) !important;
  box-shadow:
    0 0 15px oklch(from var(--signal) l c h / 0.2),
    inset 0 0 5px oklch(from var(--signal) l c h / 0.1);
  transform: scale(1.03);
}

.iz-gold-prop-row dt {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--night-ink-soft);
  text-transform: uppercase;
}

.iz-gold-prop-row dd {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.iz-gold-val {
  font-size: 13px;
  font-weight: 500;
  color: var(--night-ink);
}

.iz-gold-lineage {
  font-size: 10px;
  color: var(--night-ink-faint);
  background: var(--night-3);
  padding: 1px 6px;
  border-radius: 3px;
  border: 1px solid var(--night-hairline);
}

/* Node graph viewport */
.iz-graph-container {
  border-radius: var(--r-card);
  border: 1px solid var(--night-hairline);
  background: var(--night-2);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.iz-graph-title {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--night-ink-faint);
}

.iz-graph-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 320 / 200;
  background: var(--night-1);
  border-radius: var(--r-soft);
  overflow: hidden;
  border: 1px solid var(--night-hairline-strong);
}

.iz-graph-svg {
  width: 100%;
  height: 100%;
}

.iz-graph-node {
  cursor: pointer;
}

.iz-graph-node circle {
  stroke-width: 1.5;
  transition: r 0.25s var(--ease-out), stroke-width 0.25s var(--ease-out), filter 0.25s var(--ease-out);
}

.iz-graph-node:hover circle {
  r: 8.5px;
  stroke-width: 2.2px;
}

.iz-graph-node.canonical:hover circle {
  r: 13px;
}

.iz-graph-node.canonical circle {
  fill: var(--night-1);
  stroke: var(--signal);
  filter: drop-shadow(0 0 6px oklch(from var(--signal) l c h / 0.7));
}

.iz-graph-node.source circle {
  fill: var(--night-3);
  stroke: var(--night-ink-soft);
}

.iz-graph-node.statement circle {
  fill: var(--night-2);
  stroke: var(--cool);
}

.iz-graph-node.active-statement circle {
  stroke: var(--signal);
  fill: oklch(from var(--signal) l c h / 0.1);
  filter: drop-shadow(0 0 5px oklch(from var(--signal) l c h / 0.5));
}

.iz-graph-node.inactive-statement circle {
  opacity: 0.4;
  stroke: var(--night-hairline-strong);
}

.iz-graph-node text {
  font-family: var(--font-mono);
  font-size: 7px;
  fill: var(--night-ink-muted);
  user-select: none;
  pointer-events: none;
}

.iz-graph-edge {
  stroke: var(--night-hairline-strong);
  stroke-width: 1;
  stroke-dasharray: 2 2;
  transition: all 0.3s;
}

.iz-graph-edge.active {
  stroke: var(--signal);
  stroke-width: 1.2;
  stroke-dasharray: none;
}

.iz-graph-edge.inactive {
  opacity: 0.15;
}

.iz-graph-tooltip {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  background: oklch(from var(--night-1) l c h / 0.9);
  border: 1px solid var(--night-hairline);
  padding: 6px 10px;
  border-radius: var(--r-soft);
  font-size: 10px;
  color: var(--night-ink-muted);
  line-height: 1.3;
  text-align: center;
  backdrop-filter: blur(4px);
  pointer-events: none;
  transition: opacity 0.2s;
}

/* ============================================================================
   008 — ANALYST WORKSPACES STYLING
   ========================================================================== */
.iz-workspaces-section {
  background: var(--warm-1);
  border-top: 1px solid var(--line-soft);
}

.iz-workspace-console {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}
@media (min-width: 900px) {
  .iz-workspace-console {
    grid-template-columns: 280px 1fr;
    gap: 32px;
  }
}

.iz-console-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.iz-sidebar-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--warm-0);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  cursor: pointer;
  text-align: left;
  transition: all 0.28s var(--ease-out);
}
.iz-sidebar-tab:hover {
  border-color: var(--line-strong);
  box-shadow: var(--e-1);
}
.iz-sidebar-tab.active {
  background: var(--warm-0);
  border-color: var(--signal);
  box-shadow:
    0 12px 30px -15px oklch(from var(--signal) l c h / 0.2),
    inset 0 1px 0 white;
}

.iz-sidebar-tab-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  color: var(--fg-soft);
  transition: color 0.2s;
  flex-shrink: 0;
}
.iz-sidebar-tab-icon svg {
  width: 100%;
  height: 100%;
}
.iz-sidebar-tab:hover .iz-sidebar-tab-icon {
  color: var(--fg-muted);
}
.iz-sidebar-tab.active .iz-sidebar-tab-icon {
  color: var(--signal);
}

.iz-sidebar-tab-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.iz-sidebar-tab-title {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}
.iz-sidebar-tab.active .iz-sidebar-tab-title {
  color: var(--signal);
}

.iz-sidebar-tab-sub {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--fg-soft);
}

.iz-console-main {
  background: var(--warm-0);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-card-lg);
  box-shadow: var(--e-2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.iz-console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line-strong);
  background: var(--warm-2);
}

.iz-console-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.iz-console-title {
  margin: 0;
  font-family: var(--serif-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
}

.iz-console-badge {
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  background: var(--warm-1);
  border: 1px solid var(--line);
  color: var(--fg-muted);
}

.iz-console-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
@media (min-width: 1024px) {
  .iz-console-grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

.iz-console-card {
  display: flex;
  flex-direction: column;
  background: var(--warm-0);
  min-height: 280px;
  max-height: 340px;
}

.iz-console-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--warm-2);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-soft);
}

.iz-code-lang {
  color: var(--signal);
  font-weight: 600;
}

.iz-console-code-wrap {
  flex: 1;
  padding: 16px;
  overflow: auto;
  background: var(--warm-1);
}

.iz-console-code {
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.5;
  color: var(--fg-muted);
  white-space: pre-wrap;
  margin: 0;
}

.iz-status-glow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--status-ok-fg);
  font-weight: 600;
}
.iz-status-glow::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--status-ok-fg);
  box-shadow: 0 0 8px var(--status-ok-fg);
  animation: iz-breathe 1.5s ease-in-out infinite;
}

.iz-console-stream-list {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
}

.iz-console-stream-item {
  padding: 10px 12px;
  border-radius: var(--r-soft);
  background: var(--warm-1);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
  animation: iz-corn-enter 0.4s var(--ease-emph);
}

.iz-console-stream-item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  color: var(--fg-soft);
}

.iz-console-stream-item-title {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.35;
}

.iz-console-stream-item-entities {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.iz-console-stream-item-entities span {
  font-family: var(--font-mono);
  font-size: 9px;
  background: var(--warm-2);
  border: 1px solid var(--line);
  padding: 1px 6px;
  border-radius: 3px;
  color: var(--fg-muted);
}

/* Case studies lower drawer */
.iz-console-case-studies {
  padding: 24px;
  background: var(--warm-2);
}

.iz-case-section-title {
  margin: 0 0 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-soft);
}

.iz-case-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .iz-case-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.iz-case-card {
  padding: 20px;
  background: var(--warm-0);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--e-1);
  transition: all 0.3s var(--ease-out);
}
.iz-case-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--e-2);
}

.iz-case-card-title {
  margin: 0 0 10px;
  font-family: var(--serif-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
}

.iz-case-card-body {
  margin: 0 0 14px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--fg-muted);
}

.iz-case-card-specs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px dashed var(--line);
  padding-top: 12px;
}

.iz-case-spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  line-height: 1.3;
}
.iz-case-spec-label {
  font-family: var(--font-mono);
  color: var(--fg-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.iz-case-spec-val {
  color: var(--fg-muted);
  font-weight: 500;
}
.iz-case-spec-val--impact {
  color: var(--signal);
  font-weight: 600;
}
}