@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700&display=swap');

/* Geist — body font via Fontsource CDN */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url('https://cdn.jsdelivr.net/fontsource/fonts/geist:vf@latest/latin-wght-normal.woff2') format('woff2-variations');
}

/* Geist Mono — clean monospace via Fontsource CDN */
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url('https://cdn.jsdelivr.net/fontsource/fonts/geist-mono:vf@latest/latin-wght-normal.woff2') format('woff2-variations');
}

/* --- View Transitions API (cross-page transitions in supporting browsers) --- */
@view-transition {
  navigation: auto;
}

/* ============================================
   RE UP REPORT — Bloomberg-Style CSS
   Dark terminal aesthetic, data-forward design
   ============================================ */

/* --- Custom Properties --- */
:root {
  --black: #0a0a0a;
  --black-soft: #0f0f0f;
  --black-card: #141414;
  --black-hover: #1a1a1a;
  --gray-900: #1e1e1e;
  --gray-800: #2a2a2a;
  --gray-700: #333;
  --gray-600: #444;
  --gray-500: #666;
  --gray-400: #888;
  --gray-300: #aaa;
  --gray-200: #ccc;
  --gray-100: #eee;
  --white: #ffffff;
  --accent: #e50914;
  --accent-hover: #ff1a1a;
  --accent-dim: rgba(229, 9, 20, 0.15);
  --accent-glow: rgba(229, 9, 20, 0.3);
  --accent-text: #ff3333;
  --blue: #3b82f6;
  --teal: #14b8a6;
  --yellow: #f59e0b;
  --green: #10b981;
  --red: #ef4444;
  --accent-gradient: linear-gradient(135deg, #e50914, #ff6b35);
  --font: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'Geist Mono', 'SF Mono', 'Fira Code', monospace;
  --font-display: 'Instrument Sans', 'Geist', -apple-system, sans-serif;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px; /* Account for sticky navbar height + breathing room */
  -webkit-text-size-adjust: 100%;
}

/* View transition: main content area animates between pages */
main,
.dashboard {
  view-transition-name: main-content;
}

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--gray-200);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

table {
  border-collapse: collapse;
  width: 100%;
}

h1, h2, h3 {
  letter-spacing: -0.01em;
  line-height: 1.2;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-700);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-600);
}

/* --- Scroll Progress Bar (CSS-only with scroll-driven animation) --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  z-index: 10000;
  transform-origin: left;
  transform: scaleX(0);
  /* JS fallback: transition on width for browsers without animation-timeline */
  transition: width 0.1s linear;
}

@supports (animation-timeline: scroll()) {
  .scroll-progress {
    transition: none;
    animation: scroll-progress-fill linear forwards;
    animation-timeline: scroll();
  }

  @keyframes scroll-progress-fill {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
  }
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar,
.navbar-dashboard {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-800);
  height: 56px;
  view-transition-name: header;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  view-transition-name: logo;
}

.logo-accent {
  color: var(--accent-text);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-nav {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 4px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: all 0.2s;
  border: 1px solid var(--gray-700);
  color: var(--gray-300);
}

.btn-nav:hover {
  border-color: var(--gray-500);
  color: var(--white);
}

.btn-nav.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
}

.btn-nav.btn-primary:hover {
  background: #cc0812;
  border-color: #cc0812;
}

/* Dashboard nav center */
.dash-nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
}

.dash-market-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Mobile Nav */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 4px;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gray-300);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  background: var(--black-soft);
  border-bottom: 1px solid var(--gray-800);
  padding: 16px 24px;
  z-index: 999;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu .nav-link {
  display: block;
  padding: 12px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--gray-800);
}

.mobile-menu .nav-actions {
  padding-top: 16px;
  flex-direction: column;
}

.mobile-menu .btn-nav {
  width: 100%;
  text-align: center;
  padding: 10px;
}

/* ============================================
   HERO — Landing Page
   ============================================ */
.hero-report {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 56px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    repeating-linear-gradient(
      0deg,
      transparent,
      rgba(255, 255, 255, 0.01) 2px,
      transparent 4px
    ),
    radial-gradient(ellipse at 20% 50%, rgba(229, 9, 20, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--black) 0%, var(--black-soft) 100%);
  background-size:
    24px 24px,
    auto,
    auto,
    auto;
}

.hero-report-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  display: flex;
  align-items: center;
  gap: 64px;
  width: 100%;
}

.hero-report-content {
  flex: 1;
  min-width: 0;
}

/* Market badge */
.market-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent-dim);
  border: 1px solid rgba(229, 9, 20, 0.2);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-text);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: heroFadeScale 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0s both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px transparent; }
}

/* Hero entrance animations */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeScale {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroFadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-report-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 80px rgba(255, 255, 255, 0.1);
}

.hero-report-subtitle {
  font-size: 17px;
  color: var(--gray-400);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 40px;
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

/* Hero stats row */
.hero-report-stats {
  display: flex;
  gap: 1px;
  background: var(--gray-800);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 40px;
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

.hero-stat {
  flex: 1;
  padding: 16px 20px;
  background: var(--black-card);
}

.hero-stat:first-child {
  border-radius: 6px 0 0 6px;
}

.hero-stat:last-child {
  border-radius: 0 6px 6px 0;
}

.hero-stat-number {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* Hero CTA buttons */
.hero-report-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

/* Hero & CTA Waitlist Forms */
.hero-waitlist {
  margin-top: 32px;
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.75s both;
}

.hero-waitlist-label {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.hero-waitlist-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-waitlist-form input[type="email"],
.hero-waitlist-form input[type="text"],
.hero-waitlist-form input[type="tel"] {
  padding: 12px 16px;
  border: 1px solid var(--gray-700);
  border-radius: 6px;
  background: #1a1a1a;
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  flex: 1 1 200px;
  min-width: 0;
  outline: none;
  transition: border-color 0.2s;
}

.hero-waitlist-form input[type="text"][name="zip"] {
  flex: 0 1 120px;
  min-width: 100px;
}

.hero-waitlist-form input[type="email"]:focus,
.hero-waitlist-form input[type="text"]:focus,
.hero-waitlist-form input[type="tel"]:focus {
  border-color: var(--accent);
}

.hero-waitlist-form input[type="email"]::placeholder,
.hero-waitlist-form input[type="text"]::placeholder,
.hero-waitlist-form input[type="tel"]::placeholder {
  color: var(--gray-500);
}

.hero-waitlist-msg {
  margin-top: 12px;
  font-size: 14px;
}

.hero-waitlist-msg--ok {
  color: var(--green);
}

.hero-waitlist-msg--err {
  color: var(--accent-text);
}

/* CTA Waitlist */
.cta-waitlist {
  max-width: 640px;
  margin: 0 auto;
}

.cta-waitlist .hero-waitlist-form {
  justify-content: center;
}

.cta-social-proof {
  margin-top: 16px;
  font-size: 13px;
  color: var(--gray-500);
  letter-spacing: 0.02em;
}

/* Navbar Waitlist Button */
.btn-nav-waitlist {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
}

.btn-nav-waitlist:hover {
  background: #cc0812;
  border-color: #cc0812;
  color: var(--white);
}

.btn-nav-waitlist.nav-waitlist-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Ticker card (right side) */
.hero-report-ticker {
  flex-shrink: 0;
  width: 380px;
  animation: heroFadeInRight 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.ticker-card {
  background: var(--black-card);
  border: 1px solid var(--gray-800);
  border-top: 2px solid;
  border-image: linear-gradient(to right, rgba(229, 9, 20, 0.6), transparent) 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  position: relative;
}

.ticker-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.04) 45%,
    rgba(255, 255, 255, 0.04) 55%,
    transparent 60%
  );
  animation: tickerShimmer 4.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes tickerShimmer {
  0%, 100% {
    left: -100%;
  }
  50%, 80% {
    left: 100%;
  }
}

.ticker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-800);
}

.ticker-market {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: var(--gray-800);
  padding: 4px 10px;
  border-radius: 3px;
  letter-spacing: 0.05em;
}

.ticker-label {
  font-size: 11px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ticker-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--accent-text);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ticker-live::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.ticker-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gray-800);
}

.ticker-item {
  padding: 14px 20px;
  background: var(--black-card);
}

.ticker-service {
  font-size: 11px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.ticker-price {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, #10b981, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.ticker-range {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-500);
  margin-top: 4px;
}

.ticker-footer {
  padding: 10px 20px;
  border-top: 1px solid var(--gray-800);
  font-size: 10px;
  color: var(--gray-600);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 80px 0;
}

.section-dark {
  padding: 80px 0;
  background-image: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 120px);
  background-color: var(--black-soft);
  border-top: 1px solid var(--gray-800);
  box-shadow: 0 -1px 20px rgba(229, 9, 20, 0.05);
}

.section-black {
  padding: 80px 0;
  background-image: linear-gradient(0deg, rgba(255,255,255,0.02) 0%, transparent 120px);
  background-color: var(--black);
  border-top: 1px solid var(--gray-800);
  box-shadow: 0 -1px 20px rgba(229, 9, 20, 0.05);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--accent-text);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: 0 0 20px rgba(229, 9, 20, 0.3);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
  text-wrap: balance;
  background: linear-gradient(180deg, #ffffff 0%, #cccccc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 16px;
  color: var(--gray-400);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================
   VALUE GRID
   ============================================ */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.value-card {
  background: var(--black-card);
  border: 1px solid var(--gray-800);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  padding: 28px 24px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.3s, transform 0.3s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.3), 0 4px 12px rgba(0,0,0,0.2);
}

.value-card:hover {
  background: var(--black-hover);
  border-color: var(--gray-700);
  border-left-color: var(--accent);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 30px rgba(229, 9, 20, 0.06);
  transform: scale(1.02);
}

.value-card:hover .value-icon {
  background: rgba(229, 9, 20, 0.2);
  box-shadow: 0 0 12px rgba(229, 9, 20, 0.15);
}

.value-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 6px;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 18px;
  transition: background 0.3s, box-shadow 0.3s;
}

.value-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.value-desc {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.5;
}

/* ============================================
   DATA TABLES
   ============================================ */
.data-table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--gray-800);
  border-radius: 8px;
  background: var(--black-card);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.data-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: var(--gray-900);
  padding: 12px 16px;
  text-align: left;
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--gray-800);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

.data-table tbody tr {
  border-bottom: 1px solid var(--gray-800);
  transition: background 0.15s;
}

.data-table tbody tr:last-child {
  border-bottom: none;
}

.data-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.data-table tbody tr:hover {
  background: var(--black-hover);
}

.data-table tbody td {
  padding: 12px 16px;
  color: var(--gray-300);
  white-space: nowrap;
}

.cell-mono {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-300);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

.cell-price {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--green);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.cell-count {
  font-family: var(--font-mono);
  font-size: 12px;
  text-align: right;
  color: var(--gray-300);
  font-variant-numeric: tabular-nums;
}

.table-cta {
  text-align: center;
  padding: 32px 0;
}

/* ============================================
   COMPETITOR CARDS (Landing)
   ============================================ */
.competitor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.competitor-card {
  background: var(--black-card);
  border: 1px solid var(--gray-800);
  border-left: 3px solid transparent;
  border-radius: 8px;
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.3s, border-left-color 0.3s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.3), 0 4px 12px rgba(0,0,0,0.2);
}

.competitor-card:hover {
  border-color: var(--gray-700);
  border-left-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 30px rgba(229, 9, 20, 0.06);
  background: linear-gradient(var(--black-hover), var(--black-hover)) padding-box,
              linear-gradient(135deg, rgba(229, 9, 20, 0.3), transparent 60%) border-box;
}

.comp-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.comp-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.comp-zip {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-500);
  background: var(--gray-900);
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.04em;
}

.comp-stats {
  display: flex;
  gap: 1px;
  background: var(--gray-800);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}

.comp-stat {
  flex: 1;
  padding: 10px 12px;
  background: var(--black-card);
  text-align: center;
}

.comp-stat-label {
  font-size: 9px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.comp-stat-value {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.comp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.comp-tag {
  font-size: 10px;
  font-weight: 500;
  color: var(--gray-400);
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: 0.02em;
}

/* ============================================
   CTA SECTION
   ============================================ */
.section-cta-report {
  padding: 100px 0;
  background:
    linear-gradient(135deg, rgba(229, 9, 20, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(229, 9, 20, 0.1) 0%, transparent 60%),
    var(--black);
  text-align: center;
}

.cta-report-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-report-content .section-title {
  margin-bottom: 20px;
}

.cta-report-content .section-desc {
  margin-bottom: 32px;
}

.cta-report-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  text-align: left;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-300);
}

.cta-feature svg,
.cta-feature i {
  color: var(--accent);
  flex-shrink: 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  letter-spacing: 0.02em;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: #cc0812;
  border-color: #cc0812;
  box-shadow: 0 0 20px var(--accent-glow), 0 0 40px rgba(229, 9, 20, 0.15);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 0 10px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--gray-300);
  border-color: var(--gray-700);
  transition: all 0.2s, border-color 0.3s ease;
}

.btn-ghost:hover {
  border-color: var(--gray-400);
  color: var(--white);
  background: var(--black-hover);
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.03);
}

.btn-lg {
  font-size: 14px;
  padding: 14px 32px;
  border-radius: 6px;
}

.btn-lg:hover {
  box-shadow: 0 0 30px var(--accent-glow), 0 4px 20px rgba(0,0,0,0.4);
}

/* ============================================
   DASHBOARD — body.body-dashboard
   ============================================ */
.body-dashboard {
  background: var(--black);
  scroll-padding-top: 116px;
}

.dashboard {
  padding-top: 116px;
  min-height: 100vh;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 40px;
}

/* Dashboard Section Navigation */
.dash-section-nav {
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-800);
}

.dash-section-nav-track {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.dash-section-nav-track::-webkit-scrollbar {
  display: none;
}

.dash-nav-link {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-400);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.dash-nav-link:hover {
  color: var(--gray-200);
  background: var(--black-hover);
}

.dash-nav-link.active {
  color: var(--white);
  border-bottom-color: var(--accent);
}

.dash-section {
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-800);
}

.dash-section:last-child {
  border-bottom: none;
}

.dash-section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.dash-section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.dash-section-sub {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 4px;
}

.dash-filters {
  display: flex;
  gap: 4px;
  background: var(--black-card);
  border: 1px solid var(--gray-800);
  border-radius: 6px;
  padding: 3px;
}

.dash-filter-btn {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-400);
  padding: 6px 14px;
  border-radius: 4px;
  transition: all 0.2s;
  border: none;
  background: none;
  cursor: pointer;
}

.dash-filter-btn:hover {
  color: var(--white);
}

.dash-filter-btn.active {
  background: var(--gray-800);
  color: var(--white);
}

.dash-search {
  position: relative;
}

.dash-search-input {
  font-family: var(--font);
  font-size: 13px;
  color: var(--gray-200);
  background: var(--black-card);
  border: 1px solid var(--gray-800);
  border-radius: 6px;
  padding: 8px 14px 8px 36px;
  width: 240px;
  transition: border-color 0.2s;
  outline: none;
}

.dash-search-input::placeholder {
  color: var(--gray-600);
}

.dash-search-input:focus {
  border-color: var(--gray-600);
}

/* ============================================
   KPI CARDS
   ============================================ */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.kpi-card {
  background: var(--black-card);
  border: 1px solid var(--gray-800);
  border-top: 2px solid var(--accent);
  border-radius: 6px;
  padding: 20px;
  transition: background 0.2s, box-shadow 0.3s;
  box-shadow: 0 -2px 10px rgba(229, 9, 20, 0.1), 0 4px 12px rgba(0,0,0,0.2);
}

.kpi-card:hover {
  background: var(--black-hover);
  box-shadow: 0 -2px 14px rgba(229, 9, 20, 0.15), 0 6px 20px rgba(0,0,0,0.3);
}

.kpi-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.kpi-value {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}

.kpi-sub {
  font-size: 11px;
  color: var(--gray-500);
  margin-top: 8px;
}

/* ============================================
   MOVES GRID
   ============================================ */
.moves-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 12px;
}

.move-card {
  background: var(--black-card);
  border: 1px solid var(--gray-800);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  padding: 20px;
  transition: background 0.2s;
}

.move-card:hover {
  background: var(--black-hover);
}

.move-type {
  font-size: 10px;
  font-weight: 600;
  color: var(--accent-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.move-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}

.move-detail {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.5;
  margin-bottom: 12px;
}

.move-impact {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 3px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--accent-dim);
  color: var(--accent-text);
}

.move-impact.negative {
  background: rgba(239, 68, 68, 0.15);
  color: var(--red);
}

/* ============================================
   INTERACTIVE MAP
   ============================================ */
.map-container {
  display: flex;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  height: 520px;
  position: relative;
}

.map-canvas {
  flex: 1;
  min-height: 520px;
  background: var(--bg-card, #1a1a2e);
}

.map-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 2rem;
  color: var(--gray-400, #9ca3af);
}

.map-fallback-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white, #fff);
  margin-bottom: 0.5rem;
}

.map-fallback-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.map-fallback-hint {
  font-size: 0.75rem;
  color: var(--gray-500, #6b7280);
  font-family: monospace;
}

/* Map Sidebar */
.map-sidebar {
  width: 0;
  overflow: hidden;
  background: var(--bg-card, #16213e);
  transition: width 0.3s ease;
  border-left: 1px solid rgba(255,255,255,0.06);
}

.map-sidebar--open {
  width: 340px;
}

.map-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.map-sidebar-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white, #fff);
  margin: 0;
}

.map-sidebar-close {
  background: none;
  border: none;
  color: var(--gray-400, #9ca3af);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 4px 8px;
}

.map-sidebar-content {
  padding: 1rem;
  overflow-y: auto;
  max-height: calc(520px - 60px);
}

.map-sidebar-placeholder {
  font-size: 0.8125rem;
  color: var(--gray-500, #6b7280);
  line-height: 1.6;
}

/* Map Legend */
.map-legend {
  display: flex;
  gap: 1.25rem;
  padding: 0.75rem 0;
  font-size: 0.75rem;
  color: var(--gray-400, #9ca3af);
}

.map-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.map-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
}

.map-legend-dot--premium { background: #e50914; }
.map-legend-dot--mid { background: #f59e0b; }
.map-legend-dot--value { background: #22c55e; }
.map-legend-dot--google { background: #888888; }

/* Map Shop Details */
.map-shop-header {
  margin-bottom: 0.75rem;
}

.map-shop-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white, #fff);
  margin: 0 0 0.5rem;
}

.map-source-tag {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 4px;
}

.map-source-tag--live {
  background: rgba(59,130,246,0.15);
  color: #60a5fa;
}

.map-source-tag--static {
  background: rgba(229,9,20,0.15);
  color: #f87171;
}

.map-detail-rating {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 0.75rem;
}

.map-stars { font-size: 1.25rem; }

.map-detail-meta {
  margin-bottom: 1rem;
}

.map-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 0.375rem 0;
  font-size: 0.8125rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--gray-300, #d1d5db);
}

.map-detail-label {
  color: var(--gray-500, #6b7280);
}

.map-detail-section {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.map-detail-section-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-400, #9ca3af);
  margin: 0 0 0.75rem;
}

.map-hours-row {
  font-size: 0.8125rem;
  color: var(--gray-300, #d1d5db);
  padding: 2px 0;
}

.map-open-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 0.5rem;
}

.map-open-badge--open {
  background: rgba(34,197,94,0.15);
  color: #4ade80;
}

.map-open-badge--closed {
  background: rgba(239,68,68,0.15);
  color: #f87171;
}

.map-review {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.map-review-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--white, #fff);
  margin-bottom: 4px;
}

.map-review-rating { color: #f59e0b; }

.map-review-text {
  font-size: 0.75rem;
  color: var(--gray-400, #9ca3af);
  line-height: 1.5;
  margin: 4px 0;
}

.map-review-time {
  font-size: 0.6875rem;
  color: var(--gray-500, #6b7280);
}

.map-photos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.map-photo {
  width: 100%;
  border-radius: 6px;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.map-detail-links {
  display: flex;
  gap: 0.75rem;
}

.map-link {
  font-size: 0.8125rem;
  color: var(--accent, #e50914);
  text-decoration: none;
}

.map-link:hover { text-decoration: underline; }

.map-detail-error {
  font-size: 0.8125rem;
  color: #f87171;
}

/* ── Refresh Button + Live Status ── */
.dash-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn-sm {
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 6px;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--gray-300, #d1d5db);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-outline:hover {
  border-color: var(--accent, #e50914);
  color: var(--white, #fff);
}

.btn-outline:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.refresh-icon {
  display: inline-block;
  transition: transform 0.3s;
}

.refresh-icon.spinning {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.live-status {
  font-size: 0.75rem;
}

.live-status--loading { color: #f59e0b; }
.live-status--success { color: #4ade80; }
.live-status--error { color: #f87171; }

/* ── Live Data Badge in Competitor Table ── */
.live-badge {
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(59,130,246,0.15);
  color: #60a5fa;
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}

.live-data-row {
  background: rgba(59,130,246,0.03);
}

/* ── Source Badges (Competitor Table) ── */
.source-badge {
  display: inline-block;
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}

.source-badge--static {
  background: rgba(229,9,20,0.12);
  color: #f87171;
}

.source-badge--enriched {
  background: linear-gradient(90deg, rgba(229,9,20,0.12), rgba(59,130,246,0.12));
  color: #c084fc;
}

.source-badge--live {
  background: rgba(59,130,246,0.15);
  color: #60a5fa;
}

/* ── Pricing Source Indicators ── */
.source-badge--booking {
  background: rgba(34,197,94,0.15);
  color: #4ade80;
}

.source-badge--estimated {
  background: rgba(245,158,11,0.12);
  color: #fbbf24;
}

.price-est {
  color: #fbbf24;
  font-size: 0.75rem;
  font-weight: 600;
}

.price-verified {
  color: #4ade80;
  font-size: 0.75rem;
  font-weight: 600;
}

.rating-count {
  font-size: 0.6875rem;
  color: var(--gray-500, #6b7280);
  font-weight: 400;
}

/* ── Map Filter Buttons ── */
.map-filter-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--gray-400, #9ca3af);
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 0.8125rem;
  cursor: pointer;
  transition: all 0.2s;
}

.map-filter-btn:hover {
  border-color: rgba(255,255,255,0.2);
  color: var(--white, #fff);
}

.map-filter-btn.active {
  background: var(--accent, #e50914);
  border-color: var(--accent, #e50914);
  color: #fff;
}

/* ── Shop Directory Panel ── */
.map-directory {
  width: 280px;
  min-width: 280px;
  background: var(--bg-card, #111);
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.map-directory-header {
  padding: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.map-directory-search {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 0.8125rem;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.map-directory-search::placeholder {
  color: var(--gray-500, #6b7280);
}

.map-directory-search:focus {
  border-color: var(--accent, #e50914);
}

.map-directory-count {
  padding: 6px 12px;
  font-size: 0.6875rem;
  color: var(--gray-500, #6b7280);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.map-directory-list {
  flex: 1;
  overflow-y: auto;
  padding: 4px 0;
}

.directory-item {
  padding: 10px 12px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: background 0.15s;
}

.directory-item:hover {
  background: rgba(229,9,20,0.08);
}

.directory-item-main {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 3px;
}

.directory-item-name {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--white, #fff);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.directory-source {
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 1px 5px;
  border-radius: 3px;
  flex-shrink: 0;
}

.directory-source--db {
  background: rgba(229,9,20,0.15);
  color: #f87171;
}

.directory-source--live {
  background: rgba(59,130,246,0.15);
  color: #60a5fa;
}

.directory-item-meta {
  display: flex;
  gap: 8px;
  font-size: 0.6875rem;
  color: var(--gray-500, #6b7280);
}

.directory-item-rating {
  color: #f59e0b;
}

.directory-item-tier {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.directory-item-tier--premium { color: #e50914; }
.directory-item-tier--midtier { color: #f59e0b; }
.directory-item-tier--value { color: #22c55e; }
.directory-item-tier--live { color: #3b82f6; }
.directory-item-tier--google { color: #888888; }

.directory-empty {
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--gray-500, #6b7280);
}

/* ── Dark InfoWindow Overrides ── */
.gm-style-iw-c {
  background: #111 !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 8px !important;
  padding: 0 !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.6) !important;
}
.gm-style-iw-d {
  overflow: auto !important;
}
.gm-style-iw-tc::after {
  background: #111 !important;
}
.gm-ui-hover-effect {
  filter: invert(1) !important;
}

/* ── Responsive: Map ── */
@media (max-width: 768px) {
  .map-container {
    flex-direction: column;
    height: auto;
  }

  .map-directory {
    width: 100%;
    min-width: unset;
    max-height: 200px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .map-canvas {
    min-height: 350px;
  }

  .map-sidebar--open {
    width: 100%;
  }

  .map-sidebar-content {
    max-height: 300px;
  }

  .map-legend {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
}

/* ============================================
   DENSITY GRID
   ============================================ */
.density-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}

.density-card {
  background: var(--black-card);
  border: 1px solid var(--gray-800);
  border-radius: 6px;
  padding: 16px;
  transition: background 0.2s;
}

.density-card:hover {
  background: var(--black-hover);
}

.density-zip {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.density-bar {
  height: 4px;
  background: var(--green);
  border-radius: 2px;
  margin-bottom: 8px;
  transition: width 0.6s ease-out;
}

.density-count {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-500);
}

/* ============================================
   FOOTER
   ============================================ */
.footer,
.footer-dashboard {
  background: linear-gradient(180deg, var(--black-soft) 0%, var(--black) 100%);
  border-top: 1px solid var(--gray-700);
  padding: 60px 0;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo .logo-text {
  font-size: 16px;
  background: linear-gradient(135deg, #e50914, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 13px;
  color: var(--gray-500);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--gray-800);
  font-size: 12px;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-login-link {
  font-size: 11px;
  color: var(--gray-700);
  text-decoration: none;
  transition: color 0.2s;
}

.admin-login-link:hover {
  color: var(--gray-400);
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays */
[data-animate][data-delay="100"] { transition-delay: 0.1s; }
[data-animate][data-delay="200"] { transition-delay: 0.2s; }
[data-animate][data-delay="300"] { transition-delay: 0.3s; }
[data-animate][data-delay="400"] { transition-delay: 0.4s; }
[data-animate][data-delay="500"] { transition-delay: 0.5s; }

/* ============================================
   UTILITIES
   ============================================ */
.text-accent {
  color: var(--accent-text);
}

/* ============================================
   RESPONSIVE — Tablet (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .hero-report-inner {
    flex-direction: column;
    padding: 60px 24px;
    gap: 48px;
  }

  .hero-report-ticker {
    width: 100%;
    max-width: 480px;
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .competitor-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kpi-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }
}

/* ============================================
   RESPONSIVE — Mobile (max-width: 640px)
   ============================================ */
@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }

  .dashboard {
    padding-left: 16px;
    padding-right: 16px;
  }

  .dash-section-nav-track {
    padding: 0 12px;
  }

  .dash-nav-link {
    padding: 10px 12px;
    font-size: 12px;
  }

  .hero-report-inner {
    padding: 40px 16px;
  }

  .hero-report-stats {
    flex-direction: column;
  }

  .hero-stat {
    border-radius: 0;
  }

  .hero-stat:first-child {
    border-radius: 6px 6px 0 0;
  }

  .hero-stat:last-child {
    border-radius: 0 0 6px 6px;
  }

  .hero-report-actions {
    flex-direction: column;
  }

  .hero-report-actions .btn {
    width: 100%;
  }

  .hero-waitlist-form {
    flex-direction: column;
  }

  .hero-waitlist-form input[type="email"],
  .hero-waitlist-form input[type="text"],
  .hero-waitlist-form input[type="tel"],
  .hero-waitlist-form .btn {
    width: 100%;
    flex: 1 1 100%;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .competitor-grid {
    grid-template-columns: 1fr;
  }

  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 56px 0;
  }

  .section-dark {
    padding: 56px 0;
  }

  .section-black {
    padding: 56px 0;
  }

  .section-cta-report {
    padding: 64px 0;
  }

  .ticker-grid {
    grid-template-columns: 1fr;
  }

  .dash-section-header {
    flex-direction: column;
  }

  .dash-filters {
    width: 100%;
    overflow-x: auto;
  }

  .dash-search-input {
    width: 100%;
  }

  .moves-grid {
    grid-template-columns: 1fr;
  }

  .density-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .dash-nav-center {
    display: none;
  }

  .btn-lg {
    font-size: 13px;
    padding: 12px 24px;
  }
}

/* ============================================
   RESPONSIVE — Small Mobile (max-width: 380px)
   ============================================ */
@media (max-width: 380px) {
  .kpi-grid {
    grid-template-columns: 1fr;
  }

  .density-grid {
    grid-template-columns: 1fr;
  }

  .kpi-value {
    font-size: 22px;
  }
}

/* ============================================
   ADDITIONAL DASHBOARD CLASSES
   ============================================ */

/* Column highlight for pricing filter */
.col-highlight {
  background: var(--accent-dim) !important;
}

/* Sort arrow on table headers */
.sort-arrow {
  font-size: 0.6rem;
  color: var(--white);
  margin-left: 4px;
}

/* Move impact variants (from dashboard.js) */
.move-impact--high { background: rgba(239, 68, 68, 0.15); color: var(--red); }
.move-impact--medium { background: rgba(245, 158, 11, 0.15); color: var(--yellow, #f59e0b); }
.move-impact--low { background: rgba(255, 255, 255, 0.08); color: var(--gray-400); }

/* Tier badges */
.tier-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.tier-premium { background: rgba(16, 185, 129, 0.15); color: var(--green); }
.tier-midtier { background: rgba(59, 130, 246, 0.15); color: var(--blue, #3b82f6); }
.tier-value { background: rgba(255, 255, 255, 0.08); color: var(--gray-400); }

/* Type badges (social table) */
.type-badge {
  font-size: 11px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 20px;
}
.type-barber { background: rgba(139, 92, 246, 0.15); color: #8b5cf6; }
.type-shop { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }

/* Density sub-elements used by dashboard.js */
.density-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.density-area {
  font-size: 0.75rem;
  color: var(--gray-500);
  display: block;
  margin-bottom: 10px;
}
.density-bar-track {
  height: 6px;
  background: var(--gray-800);
  border-radius: 3px;
  overflow: hidden;
}
.density-bar-fill {
  height: 100%;
  background: var(--green);
  border-radius: 3px;
  transition: width 0.6s ease-out;
}

/* Move card header layout */
.move-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

/* ============================================
   BOTTOM TICKER — Live Market Data
   ============================================ */
.bottom-ticker {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--gray-800);
  height: 36px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ticker-label-fixed {
  flex-shrink: 0;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  z-index: 2;
}

.ticker-track {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
}

.ticker-scroll {
  display: flex;
  align-items: center;
  gap: 0;
  animation: tickerScroll 60s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.ticker-scroll:hover {
  animation-play-state: paused;
}

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

.ticker-item-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 20px;
  font-size: 12px;
  color: var(--gray-300);
  border-right: 1px solid var(--gray-800);
  height: 36px;
  white-space: nowrap;
}

.ticker-item-live:last-child {
  border-right: none;
}

.ticker-shop-name {
  font-weight: 600;
  color: var(--white);
  font-size: 11px;
}

.ticker-service-name {
  color: var(--gray-500);
  font-size: 11px;
}

.ticker-price-live {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--green);
  font-size: 12px;
}

.ticker-zip {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gray-600);
}

/* Add padding to body/footer so ticker doesn't overlap content */
body.has-ticker {
  padding-bottom: 36px;
}

/* ============================================
   NEWS SECTIONS — Newspaper-style layout
   ============================================ */

/* Masthead / header */
.newsroom-header {
  margin-bottom: 32px;
}

.newsroom-masthead {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--gray-800);
  margin-bottom: 16px;
}

.newsroom-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 8px 0 12px;
  font-family: var(--font-heading);
  line-height: 1.1;
  background: linear-gradient(180deg, #ffffff 0%, #cccccc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.newsroom-dateline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  color: var(--gray-500);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.newsroom-edition {
  color: var(--accent-text);
  font-weight: 700;
}

.newsroom-separator {
  color: var(--gray-700);
}

.newsroom-header .news-tabs {
  justify-content: center;
}

/* Main layout: featured left, sidebar right */
.newsroom-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
  border-top: 1px solid var(--gray-800);
}

/* Featured / lead story */
.newsroom-featured {
  padding: 28px 28px 28px 0;
  border-right: 1px solid var(--gray-800);
}

.newsroom-lead-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.newsroom-lead-link:hover .newsroom-lead-title {
  color: var(--accent-text);
}

.newsroom-lead-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.newsroom-lead-title {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
  transition: color 0.15s;
}

.newsroom-lead-excerpt {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-300);
  margin-bottom: 16px;
}

.newsroom-lead-byline {
  margin-bottom: 12px;
}

.newsroom-read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-text);
  letter-spacing: 0.02em;
}

.newsroom-lead-link:hover .newsroom-read-more {
  text-decoration: underline;
}

/* Sidebar stories */
.newsroom-sidebar {
  display: flex;
  flex-direction: column;
}

.newsroom-sidebar-story {
  display: block;
  padding: 24px 0 24px 28px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--gray-800);
}

.newsroom-sidebar-story:last-child {
  border-bottom: none;
}

.newsroom-sidebar-story:hover .newsroom-sidebar-title {
  color: var(--accent-text);
}

.newsroom-sidebar-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.newsroom-sidebar-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 8px;
  transition: color 0.15s;
}

.newsroom-sidebar-summary {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.5;
  margin-bottom: 8px;
}

.newsroom-sidebar-byline {
  font-size: 11px;
}

/* Below-the-fold compact story list */
.newsroom-more-stories {
  grid-column: 1 / -1;
  border-top: 2px solid var(--gray-800);
  padding-top: 20px;
}

.newsroom-more-stories-header {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 12px;
}

.newsroom-compact-story {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-900);
  text-decoration: none;
  color: inherit;
}

.newsroom-compact-story:hover .newsroom-compact-title {
  color: var(--accent-text);
}

.newsroom-compact-title {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-200);
  transition: color 0.15s;
}

.newsroom-compact-story .news-date {
  flex-shrink: 0;
}

/* "Read All Stories" link */
.newsroom-more {
  text-align: center;
  margin-top: 28px;
}

/* Keep old .news-grid for dashboard or other pages */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
  gap: 20px;
}

.news-card {
  background: var(--black-card);
  border: 1px solid var(--gray-800);
  border-radius: 10px;
  padding: 20px 22px;
  border-top: 2px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease, border-top-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news-card:hover {
  border-color: var(--gray-600);
  border-top-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.news-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.news-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.news-tag--charlotte {
  background: rgba(229, 9, 20, 0.15);
  color: var(--accent-text);
}

.news-tag--tech {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}

.news-tag--industry {
  background: rgba(16, 185, 129, 0.15);
  color: var(--green);
}

.news-tag--national {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}

.news-tag--supply {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
}

.news-tag--events {
  background: rgba(168, 85, 247, 0.15);
  color: #a855f7;
}

.news-impact {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: auto;
}

.news-impact--high {
  background: rgba(229, 9, 20, 0.2);
  color: var(--accent-text);
}

.news-impact--medium {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
}

.news-date {
  font-size: 11px;
  color: var(--gray-500);
  font-family: var(--font-mono);
  white-space: nowrap;
}

.news-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

.news-summary {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.5;
}

.news-source {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--gray-500);
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--gray-800);
}

.news-source a {
  color: var(--accent-text);
  text-decoration: none;
  transition: color 0.15s;
}

.news-source a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.news-byline {
  color: var(--accent-text);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.03em;
}

.news-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 20px;
  color: var(--gray-500);
  font-size: 14px;
}

/* News section sub-header with tabs */
.news-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.news-tab {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 20px;
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  color: var(--gray-400);
  cursor: pointer;
  transition: all 0.15s ease;
}

.news-tab:hover {
  border-color: var(--gray-600);
  color: var(--gray-200);
}

.news-tab.active {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--white);
}

/* Clickable news cards */
a.news-card--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.news-card--link:hover {
  border-color: var(--accent);
}

a.news-card--link:hover .news-title {
  color: var(--accent-text);
}

/* ============================================================
   Article Detail Page
   ============================================================ */
.article-page {
  min-height: 80vh;
  padding: 100px 20px 60px;
}

.article-container {
  max-width: 720px;
  margin: 0 auto;
}

.article-loading,
.article-not-found {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-500);
}

.article-not-found h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.article-not-found .btn {
  margin-top: 20px;
}

.article-back {
  display: inline-block;
  font-size: 13px;
  color: var(--gray-400);
  text-decoration: none;
  margin-bottom: 28px;
  transition: color 0.15s;
}

.article-back:hover {
  color: var(--accent-text);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.article-headline {
  font-family: var(--font-display, 'Instrument Sans', sans-serif);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.article-info {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--gray-800);
}

.article-byline {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-text);
  letter-spacing: 0.03em;
}

.article-date {
  font-size: 13px;
  color: var(--gray-500);
}

.article-body {
  margin-bottom: 36px;
}

.article-body p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-300);
  margin-bottom: 20px;
}

.article-body p:first-child::first-letter {
  font-size: 3em;
  font-weight: 700;
  color: var(--white);
  float: left;
  line-height: 0.8;
  margin-right: 8px;
  margin-top: 6px;
}

/* Impact Outlook Box */
.article-outlook {
  background: rgba(255, 59, 48, 0.06);
  border: 1px solid rgba(255, 59, 48, 0.2);
  border-radius: 10px;
  padding: 22px 24px;
  margin-bottom: 32px;
}

.article-outlook-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.article-outlook-icon {
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
}

.article-outlook-timeframe {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.article-outlook-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-300);
  margin: 0;
}

/* Tags */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-800);
}

.article-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 14px;
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  color: var(--gray-500);
}

/* ============================================
   PAYWALL — RE UP Intel gate
   ============================================ */

/* Blurred preview of gated content */
.article-gated-preview {
  position: relative;
  max-height: 180px;
  overflow: hidden;
  margin-bottom: 0;
}

.article-gated-blur {
  filter: blur(6px);
  -webkit-filter: blur(6px);
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}

.article-gated-preview::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(10, 10, 10, 0.6) 50%,
    var(--black) 100%
  );
  pointer-events: none;
}

/* Paywall container */
.paywall {
  position: relative;
  margin-top: -20px;
  margin-bottom: 40px;
}

.paywall-fade {
  display: none; /* gradient handled by .article-gated-preview::after */
}

.paywall-gate {
  background: var(--black-card);
  border: 1px solid var(--gray-800);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
}

/* Header */
.paywall-lock {
  display: inline-block;
  color: var(--accent-text);
  font-size: 10px;
  margin-bottom: 8px;
}

.paywall-title {
  font-family: var(--font-display, 'Instrument Sans', sans-serif);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.paywall-subtitle {
  font-size: 14px;
  color: var(--gray-400);
  margin: 0 0 32px;
  line-height: 1.5;
}

/* Value proposition */
.paywall-value {
  text-align: left;
  margin-bottom: 36px;
}

.paywall-value-heading {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-text);
  margin: 0 0 18px;
}

.paywall-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.paywall-features li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 20px;
  position: relative;
}

.paywall-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
}

.paywall-features li strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.paywall-features li span {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.5;
}

/* Plan cards */
.paywall-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.paywall-plan {
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.paywall-plan--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.paywall-plan-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 12px;
  border-radius: 10px;
}

.paywall-plan-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.paywall-plan-price {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.paywall-currency {
  font-size: 20px;
  vertical-align: super;
  margin-right: 2px;
}

.paywall-period {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-500);
}

.paywall-plan-savings {
  font-size: 12px;
  color: var(--accent-text);
  font-weight: 600;
  margin-top: -4px;
}

.paywall-plan-includes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
  flex-grow: 1;
}

.paywall-plan-includes li {
  font-size: 12px;
  color: var(--gray-400);
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}

.paywall-plan-includes li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gray-500);
  font-size: 11px;
}

.paywall-cta {
  width: 100%;
  margin-top: auto;
  font-size: 13px;
  padding: 10px 16px;
}

.paywall-note {
  font-size: 12px;
  color: var(--gray-500);
  margin: 0;
}

/* Dashboard paywall gate */
.dash-gated--locked {
  position: relative;
  max-height: 350px;
  overflow: hidden;
  pointer-events: none;
}

.dash-gated--locked::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(10, 10, 10, 0.4) 30%,
    rgba(10, 10, 10, 0.85) 60%,
    var(--black) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.dash-paywall {
  max-width: 800px;
  margin: -40px auto 60px;
  position: relative;
  z-index: 2;
}

.dash-paywall-header {
  text-align: center;
  margin-bottom: 36px;
}

.dash-paywall-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.dash-paywall-card {
  background: var(--black-card);
  border: 1px solid var(--gray-800);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dash-paywall-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.dash-paywall-card-desc {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
}

.dash-paywall-card-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dash-paywall-cta-section {
  background: var(--black-card);
  border: 1px solid var(--gray-800);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 36px;
}

.dash-paywall-use-case {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-text);
  margin: 0 0 16px;
}

.dash-paywall-use-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dash-paywall-use-list li {
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}

.dash-paywall-use-list li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.dash-paywall-use-list li strong {
  color: var(--white);
}

/* ============================================
   ADMIN LOGIN MODAL
   ============================================ */
.admin-link {
  font-size: 11px;
  color: var(--gray-500);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
  cursor: pointer;
  font-family: var(--font-mono);
}

.admin-link:hover {
  color: var(--accent-text);
}

.admin-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.admin-modal {
  background: var(--black);
  border: 1px solid var(--gray-800);
  border-radius: 10px;
  padding: 32px;
  width: 320px;
  position: relative;
  text-align: center;
}

.admin-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  color: var(--gray-500);
  font-size: 22px;
  cursor: pointer;
}

.admin-modal-close:hover {
  color: var(--white);
}

.admin-modal-title {
  color: var(--white);
  font-size: 16px;
  margin: 0 0 20px;
  font-weight: 600;
}

.admin-modal-input {
  width: 100%;
  padding: 10px 14px;
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: 6px;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 13px;
  outline: none;
  box-sizing: border-box;
}

.admin-modal-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.15);
}

.admin-modal-error {
  color: var(--accent-text);
  font-size: 12px;
  margin: 8px 0 0;
}

.admin-modal-submit {
  margin-top: 16px;
  width: 100%;
  padding: 10px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.admin-modal-submit:hover {
  background: var(--accent-hover);
}

/* ============================================
   HEAT MAP — Charlotte Zip Pricing
   ============================================ */
#heatmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

.heatmap-wrapper {
  display: contents;
}

.heatmap-wrapper--expanded {
  display: flex;
  flex-direction: column;
  grid-column: 1 / -1;
}

.heatmap-wrapper--expanded .heatmap-tile {
  max-width: 260px;
}

.heatmap-tile {
  border-radius: 10px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 120px;
  width: 100%;
  text-align: left;
  font-family: inherit;
  color: inherit;
  background: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.heatmap-tile:hover {
  transform: translateY(-2px) scale(1.02);
}

.heatmap-tile:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.heatmap-tile--hot:hover {
  box-shadow: 0 4px 24px rgba(229, 9, 20, 0.25);
}

.heatmap-tile--active {
  border-color: var(--accent) !important;
  box-shadow: 0 0 16px rgba(229, 9, 20, 0.35) !important;
  transform: translateY(-2px);
}

.heatmap-tile-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.heatmap-zip {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.heatmap-shop-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  border-radius: 11px;
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 0 6px;
}

.heatmap-area {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.heatmap-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.heatmap-price {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}

.heatmap-price-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.heatmap-shops {
  font-size: 12px;
  color: var(--gray-500);
}

.heatmap-nodata {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-500);
  background: var(--gray-800);
  border-radius: 4px;
  padding: 3px 8px;
  margin: 8px 0 4px;
}

/* Detail Panel — expands below clicked tile */
.heatmap-detail-panel {
  background: var(--black-card);
  border: 1px solid var(--gray-800);
  border-radius: 10px;
  padding: 24px;
  margin-top: 12px;
  animation: heatmapPanelIn 0.25s ease-out;
}

@keyframes heatmapPanelIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.heatmap-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.heatmap-detail-title {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.heatmap-detail-shopcount {
  font-size: 12px;
  color: var(--gray-400);
}

.heatmap-detail-strengths {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.heatmap-strength-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-text);
  background: var(--accent-dim);
  border: 1px solid rgba(229, 9, 20, 0.2);
  border-radius: 4px;
  padding: 3px 10px;
}

.heatmap-detail-services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 8px;
  margin-bottom: 16px;
}

.heatmap-detail-service {
  background: var(--gray-900);
  border-radius: 6px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.heatmap-detail-service.heatmap-detail-na .heatmap-detail-service-value {
  color: var(--gray-500);
}

.heatmap-detail-service-label {
  font-size: 11px;
  color: var(--gray-400);
}

.heatmap-detail-service-value {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.heatmap-detail-comps {
  border-top: 1px solid var(--gray-800);
  padding-top: 14px;
}

.heatmap-detail-comps-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-300);
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.heatmap-detail-comps-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.heatmap-comp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: var(--gray-900);
  border-radius: 6px;
  gap: 12px;
  flex-wrap: wrap;
}

.heatmap-comp-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.heatmap-comp-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-400);
}

/* Legend */
.heatmap-legend {
  margin-top: 20px;
  max-width: 500px;
}

.heatmap-legend-bar {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(to right, #2e8b57 0%, #eab308 50%, #e50914 100%);
}

.heatmap-legend-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gray-400);
}

.heatmap-legend-swatch {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--gray-800);
  margin-right: 4px;
  vertical-align: middle;
}

/* Filter buttons */
.heatmap-filter-btn {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-400);
  background: var(--black-card);
  border: 1px solid var(--gray-800);
  border-radius: 999px;
  padding: 5px 14px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.heatmap-filter-btn:hover {
  color: var(--white);
  border-color: var(--gray-500);
}

.heatmap-filter-btn.active {
  color: var(--white);
  border-color: var(--accent);
  background: rgba(229, 9, 20, 0.08);
}

/* ============================================
   INTERACTIVE DATA TOOLS
   ============================================ */
.tools-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tool-card {
  background: var(--black-card);
  border: 1px solid var(--gray-800);
  border-radius: 10px;
  padding: 24px;
}

.tool-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 4px;
}

.tool-card-desc {
  font-size: 13px;
  color: var(--gray-400);
  margin: 0 0 20px;
  line-height: 1.4;
}

.tool-inputs {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.tool-input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 140px;
  min-width: 0;
}

.tool-input-group label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
}

.tool-input-group input,
.tool-input-group select {
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: 6px;
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.tool-input-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
}

.tool-input-group input:focus,
.tool-input-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.15);
}

.tool-result {
  margin-top: 20px;
}

.tool-result-line {
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.8;
}

.tool-result-line strong {
  color: var(--white);
}

.tool-above {
  color: var(--green);
  font-weight: 600;
}

.tool-below {
  color: var(--red);
  font-weight: 600;
}

.tool-compare-bar {
  position: relative;
  width: 100%;
  height: 8px;
  background: var(--gray-900);
  border-radius: 4px;
  margin: 16px 0 4px;
  overflow: visible;
}

.tool-compare-marker {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: var(--accent);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(229, 9, 20, 0.5);
  transition: left 0.3s ease;
  z-index: 2;
}

.tool-compare-line {
  position: absolute;
  top: -4px;
  width: 2px;
  height: 16px;
  background: var(--gray-500);
  z-index: 1;
}

.tool-compare-line--area {
  background: var(--green);
}

/* Revenue estimator */
.tool-revenue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.tool-revenue-card {
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.2s ease;
}

.tool-revenue-card:hover {
  border-color: var(--gray-700);
}

.tool-revenue-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
}

.tool-revenue-value {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.tool-revenue-value--annual {
  color: var(--accent);
  font-size: 26px;
}

/* Gap finder */
.tool-gap-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tool-gap-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: 8px;
  padding: 14px 18px;
  border-left: 3px solid var(--gray-600);
  transition: background 0.15s ease;
}

.tool-gap-item:hover {
  background: var(--black-hover);
}

.tool-gap-item[data-opportunity="high"] { border-left-color: var(--green); }
.tool-gap-item[data-opportunity="medium"] { border-left-color: #f59e0b; }
.tool-gap-item[data-opportunity="saturated"] { border-left-color: var(--red); }

.tool-gap-rank {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-500);
  min-width: 28px;
}

.tool-gap-zip {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  min-width: 56px;
}

.tool-gap-area {
  font-size: 13px;
  color: var(--gray-400);
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tool-gap-shops {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-300);
  background: var(--gray-800);
  padding: 3px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

.tool-gap-badge {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

.tool-gap-badge--high {
  background: rgba(16, 185, 129, 0.12);
  color: var(--green);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.tool-gap-badge--medium {
  background: rgba(245, 158, 11, 0.12);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.tool-gap-badge--saturated {
  background: rgba(239, 68, 68, 0.12);
  color: var(--red);
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.tool-gap-method {
  font-size: 11px;
  font-style: italic;
  color: var(--gray-500);
  margin-top: 12px;
  line-height: 1.5;
  padding-top: 12px;
  border-top: 1px solid var(--gray-800);
}

/* ============================================
   GUIDED TOUR — Immersive Onboarding
   ============================================ */

/* Full-screen overlay */
.tour-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tour-overlay--active {
  opacity: 1;
}

.tour-overlay--exiting {
  opacity: 0;
  pointer-events: none;
}

/* Highlighted target element — elevated above the overlay */
.tour-highlight {
  box-shadow:
    0 0 0 4px rgba(229, 9, 20, 0.5),
    0 0 30px rgba(229, 9, 20, 0.2),
    0 0 60px rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  background: var(--black, #0a0a0a);
}

/* Tooltip */
.tour-tooltip {
  position: fixed;
  z-index: 10001;
  background: var(--black);
  border: 1px solid var(--gray-700);
  border-radius: 14px;
  padding: 32px;
  max-width: 420px;
  width: calc(100vw - 48px);
  box-shadow:
    0 0 40px rgba(229, 9, 20, 0.12),
    0 24px 60px rgba(0, 0, 0, 0.6);
  animation: tourFadeIn 0.4s ease both;
  transition: top 0.4s ease, left 0.4s ease, opacity 0.3s ease;
}

.tour-tooltip--welcome {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 480px;
  border-color: var(--accent);
  box-shadow:
    0 0 60px rgba(229, 9, 20, 0.15),
    0 0 120px rgba(229, 9, 20, 0.05),
    0 24px 60px rgba(0, 0, 0, 0.6);
}

.tour-tooltip--positioned {
  transform: none;
  animation: none;
}

.tour-tooltip--exiting {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

@keyframes tourFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Welcome badge */
.tour-welcome-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent-text);
  background: rgba(229, 9, 20, 0.1);
  border: 1px solid rgba(229, 9, 20, 0.25);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 20px;
  animation: tourPulse 2s ease-in-out infinite;
}

@keyframes tourPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(229, 9, 20, 0); }
}

/* Step counter */
.tour-step-counter {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Title */
.tour-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.tour-tooltip--welcome .tour-title {
  font-size: 28px;
  margin-bottom: 16px;
}

/* Body text */
.tour-body {
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.65;
  margin: 0 0 16px;
}

/* Pro tip callout */
.tour-tip {
  background: rgba(229, 9, 20, 0.06);
  border: 1px solid rgba(229, 9, 20, 0.15);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--gray-300);
  line-height: 1.5;
  margin-bottom: 20px;
}

.tour-tip-icon {
  color: var(--accent);
  font-weight: 700;
  margin-right: 4px;
}

/* Progress dots */
.tour-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
}

.tour-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-800);
  transition: all 0.3s ease;
}

.tour-dot--active {
  background: var(--accent);
  box-shadow: 0 0 8px rgba(229, 9, 20, 0.4);
  transform: scale(1.25);
}

.tour-dot--done {
  background: var(--gray-600);
}

/* Action buttons */
.tour-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.tour-btn {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}

.tour-btn--primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(229, 9, 20, 0.3);
}

.tour-btn--primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 24px rgba(229, 9, 20, 0.45);
  transform: translateY(-1px);
}

.tour-btn--back {
  background: var(--gray-900);
  color: var(--gray-400);
  border: 1px solid var(--gray-800);
}

.tour-btn--back:hover {
  color: var(--white);
  border-color: var(--gray-600);
}

/* Skip link */
.tour-skip {
  display: block;
  margin: 14px auto 0;
  font-size: 12px;
  color: var(--gray-600);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  min-height: 20px;
}

.tour-skip:hover {
  color: var(--gray-400);
}

/* ============================================
   RESPONSIVE — iPad / Tablet (max-width: 768px)
   iPad Mini portrait, small tablets
   ============================================ */
@media (max-width: 768px) {
  /* Newsroom layout — stack on tablet/mobile */
  .newsroom-layout {
    grid-template-columns: 1fr;
  }

  .newsroom-featured {
    padding: 20px 0;
    border-right: none;
    border-bottom: 1px solid var(--gray-800);
  }

  .newsroom-sidebar-story {
    padding: 20px 0;
  }

  .newsroom-lead-title {
    font-size: 22px;
  }

  .newsroom-lead-excerpt {
    font-size: 14px;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .news-card {
    padding: 16px 18px;
  }

  .news-title {
    font-size: 14px;
  }

  .news-summary {
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .news-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .news-tabs::-webkit-scrollbar {
    display: none;
  }

  .news-tab {
    flex-shrink: 0;
  }

  /* Article page — tablet */
  .article-page {
    padding: 90px 24px 50px;
  }

  .article-container {
    max-width: 600px;
  }

  .article-headline {
    font-size: clamp(22px, 3.5vw, 30px);
  }

  .article-body p {
    font-size: 15px;
  }

  /* Paywall — tablet */
  .paywall-gate {
    padding: 32px 24px;
  }

  .paywall-plans {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  #heatmap-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tool-inputs {
    flex-direction: column;
    gap: 12px;
  }

  .tool-revenue-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tool-gap-item {
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .tool-gap-area {
    order: 5;
    flex-basis: 100%;
    white-space: normal;
  }

  /* Tour — tablet */
  .tour-tooltip {
    max-width: 380px;
    padding: 24px;
  }

  .tour-title { font-size: 20px; }
  .tour-tooltip--welcome .tour-title { font-size: 24px; }
  .tour-body { font-size: 13px; }
  .tour-btn { padding: 10px 22px; font-size: 13px; }

  .bottom-ticker {
    height: 32px;
  }

  body.has-ticker {
    padding-bottom: 32px;
  }

  .ticker-item-live {
    font-size: 11px;
    padding: 0 14px;
    height: 32px;
  }

  .ticker-label-fixed {
    font-size: 9px;
    padding: 0 10px;
  }

  /* --- Table-to-Card Layout --- */
  .data-table-wrapper,
  .competitor-table-wrapper {
    overflow-x: visible;
    border: none;
    background: none;
  }

  .data-table thead,
  .competitor-table-wrapper table thead {
    display: none;
  }

  .data-table tbody,
  .competitor-table-wrapper table tbody {
    display: block;
  }

  .data-table tbody tr,
  .competitor-table-wrapper table tbody tr {
    display: block;
    background: var(--card-bg, rgba(255, 255, 255, 0.04));
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid var(--accent);
  }

  .data-table tbody tr:nth-child(even),
  .competitor-table-wrapper table tbody tr:nth-child(even) {
    background: var(--card-bg, rgba(255, 255, 255, 0.04));
  }

  .data-table tbody tr:hover,
  .competitor-table-wrapper table tbody tr:hover {
    background: var(--card-bg, rgba(255, 255, 255, 0.06));
  }

  .data-table tbody td,
  .competitor-table-wrapper table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    white-space: normal;
    min-height: 44px;
  }

  .data-table tbody td:last-child,
  .competitor-table-wrapper table tbody td:last-child {
    border-bottom: none;
  }

  .data-table tbody td::before,
  .competitor-table-wrapper table tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--text-secondary, rgba(255, 255, 255, 0.5));
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
    margin-right: 12px;
  }

  /* First cell (name/zip) — prominent, full width, no label */
  .data-table tbody td:first-child,
  .competitor-table-wrapper table tbody td:first-child {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    padding-bottom: 10px;
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .data-table tbody td:first-child::before,
  .competitor-table-wrapper table tbody td:first-child::before {
    display: none;
  }

  /* Price cells keep tabular nums */
  .data-table tbody td.cell-price,
  .competitor-table-wrapper table tbody td.cell-price {
    font-variant-numeric: tabular-nums;
  }

  /* Touch-friendly tap targets */
  .data-table tbody tr a,
  .data-table tbody tr button,
  .competitor-table-wrapper table tbody tr a,
  .competitor-table-wrapper table tbody tr button {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* ============================================
   RESPONSIVE — Large Phone (max-width: 640px)
   iPhone Pro Max (430px), Pixel 7 Pro (412px)
   ============================================ */
@media (max-width: 640px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .news-card {
    padding: 16px;
    gap: 8px;
  }

  .news-summary {
    -webkit-line-clamp: 3;
  }

  .news-source {
    font-size: 10px;
  }

  /* Article page — phone */
  .article-page {
    padding: 76px 16px 36px;
  }

  .article-back {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .article-headline {
    font-size: clamp(20px, 5.5vw, 26px);
    margin-bottom: 12px;
  }

  .article-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-bottom: 16px;
    margin-bottom: 20px;
  }

  .article-byline {
    font-size: 12px;
  }

  .article-date {
    font-size: 12px;
  }

  .article-body {
    margin-bottom: 28px;
  }

  .article-body p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
  }

  .article-body p:first-child::first-letter {
    font-size: 2.4em;
    margin-top: 4px;
  }

  .article-outlook {
    padding: 16px;
    margin-bottom: 24px;
    border-radius: 8px;
  }

  .article-outlook-timeframe {
    font-size: 11px;
  }

  .article-outlook-text {
    font-size: 13px;
    line-height: 1.6;
  }

  .article-tags {
    gap: 6px;
    padding-top: 20px;
  }

  .article-tag {
    font-size: 10px;
    padding: 3px 10px;
  }

  /* Paywall — phone */
  .paywall-gate {
    padding: 28px 16px;
  }

  .paywall-title {
    font-size: 20px;
  }

  .paywall-subtitle {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .paywall-plans {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .paywall-plan {
    padding: 20px 16px;
  }

  .paywall-features li strong {
    font-size: 13px;
  }

  .paywall-features li span {
    font-size: 12px;
  }

  .article-gated-preview {
    max-height: 120px;
  }

  /* Dashboard paywall — phone */
  .dash-paywall-grid {
    grid-template-columns: 1fr;
  }

  .dash-gated--locked {
    max-height: 250px;
  }

  /* Tour — phone */
  .tour-tooltip {
    max-width: none;
    width: calc(100vw - 32px);
    padding: 20px;
    border-radius: 12px;
  }

  .tour-tooltip--welcome {
    top: auto !important;
    bottom: 24px;
    left: 16px !important;
    transform: none;
    max-width: none;
  }

  .tour-title { font-size: 18px; }
  .tour-tooltip--welcome .tour-title { font-size: 22px; }
  .tour-body { font-size: 13px; line-height: 1.55; }
  .tour-tip { font-size: 12px; padding: 10px 12px; }
  .tour-btn { padding: 10px 20px; font-size: 13px; }
  .tour-dots { gap: 5px; }
  .tour-dot { width: 7px; height: 7px; }

  /* Heat map — phone */
  #heatmap-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .heatmap-zip { font-size: 18px; }
  .heatmap-price { font-size: 18px; }

  .heatmap-wrapper--expanded .heatmap-tile {
    max-width: 100%;
  }

  .heatmap-detail-services {
    grid-template-columns: repeat(2, 1fr);
  }

  .heatmap-comp-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  /* Tools — phone */
  .tool-card {
    padding: 18px 16px;
  }

  .tool-revenue-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tool-revenue-value { font-size: 20px; }
  .tool-revenue-value--annual { font-size: 22px; }
}

/* ============================================
   RESPONSIVE — Small Phone (max-width: 390px)
   iPhone SE, iPhone Mini, Galaxy S series
   ============================================ */
@media (max-width: 390px) {
  .news-card {
    padding: 14px;
    gap: 6px;
    border-radius: 8px;
  }

  .news-card-header {
    gap: 8px;
  }

  .news-tag {
    font-size: 9px;
    padding: 2px 8px;
  }

  .news-date {
    font-size: 10px;
  }

  .news-title {
    font-size: 13px;
    line-height: 1.35;
  }

  .news-summary {
    font-size: 12px;
    -webkit-line-clamp: 2;
  }

  .news-impact {
    font-size: 8px;
    padding: 2px 5px;
  }

  .news-tab {
    font-size: 11px;
    padding: 5px 12px;
  }

  /* Article page — small phone */
  .article-page {
    padding: 72px 14px 32px;
  }

  .article-headline {
    font-size: 20px;
    line-height: 1.3;
  }

  .article-meta {
    gap: 6px;
    margin-bottom: 12px;
    flex-wrap: wrap;
  }

  .article-body p {
    font-size: 13.5px;
    line-height: 1.65;
    margin-bottom: 14px;
  }

  .article-body p:first-child::first-letter {
    font-size: 2em;
    margin-right: 6px;
  }

  .article-outlook {
    padding: 14px;
  }

  .article-outlook-timeframe {
    font-size: 10px;
  }

  .article-outlook-text {
    font-size: 12px;
  }

  .article-tag {
    font-size: 9px;
    padding: 3px 8px;
  }
}

/* ============================================
   ACCESSIBILITY — Skip Link
   ============================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10001;
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 0 0 6px 6px;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* ============================================
   ACCESSIBILITY — Focus-Visible
   ============================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ============================================
   SKELETON / SHIMMER LOADING STATES
   ============================================ */

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.skeleton {
  background: rgba(255, 255, 255, 0.06);
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.1) 40%,
    rgba(255, 255, 255, 0.06) 80%
  );
  background-size: 200% 100%;
  animation: shimmer 1.8s ease-in-out infinite;
  border-radius: 4px;
  color: transparent !important;
  pointer-events: none;
  user-select: none;
}

.skeleton * {
  visibility: hidden;
}

/* Skeleton variant: single line of text */
.skeleton-text {
  height: 14px;
  width: 70%;
  margin-bottom: 8px;
}

/* Skeleton variant: heading placeholder */
.skeleton-title {
  height: 24px;
  width: 45%;
  margin-bottom: 12px;
}

/* Skeleton variant: card placeholder */
.skeleton-card {
  height: 200px;
  width: 100%;
}

/* Skeleton variant: table cell */
.skeleton-cell {
  height: 16px;
  display: inline-block;
  width: 60%;
}

/* Skeleton variant: avatar circle */
.skeleton-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

/* Skeleton variant: rectangular image placeholder */
.skeleton-thumbnail {
  aspect-ratio: 16 / 9;
  width: 100%;
}

/* Skeleton rows container (for table skeletons) */
.skeleton-rows {
  width: 100%;
}

.skeleton-rows tr td {
  padding: 10px 12px;
}

.skeleton-rows tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* Skeleton ticker items */
.skeleton-ticker-items {
  display: flex;
  gap: 32px;
  padding: 0 16px;
}

.skeleton-ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.skeleton-ticker-item .skeleton-cell {
  width: 80px;
}

.skeleton-ticker-item .skeleton-cell:last-child {
  width: 40px;
}

/* Skeleton news cards */
.skeleton-news-card {
  background: var(--black-card);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Skeleton KPI card */
.skeleton-kpi .skeleton-text {
  width: 50%;
}

.skeleton-kpi .skeleton-title {
  width: 35%;
  height: 32px;
}

/* ============================================
   SCROLL-DRIVEN ANIMATIONS
   Progressive enhancement — static content in unsupported browsers
   ============================================ */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@supports (animation-timeline: view()) {
  /* Sections fade in + slide up as they enter the viewport */
  .section,
  .dash-section {
    animation: fade-in-up linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 100%;
  }

  /* Value cards, competitor cards, data tables — staggered reveal */
  .value-card,
  .competitor-card,
  .data-table-wrapper,
  .news-card,
  .kpi-card,
  .tool-card {
    animation: fade-in-up linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 100%;
  }
}

/* ============================================
   CONTAINER QUERIES
   Cards adapt to their container, not just the viewport
   ============================================ */
@supports (container-type: inline-size) {
  /* Define containers for grid wrappers */
  .kpi-grid {
    container-type: inline-size;
    container-name: kpi-container;
  }

  .news-grid {
    container-type: inline-size;
    container-name: news-container;
  }

  .competitor-grid {
    container-type: inline-size;
    container-name: competitor-container;
  }

  .value-grid {
    container-type: inline-size;
    container-name: value-container;
  }

  /* KPI cards: stack when container is narrow */
  @container kpi-container (max-width: 500px) {
    .kpi-grid {
      grid-template-columns: 1fr;
    }
  }

  @container kpi-container (min-width: 501px) and (max-width: 800px) {
    .kpi-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* News cards: single column in narrow containers */
  @container news-container (max-width: 500px) {
    .news-grid {
      grid-template-columns: 1fr;
    }
  }

  /* Competitor cards: adapt to container width */
  @container competitor-container (max-width: 600px) {
    .competitor-grid {
      grid-template-columns: 1fr;
    }
  }

  /* Value proposition cards: adapt to container width */
  @container value-container (max-width: 500px) {
    .value-grid {
      grid-template-columns: 1fr;
    }
  }

  @container value-container (min-width: 501px) and (max-width: 800px) {
    .value-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
}

/* ============================================
   ACCESSIBILITY — Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .ticker-scroll {
    animation: none !important;
  }

  .badge-dot {
    animation: none !important;
  }

  .ticker-live::before {
    animation: none !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }

  .skeleton {
    animation: none !important;
    background-image: none !important;
  }

  /* Disable scroll-driven animations */
  .section,
  .dash-section,
  .value-card,
  .competitor-card,
  .data-table-wrapper,
  .news-card,
  .kpi-card,
  .tool-card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  /* Disable scroll progress animation */
  .scroll-progress {
    animation: none !important;
    transform: none !important;
  }
}

/* ============================================================
   Article — Market Context Sidebar
   ============================================================ */

.article-full--with-sidebar .article-content-wrapper {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.article-full--with-sidebar .article-body-column {
  flex: 1;
  min-width: 0;
}

.article-market-context {
  width: 300px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.25rem;
}

.market-context-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.market-context-zips,
.market-context-shops {
  margin-bottom: 1rem;
}

.context-zip-card,
.context-shop-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.context-zip {
  font-size: 1.1rem;
  font-weight: 700;
  color: #e50914;
}

.context-area {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.context-price {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.context-vs {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

.context-shops {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

.context-shop-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.9);
}

.context-shop-meta {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

.context-cta {
  display: block;
  text-align: center;
  padding: 0.6rem 1rem;
  background: rgba(229, 9, 20, 0.1);
  border: 1px solid rgba(229, 9, 20, 0.3);
  border-radius: 8px;
  color: #e50914;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.context-cta:hover {
  background: rgba(229, 9, 20, 0.2);
  border-color: rgba(229, 9, 20, 0.5);
}

/* ============================================================
   Article — Playbook Section
   ============================================================ */

.article-playbook {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid #e50914;
  border-radius: 0 12px 12px 0;
}

.playbook-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 1.25rem 0;
}

.playbook-summary,
.playbook-impact,
.playbook-actions,
.playbook-watch {
  margin-bottom: 1.25rem;
}

.playbook-summary:last-child,
.playbook-impact:last-child,
.playbook-actions:last-child,
.playbook-watch:last-child {
  margin-bottom: 0;
}

.article-playbook h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 0.5rem 0;
}

.article-playbook p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.playbook-actions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.playbook-actions ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
}

.playbook-actions ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: #e50914;
  border-radius: 50%;
}

.playbook-watch p {
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   Article — Related Data Cards
   ============================================================ */

.article-related-data {
  margin: 2rem 0;
}

.article-related-data h3 {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1rem 0;
}

.related-data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
}

.related-data-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.related-data-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(229, 9, 20, 0.3);
  transform: translateY(-2px);
}

.related-data-icon {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.related-data-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.related-data-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
}

/* ============================================================
   Article — Tag Deep Links
   ============================================================ */

.article-tag--link {
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.article-tag--link:hover {
  background: rgba(229, 9, 20, 0.15);
  border-color: rgba(229, 9, 20, 0.4);
  color: #e50914;
}

/* ============================================================
   Responsive — Market Context & Playbook
   ============================================================ */

@media (max-width: 900px) {
  .article-full--with-sidebar .article-content-wrapper {
    flex-direction: column;
  }

  .article-market-context {
    width: 100%;
    position: static;
    margin-top: 1.5rem;
  }
}

@media (max-width: 600px) {
  .article-playbook {
    padding: 1rem;
    margin: 1.5rem 0;
  }

  .related-data-grid {
    grid-template-columns: 1fr;
  }

  .article-market-context {
    padding: 1rem;
  }
}

/* --- Coming Soon Placeholder --- */
.coming-soon-card {
  background: var(--black-card);
  border: 1px solid var(--gray-800);
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  max-width: 480px;
  margin: 2rem auto;
}

.coming-soon-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-200);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.coming-soon-desc {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* --- About / Founder Story Section --- */
.about-content {
  max-width: 640px;
  margin: 0 auto;
}

.about-content p {
  font-size: 1.05rem;
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-content .about-cta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-800);
  font-size: 0.95rem;
  color: var(--gray-400);
}

.about-content .about-cta a {
  color: var(--accent-text);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.about-content .about-cta a:hover {
  color: var(--accent-hover);
}

/* ============================================
   MARKET SNAPSHOT BAR (replaces scrolling ticker)
   ============================================ */
.snapshot-label {
  flex-shrink: 0;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  z-index: 2;
}

.snapshot-stats {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 16px;
  height: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.snapshot-stat {
  font-family: var(--font);
  font-size: 12px;
  color: var(--gray-400);
  letter-spacing: 0.01em;
}

.snapshot-stat strong {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--green);
}

.snapshot-divider {
  color: var(--gray-700);
  font-size: 12px;
  user-select: none;
}

@media (max-width: 600px) {
  .snapshot-stats {
    gap: 8px;
    padding: 0 10px;
  }

  .snapshot-stat {
    font-size: 10px;
  }

  .snapshot-divider {
    font-size: 10px;
  }

  .snapshot-label {
    font-size: 8px;
    padding: 0 8px;
  }
}
