/* ── RESET & BASE ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--navy-950);
  color: var(--white);
  overflow-x: hidden;
}

/* ── BRAND TOKENS ─────────────────────────────────────────────────────────── */
:root {
  --violet:    #6114F0;
  --blue:      #2494E1;
  --cyan:      #0ACDDA;
  --navy-950:  #020322;
  --navy-800:  #161B3F;
  --navy-700:  #232955;
  --navy-600:  #353C6E;
  --navy-500:  #555C8A;
  --navy-400:  #7C83A8;
  --navy-200:  #D0D4E3;
  --navy-100:  #E5E8F2;
  --navy-50:   #F2F4F9;
  --navy-25:   #F8F9FC;
  --white:     #FFFFFF;
  --success:   #1AAE6F;
  --success-bg:#E3F7EE;
  --warning:   #E8A100;
  --warning-bg:#FDF3DC;
  --danger:    #DC2A45;
  --danger-bg: #FBE5E9;
  --info:      #2494E1;
  --gradient:  linear-gradient(90deg, #6114F0 0%, #3F4EE3 38%, #2494E1 68%, #0ACDDA 100%);
  --gradient-200: linear-gradient(90deg, #6114F020 0%, #3F4EE320 38%, #2494E120 68%, #0ACDDA20 100%);
}

/* ── GRADIENT RULE ────────────────────────────────────────────────────────── */
.gradient-rule {
  width: 100%;
  height: 3px;
  background: var(--gradient);
  background-size: 200% 100%;
}
.gradient-rule--animated {
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* ── STICKY NAV ───────────────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(2, 3, 34, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.site-nav.visible { transform: translateY(0); }
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo { height: 22px; width: auto; filter: brightness(0) invert(1); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy-400);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links .nav-cta a {
  background: var(--violet);
  color: var(--white);
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 0.75rem;
  transition: background 0.2s, transform 0.15s;
}
.nav-links .nav-cta a:hover { background: #7730f5; transform: scale(1.03); }

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/hero/hero.jpg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.hero-bg.loaded {
  transform: scale(1);
  /* Lock in place after animation — no further transform changes */
  transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(2,3,34,0.25) 0%,
    rgba(2,3,34,0.55) 50%,
    rgba(2,3,34,0.92) 85%,
    rgba(2,3,34,1)    100%
  );
}
.hero-top-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
}
.hero-logos {
  position: absolute;
  top: 28px;
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 48px;
  z-index: 2;
}
.hero-logo-lhvc { height: 52px; width: auto; }
.hero-logo-wd   { height: 22px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px 72px;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}
.hero-eyebrow.visible { opacity: 1; transform: translateY(0); }
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.35s, transform 0.7s ease 0.35s;
}
.hero-title.visible { opacity: 1; transform: translateY(0); }
.hero-title span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.62);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease 0.5s, transform 0.7s ease 0.5s;
}
.hero-sub.visible { opacity: 1; transform: translateY(0); }
.hero-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease 0.65s, transform 0.7s ease 0.65s;
}
.hero-pills.visible { opacity: 1; transform: translateY(0); }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}
.pill .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}
.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: fadeInScroll 1s ease 1.2s forwards;
}
.scroll-hint span { font-size: 0.65rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); text-transform: uppercase; }
.scroll-arrow { width: 20px; height: 20px; border-right: 2px solid rgba(255,255,255,0.3); border-bottom: 2px solid rgba(255,255,255,0.3); transform: rotate(45deg); animation: bounce 2s ease infinite; }
@keyframes fadeInScroll { to { opacity: 1; } }
@keyframes bounce { 0%,100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(5px); } }

/* ── SECTION WRAPPER ──────────────────────────────────────────────────────── */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 48px;
}
.section--full {
  padding: 72px 0;
}
.section--dark { background: var(--navy-800); }
.section--mid  { background: var(--navy-950); }
.section--light { background: var(--navy-25); }

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 6px;
}
.section-rule {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 14px;
}
.section-rule--light { background: var(--navy-100); }
.section-subtitle {
  font-size: 0.88rem;
  color: var(--navy-400);
  margin-bottom: 32px;
  max-width: 680px;
  line-height: 1.6;
}
.section-subtitle--light { color: var(--navy-500); }

/* ── REVEAL ANIMATIONS ────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* ── AT A GLANCE GRID ─────────────────────────────────────────────────────── */
.glance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
}
.glance-card {
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
  background: var(--navy-800);
  position: relative;
  overflow: hidden;
}
.glance-card:last-child { border-right: none; }
.glance-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s;
}
.glance-card:hover::before { opacity: 1; }
.glance-metric {
  font-size: 2.4rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 10px;
  display: block;
}
.glance-desc {
  font-size: 0.8rem;
  color: var(--navy-400);
  line-height: 1.55;
}

/* ── KPI TILES ────────────────────────────────────────────────────────────── */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.kpi-tile {
  background: var(--white);
  border: 1px solid var(--navy-100);
  border-radius: 10px;
  padding: 22px 20px;
}
.kpi-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-400);
  margin-bottom: 8px;
}
.kpi-value {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--navy-950);
  line-height: 1.1;
  margin-bottom: 4px;
}
.kpi-delta {
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}
.kpi-delta--up   { color: var(--success); }
.kpi-delta--down { color: var(--danger); }
.kpi-delta--neu  { color: var(--warning); }
.kpi-note {
  font-size: 0.72rem;
  color: var(--navy-400);
  line-height: 1.5;
}

/* ── OPPORTUNITY TABLE ────────────────────────────────────────────────────── */
.opp-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--navy-100);
  border-radius: 10px;
  overflow: hidden;
}
.opp-table thead tr {
  background: var(--gradient);
}
.opp-table thead th {
  padding: 12px 16px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-align: left;
}
.opp-table tbody tr {
  border-bottom: 1px solid var(--navy-100);
  transition: background 0.22s ease, color 0.22s ease;
}
.opp-table tbody tr:last-child { border-bottom: none; }
.opp-table tbody tr:nth-child(odd)  { background: var(--white); }
.opp-table tbody tr:nth-child(even) { background: var(--navy-25); }
.opp-table tbody tr:hover { background: #2299E1; }
.opp-table tbody tr:hover td,
.opp-table tbody tr:hover .td-signal,
.opp-table tbody tr:hover .td-gap,
.opp-table tbody tr:hover .td-cap    { color: #FBFBFB; }
.opp-table tbody td {
  padding: 14px 16px;
  font-size: 0.82rem;
  line-height: 1.55;
  vertical-align: top;
  transition: color 0.22s ease;
}
.td-signal { font-weight: 600; color: var(--navy-800); }
.td-gap    { color: var(--navy-600); }
.td-cap    { color: var(--violet); font-weight: 500; }

/* ── CHANNEL TABLE ────────────────────────────────────────────────────────── */
.channel-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--navy-100);
  border-radius: 10px;
  overflow: hidden;
}
.channel-table thead tr { background: var(--navy-50); }
.channel-table thead th {
  padding: 11px 14px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-400);
  text-align: left;
  border-bottom: 2px solid var(--navy-200);
}
.channel-table tbody tr {
  border-bottom: 1px solid var(--navy-100);
  transition: background 0.2s;
}
.channel-table tbody tr:nth-child(even) { background: var(--navy-25); }
.channel-table tbody tr:hover { background: rgba(97,20,240,0.03); }
.channel-table tbody td {
  padding: 13px 14px;
  font-size: 0.8rem;
  color: var(--navy-700);
  line-height: 1.5;
  vertical-align: top;
}
.channel-name { font-weight: 600; color: var(--navy-950); }
.opp-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
}
.opp-badge--high   { background: var(--success-bg); color: var(--success); }
.opp-badge--medium { background: var(--warning-bg); color: var(--warning); }
.opp-badge--low    { background: var(--navy-100);   color: var(--navy-500); }

/* ── INSIGHT CARDS ────────────────────────────────────────────────────────── */
.insight-card {
  border-radius: 10px;
  padding: 22px 24px;
  margin-bottom: 14px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  align-items: start;
}
.insight-card--win { background: var(--success-bg); border: 1px solid rgba(26,174,111,0.2); }
.insight-card--tip { background: var(--warning-bg); border: 1px solid rgba(232,161,0,0.2); }
.insight-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-top: 2px;
}
.insight-badge--win { color: var(--success); }
.insight-badge--tip { color: var(--warning); }
.insight-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: 7px;
  line-height: 1.4;
}
.insight-body { font-size: 0.82rem; color: var(--navy-700); line-height: 1.6; }

/* ── SCORECARD ────────────────────────────────────────────────────────────── */
.scorecard-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--navy-100);
  border-radius: 10px;
  overflow: hidden;
}
.scorecard-table thead tr { background: var(--navy-50); }
.scorecard-table thead th {
  padding: 11px 14px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-400);
  text-align: left;
  border-bottom: 2px solid var(--navy-200);
}
.scorecard-table tbody tr {
  border-bottom: 1px solid var(--navy-100);
  transition: background 0.2s;
}
.scorecard-table tbody tr:nth-child(even) { background: var(--navy-25); }
.scorecard-table tbody tr:hover { background: rgba(97,20,240,0.03); }
.scorecard-table tbody td {
  padding: 13px 14px;
  font-size: 0.8rem;
  color: var(--navy-700);
  vertical-align: middle;
}
.score-dim { font-weight: 600; color: var(--navy-950); }
.maturity-badge, .priority-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
}
.maturity-badge--low         { background: var(--danger-bg);  color: var(--danger); }
.maturity-badge--developing  { background: var(--warning-bg); color: var(--warning); }
.maturity-badge--strong      { background: var(--success-bg); color: var(--success); }
.priority-badge--immediate   { background: var(--danger-bg);  color: var(--danger); }
.priority-badge--high        { background: var(--warning-bg); color: var(--warning); }
.priority-badge--medium      { background: var(--navy-100);   color: var(--navy-500); }

/* ── NEXT STEPS ───────────────────────────────────────────────────────────── */
.steps-container { position: relative; }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--navy-100);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(97,20,240,0.35);
}
.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: 8px;
  line-height: 1.4;
}
.step-body { font-size: 0.85rem; color: var(--navy-600); line-height: 1.65; }

/* ── CTA BLOCK ────────────────────────────────────────────────────────────── */
.cta-section {
  background: var(--navy-800);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(97,20,240,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: center;
}
.cta-headline {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
}
.cta-body {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 560px;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(97,20,240,0.4);
}
.cta-button:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(97,20,240,0.5); }
.cta-contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px 24px;
}
.contact-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.contact-title {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.contact-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 16px;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  margin-bottom: 10px;
  text-decoration: none;
}
.contact-link--url   { color: var(--cyan); font-weight: 600; }
.contact-link--email { color: rgba(255,255,255,0.6); }
.contact-link:hover { opacity: 0.85; }
.contact-icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
}

/* ── SITE FOOTER ──────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-950);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 48px;
  max-width: 100%;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-text { font-size: 0.72rem; color: var(--navy-500); }

/* ── LIGHT SECTION OVERRIDES ──────────────────────────────────────────────── */
.light-section { background: var(--navy-25); }
.light-section .section-label { color: var(--violet); }
.light-section .section-rule { background: var(--navy-100); }


/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .glance-grid { grid-template-columns: repeat(2, 1fr); }
  .kpi-grid    { grid-template-columns: repeat(2, 1fr); }
  .cta-inner   { grid-template-columns: 1fr; gap: 40px; }
  .nav-links   { display: none; }
  .hero-logos  { padding: 0 24px; }
  .hero-content { padding: 0 24px 64px; }
  .section     { padding: 56px 24px; }
  .insight-card { grid-template-columns: 1fr; }

  /* ── MOBILE TABLE → CARD LAYOUT ─────────────────────────────────────── */
  /* Release the overflow:hidden wrapper so card shadows render correctly  */
  .tbl-wrap {
    overflow: visible !important;
    border-radius: 0 !important;
    background: transparent;
  }

  /* Make tables/tbody/tr all block-level */
  .opp-table,
  .channel-table,
  .scorecard-table,
  .opp-table tbody,
  .channel-table tbody,
  .scorecard-table tbody { display: block; width: 100%; }

  /* Hide table headers — labels come from ::before */
  .opp-table thead,
  .channel-table thead,
  .scorecard-table thead { display: none; }

  /* Each row is a card */
  .opp-table tr,
  .channel-table tr,
  .scorecard-table tr {
    display: block;
    background: #FFFFFF;
    border-radius: 10px;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(17,24,60,0.10);
  }

  /* Each cell is a full-width labeled row inside the card */
  .opp-table td,
  .channel-table td,
  .scorecard-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 11px 16px;
    font-size: 0.83rem;
    line-height: 1.5;
    color: var(--navy-950);
    border-bottom: 1px solid rgba(17,24,60,0.07);
    background: transparent !important; /* disable odd/even stripe on mobile */
  }
  .opp-table td:last-child,
  .channel-table td:last-child,
  .scorecard-table td:last-child { border-bottom: none; }

  /* Column label printed above the cell value */
  .opp-table td::before,
  .channel-table td::before,
  .scorecard-table td::before {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--violet);
    margin-bottom: 4px;
  }

  /* opp-table column labels */
  .opp-table td:nth-child(1)::before { content: "Signal Observed"; }
  .opp-table td:nth-child(2)::before { content: "Likely Gap"; }
  .opp-table td:nth-child(3)::before { content: "WillDom Capability"; }

  /* First cell of opp-table is the card "headline" */
  .opp-table td:nth-child(1) {
    background: var(--navy-950) !important;
    color: #FBFBFB;
    font-weight: 600;
    font-size: 0.88rem;
  }
  .opp-table td:nth-child(1)::before { color: var(--cyan); }

  /* channel-table column labels */
  .channel-table td:nth-child(1)::before { content: "Channel"; }
  .channel-table td:nth-child(2)::before { content: "Current Signal"; }
  .channel-table td:nth-child(3)::before { content: "Benchmark"; }
  .channel-table td:nth-child(4)::before { content: "Opportunity"; }

  /* First cell of channel-table is the card "headline" */
  .channel-table td:nth-child(1) {
    background: var(--navy-950) !important;
    color: #FBFBFB;
    font-weight: 600;
    font-size: 0.88rem;
  }
  .channel-table td:nth-child(1)::before { color: var(--cyan); }

  /* scorecard-table column labels */
  .scorecard-table td:nth-child(1)::before { content: "Dimension"; }
  .scorecard-table td:nth-child(2)::before { content: "Est. Maturity"; }
  .scorecard-table td:nth-child(3)::before { content: "Signal Basis"; }
  .scorecard-table td:nth-child(4)::before { content: "Priority"; }

  /* First cell of scorecard-table is the card "headline" */
  .scorecard-table td:nth-child(1) {
    background: var(--navy-950) !important;
    color: #FBFBFB;
    font-weight: 600;
    font-size: 0.88rem;
  }
  .scorecard-table td:nth-child(1)::before { color: var(--cyan); }

  /* Disable hover color change on touch */
  .opp-table tr:hover td,
  .channel-table tr:hover td,
  .scorecard-table tr:hover td { background: transparent !important; color: var(--navy-950); }
  .opp-table tr:hover td:nth-child(1),
  .channel-table tr:hover td:nth-child(1),
  .scorecard-table tr:hover td:nth-child(1) { background: var(--navy-950) !important; color: #FBFBFB; }
}
@media (max-width: 600px) {
  .glance-grid { grid-template-columns: 1fr; }
  .kpi-grid    { grid-template-columns: 1fr; }
  .hero-title  { font-size: 2rem; }
}
