/* === DESIGN TOKENS === */
:root {
  --bg: #F7F4EF;
  --surface: #EFEBE4;
  --surface-2: #E6E1D8;
  --ink: #1A1714;
  --ink-2: rgba(26,23,20,0.58);
  --ink-3: rgba(26,23,20,0.32);
  --ink-4: rgba(26,23,20,0.1);
  --ink-5: rgba(26,23,20,0.05);
  --gold: #7A5C10;
  --gold-2: #A87D1A;
  --gold-3: #C49A28;
  --gold-bg: rgba(122,92,16,0.07);
  --gold-rule: rgba(122,92,16,0.18);
  --red: #8B1E2F;
  --red-bg: rgba(139,30,47,0.07);
  --green: #1A5C38;
  --green-bg: rgba(26,92,56,0.07);
  --amber: #6B4010;
  --amber-bg: rgba(107,64,16,0.07);
  --rule: 1px solid rgba(26,23,20,0.1);
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'IBM Plex Sans', sans-serif; background: var(--bg); color: var(--ink); -webkit-font-smoothing: antialiased; animation: pageFadeIn 0.2s ease; }
@keyframes pageFadeIn { from { opacity: 0; } to { opacity: 1; } }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; }
input { font-family: inherit; }

/* === TICKER === */
.ticker {
  background: var(--ink);
  overflow: hidden;
  position: relative;
  height: 36px;
  display: flex;
  align-items: center;
}
.ticker::before,
.ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--ink), transparent);
}
.ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--ink), transparent);
}
.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 60s linear infinite;
}
.ticker:hover .ticker-track {
  animation-play-state: paused;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 30px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
}
.ticker-item .t-name {
  color: rgba(247,244,239,0.88);
  font-weight: 500;
}
.ticker-item .t-score {
  color: rgba(247,244,239,0.4);
  font-size: 10px;
}
.ticker-item .t-change.down { color: #C47B72; }
.ticker-item .t-change.up { color: #6E9E80; }
.ticker-item .t-change.watch { color: #C4A265; }
.ticker-badge {
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 2px;
  display: inline-block;
}
.ticker-badge.critical { background: rgba(196,123,114,0.18); color: #C47B72; }
.ticker-badge.watch { background: rgba(196,162,101,0.18); color: #C4A265; }
.ticker-badge.healthy { background: rgba(110,158,128,0.18); color: #6E9E80; }
.ticker-sep {
  color: rgba(247,244,239,0.12);
  font-size: 5px;
  margin: 0 6px;
}

/* === NAV === */
.nav {
  background: var(--bg);
  border-bottom: 1px solid var(--gold-rule);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: 64px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.nav-brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.nav-brand-mark {
  font-family: 'Libre Baskerville', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.nav-brand-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-3);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  color: var(--ink-2);
  transition: color 0.12s;
}
.nav-link:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink);
  color: var(--bg);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 9px 18px;
  border: none;
  transition: background 0.12s;
}
.nav-cta:hover { background: var(--gold); }

/* === HERO === */
.hero {
  background: var(--bg);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 88px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}
.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-2);
}
.hero-body {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 36px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: var(--rule);
  border-bottom: 2px solid var(--ink-4);
  margin-bottom: 36px;
  background: var(--surface);
}
.hero-stat {
  padding: 14px 12px;
  border-right: var(--rule);
  text-align: center;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: 'Libre Baskerville', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
}
.hero-stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
}
.hero-cta-row {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.hero-cta {
  display: inline-block;
  background: var(--ink);
  color: var(--bg);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 13px 24px;
  border: none;
  transition: background 0.12s;
}
.hero-cta:hover { background: var(--gold); }
.hero-secondary {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--ink-2);
  border-bottom: 1px solid var(--ink-4);
  padding-bottom: 1px;
  cursor: pointer;
  margin-left: 20px;
}
.hero-footnote {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  line-height: 1.7;
  margin-top: 18px;
}

/* === PORTFOLIO MONITOR CARD === */
.monitor-card {
  border: 1px solid var(--gold-rule);
  background: white;
  box-shadow: 4px 4px 0 var(--surface-2);
}
.monitor-header {
  background: var(--ink);
  padding: 10px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.monitor-header-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(247,244,239,0.45);
}
.monitor-live {
  display: flex;
  align-items: center;
  gap: 6px;
}
.monitor-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6E9E80;
  box-shadow: 0 0 5px rgba(110,158,128,0.5);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}
.monitor-live-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #6E9E80;
}
.monitor-cols {
  display: grid;
  grid-template-columns: 1fr 40px 54px 66px;
  gap: 8px;
  padding: 5px 18px;
  background: var(--bg);
  border-bottom: var(--rule);
}
.monitor-col-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-3);
}
.monitor-col-label.right { text-align: right; }
.monitor-row {
  display: grid;
  grid-template-columns: 1fr 40px 54px 66px;
  gap: 8px;
  padding: 9px 18px;
  border-bottom: var(--rule);
  align-items: center;
  cursor: pointer;
  transition: background 0.1s;
}
.monitor-row:hover { background: var(--bg); }
.monitor-tenant-name {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
}
.monitor-tenant-type {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.04em;
  color: var(--ink-3);
}
.monitor-score {
  font-family: 'Libre Baskerville', serif;
  font-size: 20px;
  font-weight: 700;
  text-align: right;
}
.monitor-score.red { color: var(--red); }
.monitor-score.amber { color: var(--amber); }
.monitor-score.muted { color: var(--ink-3); }
.monitor-score.green { color: var(--green); }
.monitor-change {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  padding: 2px 6px;
  text-align: center;
}
.monitor-change.down { background: var(--red-bg); color: var(--red); }
.monitor-change.up { background: var(--green-bg); color: var(--green); }
.monitor-change.flat { background: var(--ink-5); color: var(--ink-3); }
.monitor-status {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 2px 7px;
  text-align: right;
}
.monitor-status.critical { background: var(--red-bg); color: var(--red); border: 1px solid rgba(139,30,47,0.15); }
.monitor-status.watch { background: var(--amber-bg); color: var(--amber); border: 1px solid rgba(107,64,16,0.15); }
.monitor-status.stable { background: var(--ink-5); color: var(--ink-3); border: 1px solid var(--ink-4); }
.monitor-status.healthy { background: var(--green-bg); color: var(--green); border: 1px solid rgba(26,92,56,0.15); }
.monitor-alert {
  margin: 12px 14px;
  padding: 8px 12px;
  border-left: 2px solid var(--gold-2);
  background: var(--gold-bg);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--ink-2);
  line-height: 1.5;
}
.monitor-alert strong { color: var(--gold-2); }
.monitor-footer {
  padding: 8px 18px;
  background: var(--bg);
  border-top: var(--rule);
  display: flex;
  align-items: center;
  gap: 7px;
}
.monitor-footer-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #6E9E80;
}
.monitor-footer-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}

/* === CASE STUDY === */
.case-study {
  background: var(--ink);
  border-top: 3px solid var(--gold-2);
}
.case-study-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.case-quote {
  font-family: 'Libre Baskerville', serif;
  font-size: 23px;
  font-style: italic;
  line-height: 1.55;
  color: rgba(247,244,239,0.82);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.case-quote em {
  color: var(--gold-3);
  font-style: normal;
}
.case-byline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(247,244,239,0.22);
}
.case-brief {
  border: 1px solid rgba(247,244,239,0.08);
  background: rgba(247,244,239,0.03);
}
.case-brief-header {
  padding: 10px 18px;
  border-bottom: 1px solid rgba(247,244,239,0.07);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-3);
}
.case-brief-row {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 12px;
  padding: 9px 18px;
  border-bottom: 1px solid rgba(247,244,239,0.05);
  font-size: 12px;
  align-items: baseline;
}
.case-brief-row:last-child { border-bottom: none; }
.case-brief-key {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(247,244,239,0.22);
}
.case-brief-value {
  color: rgba(247,244,239,0.65);
  font-weight: 300;
}
.case-brief-value strong {
  color: rgba(247,244,239,0.88);
  font-weight: 500;
}
.case-brief-value.signal {
  color: #C4A265;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
}
.case-brief-value.outcome {
  color: #6E9E80;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
}

/* === DIRECTORY === */
.directory {
  background: white;
  border-top: var(--rule);
}
.directory-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 76px 48px;
}
.directory-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: end;
  margin-bottom: 40px;
}
.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.directory h2, .methodology h2, .report-section h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 10px;
}
.directory-subtext {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.7;
}
.tier-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}
.tier-legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
}
.tier-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.tier-dot.open { background: var(--ink); }
.tier-dot.free { background: var(--gold-2); }
.tier-dot.report { background: var(--red); }
.directory-search {
  display: flex;
  flex-direction: column;
}
.directory-search-row {
  display: flex;
}
.directory-search input {
  flex: 1;
  background: white;
  border: var(--rule);
  border-right: none;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--ink);
  outline: none;
}
.directory-search input::placeholder { color: var(--ink-3); }
.directory-search input:focus { border-color: var(--gold-2); }
.directory-search button {
  background: var(--ink);
  color: var(--bg);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 12px 18px;
  border: none;
  transition: background 0.12s;
}
.directory-search button:hover { background: var(--gold); }
.directory-hint {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  margin-bottom: 16px;
  margin-top: 8px;
}
.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.category-pill {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border: var(--rule);
  color: var(--ink-3);
  cursor: pointer;
  background: white;
  transition: all 0.12s;
}
.category-pill:hover,
.category-pill.active {
  border-color: var(--gold-rule);
  color: var(--gold);
  background: var(--gold-bg);
}

/* === TENANT GRID === */
#tenant-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink-4);
  border: 1px solid var(--ink-4);
  margin-top: 20px;
}
.tenant-card {
  display: flex;
  flex-direction: column;
}
.tenant-card-bar {
  height: 3px;
}
.tenant-card-bar.red { background: var(--red); }
.tenant-card-bar.amber { background: var(--amber); }
.tenant-card-bar.green { background: var(--green); }
.tenant-card-bar.none { background: var(--ink-4); }
.tenant-card-body {
  padding: 18px 16px 14px;
  background: white;
  transition: background 0.1s;
  cursor: pointer;
}
.tenant-card-body:hover { background: var(--bg); }
.tenant-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}
.tenant-card-name {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.tenant-card-cat {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
}
.tenant-card-score {
  font-family: 'Libre Baskerville', serif;
  font-size: 28px;
  font-weight: 700;
}
.tenant-card-score.red { color: var(--red); }
.tenant-card-score.amber { color: var(--amber); }
.tenant-card-score.muted { color: var(--ink-3); }
.tenant-card-score.green { color: var(--green); }
.tenant-card-signal {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 14px;
}
.tenant-card-components {
  position: relative;
}
.tenant-card-components-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}
.tenant-card-components::after {
  content: '';
  position: absolute;
  inset: -4px;
  background: rgba(247,244,239,0.82);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.component-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.component-row:last-child { margin-bottom: 0; }
.component-label {
  width: 80px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px;
  color: var(--ink-3);
}
.component-track {
  flex: 1;
  height: 4px;
  background: var(--ink-5);
}
.component-fill {
  height: 100%;
}
.component-num {
  width: 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  text-align: right;
}
.tenant-card-access {
  border-top: var(--rule);
  padding: 9px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg);
  transition: background 0.12s;
  cursor: pointer;
}
.tenant-card-access:hover { background: var(--surface); }
.tenant-card-access-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.07em;
  color: var(--ink-3);
}
.tenant-card-access-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-2);
  border-bottom: 1px solid var(--gold-rule);
  padding-bottom: 1px;
}
.tenant-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  border-top: var(--rule);
  background: var(--bg);
}
.tenant-card-change {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  padding: 2px 7px;
}
.tenant-card-change.down { background: var(--red-bg); color: var(--red); }
.tenant-card-change.up { background: var(--green-bg); color: var(--green); }
.tenant-card-change.flat { background: var(--ink-5); color: var(--ink-3); }
.tenant-card-time {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.05em;
  color: var(--ink-3);
}
.directory-footer-bar {
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--ink-4);
  text-align: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--ink-2);
  margin-top: -1px;
}
.directory-footer-bar em {
  color: var(--gold);
  font-style: normal;
}

/* === REQUEST BAND === */
.request-band {
  background: var(--surface);
  border-top: var(--rule);
  border-bottom: var(--rule);
}
.request-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.request-band-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}
.request-band-subtitle {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-2);
}
.request-band-form {
  display: flex;
  flex-shrink: 0;
}
.request-band-form input {
  background: white;
  border: var(--rule);
  border-right: none;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--ink);
  outline: none;
  width: 240px;
}
.request-band-form input::placeholder { color: var(--ink-3); }
.request-band-form input:focus { border-color: var(--gold-2); }
.request-band-form button {
  background: var(--ink);
  color: var(--bg);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 10px 16px;
  border: none;
  transition: background 0.12s;
  white-space: nowrap;
}
.request-band-form button:hover { background: var(--gold); }

/* === REPORT SECTION === */
.report-section {
  background: var(--surface);
  border-bottom: var(--rule);
}
.report-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 76px 48px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 72px;
  align-items: start;
}

/* Sample Report Document */
.sample-report {
  border: var(--rule);
  background: white;
  box-shadow: 4px 4px 0 var(--surface-2);
}
.sample-report-header {
  background: var(--ink);
  padding: 14px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sample-report-brand {
  font-family: 'Libre Baskerville', serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(247,244,239,0.9);
  letter-spacing: 0.03em;
}
.sample-report-sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(247,244,239,0.28);
}
.sample-badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: var(--gold-2);
  color: white;
  padding: 3px 10px;
}
.sample-tenant-bar {
  padding: 18px 22px 14px;
  border-bottom: var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.sample-tenant-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}
.sample-tenant-meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
}
.sample-score-big {
  font-family: 'Libre Baskerville', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  text-align: right;
}
.sample-score-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  text-align: right;
}
.sample-body { padding: 18px 22px; }
.tier-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: var(--rule);
  font-size: 12px;
}
.tier-row:last-child { border-bottom: none; }
.tier-badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 2px 8px;
  flex-shrink: 0;
}
.tier-badge.open { background: var(--ink-5); color: var(--ink-3); border: 1px solid var(--ink-4); }
.tier-badge.free { background: var(--gold-bg); color: var(--gold); border: 1px solid var(--gold-rule); }
.tier-badge.report-tier { background: var(--red-bg); color: var(--red); border: 1px solid rgba(139,30,47,0.15); }
.tier-content { font-family: 'IBM Plex Sans', sans-serif; font-size: 12px; color: var(--ink-2); }
.tier-content.blurred { filter: blur(4px); user-select: none; }
.recommendation-box {
  margin-top: 14px;
  padding: 12px 14px;
  border-left: 2px solid var(--gold-2);
  background: var(--gold-bg);
}
.recommendation-box-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 6px;
}
.recommendation-box-body {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.65;
  font-weight: 300;
  filter: blur(4px);
  user-select: none;
}
.sample-access-prompt {
  margin: 0 22px 18px;
  padding: 14px 16px;
  border: var(--rule);
  background: var(--bg);
}
.sample-access-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.sample-access-row {
  display: flex;
}
.sample-access-row input {
  flex: 1;
  background: white;
  border: var(--rule);
  border-right: none;
  padding: 9px 12px;
  font-size: 12px;
  outline: none;
}
.sample-access-row input::placeholder { color: var(--ink-3); }
.sample-access-row button {
  background: var(--gold);
  color: white;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 9px 14px;
  border: none;
  transition: background 0.12s;
}
.sample-access-row button:hover { background: var(--gold-2); }

/* Report CTA Panel */
.report-cta-panel .eyebrow { margin-bottom: 14px; }
.report-cta-panel h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 10px;
}
.report-cta-body {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 28px;
}
.report-includes {
  list-style: none;
  margin-bottom: 24px;
}
.report-includes li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: var(--rule);
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
}
.report-includes li:last-child { border-bottom: none; }
.report-includes .dash {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-table {
  border: var(--rule);
  margin-bottom: 16px;
}
.pricing-row {
  padding: 16px 16px;
  border-bottom: var(--rule);
  background: white;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row.highlight { background: var(--gold-bg); }
.pricing-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.pricing-features {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pricing-features li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.8;
  padding: 2px 0;
}
.pricing-features .dash {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-anchor {
  text-align: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  margin-top: 20px;
  line-height: 1.8;
}
.pricing-name {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  color: var(--ink-2);
}
.pricing-price {
  font-family: 'Libre Baskerville', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.report-cta-btn {
  display: block;
  width: 100%;
  background: var(--ink);
  color: var(--bg);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 14px;
  border: none;
  transition: background 0.12s;
  text-align: center;
}
.report-cta-btn:hover { background: var(--gold); }
.report-guarantee {
  margin-top: 12px;
  text-align: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  line-height: 1.7;
}
.report-guarantee em {
  color: var(--gold-2);
  font-style: normal;
}

/* === METHODOLOGY === */
.methodology {
  background: white;
  border-top: var(--rule);
}
.methodology-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 76px 48px;
}
.methodology-rows {
  border-top: var(--rule);
  margin-top: 40px;
}
.methodology-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 36px;
  padding: 32px 0;
  border-bottom: var(--rule);
  align-items: start;
}
.methodology-num {
  font-family: 'Libre Baskerville', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--ink);
  opacity: 0.08;
  line-height: 1;
}
.methodology-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 6px;
}
.methodology-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}
.methodology-body {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.75;
  font-weight: 300;
  max-width: 540px;
}
.methodology-body strong {
  color: var(--ink);
  font-weight: 500;
}

/* === FOOTER === */
.site-footer {
  background: var(--ink);
  border-top: 3px solid var(--gold-2);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer-brand-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 18px;
  font-weight: 700;
  color: rgba(247,244,239,0.9);
  letter-spacing: 0.02em;
}
.footer-brand-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(247,244,239,0.18);
  margin-top: 3px;
  margin-bottom: 16px;
}
.footer-brand-tagline {
  font-family: 'Libre Baskerville', serif;
  font-size: 12px;
  font-style: italic;
  color: rgba(247,244,239,0.28);
  line-height: 1.65;
}
.footer-col-header {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(168,125,26,0.7);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(247,244,239,0.06);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: rgba(247,244,239,0.28);
  cursor: pointer;
  transition: color 0.12s;
}
.footer-links a:hover { color: rgba(247,244,239,0.7); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 48px;
  border-top: 1px solid rgba(247,244,239,0.06);
  display: flex;
  justify-content: space-between;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.07em;
  color: rgba(247,244,239,0.14);
}

/* === MODAL === */
#accessModal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(26,23,20,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
#accessModal.open { display: flex; }
.modal-card {
  background: white;
  border: var(--rule);
  width: 420px;
  box-shadow: 8px 8px 0 rgba(26,23,20,0.12);
  padding: 36px 36px 32px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--ink-3);
  cursor: pointer;
  background: none;
  border: none;
}
.modal-close:hover { color: var(--ink); }
.modal-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 10px;
}
.modal-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.modal-title #modalTenantName { color: var(--gold-2); }
.modal-subtitle {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.65;
  margin-bottom: 22px;
}
.modal-tiers { margin-bottom: 18px; }
.modal-email {
  width: 100%;
  background: var(--bg);
  border: var(--rule);
  padding: 11px 14px;
  font-size: 13px;
  color: var(--ink);
  outline: none;
  margin-bottom: 10px;
  box-sizing: border-box;
}
.modal-email:focus { border-color: var(--gold-2); }
.modal-submit {
  width: 100%;
  background: var(--ink);
  color: var(--bg);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 12px;
  border: none;
  cursor: pointer;
  transition: background 0.12s;
  margin-bottom: 12px;
}
.modal-submit:hover { background: var(--gold); }
.modal-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  text-align: center;
}

/* === REQUEST PAGE === */
.request-hero {
  background: var(--bg);
}
.request-hero-inner {
  max-width: 560px;
  margin: 0 auto;
  padding: 64px 48px 0;
  text-align: center;
}
.request-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 14px;
}
.request-h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 14px;
}
.request-subtext {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 40px;
}

/* Progress bar */
.form-progress {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 48px;
}
.form-progress-track {
  height: 3px;
  background: var(--ink-4);
}
.form-progress-fill {
  height: 100%;
  background: var(--gold-2);
  transition: width 0.4s ease;
  width: 0;
}

/* Form card */
.form-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 40px 40px 36px;
  background: white;
  border: var(--rule);
  border-top: none;
  box-shadow: 4px 4px 0 var(--surface-2);
}

/* Form steps */
.form-step {
  display: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.form-step.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.form-question {
  font-family: 'Libre Baskerville', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.25;
}
.form-counter {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  margin-bottom: 24px;
}

/* Radio cards */
.radio-card {
  border: var(--rule);
  padding: 14px 18px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.12s;
  background: white;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.radio-card:hover {
  border-color: var(--gold-rule);
  background: var(--gold-bg);
}
.radio-card.selected {
  border-color: var(--gold-2);
  background: var(--gold-bg);
}
.radio-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid var(--ink-4);
  flex-shrink: 0;
  position: relative;
  transition: all 0.12s;
}
.radio-card.selected .radio-dot {
  border-color: var(--gold-2);
}
.radio-card.selected .radio-dot::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-2);
}
.radio-label {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  color: var(--ink);
  font-weight: 400;
}
.urgency-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  margin-left: -6px;
}

/* Form back link */
.form-back {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  color: var(--ink-3);
  margin-bottom: 16px;
  text-decoration: none;
  transition: color 0.12s;
}
.form-back:hover { color: var(--ink); }

/* Form inputs */
.form-label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.form-input {
  display: block;
  width: 100%;
  background: var(--bg);
  border: var(--rule);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--ink);
  font-family: 'IBM Plex Sans', sans-serif;
  outline: none;
  margin-bottom: 16px;
  box-sizing: border-box;
}
.form-input:focus { border-color: var(--gold-2); }
.form-input::placeholder { color: var(--ink-3); }
.form-textarea {
  display: block;
  width: 100%;
  background: var(--bg);
  border: var(--rule);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--ink);
  font-family: 'IBM Plex Sans', sans-serif;
  outline: none;
  min-height: 100px;
  resize: vertical;
  margin-bottom: 16px;
  box-sizing: border-box;
}
.form-textarea:focus { border-color: var(--gold-2); }
.form-textarea::placeholder { color: var(--ink-3); }
.form-field-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  color: var(--ink-3);
  margin-top: -10px;
  margin-bottom: 16px;
}

/* Form buttons */
.form-btn {
  background: var(--ink);
  color: var(--bg);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  transition: background 0.12s;
}
.form-btn:hover { background: var(--gold); }
.form-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.form-btn.disabled:hover { background: var(--ink); }
.form-btn-row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.form-skip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--ink-3);
  border: none;
  border-bottom: 1px solid var(--ink-4);
  padding-bottom: 1px;
  cursor: pointer;
  background: none;
  transition: color 0.12s;
}
.form-skip:hover { color: var(--ink-2); }
.form-error {
  display: none;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--red);
  margin-top: 14px;
  line-height: 1.5;
}

/* Confirmation */
.form-confirmation {
  max-width: 560px;
  margin: 0 auto;
  padding: 40px 48px 80px;
  text-align: center;
}
.confirm-check {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-bg);
  border: 1px solid rgba(26,92,56,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.confirm-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.confirm-body {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.confirm-body span { color: var(--gold-2); }
.confirm-email {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--ink-3);
  margin-bottom: 32px;
}
.confirm-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-rule);
  padding-bottom: 1px;
}

/* === TENANT PROFILE PAGE === */

/* Breadcrumb */
.breadcrumb {
  background: var(--bg);
}
.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 48px 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
}
.breadcrumb-link {
  color: var(--gold);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.12s;
}
.breadcrumb-link:hover { color: var(--gold-2); }
.breadcrumb-sep {
  color: var(--ink-3);
  margin: 0 6px;
}
.breadcrumb-current {
  color: var(--ink-2);
}

/* Tenant Hero */
.tenant-hero {
  background: var(--bg);
}
.tenant-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 48px 56px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 56px;
  align-items: start;
}
.tenant-hero-score {
  font-family: 'Libre Baskerville', serif;
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}
.tenant-hero-score.red { color: var(--red); }
.tenant-hero-score.amber { color: var(--amber); }
.tenant-hero-score.stable { color: var(--ink-2); }
.tenant-hero-score.green { color: var(--green); }
.tenant-hero-score-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  margin-top: 6px;
}
.tenant-hero-status {
  margin-top: 12px;
}
.tenant-hero-updated {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  color: var(--ink-3);
  margin-top: 12px;
  line-height: 1.6;
}
.tenant-hero-data-note {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 11px;
  font-weight: 300;
  font-style: italic;
  color: var(--ink-3);
  margin-top: 8px;
  line-height: 1.6;
}
.tenant-hero-category {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 12px;
}
.tenant-hero-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}
.tenant-hero-summary {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.8;
  margin-bottom: 20px;
}
.tenant-hero-signal {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.7;
  padding: 14px 18px;
  border-left: 2px solid var(--gold-2);
  background: var(--gold-bg);
}

/* Tier Access Strip */
.tier-strip {
  background: var(--surface);
  border-top: var(--rule);
  border-bottom: var(--rule);
}
.tier-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 48px;
}
.tier-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink-4);
  border: 1px solid var(--ink-4);
}
.tier-strip-cell {
  background: white;
  padding: 14px 20px;
}
.tier-strip-label {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 8px;
  margin-bottom: 4px;
}
.tier-strip-desc {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.5;
}

/* Component Scores Section */
.comp-scores {
  background: white;
  border-top: var(--rule);
}
.comp-scores-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 48px;
}
.comp-scores-h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 10px;
}
.comp-scores-sub {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-2);
  margin-bottom: 36px;
}
.comp-scores-rows {
  margin-top: 8px;
}
.comp-scores-row {
  display: grid;
  grid-template-columns: 200px 1fr 60px;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: var(--rule);
}
.comp-scores-name {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.comp-scores-link {
  text-decoration: none;
  color: var(--ink);
  transition: color 0.12s;
}
.comp-scores-link:hover { color: var(--gold-2); }
.comp-scores-desc {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: var(--ink-3);
  line-height: 1.5;
}
.comp-scores-track {
  width: 100%;
  height: 6px;
  background: var(--ink-5);
}
.comp-scores-fill {
  height: 100%;
}
.comp-scores-fill.red { background: var(--red); }
.comp-scores-fill.amber { background: var(--amber); }
.comp-scores-fill.muted { background: var(--ink-3); }
.comp-scores-fill.green { background: var(--green); }
.comp-scores-num {
  font-family: 'Libre Baskerville', serif;
  font-size: 20px;
  font-weight: 700;
  text-align: right;
}
.comp-scores-num.red { color: var(--red); }
.comp-scores-num.amber { color: var(--amber); }
.comp-scores-num.muted { color: var(--ink-3); }
.comp-scores-num.green { color: var(--green); }

/* Category Benchmark */
.benchmark {
  background: var(--surface);
  border-top: var(--rule);
  border-bottom: var(--rule);
}
.benchmark-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 48px;
}
.benchmark-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.benchmark-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
.benchmark-row-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--ink-3);
  width: 120px;
  flex-shrink: 0;
}
.benchmark-track {
  flex: 1;
  height: 4px;
  background: var(--ink-5);
}
.benchmark-fill {
  height: 100%;
}
.benchmark-fill.red { background: var(--red); }
.benchmark-fill.amber { background: var(--amber); }
.benchmark-fill.muted { background: var(--ink-3); }
.benchmark-fill.green { background: var(--green); }
.benchmark-fill.avg { background: var(--ink-2); }
.benchmark-row-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  width: 32px;
  text-align: right;
  flex-shrink: 0;
}
.benchmark-row-num.red { color: var(--red); }
.benchmark-row-num.amber { color: var(--amber); }
.benchmark-row-num.muted { color: var(--ink-3); }
.benchmark-row-num.green { color: var(--green); }
.benchmark-row-num.avg { color: var(--ink-2); }

/* About This Rating */
.about-rating {
  background: white;
  border-top: var(--rule);
}
.about-rating-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 48px;
}
.about-rating-h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 10px;
}
.about-rating-content {
  max-width: 720px;
}
.about-rating-content p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-rating-content p:last-child { margin-bottom: 0; }

/* Signal Detail (gated) */
.signal-detail {
  background: white;
  border-top: var(--rule);
}
.signal-detail-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 48px;
}
.signal-detail-h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 10px;
}
.signal-detail-gate {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 32px;
}
.signal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.signal-card {
  border: var(--rule);
  background: white;
  padding: 20px;
}
.signal-card-header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}
.signal-card-name {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.signal-card-count {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  color: var(--ink-3);
}
.signal-card-body.blurred {
  filter: blur(3px);
  user-select: none;
  pointer-events: none;
}
.signal-row {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.6;
  padding: 4px 0;
}
.signal-icon {
  margin-right: 6px;
  font-size: 11px;
}
.signal-gate-prompt {
  padding: 14px 16px;
  border: var(--rule);
  background: var(--bg);
}
.signal-gate-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.signal-gate-row {
  display: flex;
}
.signal-gate-row input {
  flex: 1;
  background: white;
  border: var(--rule);
  border-right: none;
  padding: 9px 12px;
  font-size: 12px;
  font-family: 'IBM Plex Sans', sans-serif;
  outline: none;
  color: var(--ink);
}
.signal-gate-row input::placeholder { color: var(--ink-3); }
.signal-gate-row input:focus { border-color: var(--gold-2); }
.signal-gate-row button {
  background: var(--gold);
  color: white;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 9px 14px;
  border: none;
  cursor: pointer;
  transition: background 0.12s;
}
.signal-gate-row button:hover { background: var(--gold-2); }

/* Recommendation (gated) */
.recommendation {
  background: var(--surface);
  border-top: var(--rule);
}
.recommendation-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
}
.recommendation-h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 10px;
}
.recommendation-blurred {
  padding: 20px;
  border-left: 2px solid var(--gold-2);
  background: var(--gold-bg);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.75;
  filter: blur(5px);
  user-select: none;
}
.recommendation-unlock {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-2);
  margin-top: 16px;
  line-height: 1.6;
}

/* Pricing Card */
.pricing-card {
  border: var(--rule);
  background: white;
  padding: 24px;
}
.pricing-card-header {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 16px;
}
.pricing-option {
  margin-bottom: 4px;
}
.pricing-option-title {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.pricing-option-desc {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 12px;
  color: var(--ink-2);
  margin-top: 2px;
}
.pricing-option-price {
  font-family: 'Libre Baskerville', serif;
  font-size: 22px;
  font-weight: 700;
  margin-top: 6px;
}
.pricing-option-price.green { color: var(--green); }
.pricing-option-price.ink { color: var(--ink); }
.pricing-option-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  color: var(--ink-3);
  margin-top: 2px;
}
.pricing-divider {
  height: 1px;
  background: var(--ink-4);
  margin: 16px 0;
}
.pricing-card-btn {
  display: block;
  width: 100%;
  background: var(--ink);
  color: var(--bg);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 13px;
  border: none;
  cursor: pointer;
  transition: background 0.12s;
  text-align: center;
  margin-top: 20px;
  box-sizing: border-box;
}
.pricing-card-btn:hover { background: var(--gold); }

/* Related Tenants */
.related-tenants {
  background: white;
  border-top: var(--rule);
}
.related-tenants-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 48px;
}
.related-tenants-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  margin-bottom: 24px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink-4);
  border: 1px solid var(--ink-4);
}
.related-card {
  display: flex;
  flex-direction: column;
}

/* Tenant CTA Band */
.tenant-cta-band {
  background: var(--ink);
  border-top: 3px solid var(--gold-2);
}
.tenant-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}
.tenant-cta-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 22px;
  font-weight: 700;
  color: rgba(247,244,239,0.9);
  margin-bottom: 6px;
}
.tenant-cta-subtitle {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(247,244,239,0.4);
}
.tenant-cta-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.tenant-cta-btn {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 12px 20px;
  text-decoration: none;
  transition: background 0.12s;
  white-space: nowrap;
}
.tenant-cta-btn.primary {
  background: var(--gold-2);
  color: white;
}
.tenant-cta-btn.primary:hover { background: var(--gold-3); }
.tenant-cta-btn.secondary {
  background: transparent;
  color: rgba(247,244,239,0.5);
  border: 1px solid rgba(247,244,239,0.12);
}
.tenant-cta-btn.secondary:hover {
  border-color: rgba(247,244,239,0.3);
  color: rgba(247,244,239,0.8);
}

/* === HAMBURGER & MOBILE NAV === */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: all 0.2s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--bg);
  border-bottom: var(--rule);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.nav-mobile.open { display: flex; }
.nav-mobile-link {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  color: var(--ink-2);
  padding: 12px 0;
  border-bottom: var(--rule);
  transition: color 0.12s;
}
.nav-mobile-link:last-child { border-bottom: none; }
.nav-mobile-link:hover { color: var(--ink); }

/* === TICKER UPDATED TIMESTAMP === */
.ticker-updated {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  color: rgba(247,244,239,0.18);
  z-index: 3;
  pointer-events: none;
}
.ticker { position: relative; }

/* === CLICKABLE CARD LINK === */
.tc-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.tc-link .tenant-card-body { transition: background 0.12s; }
.tc-link:hover .tenant-card-body { background: var(--bg); }
.tc-link:hover .tenant-card-name { color: var(--gold-2); }
.tc-arrow {
  display: inline;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--ink-4);
  margin-left: 6px;
  transition: color 0.12s;
}
.tc-link:hover .tc-arrow { color: var(--gold-2); }
.tenant-card { cursor: pointer; }

/* === ACCESS BAR (new single CTA) === */
.tenant-card-access-bar {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--gold-2);
  text-align: center;
  padding: 10px;
  border-top: var(--rule);
  background: var(--bg);
  cursor: pointer;
  transition: all 0.12s;
}
.tenant-card-access-bar:hover {
  background: var(--gold-bg);
  border-top: 1px solid var(--gold-rule);
}

/* === DIRECTORY PAGE === */
.dir-header { background: var(--bg); }
.dir-header-inner { max-width: 1200px; margin: 0 auto; padding: 48px 48px 24px; }
.dir-h1 { font-family: 'Libre Baskerville', serif; font-size: 36px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.dir-subtext { font-family: 'IBM Plex Sans', sans-serif; font-size: 14px; font-weight: 300; color: var(--ink-2); line-height: 1.7; max-width: 560px; }
.dir-search-wrap { max-width: 1200px; margin: 0 auto; padding: 0 48px; margin-bottom: 32px; }
.dir-search { display: flex; }
.dir-search input { flex: 1; background: white; border: var(--rule); border-right: none; padding: 14px 18px; font-size: 15px; color: var(--ink); font-family: 'IBM Plex Sans', sans-serif; outline: none; }
.dir-search input::placeholder { color: var(--ink-3); }
.dir-search input:focus { border-color: var(--gold-2); }
.dir-search button { background: var(--ink); color: var(--bg); font-family: 'IBM Plex Mono', monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; padding: 14px 24px; border: none; cursor: pointer; transition: background 0.12s; white-space: nowrap; }
.dir-search button:hover { background: var(--gold); }
.dir-tabs-wrap { max-width: 1200px; margin: 0 auto; padding: 0 48px; margin-bottom: 32px; }
.dir-tabs { border-bottom: 1px solid var(--ink-4); }
.dir-tab { font-family: 'IBM Plex Sans', sans-serif; font-size: 13px; color: var(--ink-3); padding: 0 0 12px; margin-right: 28px; cursor: pointer; display: inline-block; transition: color 0.15s; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.dir-tab:hover { color: var(--ink-2); }
.dir-tab.active { color: var(--ink); border-bottom-color: var(--gold-2); font-weight: 500; }
.dir-sort-wrap { max-width: 1200px; margin: 0 auto; padding: 0 48px; margin-bottom: 20px; text-align: right; }
.dir-sort { font-family: 'IBM Plex Mono', monospace; font-size: 9px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3); }
.dir-sort-label { margin-right: 8px; }
.dir-sort-option { cursor: pointer; transition: color 0.12s; }
.dir-sort-option:hover { color: var(--ink-2); }
.dir-sort-option.active { color: var(--gold); }
.dir-sort-sep { margin: 0 8px; color: var(--ink-4); }
#dir-at-risk { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.risk-tint-card .tenant-card-body { background: rgba(139,30,47,0.03); }
.dir-grid-wrap { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
#directory-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--ink-4); border: 1px solid var(--ink-4); }
.dir-count { font-family: 'IBM Plex Mono', monospace; font-size: 9px; letter-spacing: 0.06em; color: var(--ink-3); margin-top: 16px; text-align: center; }
.nav-link-active { color: var(--ink) !important; font-weight: 500; }
.dir-info-strip { background: var(--surface); border-top: var(--rule); border-bottom: var(--rule); margin-bottom: 24px; }
.dir-info-inner { max-width: 1200px; margin: 0 auto; padding: 14px 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dir-info-col { display: flex; align-items: center; gap: 10px; font-family: 'IBM Plex Mono', monospace; font-size: 9px; letter-spacing: 0.08em; color: var(--ink-2); line-height: 1.6; }
.dir-info-col .dash { font-family: 'IBM Plex Mono', monospace; font-size: 10px; color: var(--gold); flex-shrink: 0; }

/* === HOMEPAGE DIRECTORY PREVIEW === */
.dir-preview { background: white; border-top: var(--rule); }
.dir-preview-inner { max-width: 1200px; margin: 0 auto; padding: 64px 48px; }
.dir-preview-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 28px; }
.dir-preview-h2 { font-family: 'Libre Baskerville', serif; font-size: 28px; font-weight: 700; color: var(--ink); line-height: 1.2; }
.dir-preview-link { font-family: 'IBM Plex Mono', monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-2); border-bottom: 1px solid var(--gold-rule); padding-bottom: 1px; transition: color 0.12s; white-space: nowrap; }
.dir-preview-link:hover { color: var(--gold-3); }
.dir-preview-link.muted { color: var(--ink-3); border-bottom-color: var(--ink-4); }
.dir-preview-link.muted:hover { color: var(--ink-2); }
.dir-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--ink-4); border: 1px solid var(--ink-4); margin-bottom: 24px; }
.dir-preview-links { text-align: center; }
.dir-preview-sep { margin: 0 12px; color: var(--ink-4); }

/* === FOOTER DIRECTORY LINK === */
.footer-dir-link { display: block; font-family: 'IBM Plex Mono', monospace; font-size: 9px; color: rgba(247,244,239,0.3); margin-top: 10px; transition: color 0.12s; }
.footer-dir-link:hover { color: rgba(247,244,239,0.6); }

/* === HERO SEARCH === */
.hero-search {
  display: flex;
  max-width: 480px;
  margin-bottom: 0;
}
.hero-search input {
  flex: 1;
  background: white;
  border: 1.5px solid var(--ink-4);
  border-right: none;
  padding: 14px 18px;
  font-size: 15px;
  color: var(--ink);
  font-family: 'IBM Plex Sans', sans-serif;
  outline: none;
}
.hero-search input::placeholder { color: var(--ink-3); }
.hero-search input:focus { border-color: var(--gold-2); }
.hero-search button {
  background: var(--ink);
  color: var(--bg);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 14px 22px;
  border: none;
  cursor: pointer;
  transition: background 0.12s;
  white-space: nowrap;
}
.hero-search button:hover { background: var(--gold); }
.hero-social-proof {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  margin-top: 14px;
}

/* === MODAL PHONE + REASSURANCE === */
.modal-phone-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  margin-bottom: 6px;
  margin-top: 10px;
}
.modal-phone {
  width: 100%;
  background: var(--bg);
  border: var(--rule);
  padding: 11px 14px;
  font-size: 13px;
  color: var(--ink);
  outline: none;
  box-sizing: border-box;
}
.modal-phone:focus { border-color: var(--gold-2); }
.modal-phone::placeholder { color: var(--ink-3); }
.modal-phone-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  color: var(--ink-3);
  margin-top: 4px;
  margin-bottom: 10px;
}
.modal-reassurance {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  font-style: italic;
  color: var(--ink-2);
  margin-bottom: 14px;
}
.modal-next-divider {
  height: 1px;
  background: var(--ink-4);
  margin: 20px 0;
}
.modal-next-title {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-align: center;
  margin-bottom: 10px;
}
.modal-next-search {
  display: flex;
  max-width: 100%;
}
.modal-next-search input {
  flex: 1;
  background: var(--bg);
  border: var(--rule);
  border-right: none;
  padding: 10px 12px;
  font-size: 12px;
  font-family: 'IBM Plex Sans', sans-serif;
  outline: none;
  color: var(--ink);
}
.modal-next-search input::placeholder { color: var(--ink-3); }
.modal-next-search button {
  background: var(--ink);
  color: var(--bg);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 14px;
  border: none;
  cursor: pointer;
  transition: background 0.12s;
  white-space: nowrap;
}
.modal-next-search button:hover { background: var(--gold); }

/* === MOST AT RISK === */
.most-at-risk-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red);
  margin-bottom: 12px;
}
.most-at-risk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink-4);
  border: 1px solid var(--ink-4);
  margin-bottom: 0;
}
.risk-card {
  display: flex;
  flex-direction: column;
}
.most-at-risk-rule {
  height: 1px;
  background: var(--ink-4);
  margin: 20px 0 16px;
}

/* === TENANT CARD SIG CHANGE === */
.tenant-card-sig-change {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.05em;
  padding: 4px 0;
  margin-bottom: 8px;
}
.tenant-card-sig-change.red { color: var(--red); }
.tenant-card-sig-change.amber { color: var(--amber); }
.tenant-card-sig-change.green { color: var(--green); }

/* === SIMPLIFIED FOOTER (homepage) === */
.footer-inner-simple {
  grid-template-columns: 1fr auto;
}
.footer-cta-col {
  display: flex;
  align-items: center;
}
.footer-cta-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-2);
  border-bottom: 1px solid var(--gold-rule);
  padding-bottom: 1px;
  cursor: pointer;
  transition: color 0.12s;
}
.footer-cta-link:hover { color: var(--gold-3); }

/* === REQUEST SOCIAL PROOF === */
.request-social-proof {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  margin-bottom: 16px;
}

/* === CONFIRMATION NEXT SEARCH === */
.confirm-divider {
  height: 1px;
  background: var(--ink-4);
  margin: 24px 0;
}
.confirm-next-title {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-align: center;
  margin-bottom: 8px;
}
.confirm-next-search {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
}
.confirm-next-search input {
  flex: 1;
  background: white;
  border: var(--rule);
  border-right: none;
  padding: 10px 14px;
  font-size: 13px;
  font-family: 'IBM Plex Sans', sans-serif;
  outline: none;
  color: var(--ink);
}
.confirm-next-search input::placeholder { color: var(--ink-3); }
.confirm-next-search button {
  background: var(--ink);
  color: var(--bg);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 10px 16px;
  border: none;
  cursor: pointer;
  transition: background 0.12s;
  white-space: nowrap;
}
.confirm-next-search button:hover { background: var(--gold); }

/* === TICKER LIVE LABEL === */
.ticker-live-label {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 14px;
  background: var(--ink);
  z-index: 3;
  border-right: 1px solid rgba(247,244,239,0.08);
}
.ticker-live-top {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(247,244,239,0.3);
}
.ticker-live-bot {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 7px;
  letter-spacing: 0.1em;
  color: rgba(247,244,239,0.15);
}
.ticker-track { padding-left: 72px; }

/* === SIGNALS EDUCATION SECTION === */
.signals-education {
  background: var(--ink);
  border-top: 3px solid var(--gold-2);
}
.signals-edu-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 48px;
}
.signals-edu-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(196,154,40,0.7);
  margin-bottom: 16px;
}
.signals-edu-h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 32px;
  font-weight: 700;
  color: rgba(247,244,239,0.9);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 48px;
}
.signals-edu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.signals-edu-block {
  border-top: 1px solid rgba(247,244,239,0.1);
  padding-top: 24px;
}
.signals-edu-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 17px;
  font-weight: 700;
  color: rgba(247,244,239,0.88);
  margin-bottom: 10px;
  line-height: 1.3;
}
.signals-edu-body {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(247,244,239,0.5);
  line-height: 1.8;
}
.signals-edu-stat {
  text-align: center;
  margin-top: 48px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(247,244,239,0.25);
}

/* === TWO-PANEL PRICING === */
.pricing-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 16px;
}
.pricing-free-panel {
  background: white;
  border: var(--rule);
  padding: 32px;
}
.pricing-paid-panel {
  background: var(--surface);
  border: var(--rule);
  border-left: none;
  padding: 32px;
}
.pricing-panel-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}
.pricing-panel-tag.gold { color: var(--gold); }
.pricing-panel-tag.muted { color: var(--ink-3); }
.pricing-free-price {
  font-family: 'Libre Baskerville', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.pricing-free-name {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.pricing-panel-rule {
  height: 1px;
  background: var(--ink-4);
  margin: 16px 0;
}
.pricing-free-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  color: var(--ink-3);
  text-align: center;
  margin-top: 10px;
}
.pricing-paid-tier {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: var(--rule);
  padding: 14px 0;
}
.pricing-paid-tier.last { border-bottom: none; }
.pricing-paid-name {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.pricing-paid-bullets {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.6;
}
.pricing-paid-price {
  font-family: 'Libre Baskerville', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  margin-left: 20px;
}
.pricing-paid-note {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-2);
  margin-top: 20px;
  line-height: 1.7;
}
.pricing-paid-cta {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-2);
  border-bottom: 1px solid var(--gold-rule);
  padding-bottom: 1px;
  cursor: pointer;
  margin-top: 14px;
  transition: color 0.12s;
}
.pricing-paid-cta:hover { color: var(--gold-3); }

/* === RESPONSIVE — 1024px === */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .monitor-card { max-width: 480px; }
  .directory-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .report-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .recommendation-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .tenant-hero-inner {
    grid-template-columns: 140px 1fr;
    gap: 36px;
  }
}

/* === RESPONSIVE — 768px === */
@media (max-width: 768px) {
  .signals-edu-grid { grid-template-columns: 1fr; gap: 32px; }
  .pricing-split { grid-template-columns: 1fr; }
  .pricing-paid-panel { border-left: var(--rule); border-top: none; }
  .ticker-live-label { display: none; }
  .ticker-track { padding-left: 0; }
}

@media (max-width: 768px) {
  .nav-right { display: none; }
  .nav-hamburger { display: flex; }
  #tenant-grid { grid-template-columns: repeat(2, 1fr); }
  #directory-grid { grid-template-columns: repeat(2, 1fr); }
  .dir-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .most-at-risk-grid { grid-template-columns: repeat(2, 1fr); }
  .ticker-updated { display: none; }
  .case-study-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .tier-strip-grid { grid-template-columns: 1fr; }
  .signal-grid { grid-template-columns: 1fr; }
  .tenant-cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .tenant-cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .tenant-cta-btn { text-align: center; }
  .comp-scores-row {
    grid-template-columns: 1fr 1fr 50px;
  }
  .comp-scores-info { grid-column: 1 / -1; margin-bottom: 4px; }
  .comp-scores-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .comp-scores-info { width: 100%; }
  .comp-scores-bar { flex: 1; }
  .comp-scores-num { width: 40px; }
  .methodology-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .methodology-num { display: none; }
}

/* === RESPONSIVE — 480px === */
@media (max-width: 480px) {
  .nav-brand-label { display: none; }
  .nav-mobile { padding: 0 24px; }
  .hero h1 { font-size: 36px; }
  .signals-edu-inner { padding: 48px 24px; }
  .signals-edu-h2 { font-size: 24px; }
  .pricing-free-panel, .pricing-paid-panel { padding: 24px; }
  .hero-inner,
  .case-study-inner,
  .directory-inner,
  .report-inner,
  .methodology-inner,
  .footer-inner,
  .request-band-inner,
  .tenant-hero-inner,
  .comp-scores-inner,
  .benchmark-inner,
  .signal-detail-inner,
  .recommendation-inner,
  .about-rating-inner,
  .related-tenants-inner,
  .tenant-cta-inner,
  .breadcrumb-inner,
  .dir-header-inner,
  .dir-search-wrap,
  .dir-tabs-wrap,
  .dir-sort-wrap,
  #dir-at-risk,
  .dir-grid-wrap { padding-left: 24px; padding-right: 24px; }
  .nav-inner { padding: 0 24px; }
  .footer-bottom { padding-left: 24px; padding-right: 24px; }
  .ticker-item { font-size: 10px; padding: 0 20px; }
  #tenant-grid { grid-template-columns: 1fr; }
  #directory-grid { grid-template-columns: 1fr; }
  .dir-preview-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .most-at-risk-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-inner-simple { grid-template-columns: 1fr; }
  .footer-cta-col { margin-top: 16px; }
  .hero-search { flex-direction: column; max-width: 100%; }
  .hero-search input { border-right: 1.5px solid var(--ink-4); border-bottom: none; }
  .hero-search button { width: 100%; }
  .request-band-inner { flex-direction: column; }
  .request-band-form { width: 100%; }
  .request-band-form input { width: 100%; }
  .tenant-hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .tenant-hero-score { font-size: 64px; }
  .tenant-hero-name { font-size: 32px; }
  .request-h1 { font-size: 32px; }
  .request-hero-inner { padding: 48px 24px 0; }
  .form-progress { padding: 0 24px; }
  .form-card { padding: 28px 24px 24px; margin-left: 24px; margin-right: 24px; max-width: none; }
  .form-confirmation { padding: 40px 24px 60px; }
}
