/* Legally Brief: Illinois — "Velvet Chamber" — April 19, 2026 */

:root {
  --bg-primary: #0b0612;
  --bg-secondary: #120a1c;
  --bg-surface: rgba(244, 232, 210, 0.045);
  --bg-elevated: #181026;
  --text-primary: #f3ebe2;
  --text-secondary: #c9bdb0;
  --text-muted: #7d6f7f;
  --accent-red: #ff5c7a;
  --accent-red-dim: rgba(255, 92, 122, 0.14);
  --accent-green: #5fe0a4;
  --accent-green-dim: rgba(95, 224, 164, 0.12);
  --accent-gold: #d4a857;
  --accent-gold-dim: rgba(212, 168, 87, 0.16);
  --accent-blue: #7eb7ff;
  --accent-blue-dim: rgba(126, 183, 255, 0.12);
  --glass: rgba(18, 10, 28, 0.82);
  --glass-border: rgba(212, 168, 87, 0.22);
  --glass-highlight: rgba(212, 168, 87, 0.48);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  padding-top: calc(46px + env(safe-area-inset-top));
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

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

/* —— TICKER —— */

.ticker-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: 46px;
  padding-top: env(safe-area-inset-top);
  padding-left: calc(0.75rem + env(safe-area-inset-left));
  padding-right: calc(0.75rem + env(safe-area-inset-right));
  display: flex;
  align-items: center;
  background: rgba(8, 4, 14, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 168, 87, 0.18);
}

.ticker-track {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.ticker-content {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  white-space: nowrap;
  animation: ticker-marquee 46s linear infinite;
  padding-right: 2rem;
}

@keyframes ticker-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  font-size: clamp(0.72rem, 1.5vw, 0.82rem);
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}

.ticker-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-gold);
  margin-right: 0.35rem;
}

.ticker-divider {
  color: rgba(244, 235, 226, 0.22);
  font-size: 0.75rem;
}

/* —— HERO —— */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(3.5rem + env(safe-area-inset-top)) 1.25rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__veil {
  position: absolute;
  inset: -12%;
  background:
    radial-gradient(ellipse 70% 55% at 20% 30%, rgba(212, 168, 87, 0.16), transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(126, 183, 255, 0.12), transparent 50%),
    linear-gradient(165deg, #14081f 0%, #0b0612 45%, #07040c 100%);
  opacity: 0.95;
}

.hero__shard {
  position: absolute;
  width: min(520px, 90vw);
  height: min(520px, 90vw);
  right: -8%;
  top: 10%;
  border: 1px solid rgba(212, 168, 87, 0.25);
  border-radius: 38% 62% 48% 52% / 52% 45% 55% 48%;
  background: linear-gradient(135deg, rgba(95, 224, 164, 0.06), rgba(126, 183, 255, 0.05));
  filter: blur(0.5px);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 58rem;
  width: 100%;
}

.hero__kicker {
  font-family: var(--font-mono);
  font-size: clamp(0.65rem, 1.1vw, 0.74rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-size: clamp(3.5rem, 11vw, 9rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--text-primary);
}

.hero__title em {
  font-style: italic;
  color: var(--accent-gold);
}

.hero__deck {
  margin-top: 1.5rem;
  font-size: clamp(0.95rem, 1.25vw, 1.12rem);
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 44rem;
}

.hero__statrow {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.hero__stat {
  flex: 1 1 200px;
  min-height: 44px;
  padding: 1rem 1.1rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero__stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(0.62rem, 1vw, 0.7rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.hero__stat-value {
  font-size: clamp(1.35rem, 3.2vw, 2.1rem);
  font-weight: 700;
  color: var(--accent-green);
  line-height: 1.15;
}

.hero__cite {
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: clamp(0.68rem, 1vw, 0.76rem);
  color: var(--text-muted);
}

/* —— MAIN —— */

.edition {
  padding: 0 1.25rem 5rem;
  max-width: 72rem;
  margin: 0 auto;
}

.edition > section {
  margin-top: clamp(3rem, 6vw, 5rem);
}

.source {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: clamp(0.68rem, 1vw, 0.78rem);
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s var(--ease-out-quart), border-color 0.2s var(--ease-out-quart);
}

.source:hover,
.source:focus-visible {
  color: var(--accent-blue);
  border-bottom-color: rgba(126, 183, 255, 0.45);
  outline: none;
}

.source--second {
  margin-left: 0;
  margin-top: 0.5rem;
}

/* corridor */
.corridor {
  border-left: 3px solid var(--accent-gold);
  padding: 1.25rem 0 1.25rem 1.5rem;
}

.corridor__label {
  font-family: var(--font-mono);
  font-size: clamp(0.62rem, 1vw, 0.72rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
}

.corridor__p {
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  line-height: 1.78;
  color: var(--text-secondary);
  max-width: 50rem;
}

/* comet pull quote */
.comet {
  position: relative;
  padding: 2.5rem 1.5rem 2.5rem 2rem;
  border-radius: 20px;
  background: linear-gradient(120deg, rgba(24, 16, 38, 0.95), rgba(12, 8, 20, 0.92));
  border: 1px solid var(--glass-border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.comet::before {
  content: '“';
  position: absolute;
  left: 0.85rem;
  top: 0.35rem;
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1;
  color: rgba(212, 168, 87, 0.22);
  font-family: Georgia, 'Times New Roman', serif;
}

.comet__quote {
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  line-height: 1.55;
  font-style: italic;
  color: var(--text-primary);
}

.comet__attr {
  margin-top: 1.25rem;
  font-family: var(--font-mono);
  font-size: clamp(0.68rem, 1vw, 0.76rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* climate split */
.climate {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.climate__pane {
  padding: 1.75rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(244, 235, 226, 0.08);
  background: var(--bg-elevated);
}

.climate__pane--left {
  border-color: rgba(126, 183, 255, 0.28);
}

.climate__pane--right {
  border-color: rgba(212, 168, 87, 0.28);
}

.climate__eyebrow {
  font-family: var(--font-mono);
  font-size: clamp(0.62rem, 1vw, 0.7rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

.climate__h {
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.climate__p {
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  line-height: 1.75;
  color: var(--text-secondary);
}

/* reed slab */
.reed {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: flex-end;
  padding: 2rem 1.5rem;
  border-radius: 22px;
  background: linear-gradient(90deg, rgba(255, 92, 122, 0.08), rgba(18, 10, 28, 0.4));
  border: 1px solid rgba(255, 92, 122, 0.2);
}

.reed__num {
  font-size: clamp(3.2rem, 14vw, 7rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--text-primary);
}

.reed__body {
  flex: 1 1 240px;
}

.reed__h {
  font-size: clamp(1.5rem, 3.5vw, 2.35rem);
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.reed__p {
  font-size: clamp(0.95rem, 1.15vw, 1.06rem);
  line-height: 1.75;
  color: var(--text-secondary);
}

/* neighbors ribbon */
.neighbors {
  padding: 2rem 0;
  border-top: 1px solid rgba(244, 235, 226, 0.08);
  border-bottom: 1px solid rgba(244, 235, 226, 0.08);
}

.neighbors__rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0 1.25rem;
}

.neighbors__chip {
  font-family: var(--font-mono);
  font-size: clamp(0.65rem, 1vw, 0.72rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(95, 224, 164, 0.25);
  color: var(--accent-green);
  background: rgba(95, 224, 164, 0.06);
}

.neighbors__h {
  font-size: clamp(1.65rem, 4vw, 2.6rem);
  font-weight: 700;
}

.neighbors__p {
  margin-top: 0.85rem;
  font-size: clamp(0.95rem, 1.15vw, 1.06rem);
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 48rem;
}

/* cunningham bracket */
.cun {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem;
  align-items: start;
}

.cun__main {
  padding: 1.75rem 1.5rem;
  border-radius: 16px;
  background: var(--bg-surface);
  border: 1px solid rgba(244, 235, 226, 0.08);
}

.cun__aside {
  font-family: var(--font-mono);
  font-size: clamp(0.65rem, 0.95vw, 0.72rem);
  line-height: 1.55;
  color: var(--text-muted);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.5rem 0.35rem;
  border: 1px dashed rgba(212, 168, 87, 0.35);
  border-radius: 10px;
}

.cun__h {
  font-size: clamp(1.45rem, 3.2vw, 2.2rem);
  font-weight: 700;
}

.cun__p {
  margin-top: 0.75rem;
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  line-height: 1.75;
  color: var(--text-secondary);
}

/* sparq duel */
.sparq {
  padding: 2rem 1.5rem;
  border-radius: 20px;
  background: radial-gradient(circle at 0% 0%, rgba(126, 183, 255, 0.12), transparent 45%),
    var(--bg-secondary);
  border: 1px solid rgba(126, 183, 255, 0.2);
}

.sparq > .sparq__tag {
  font-family: var(--font-mono);
  font-size: clamp(0.62rem, 1vw, 0.7rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.sparq__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.sparq__col {
  padding: 1.25rem;
  border-radius: 14px;
  background: rgba(11, 6, 18, 0.55);
  border: 1px solid rgba(244, 235, 226, 0.06);
}

.sparq__tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 0.5rem;
}

.sparq__h {
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.sparq__p {
  font-size: clamp(0.95rem, 1.1vw, 1.02rem);
  line-height: 1.72;
  color: var(--text-secondary);
}

/* montgomery meter */
.mont {
  padding: 1.75rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(95, 224, 164, 0.22);
  background: linear-gradient(180deg, rgba(95, 224, 164, 0.07), transparent);
}

.mont__h {
  font-size: clamp(1.45rem, 3.2vw, 2.15rem);
  font-weight: 700;
}

.mont__sub {
  margin-top: 0.35rem;
  font-family: var(--font-mono);
  font-size: clamp(0.72rem, 1vw, 0.8rem);
  color: var(--text-muted);
}

.mont__rows {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.mont__row {
  display: grid;
  grid-template-columns: 1fr minmax(120px, 38%) auto;
  gap: 0.65rem;
  align-items: center;
  font-family: var(--font-mono);
  font-size: clamp(0.68rem, 1vw, 0.76rem);
  color: var(--text-secondary);
}

.mont__track {
  height: 8px;
  border-radius: 999px;
  background: rgba(244, 235, 226, 0.08);
  overflow: hidden;
}

.mont__fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
}

/* clay strip */
.clay {
  padding: 1.5rem 0;
}

.clay__pipeline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin: 1rem 0;
}

.clay__step {
  font-family: var(--font-mono);
  font-size: clamp(0.62rem, 1vw, 0.7rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  border: 1px solid rgba(244, 235, 226, 0.1);
  color: var(--text-secondary);
}

.clay__step--on {
  border-color: rgba(212, 168, 87, 0.45);
  color: var(--accent-gold);
  background: rgba(212, 168, 87, 0.08);
}

.clay__arrow {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.clay__p {
  font-size: clamp(0.95rem, 1.15vw, 1.06rem);
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 48rem;
}

/* hb228 */
.hb {
  padding: 2rem 1.5rem;
  border-radius: 18px;
  background: var(--bg-elevated);
  border: 1px solid rgba(212, 168, 87, 0.2);
}

.hb__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hb__h {
  margin-top: 0.5rem;
  font-size: clamp(1.45rem, 3.2vw, 2.2rem);
  font-weight: 700;
}

.hb__meter {
  margin-top: 1.25rem;
}

.hb__meter label {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(0.68rem, 1vw, 0.76rem);
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.hb__track {
  height: 10px;
  border-radius: 999px;
  background: rgba(244, 235, 226, 0.08);
  overflow: hidden;
}

.hb__fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-red));
}

/* ag card */
.ag {
  max-width: 40rem;
  margin-left: auto;
  padding: 1.75rem 1.5rem;
  border-radius: 16px 16px 4px 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ag__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-blue);
}

.ag__h {
  margin-top: 0.5rem;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  font-weight: 700;
}

.ag__p {
  margin-top: 0.75rem;
  font-size: clamp(0.95rem, 1.1vw, 1.04rem);
  line-height: 1.72;
  color: var(--text-secondary);
}

.ag__callout {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: clamp(0.85rem, 1.8vw, 1.1rem);
  color: var(--accent-green);
}

/* ordinance stack */
.ord {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ord__layer {
  position: relative;
  padding: 1.5rem 1.25rem 1.5rem 1.75rem;
  border-radius: 14px;
  background: rgba(18, 10, 28, 0.75);
  border: 1px solid rgba(244, 235, 226, 0.08);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.ord__layer:nth-child(2) {
  margin-left: clamp(0rem, 4vw, 2.5rem);
  border-color: rgba(126, 183, 255, 0.2);
}

.ord__layer::before {
  content: '';
  position: absolute;
  left: 0.65rem;
  top: 1.1rem;
  bottom: 1.1rem;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--accent-gold), var(--accent-blue));
}

.ord__h {
  font-size: clamp(1.25rem, 2.8vw, 1.85rem);
  font-weight: 700;
}

.ord__p {
  margin-top: 0.55rem;
  font-size: clamp(0.95rem, 1.1vw, 1.02rem);
  line-height: 1.72;
  color: var(--text-secondary);
}

/* splitline ICE */
.splitline {
  padding: 1.75rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(244, 235, 226, 0.1);
  background: rgba(7, 4, 12, 0.65);
}

.splitline__h {
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
}

.splitline__rail {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.splitline__node {
  opacity: 0;
  font-family: var(--font-mono);
  font-size: clamp(0.62rem, 1vw, 0.7rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
  border: 1px solid rgba(126, 183, 255, 0.25);
  color: var(--text-secondary);
}

.splitline__node--hot {
  border-color: rgba(255, 92, 122, 0.35);
  color: var(--accent-red);
}

.splitline__p {
  margin-top: 1rem;
  font-size: clamp(0.95rem, 1.1vw, 1.04rem);
  line-height: 1.75;
  color: var(--text-secondary);
}

/* week ahead */
.ahead {
  margin-top: clamp(3.5rem, 7vw, 5.5rem);
  padding: 2.25rem 1.5rem 2.5rem;
  border-radius: 22px;
  border: 1px solid rgba(212, 168, 87, 0.22);
  background: linear-gradient(145deg, rgba(24, 16, 38, 0.9), rgba(11, 6, 18, 0.95));
}

.ahead__h {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
}

.ahead__deck {
  margin-top: 0.65rem;
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 44rem;
}

.ahead__track {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ahead__node {
  opacity: 0;
  display: grid;
  grid-template-columns: minmax(5.5rem, 8rem) 1fr;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(244, 235, 226, 0.06);
}

.ahead__node:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.ahead__date {
  font-family: var(--font-mono);
  font-size: clamp(0.78rem, 1.2vw, 0.88rem);
  color: var(--accent-gold);
  line-height: 1.35;
}

.ahead__text {
  font-size: clamp(0.95rem, 1.1vw, 1.04rem);
  line-height: 1.72;
  color: var(--text-secondary);
}

.ahead__text a {
  color: var(--accent-blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(126, 183, 255, 0.35);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.ahead__text a:hover,
.ahead__text a:focus-visible {
  color: var(--text-primary);
  outline: none;
}

/* footer */
.site-footer {
  padding: 3rem 1.25rem calc(2.5rem + env(safe-area-inset-bottom));
  text-align: center;
  border-top: 1px solid rgba(244, 235, 226, 0.08);
  background: radial-gradient(ellipse 80% 120% at 50% 0%, rgba(212, 168, 87, 0.08), transparent);
}

.site-footer__brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: clamp(1rem, 2vw, 1.15rem);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.site-footer__pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #17b26a;
  box-shadow: 0 0 0 6px rgba(23, 178, 106, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.85; }
}

.site-footer__regen {
  margin-top: 1rem;
  color: var(--text-secondary);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.65;
}

.site-footer__session {
  margin-top: 0.75rem;
  font-family: var(--font-mono);
  font-size: clamp(0.72rem, 1.1vw, 0.82rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.site-footer__timestamp {
  margin-top: 0.35rem;
  font-family: var(--font-mono);
  font-size: clamp(0.72rem, 1.05vw, 0.8rem);
  color: var(--text-muted);
}

.site-footer__fine {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.site-footer__mini {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.site-footer__mini:hover,
.site-footer__mini:focus-visible {
  color: var(--accent-blue);
  outline: none;
}

@media (max-width: 768px) {
  .climate,
  .sparq__cols,
  .cun {
    grid-template-columns: 1fr;
  }
  .cun__aside {
    writing-mode: horizontal-tb;
    transform: none;
    order: -1;
  }
  .reed {
    flex-direction: column;
    align-items: flex-start;
  }
  .mont__row {
    grid-template-columns: 1fr;
  }
  .ord__layer:nth-child(2) {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .ahead__node {
    grid-template-columns: 1fr;
  }
  .hero__statrow {
    flex-direction: column;
  }
}
