/* Municipal Alpha site redesign — shared design system.
   Scoped entirely under .rd-page (applied to <body> on redesigned pages only)
   so this file can be linked without risk of colliding with theme/css/style.css,
   which every other page on the site still uses unmodified. */

.rd-page {
  --rd-bg: oklch(0.15 0.012 50);
  --rd-surface: oklch(0.18 0.012 50);
  --rd-band: oklch(0.19 0.014 50);
  --rd-border: oklch(0.3 0.01 50);
  --rd-border-strong: oklch(0.34 0.01 50);
  --rd-accent: oklch(0.78 0.14 75);
  --rd-accent-hover: oklch(0.86 0.14 75);
  --rd-accent-muted: oklch(0.7 0.12 75);
  --rd-text: oklch(0.93 0.01 60);
  --rd-text-secondary: oklch(0.78 0.01 60);
  --rd-text-tertiary: oklch(0.72 0.01 60);
  --rd-text-muted: oklch(0.62 0.01 60);
  --rd-text-faint: oklch(0.5 0.01 60);
  --rd-error: oklch(0.72 0.17 30);
  --rd-error-border: oklch(0.55 0.14 30);

  background: var(--rd-bg);
  color: var(--rd-text);
  font-family: 'IBM Plex Sans', sans-serif;
  line-height: 1.5;
  margin: 0;
}

.rd-page * { box-sizing: border-box; }
.rd-page a { color: var(--rd-accent); text-decoration: none; }
.rd-page a:hover { color: var(--rd-accent-hover); }
.rd-page ::selection { background: var(--rd-accent); color: var(--rd-bg); }
.rd-page input, .rd-page select, .rd-page textarea { font-family: 'IBM Plex Sans', sans-serif; }
.rd-page input::placeholder, .rd-page textarea::placeholder { color: oklch(0.5 0.01 60); }
.rd-page input:focus, .rd-page select:focus, .rd-page textarea:focus { outline: none; border-color: var(--rd-accent); }

/* ---- layout ---- */
.rd-wrap { max-width: 1120px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.rd-section { padding: clamp(56px, 8vw, 100px) clamp(20px, 4vw, 48px); }
.rd-section-tight { padding: clamp(40px, 6vw, 72px) clamp(20px, 4vw, 48px); }
.rd-band { background: var(--rd-band); }

/* ---- type ---- */
.rd-page h1, .rd-page h2, .rd-page h3 { font-family: 'Source Serif 4', serif; font-weight: 500; margin: 0; text-wrap: pretty; }
.rd-page h1 { font-size: clamp(32px, 5.2vw, 54px); line-height: 1.1; letter-spacing: -0.01em; }
.rd-page h1.rd-h1-sector { font-size: clamp(32px, 4.8vw, 50px); line-height: 1.12; }
.rd-page h1.rd-h1-small { font-size: clamp(30px, 4.2vw, 44px); line-height: 1.14; }
.rd-page h2 { font-size: clamp(26px, 3.7vw, 36px); line-height: 1.15; }
.rd-page h3 { font-size: clamp(21px, 2.6vw, 26px); }
.rd-page em { color: var(--rd-accent); font-style: italic; font-weight: 400; }
.rd-eyebrow { font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rd-accent-muted); margin: 0 0 20px; }
.rd-eyebrow-tight { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rd-accent-muted); }
.rd-lead { font-size: 17px; color: var(--rd-text-secondary); }
.rd-page p { font-size: 15px; color: var(--rd-text-tertiary); }
.rd-mono { font-family: 'IBM Plex Mono', monospace; }

/* ---- nav ---- */
.rd-nav { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px clamp(20px, 4vw, 48px); background: oklch(0.15 0.012 50 / 0.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--rd-border); flex-wrap: wrap; }
.rd-nav-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.rd-nav-brand img { height: 20px; width: auto; }
.rd-nav-brand .rd-tagline { font-family: 'Source Serif 4', serif; font-size: 12px; font-style: italic; color: var(--rd-text-muted); }
.rd-nav-right { display: flex; gap: clamp(14px, 2.2vw, 32px); align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.rd-nav-trigger { display: flex; align-items: center; gap: 6px; font-family: 'IBM Plex Sans', sans-serif; font-size: 14px; padding: 6px 0; border: none; background: transparent; cursor: pointer; color: var(--rd-text-secondary); }
.rd-nav-trigger:hover, .rd-nav-trigger[aria-expanded="true"] { color: var(--rd-text); }
.rd-nav-trigger .rd-caret { font-size: 10px; color: var(--rd-accent-muted); }
.rd-page a.rd-nav-link { font-size: 14px; color: var(--rd-text-secondary); }
.rd-page a.rd-nav-cta { font-size: 14px; padding: 9px 18px; border: 1px solid var(--rd-accent); border-radius: 2px; color: var(--rd-accent); }
.rd-dropdown-wrap { position: relative; }
.rd-dropdown { position: absolute; top: 100%; right: 0; padding-top: 10px; min-width: 290px; display: none; }
.rd-dropdown.rd-open { display: block; }
.rd-dropdown-cases { min-width: 330px; }
.rd-dropdown-inner { border: 1px solid var(--rd-border-strong); background: var(--rd-surface); box-shadow: 0 18px 40px oklch(0.08 0.01 50 / 0.6); display: flex; flex-direction: column; gap: 1px; }
.rd-page a.rd-dropdown-item { display: block; padding: 14px 18px; background: var(--rd-surface); font-size: 14px; font-weight: 600; color: var(--rd-text); }
.rd-page a.rd-dropdown-case { display: block; padding: 14px 18px; background: var(--rd-surface); font-size: 14px; font-weight: 600; color: var(--rd-text); }

/* ---- buttons ----
   Specificity note: `.rd-page a` (element+class, 0-1-1) outranks a bare
   `.rd-btn-primary` (0-1-0), so button color rules are written as
   `.rd-page a.rd-btn-*` to win over the base link color — without this,
   CTA button text renders the same color as its own background. */
.rd-btn { display: inline-block; font-size: 15px; font-weight: 600; padding: 14px 26px; border-radius: 2px; cursor: pointer; font-family: 'IBM Plex Sans', sans-serif; border: none; }
/* Base rule covers <button> (no competing `.rd-page a` color rule applies to
   it); the `.rd-page a.rd-btn-*` rules below re-win the same colors for <a>,
   which `.rd-page a` would otherwise outrank. Both are needed — CTAs on
   these pages are a mix of real buttons (the intake form) and link-styled
   buttons (everywhere else). */
.rd-btn-primary { background: var(--rd-accent); color: var(--rd-bg); }
.rd-btn-primary:hover { background: var(--rd-accent-hover); color: var(--rd-bg); }
.rd-btn-outline { border: 1px solid oklch(0.4 0.01 50); color: var(--rd-text); background: transparent; }
.rd-btn-outline:hover { color: var(--rd-text); border-color: var(--rd-accent); }
.rd-page a.rd-btn-primary { background: var(--rd-accent); color: var(--rd-bg); }
.rd-page a.rd-btn-primary:hover { background: var(--rd-accent-hover); color: var(--rd-bg); }
.rd-page a.rd-btn-outline { border: 1px solid oklch(0.4 0.01 50); color: var(--rd-text); background: transparent; }
.rd-page a.rd-btn-outline:hover { color: var(--rd-text); border-color: var(--rd-accent); }
.rd-cta-note { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--rd-text-muted); }

/* ---- grids / cards ----
   Seams are drawn as per-card borders, not a background-color bleeding
   through `gap`, because `grid-template-columns: repeat(auto-fit, ...)`
   leaves genuinely empty cells in an incomplete last row (item count not a
   multiple of the fitted column count) — a container background fills those
   empty cells too, rendering as a stray blank box. Per-card borders can't
   do that: an empty cell has no card in it, so nothing draws there. */
.rd-seam-grid { display: grid; gap: 0; background: transparent; border: 1px solid var(--rd-border); border-right: 0; border-bottom: 0; }
.rd-card { background: var(--rd-bg); padding: clamp(20px, 3vw, 32px); border-right: 1px solid var(--rd-border); border-bottom: 1px solid var(--rd-border); }
.rd-card-band { background: var(--rd-bg); padding: clamp(22px, 3vw, 32px); display: flex; flex-direction: column; gap: 12px; border-right: 1px solid var(--rd-border); border-bottom: 1px solid var(--rd-border); }
.rd-card-tag { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.08em; color: var(--rd-accent-muted); margin: 0; text-transform: uppercase; }
.rd-panel { border: 1px solid var(--rd-border); background: var(--rd-surface); padding: clamp(22px, 3vw, 36px); }

/* ---- stat band ---- */
.rd-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 20px; }
.rd-stat-value { font-family: 'Source Serif 4', serif; font-size: clamp(24px, 3vw, 30px); margin: 0; color: var(--rd-accent); }
.rd-stat-label { font-size: 13px; color: var(--rd-text-muted); margin: 4px 0 0; }
.rd-vocab-chip { font-family: 'IBM Plex Mono', monospace; font-size: 11px; padding: 5px 10px; border: 1px solid var(--rd-border-strong); border-radius: 2px; color: var(--rd-text-secondary); display: inline-block; }

/* ---- sample data table ---- */
.rd-table-wrap { border: 1px solid var(--rd-border); overflow-x: auto; }
.rd-table { display: grid; grid-template-columns: 1.1fr 0.8fr 0.5fr 0.9fr 1.5fr; gap: 1px; background: var(--rd-border); min-width: 820px; }
.rd-table-head { background: var(--rd-bg); padding: 12px 16px; font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.06em; color: var(--rd-accent-muted); text-transform: uppercase; }
.rd-table-cell { background: var(--rd-surface); padding: 16px; font-size: 14px; color: var(--rd-text); }
.rd-table-cell-mono { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--rd-text-tertiary); }
.rd-table-foot { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--rd-text-muted); margin: 20px 0 0; }

/* ---- quotes ---- */
.rd-quote { font-family: 'Source Serif 4', serif; font-size: clamp(19px, 2.2vw, 22px); font-style: italic; color: var(--rd-text); margin: 0 0 18px; text-wrap: pretty; }
.rd-quote-attr { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--rd-text-muted); }

/* ---- form ---- */
.rd-field { display: flex; flex-direction: column; gap: 7px; }
.rd-field-label { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.06em; color: var(--rd-text-tertiary); text-transform: uppercase; }
.rd-field input, .rd-field select, .rd-field textarea {
  width: 100%; font-size: 15px; padding: 12px 14px;
  background: var(--rd-bg); color: var(--rd-text);
  border: 1px solid var(--rd-border-strong); border-radius: 2px; resize: vertical;
}
/* Browsers paint a native control chrome under a <select>'s closed box that
   `background`/`color` alone doesn't fully replace — appearance:none plus a
   hand-drawn arrow is needed or it renders with the OS's default (usually
   white) background regardless of the rule above. */
.rd-field select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  padding-right: 34px;
  background-image: linear-gradient(45deg, transparent 50%, var(--rd-text-muted) 50%), linear-gradient(135deg, var(--rd-text-muted) 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% - 3px), calc(100% - 15px) calc(50% - 3px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.rd-field select option { background: var(--rd-bg); color: var(--rd-text); }
.rd-field input.rd-invalid, .rd-field textarea.rd-invalid { border-color: var(--rd-error-border); }
.rd-chip-row { display: flex; gap: 8px; flex-wrap: wrap; }
.rd-chip { font-family: 'IBM Plex Sans', sans-serif; font-size: 13px; padding: 8px 14px; border-radius: 2px; cursor: pointer; border: 1px solid var(--rd-border-strong); background: transparent; color: var(--rd-text-secondary); }
.rd-chip[aria-pressed="true"] { border-color: var(--rd-accent); background: var(--rd-accent); color: var(--rd-bg); }
.rd-form-error { font-size: 13px; color: var(--rd-error); margin: 0; }
.rd-form-note { font-size: 12px; color: var(--rd-text-faint); margin: 0; }

/* ---- footer ---- */
.rd-footer { border-top: 1px solid var(--rd-border); padding: 40px clamp(20px, 4vw, 48px); }
.rd-footer-inner { max-width: 1120px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.rd-footer-tagline { font-family: 'Source Serif 4', serif; font-size: 16px; font-style: italic; margin: 0; color: var(--rd-text-muted); }
.rd-footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.rd-footer-links a { font-size: 13px; color: var(--rd-text-muted); }
.rd-footer-copy { max-width: 1120px; margin: 24px auto 0; font-size: 12px; color: var(--rd-text-faint); }
.rd-footer-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 24px; margin-bottom: 32px; }
.rd-footer-stat-value { font-family: 'Source Serif 4', serif; font-size: 28px; margin: 0; color: var(--rd-text); }
.rd-footer-stat-label { font-size: 12px; color: var(--rd-text-muted); margin: 4px 0 0; }

@media (max-width: 720px) {
  .rd-table { min-width: 760px; }
}

/* Nav dropdowns: `.rd-nav-right` is `justify-content: flex-end`, so the
   FIRST trigger ("Who We Serve") sits mid-row with siblings (the second
   trigger, Contact, the CTA) still to its right — it is not anchored at the
   nav's true right edge even before the row visibly wraps. A 290-330px
   panel anchored `right: 0` to that trigger's own `.rd-dropdown-wrap`
   overflows past the viewport's left edge whenever there isn't ~300px of
   room to the trigger's left. Measured live (Playwright, this repo's own
   build): broken from 721px through ~772px — a range that includes iPad
   Mini portrait (768px) — and clear from ~775px up. 800px gives that a
   safety margin without touching how the dropdown looks at any width a
   laptop/desktop window realistically sits at.
   Fix: below the breakpoint, `.rd-dropdown-wrap` stops being the
   positioning context (`position: static`), so `.rd-dropdown`'s
   `position: absolute` resolves against `.rd-nav` (position: sticky, the
   next positioned ancestor) instead. Anchoring left/right to the nav's own
   padding edges keeps the panel fully on-screen regardless of which
   trigger, or which wrapped row, opened it. */
@media (max-width: 800px) {
  .rd-dropdown-wrap { position: static; }
  .rd-dropdown {
    left: clamp(20px, 4vw, 48px);
    right: clamp(20px, 4vw, 48px);
    min-width: 0;
  }
  .rd-dropdown-cases { min-width: 0; }
}

/* ---- generic markdown prose (About, Methodology, Privacy, Terms) ----
   Copy on these pages is unchanged from the old theme; this just gives
   plain python-markdown output (lists, tables, blockquotes) a baseline
   that reads correctly on the dark palette instead of bare browser
   defaults. */
.rd-prose h2 { font-size: clamp(22px, 3vw, 28px); margin: 40px 0 14px; }
.rd-prose h3 { font-size: clamp(19px, 2.4vw, 22px); margin: 28px 0 12px; }
.rd-prose p { font-size: 15px; line-height: 1.65; color: var(--rd-text-tertiary); margin: 0 0 16px; }
.rd-prose ul, .rd-prose ol { padding-left: 22px; margin: 0 0 16px; }
.rd-prose li { font-size: 15px; line-height: 1.6; color: var(--rd-text-tertiary); margin-bottom: 6px; }
.rd-prose strong, .rd-prose b { color: var(--rd-text); }
.rd-prose blockquote { margin: 16px 0; padding: 4px 20px; border-left: 3px solid var(--rd-border-strong); color: var(--rd-text-secondary); font-style: italic; }
.rd-prose hr { border: none; border-top: 1px solid var(--rd-border); margin: 32px 0; }
.rd-prose code { font-family: 'IBM Plex Mono', monospace; font-size: 0.9em; background: var(--rd-surface); padding: 2px 6px; border-radius: 2px; }
.rd-prose table { width: 100%; border-collapse: collapse; margin: 0 0 24px; overflow-x: auto; display: block; }
.rd-prose th, .rd-prose td { border: 1px solid var(--rd-border); padding: 10px 14px; font-size: 14px; text-align: left; }
.rd-prose th { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--rd-accent-muted); background: var(--rd-surface); }
.rd-prose td { color: var(--rd-text-tertiary); }
.rd-prose img { max-width: 100%; height: auto; display: block; margin: 24px 0; border-radius: 2px; }

/* ---- case-study components, shared across every reskinned research
   article (Maine data-center, Hartford PFAS, Geneva altdata, solar
   siting, WM entity resolution, business retention, cell-tower leasing).
   Extracted once here instead of duplicating a per-file <style> block
   with the same classes seven times — each article's own <style> block
   now only needs the handful of classes genuinely unique to it (a
   per-town badge palette, an extra table variant, etc). Same color
   mapping used for the Maine retheme: #0C0C0C-family ink -> light text,
   #F7F4F0/#fff-family paper -> dark surfaces, #E8512D -> the site accent,
   #888/#333/#E8E4DF -> the muted/border scale. */
.cs-intro { font-size: 19px; color: oklch(0.82 0.01 60); max-width: 640px; line-height: 1.7; margin-bottom: 40px; }
.cs-intro strong { color: oklch(0.93 0.01 60); }

.cs-stats { display: flex; gap: 40px; margin: 40px 0; flex-wrap: wrap; }
.cs-stat { text-align: center; }
.cs-stat-value { display: block; font-family: 'Newsreader', serif; font-size: 36px; font-weight: 600; color: oklch(0.93 0.01 60); }
.cs-stat-label { display: block; font-family: 'IBM Plex Mono', monospace; font-size: 10px; color: oklch(0.62 0.01 60); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

.timeline { margin: 48px 0; position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: oklch(0.3 0.01 50); }

.tl-event { position: relative; margin-bottom: 28px; }
.tl-event::before { content: ''; position: absolute; left: -28px; top: 6px; width: 12px; height: 12px; border-radius: 50%; border: 2px solid oklch(0.3 0.01 50); background: oklch(0.18 0.012 50); z-index: 1; }
.tl-event.tl-hot::before { border-color: oklch(0.78 0.14 75); background: oklch(0.78 0.14 75); }
.tl-event.tl-warm::before { border-color: oklch(0.78 0.14 75); background: oklch(0.18 0.012 50); }
.tl-event.tl-cool::before { border-color: oklch(0.4 0.01 50); background: oklch(0.18 0.012 50); }

.tl-date { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: oklch(0.78 0.14 75); font-weight: 500; margin-bottom: 4px; }
.tl-cool .tl-date { color: oklch(0.62 0.01 60); }
.tl-board { font-family: 'IBM Plex Mono', monospace; font-size: 10px; color: oklch(0.62 0.01 60); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.tl-text { font-size: 15px; color: oklch(0.82 0.01 60); line-height: 1.6; max-width: 600px; }
.tl-text strong { color: oklch(0.93 0.01 60); }
.tl-source { font-family: 'IBM Plex Mono', monospace; font-size: 11px; margin-top: 6px; }
.tl-source a { color: oklch(0.78 0.14 75); text-decoration: none; }
.tl-source a:hover { text-decoration: underline; }

.tl-gap { margin: 32px 0 32px 0; padding: 16px 0 16px 0; position: relative; }
.tl-gap::before { content: ''; position: absolute; left: -28px; top: 0; bottom: 0; width: 12px; border-left: 2px dashed oklch(0.3 0.01 50); margin-left: 3px; }
.tl-gap-text { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: oklch(0.78 0.14 75); text-transform: uppercase; letter-spacing: 2px; }

.cs-window { background: oklch(0.18 0.012 50); color: oklch(0.93 0.01 60); border-radius: 2px; border: 1px solid oklch(0.3 0.01 50); padding: 32px 40px; margin: 48px 0; max-width: 640px; }
.cs-window h3 { font-family: 'Newsreader', serif; font-size: 22px; font-weight: 500; color: oklch(0.93 0.01 60); margin-bottom: 12px; }
.cs-window p { font-size: 14px; color: oklch(0.72 0.01 60); line-height: 1.7; margin-bottom: 8px; }
.cs-window .cs-highlight { color: oklch(0.78 0.14 75); font-weight: 600; }

.cs-quote { background: oklch(0.78 0.14 75 / 0.08); border-left: 3px solid oklch(0.78 0.14 75); padding: 16px 20px; margin: 16px 0; max-width: 600px; }
.cs-quote p { font-size: 15px; color: oklch(0.85 0.01 60); line-height: 1.65; margin: 0; }
.cs-quote .cs-attribution { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: oklch(0.62 0.01 60); margin-top: 8px; display: block; }

.cs-model { background: oklch(0.18 0.012 50); border: 1px solid oklch(0.3 0.01 50); border-radius: 2px; padding: 32px 40px; margin: 48px 0; max-width: 640px; }
.cs-model h3 { font-family: 'Newsreader', serif; font-size: 22px; font-weight: 500; color: oklch(0.93 0.01 60); margin-bottom: 12px; }
.cs-model p { font-size: 14px; color: oklch(0.72 0.01 60); line-height: 1.7; margin-bottom: 8px; }
.cs-model .model-stat { font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: oklch(0.78 0.14 75); font-weight: 600; }

.signal-cat { display: inline-block; font-family: 'IBM Plex Mono', monospace; font-size: 10px; background: oklch(0.32 0.01 50); color: oklch(0.93 0.01 60); padding: 2px 8px; border-radius: 3px; margin-right: 6px; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.signal-cat.high { background: oklch(0.78 0.14 75); color: oklch(0.15 0.012 50); }
.signal-cat.mod { background: oklch(0.4 0.01 50); }

.cs-cta { background: oklch(0.18 0.012 50); border: 1px solid oklch(0.7 0.12 75); border-radius: 2px; padding: 40px; margin: 48px 0; text-align: center; max-width: 640px; }
.cs-cta h3 { font-family: 'Newsreader', serif; font-size: 22px; font-weight: 500; color: oklch(0.93 0.01 60); margin-bottom: 12px; }
.cs-cta p { font-size: 15px; color: oklch(0.78 0.01 60); margin-bottom: 20px; line-height: 1.6; }
.cs-cta .cta-button { display: inline-block; font-family: 'IBM Plex Sans', sans-serif; font-size: 15px; font-weight: 600; padding: 14px 26px; background: oklch(0.78 0.14 75); color: oklch(0.15 0.012 50); border-radius: 2px; text-decoration: none; }

.cs-note { font-size: 13px; color: oklch(0.62 0.01 60); line-height: 1.6; margin-top: 48px; padding-top: 24px; border-top: 1px solid oklch(0.3 0.01 50); max-width: 640px; }

.tl-section { margin: 36px 0 20px 0; }
.tl-section-title { font-family: 'Newsreader', serif; font-size: 20px; font-weight: 500; color: oklch(0.93 0.01 60); margin-bottom: 4px; }
.tl-section-sub { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: oklch(0.62 0.01 60); text-transform: uppercase; letter-spacing: 1px; }

.ticker-table, .cs-entity-table { margin: 32px 0 48px; max-width: 640px; }
.cs-entity-table h3 { font-family: 'Newsreader', serif; font-size: 22px; font-weight: 500; margin-bottom: 16px; color: oklch(0.93 0.01 60); }
.ticker-table table, .cs-entity-table table { width: 100%; border-collapse: collapse; font-size: 14px; }
.ticker-table th, .cs-entity-table th { font-family: 'IBM Plex Mono', monospace; font-size: 10px; color: oklch(0.62 0.01 60); text-transform: uppercase; letter-spacing: 1px; text-align: left; padding: 8px 12px; border-bottom: 2px solid oklch(0.3 0.01 50); }
.ticker-table td, .cs-entity-table td { padding: 8px 12px; border-bottom: 1px solid oklch(0.3 0.01 50); color: oklch(0.82 0.01 60); }
.ticker-table td:nth-child(2) { font-family: 'IBM Plex Mono', monospace; font-weight: 500; color: oklch(0.78 0.14 75); }
.cs-entity-table td:last-child { font-family: 'IBM Plex Mono', monospace; font-weight: 600; color: oklch(0.78 0.14 75); }

/* ---- family B: business-retention / cell-tower-leasing's bar-chart +
   compact-timeline + bottom-CTA components ---- */
.chart { border: 1px solid oklch(0.3 0.01 50); border-radius: 2px; background: oklch(0.18 0.012 50); padding: 22px 24px; margin: 34px 0; }
.chart .ctitle { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: oklch(0.62 0.01 60); margin-bottom: 18px; }
.bar-row { display: flex; align-items: center; gap: 12px; margin-bottom: 9px; font-size: 14px; }
.bar-row .lbl { width: 200px; text-align: right; font-family: 'IBM Plex Mono', monospace; color: oklch(0.72 0.01 60); font-size: 12px; }
.bar-row .track { display: block; flex: 1; background: oklch(0.25 0.012 50); border-radius: 3px; height: 18px; position: relative; }
.bar-row .fill { display: block; background: oklch(0.78 0.14 75); height: 18px; border-radius: 3px; }
.bar-row .val { width: 150px; font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: oklch(0.72 0.01 60); }
.cnote { font-size: 12px; color: oklch(0.62 0.01 60); margin-top: 14px; font-family: 'IBM Plex Mono', monospace; }
.tl { position: relative; margin-bottom: 18px; }
.tl::before { content: ''; position: absolute; left: -30px; top: 5px; width: 12px; height: 12px; border-radius: 50%; border: 2px solid oklch(0.78 0.14 75); background: oklch(0.18 0.012 50); }
.tl.hot::before { background: oklch(0.78 0.14 75); }
.tl .d { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: oklch(0.78 0.14 75); }
.tl .t { font-size: 15px; color: oklch(0.85 0.01 60); }
.tl .tag { font-family: 'IBM Plex Mono', monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px; color: oklch(0.62 0.01 60); border: 1px solid oklch(0.3 0.01 50); border-radius: 3px; padding: 1px 6px; margin-left: 6px; }
.tl-end { position: relative; margin-top: 6px; }
.tl-end::before { content: ''; position: absolute; left: -31px; top: 4px; width: 14px; height: 14px; background: oklch(0.78 0.14 75); border-radius: 2px; transform: rotate(45deg); }
.tl-end .t { font-size: 15px; font-weight: 600; color: oklch(0.93 0.01 60); }
.lp-bottom-cta { text-align: center; padding: 40px 0 8px; border-top: 1px solid oklch(0.3 0.01 50); margin-top: 42px; }
.lp-bottom-cta h3 { font-family: 'Newsreader', serif; font-size: 24px; font-weight: 500; color: oklch(0.93 0.01 60); margin-bottom: 12px; }
.lp-bottom-cta p { font-size: 15px; color: oklch(0.78 0.01 60); margin-bottom: 24px; }
.lp-bottom-cta .lp-or { display: block; margin: 16px 0; font-size: 13px; color: oklch(0.62 0.01 60); }
.lp-bottom-cta a.lp-email { color: oklch(0.78 0.14 75); text-decoration: none; font-size: 14px; font-weight: 600; }
.lp-bottom-cta a.lp-email:hover { text-decoration: underline; }
