/**
 * RENALYTICA HOME PAGE STYLES (v2 - PRODUCTION)
 * Color Hierarchy: 60% White Canvas, 30% Momentum Orange (#FF8000),
 * Stark Black (#0A0A0A) Authority Accents, Slate Grey (#586472) Scaffolding.
 * Layout: Rotating 3D World Map on LEFT, Hero Copy & Search on RIGHT.
 */

/* ==========================================================================
   1. HERO SECTION (60% White Canvas, Left Copy, Right Massive 3D Globe)
   ========================================================================== */
.bg-light-canvas {
  background-color: #FFFFFF;
  color: #0A0A0A;
}

.hero-stage-v2 {
  padding-block: clamp(36px, 4.5vw, 68px);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
  background-image: 
    radial-gradient(circle at 78% 46%, rgba(255, 128, 0, 0.08) 0%, transparent 65%),
    linear-gradient(rgba(88, 100, 114, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 100, 114, 0.035) 1px, transparent 1px);
  background-size: 100% 100%, 48px 48px, 48px 48px;
}

.hero-grid-v2 {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  align-items: center;
  gap: clamp(24px, 3.5vw, 56px);
  position: relative;
}

/* LEFT: Hero Copy & Search Architecture */
.hero-copy-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* RIGHT: Massive Rotating 3D World Map / Globe (Up to Half-Page Coverage) */
.hero-globe-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  min-height: 560px;
}

.globe-canvas-wrapper {
  position: relative;
  width: 100%;
  max-width: 820px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.globe-canvas-v2 {
  width: 100%;
  height: 100%;
  cursor: grab;
  touch-action: none;
}

.globe-canvas-v2:active {
  cursor: grabbing;
}

.globe-caption-pill {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0A0A0A;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  z-index: 4;
}

.pulse-orange-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-momentum);
  box-shadow: 0 0 10px var(--accent-momentum);
  animation: pulseDot 2s infinite ease-in-out;
}

.category-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-momentum);
  background-color: var(--accent-momentum-subtle);
  border: 1px solid var(--accent-momentum-border);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-bottom: 20px;
}

.badge-sep {
  color: var(--scaffold-slate);
  opacity: 0.5;
}

.badge-metric-tag {
  color: #0A0A0A;
}

.hero-headline-v2 {
  font-family: var(--font-primary);
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: var(--font-weight-black);
  line-height: 1.12;
  letter-spacing: var(--tracking-tightest);
  color: #0A0A0A;
  margin-bottom: 20px;
}

.headline-highlight {
  color: var(--accent-momentum);
}

.hero-subheadline-v2 {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--text-secondary);
  line-height: var(--leading-body);
  margin-bottom: 28px;
  max-width: 580px;
}

.hero-btn-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-btn-main {
  padding: 14px 32px;
  font-size: 14px;
  background-color: var(--accent-momentum);
  color: #FFFFFF;
}

.hero-btn-secondary {
  padding: 14px 28px;
  font-size: 14px;
  border: 1px solid #0A0A0A;
  color: #0A0A0A;
}

.hero-btn-secondary:hover {
  background-color: #0A0A0A;
  color: #FFFFFF;
  border-color: #0A0A0A;
}

/* Interactive Search Bar */
.hero-search-card {
  background: #FFFFFF;
  border: 2px solid var(--accent-momentum);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: 0 8px 24px var(--accent-momentum-subtle);
  max-width: 620px;
}

.hero-search-form {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.search-icon {
  color: var(--accent-momentum);
  flex-shrink: 0;
}

.hero-search-input {
  width: 100%;
  font-size: 14px;
  color: #0A0A0A;
  border: none;
  outline: none;
  font-weight: 500;
}

.hero-search-input::placeholder {
  color: var(--text-muted);
  font-size: 13px;
}

.hero-search-submit {
  padding: 10px 22px;
  border-radius: var(--radius-md);
  background-color: #0A0A0A;
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background-color var(--duration-fast) var(--ease-sharp);
}

.hero-search-submit:hover {
  background-color: var(--accent-momentum);
}

.popular-searches-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
}

.pop-label {
  color: #71717A;
  font-weight: 600;
}

.pop-chip {
  color: #0A0A0A;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(255, 128, 0, 0.4);
  transition: color var(--duration-fast) var(--ease-sharp);
}

.pop-chip:hover {
  color: var(--accent-momentum);
}

.pop-dot {
  color: #D4D4D8;
}

@media (max-width: 1024px) {
  .hero-grid-v2 {
    grid-template-columns: 1fr;
  }
  .hero-globe-col {
    order: -1;
  }
  .globe-canvas-wrapper {
    max-width: 460px;
  }
}

/* ==========================================================================
   2. TICKER HELPER BANNER
   ========================================================================== */
.ticker-helper-banner {
  background-color: #FAFAFA;
  border-bottom: 1px solid var(--border-light);
  padding-block: 8px;
}

.ticker-disclaimer {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #71717A;
}

/* ==========================================================================
   3. FOUR KEY SECTORS WE COVER
   ========================================================================== */
.sectors-section-v2 {
  padding-block: clamp(64px, 8vw, 112px);
  background-color: #FFFFFF;
}

.section-header-v2 {
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.eyebrow-tag-orange {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent-momentum);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title-v2 {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: var(--font-weight-black);
  letter-spacing: var(--tracking-tight);
  color: #0A0A0A;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-intro-v2 {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-body);
}

.bento-sectors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.sector-card-v2 {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3.5vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-subtle);
  transition: transform var(--duration-fast) var(--ease-sharp),
              border-color var(--duration-fast) var(--ease-sharp),
              box-shadow var(--duration-fast) var(--ease-sharp);
}

.sector-card-v2:hover {
  transform: translateY(-4px);
  border-color: var(--accent-momentum);
  box-shadow: var(--shadow-hover);
}

.sector-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.sector-icon-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0A0A0A;
  background-color: var(--surface-gray);
  padding: 4px 10px;
  border-radius: 4px;
}

.sector-count-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-momentum);
}

.sector-card-title {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: var(--font-weight-bold);
  color: #0A0A0A;
  margin-bottom: 8px;
}

.sector-sub-headline {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-momentum);
  margin-bottom: 14px;
}

.sector-body-text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-body);
  margin-bottom: 24px;
}

.sector-card-bottom {
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.sector-link-cta {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #0A0A0A;
  transition: color var(--duration-fast) var(--ease-sharp);
}

.sector-card-v2:hover .sector-link-cta {
  color: var(--accent-momentum);
}

@media (max-width: 768px) {
  .bento-sectors-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   4. FEATURED RESEARCH REPORTS (Ready to Buy Online)
   ========================================================================== */
.featured-reports-section-v2 {
  padding-block: clamp(64px, 8vw, 112px);
  background-color: #FAFAFA;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.featured-reports-deck {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.featured-report-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-subtle);
  transition: all var(--duration-fast) var(--ease-sharp);
}

.featured-report-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-momentum);
  box-shadow: var(--shadow-hover);
}

.report-header-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 8px;
}

.report-sector-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0A0A0A;
}

.excel-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--signal-success);
  background-color: rgba(22, 163, 74, 0.08);
  padding: 3px 8px;
  border-radius: 3px;
}

.featured-title {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  line-height: 1.35;
  color: #0A0A0A;
  margin-bottom: 12px;
}

.quick-stats-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #71717A;
  margin-bottom: 16px;
}

.stat-sep {
  color: #D4D4D8;
}

.key-finding-callout {
  background: var(--accent-momentum-subtle);
  border-left: 3px solid var(--accent-momentum);
  padding: 10px 14px;
  border-radius: 0 4px 4px 0;
  margin-bottom: 16px;
}

.finding-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-momentum);
  display: block;
  margin-bottom: 4px;
}

.key-finding-callout p {
  font-size: 13px;
  font-weight: 600;
  color: #0A0A0A;
  line-height: 1.4;
}

.featured-overview {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-body);
  margin-bottom: 18px;
}

.what-you-get-box {
  background: #FAFAFA;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 24px;
}

.wyg-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: #71717A;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 4px;
}

.what-you-get-box p {
  font-size: 12px;
  color: #0A0A0A;
  font-weight: 500;
}

.featured-price-tier {
  border-top: 1px solid var(--border-light);
  padding-top: 18px;
}

.price-stack {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}

.price-main {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 800;
  color: #0A0A0A;
}

.price-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #71717A;
}

.card-action-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-sample-brief {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #0A0A0A;
  text-align: center;
  transition: all var(--duration-fast) var(--ease-sharp);
}

.btn-sample-brief:hover {
  border-color: var(--accent-momentum);
  color: var(--accent-momentum);
}

.btn-buy-report {
  width: 100%;
  padding: 10px 16px;
  font-size: 12px;
  text-align: center;
}

@media (max-width: 1024px) {
  .featured-reports-deck {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   5. COMPARISON TABLE (The Renalytica Difference)
   ========================================================================== */
.difference-section-v2 {
  padding-block: clamp(64px, 8vw, 112px);
  background-color: #FFFFFF;
}

.comparison-table-wrapper {
  max-width: 1080px;
  margin-inline: auto;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
}

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

.comparison-table th {
  padding: 18px 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: left;
  border-bottom: 2px solid var(--border-light);
}

.th-need {
  background-color: #FAFAFA;
  width: 25%;
  color: #71717A;
}

.th-generic {
  background-color: #F4F4F5;
  width: 35%;
  color: #71717A;
}

.th-renalytica {
  background-color: rgba(255, 128, 0, 0.08);
  width: 40%;
  color: var(--accent-momentum);
  border-left: 2px solid var(--accent-momentum);
}

.comparison-table td {
  padding: 20px 24px;
  font-size: var(--text-sm);
  line-height: var(--leading-body);
  border-bottom: 1px solid var(--border-light);
  vertical-align: top;
}

.td-feature {
  font-family: var(--font-mono);
  font-weight: 700;
  color: #0A0A0A;
  background-color: #FAFAFA;
}

.td-generic {
  color: var(--text-secondary);
  background-color: #FFFFFF;
}

.td-renalytica {
  background-color: #FFFFFF;
  color: #0A0A0A;
  border-left: 2px solid var(--accent-momentum);
}

.check-icon {
  color: var(--accent-momentum);
  font-weight: 900;
  margin-right: 6px;
}

@media (max-width: 768px) {
  .comparison-table-wrapper {
    overflow-x: auto;
  }
}

/* ==========================================================================
   6. 3-STEP METHODOLOGY
   ========================================================================== */
.methodology-summary-v2 {
  padding-block: clamp(64px, 8vw, 112px);
  background-color: #FAFAFA;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.three-step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1120px;
  margin-inline: auto;
}

.step-card-v2 {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  box-shadow: var(--shadow-subtle);
}

.step-num-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--accent-momentum);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px var(--accent-momentum-glow);
}

.step-title {
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  color: #0A0A0A;
  margin-bottom: 12px;
}

.step-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-body);
}

.link-arrow-orange {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-momentum);
  transition: gap var(--duration-fast) var(--ease-sharp);
}

.link-arrow-orange:hover {
  gap: 12px;
}

.mt-32 {
  margin-top: 32px;
}

@media (max-width: 768px) {
  .three-step-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   7. CORPORATE SUBSCRIPTION FEATURE BOX
   ========================================================================== */
.corporate-subscription-section {
  padding-block: clamp(64px, 8vw, 112px);
  background-color: #FFFFFF;
}

.subscription-feature-box {
  max-width: 1080px;
  margin-inline: auto;
  border: 2px solid #0A0A0A;
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 64px);
  background-color: #FFFFFF;
  position: relative;
  box-shadow: var(--shadow-card);
}

.sub-pill-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-momentum);
  background-color: var(--accent-momentum-subtle);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 16px;
}

.sub-headline {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: var(--font-weight-black);
  letter-spacing: var(--tracking-tight);
  color: #0A0A0A;
  margin-bottom: 16px;
}

.sub-intro {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-body);
  max-width: 780px;
  margin-bottom: 32px;
}

.sub-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-bottom: 36px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: #0A0A0A;
}

.check-orange {
  color: var(--accent-momentum);
  font-size: 16px;
  font-weight: 900;
  flex-shrink: 0;
}

.sub-btn-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-pill-ghost-dark {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid #0A0A0A;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: #0A0A0A;
  transition: all var(--duration-fast) var(--ease-sharp);
}

.btn-pill-ghost-dark:hover {
  background-color: #0A0A0A;
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .sub-benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   8. CLIENT FEEDBACK
   ========================================================================== */
.testimonials-section-v2 {
  padding-block: clamp(64px, 8vw, 112px);
  background-color: #FAFAFA;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.feedback-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1080px;
  margin-inline: auto;
}

.feedback-card-v2 {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-subtle);
  position: relative;
}

.quote-mark {
  font-family: var(--font-primary);
  font-size: 48px;
  line-height: 1;
  color: var(--accent-momentum);
  margin-bottom: 8px;
}

.quote-text {
  font-size: clamp(15px, 1.2vw, 17px);
  color: #0A0A0A;
  font-weight: 500;
  line-height: var(--leading-body);
  margin-bottom: 24px;
}

.quote-author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

.q-name {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: #0A0A0A;
  text-transform: uppercase;
}

.q-role {
  font-size: 13px;
  color: #71717A;
}

@media (max-width: 768px) {
  .feedback-dual-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   9. FINAL CALL-TO-ACTION & NEWSLETTER
   ========================================================================== */
.final-cta-section-v2 {
  padding-block: clamp(80px, 10vw, 140px);
  background-color: #FFFFFF;
}

.final-cta-card {
  max-width: 960px;
  margin-inline: auto;
  text-align: center;
}

.cta-title-v2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: var(--font-weight-black);
  letter-spacing: var(--tracking-tight);
  color: #0A0A0A;
  line-height: 1.2;
  margin-bottom: 18px;
}

.cta-subtitle-v2 {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-body);
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 36px;
}

.cta-buttons-v2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.cta-btn-lg {
  padding: 16px 36px;
  font-size: 14px;
}

.btn-pill-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: var(--radius-pill);
  border: 1px solid #16A34A;
  color: #16A34A;
  background: rgba(22, 163, 74, 0.05);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  transition: all var(--duration-fast) var(--ease-sharp);
}

.btn-pill-whatsapp:hover {
  background: #16A34A;
  color: #FFFFFF;
}

/* Newsletter Card */
.newsletter-card-v2 {
  background: #FAFAFA;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  max-width: 640px;
  margin-inline: auto;
}

.news-box-title {
  font-size: 20px;
  color: #0A0A0A;
  margin-bottom: 6px;
}

.news-box-title strong {
  color: var(--accent-momentum);
}

.news-box-sub {
  font-size: var(--text-sm);
  color: #71717A;
  margin-bottom: 20px;
}

.news-form-v2 {
  display: flex;
  gap: 10px;
}

.news-input-v2 {
  flex: 1;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong);
  background: #FFFFFF;
  font-size: 14px;
  color: #0A0A0A;
  outline: none;
}

.news-input-v2:focus {
  border-color: var(--accent-momentum);
}

.news-submit-v2 {
  padding: 12px 24px;
  font-size: 13px;
}

@media (max-width: 640px) {
  .news-form-v2 {
    flex-direction: column;
  }
}

/* ==========================================================================
   10. ENHANCED MEGA FOOTER V2 STYLES
   ========================================================================== */
.mega-footer-v2 {
  background-color: #FFFFFF;
  border-top: 1px solid var(--border-light);
  color: #0A0A0A;
  overflow: hidden;
}

/* Tail-end full-bleed ASCII Telemetry Data-Matrix Stage */
.footer-matrix-stage {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, #F8FAFC 0%, #EEF2F6 100%);
  border-top: 1px solid var(--border-light);
  overflow: hidden;
  margin-top: 40px;
}

[data-theme="dark"] .footer-matrix-stage {
  background: linear-gradient(180deg, #090D16 0%, #04070D 100%);
  border-top-color: rgba(255, 255, 255, 0.08);
}

.matrix-hud-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-light);
  flex-wrap: wrap;
  gap: 12px;
}

[data-theme="dark"] .matrix-hud-header {
  background: rgba(9, 13, 22, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.matrix-hud-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.matrix-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent-momentum);
  box-shadow: 0 0 8px var(--accent-momentum);
  animation: pulseDot 2s infinite ease-in-out;
}

.matrix-hud-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-momentum);
  text-transform: uppercase;
}

.matrix-coord-chip {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #71717A;
  background: #F4F4F5;
  border: 1px solid var(--border-light);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

[data-theme="dark"] .matrix-coord-chip {
  background: rgba(255, 255, 255, 0.06);
  color: #94A3B8;
  border-color: rgba(255, 255, 255, 0.1);
}

.chip-active-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #22C55E;
}

.matrix-canvas-wrapper {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}

#footer-data-matrix-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: crosshair;
  display: block;
}



.footer-content-wrap {
  padding-top: clamp(48px, 6vw, 80px);
}

.footer-grid-v2 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  margin-bottom: clamp(40px, 5vw, 64px);
}

.footer-brand-lockup {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.footer-tagline-text {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent-momentum);
  text-transform: lowercase;
}

.footer-lead-p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-body);
  max-width: 380px;
  margin-bottom: 20px;
}

.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-line {
  font-size: 13px;
  color: #0A0A0A;
}

.c-label {
  color: #71717A;
}

.contact-line strong {
  color: #0A0A0A;
}

.col-heading-v2 {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #0A0A0A;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.footer-ul-v2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-ul-v2 a {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  transition: color var(--duration-fast) var(--ease-sharp);
}

.footer-ul-v2 a:hover {
  color: var(--accent-momentum);
}

.footer-bottom-bar-v2 {
  border-top: 1px solid var(--border-light);
  padding-block: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #71717A;
}

.trust-tags {
  display: flex;
  gap: 16px;
}

.trust-tag {
  color: #0A0A0A;
  font-weight: 600;
}

/* ==========================================================================
   CINEMATIC SCROLL REVEAL & KINETIC TEXT ANIMATION ENGINE
   ========================================================================== */

/* Global Scroll Reading Progress Bar */
.global-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #FF8000 0%, #FF5C00 60%, #FFA834 100%);
  box-shadow: 0 0 12px rgba(255, 128, 0, 0.7);
  z-index: 999999;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* Base Reveal Physics - Pronounced cinematic upward flow */
[data-reveal] {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

[data-reveal="card"] {
  opacity: 0;
  transform: translateY(56px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

[data-reveal="scale"] {
  opacity: 0;
  transform: scale(0.94) translateY(36px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

/* Revealed State Trigger */
[data-reveal].revealed,
.revealed[data-reveal],
.revealed {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

/* Stagger Delays */
.delay-0 { transition-delay: 0ms !important; }
.delay-1 { transition-delay: 110ms !important; }
.delay-2 { transition-delay: 220ms !important; }
.delay-3 { transition-delay: 330ms !important; }
.delay-4 { transition-delay: 440ms !important; }

/* --------------------------------------------------------------------------
   Kinetic Typography & Masked Line Reveals
   -------------------------------------------------------------------------- */
.kinetic-line-mask {
  overflow: hidden;
  display: block;
  padding-block: 2px;
}

.kinetic-line-inner {
  display: block;
  transform: translateY(115%) rotateX(-10deg);
  transform-origin: 0% 100%;
  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.revealed .kinetic-line-inner,
.revealed.kinetic-line-inner,
.kinetic-line-inner.revealed {
  transform: translateY(0%) rotateX(0deg) !important;
  opacity: 1 !important;
}

.kinetic-line-mask:nth-child(1) .kinetic-line-inner { transition-delay: 0ms; }
.kinetic-line-mask:nth-child(2) .kinetic-line-inner { transition-delay: 130ms; }
.kinetic-line-mask:nth-child(3) .kinetic-line-inner { transition-delay: 260ms; }

/* --------------------------------------------------------------------------
   Section Eyebrow Badges Animation
   -------------------------------------------------------------------------- */
.eyebrow-tag-orange {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent-momentum);
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.eyebrow-tag-orange::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent-momentum);
  box-shadow: 0 0 10px var(--accent-momentum);
  animation: pulseDot 2s infinite ease-in-out;
}

.eyebrow-tag-orange::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-momentum), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.revealed .eyebrow-tag-orange,
.revealed.eyebrow-tag-orange {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.revealed .eyebrow-tag-orange::after,
.revealed.eyebrow-tag-orange::after {
  transform: scaleX(1) !important;
}

/* --------------------------------------------------------------------------
   Section Intros & Subheadings Float-Up
   -------------------------------------------------------------------------- */
.section-intro-v2,
.hero-subheadline-v2,
.sub-intro,
.cta-subtitle-v2 {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(4px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.12s,
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.12s,
              filter 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.12s;
  will-change: opacity, transform, filter;
}

.revealed .section-intro-v2,
.revealed .hero-subheadline-v2,
.revealed .sub-intro,
.revealed .cta-subtitle-v2,
.revealed.section-intro-v2,
.revealed.hero-subheadline-v2,
.revealed.sub-intro,
.revealed.cta-subtitle-v2 {
  opacity: 1 !important;
  transform: translateY(0) !important;
  filter: blur(0px) !important;
}

/* --------------------------------------------------------------------------
   Momentum Orange Keyword Highlight Animation
   -------------------------------------------------------------------------- */
.headline-highlight {
  position: relative;
  display: inline-block;
  color: var(--accent-momentum);
  font-weight: inherit;
  transition: color 0.4s ease;
}

.headline-highlight::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF8000, #FFA336);
  box-shadow: 0 2px 8px rgba(255, 128, 0, 0.4);
  border-radius: 2px;
  transition: width 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.35s;
}

.revealed .headline-highlight::after,
.headline-highlight.active::after {
  width: 100% !important;
}

/* --------------------------------------------------------------------------
   Comparison Table Staggered Row Cascade
   -------------------------------------------------------------------------- */
.comparison-table tbody tr {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.revealed .comparison-table tbody tr,
.comparison-table-wrapper.revealed .comparison-table tbody tr {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.comparison-table tbody tr:nth-child(1) { transition-delay: 100ms; }
.comparison-table tbody tr:nth-child(2) { transition-delay: 200ms; }
.comparison-table tbody tr:nth-child(3) { transition-delay: 300ms; }
.comparison-table tbody tr:nth-child(4) { transition-delay: 400ms; }

.comparison-table .check-icon {
  display: inline-block;
  transform: scale(0.6);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.revealed .comparison-table .check-icon,
.comparison-table-wrapper.revealed .comparison-table .check-icon {
  transform: scale(1);
}

/* --------------------------------------------------------------------------
   Methodology Stepper Scrollytelling
   -------------------------------------------------------------------------- */
.step-card-v2 {
  position: relative;
  transition: all 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  background: #FFFFFF;
}

.step-card-v2.active-scrolly {
  border-color: var(--accent-momentum);
  box-shadow: 0 12px 36px rgba(255, 128, 0, 0.16);
  transform: translateX(10px);
}

.step-card-v2.active-scrolly .step-num-badge {
  background: var(--accent-momentum);
  color: #FFFFFF;
  box-shadow: 0 0 16px rgba(255, 128, 0, 0.55);
}

/* --------------------------------------------------------------------------
   Corporate Subscription Benefits Cascade
   -------------------------------------------------------------------------- */
.benefit-item {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.revealed .benefit-item,
.subscription-feature-box.revealed .benefit-item {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.benefit-item:nth-child(1) { transition-delay: 100ms; }
.benefit-item:nth-child(2) { transition-delay: 200ms; }
.benefit-item:nth-child(3) { transition-delay: 300ms; }
.benefit-item:nth-child(4) { transition-delay: 400ms; }

/* --------------------------------------------------------------------------
   Testimonials Kinetic Cards & Floating Quotes
   -------------------------------------------------------------------------- */
.feedback-card-v2 {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.revealed .feedback-card-v2,
.feedback-tri-grid.revealed .feedback-card-v2 {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.quote-mark {
  font-size: 56px;
  line-height: 1;
  font-family: var(--font-primary);
  color: var(--accent-momentum);
  opacity: 0.35;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.feedback-card-v2:hover .quote-mark {
  opacity: 0.9;
  transform: scale(1.15) translateY(-4px);
}

/* ==========================================================================
   SECTOR MEDIA & SLEEK ICONS
   ========================================================================== */
.sector-card-media {
  position: relative;
  width: 100%;
  height: 190px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  background-color: #F4F4F5;
}

.sector-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.sector-card-v2:hover .sector-card-img {
  transform: scale(1.08);
}

.sector-media-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.05) 0%, rgba(10, 10, 10, 0.60) 100%);
  pointer-events: none;
}

.sector-media-tag {
  position: absolute;
  bottom: 12px;
  left: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  background: rgba(10, 10, 10, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  gap: 6px;
}

.sector-icon-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--accent-momentum);
  flex-shrink: 0;
}

/* ==========================================================================
   FEATURED REPORTS HORIZONTAL RAIL & COVERS
   ========================================================================== */
.reports-rail-outer {
  position: relative;
  width: 100%;
}

.featured-reports-deck {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 8px;
}

.report-card-media {
  position: relative;
  width: 100%;
  height: 170px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
  background-color: #F4F4F5;
}

.report-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-report-card:hover .report-card-img {
  transform: scale(1.08);
}

.report-media-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(10, 10, 10, 0.82);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
}

/* Horizontal Rail Controls */
.rail-controls-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-inline: 4px;
}

.rail-btn-group {
  display: flex;
  gap: 10px;
}

.rail-arrow-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: #FFFFFF;
  color: #0A0A0A;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  box-shadow: var(--shadow-subtle);
  transition: all var(--duration-fast) var(--ease-sharp);
}

.rail-arrow-btn:hover {
  background: var(--accent-momentum);
  color: #FFFFFF;
  border-color: var(--accent-momentum);
  box-shadow: 0 4px 14px rgba(255, 128, 0, 0.35);
}

.rail-track-hint {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #71717A;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   METHODOLOGY VERIFICATION MEDIA SHOWCASE
   ========================================================================== */
.methodology-dual-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(32px, 5vw, 56px);
  margin-top: 36px;
}

.methodology-media-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
}

.methodology-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.methodology-telemetry-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.telemetry-header-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #0A0A0A;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.telemetry-sub-line {
  font-size: 12px;
  color: #586472;
  line-height: 1.4;
}

/* ==========================================================================
   CORPORATE SUBSCRIPTION SHOWCASE WITH MEDIA
   ========================================================================== */
.sub-box-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.sub-media-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.sub-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   TESTIMONIALS & AUTHENTIC AVATARS
   ========================================================================== */
.feedback-tri-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-author-block {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.author-avatar-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-momentum);
  box-shadow: 0 0 10px rgba(255, 128, 0, 0.25);
  flex-shrink: 0;
}

/* ==========================================================================
   SMOOTH SECTION TRANSITION DIVIDERS
   ========================================================================== */
.section-flow-divider {
  position: relative;
  width: 100%;
  height: 36px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 128, 0, 0.025) 50%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.section-flow-divider::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-momentum), transparent);
  opacity: 0.5;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid-v2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-globe-col {
    min-height: 480px;
  }
  .globe-canvas-wrapper {
    max-width: 540px;
  }
  .bento-sectors-grid {
    grid-template-columns: 1fr;
  }
  .featured-reports-deck {
    grid-template-columns: repeat(2, 1fr);
    overflow-x: auto;
  }
  .methodology-dual-layout {
    grid-template-columns: 1fr;
  }
  .sub-box-layout {
    grid-template-columns: 1fr;
  }
  .feedback-tri-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid-v2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .hero-globe-col {
    min-height: 340px;
  }
  .globe-canvas-wrapper {
    max-width: 340px;
  }
  .featured-reports-deck {
    grid-template-columns: 1fr;
  }
  .footer-grid-v2 {
    grid-template-columns: 1fr;
  }
  .footer-bottom-bar-v2 {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   DARK THEME COMPREHENSIVE SECTION STYLING (60% Obsidian, 30% Orange, Stark White)
   ========================================================================== */
body[data-theme="dark"],
[data-theme="dark"] .bg-light-canvas,
body.dark-canvas {
  background-color: #090D16 !important;
  color: #F8FAFC !important;
}

/* Hero Section Dark Mode */
[data-theme="dark"] .hero-stage-v2 {
  background-color: #090D16;
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background-image: 
    radial-gradient(circle at 78% 46%, rgba(255, 128, 0, 0.12) 0%, transparent 65%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
}

[data-theme="dark"] .hero-headline-v2 {
  color: #F8FAFC;
}

[data-theme="dark"] .badge-metric-tag {
  color: #F8FAFC;
}

[data-theme="dark"] .hero-subheadline-v2 {
  color: #CBD5E1;
}

[data-theme="dark"] .hero-btn-secondary {
  border-color: rgba(255, 255, 255, 0.35);
  color: #F8FAFC;
}

[data-theme="dark"] .hero-btn-secondary:hover {
  background-color: #F8FAFC;
  color: #090D16;
  border-color: #F8FAFC;
}

[data-theme="dark"] .hero-search-card {
  background: #101828;
  border-color: var(--accent-momentum);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6), 0 0 24px rgba(255, 128, 0, 0.16);
}

[data-theme="dark"] .hero-search-input {
  color: #F8FAFC;
  background: transparent;
}

[data-theme="dark"] .hero-search-input::placeholder {
  color: #64748B;
}

[data-theme="dark"] .hero-search-submit {
  background-color: var(--accent-momentum);
  color: #FFFFFF;
}

[data-theme="dark"] .hero-search-submit:hover {
  background-color: var(--accent-momentum-hover);
}

[data-theme="dark"] .pop-label {
  color: #94A3B8;
}

[data-theme="dark"] .pop-chip {
  color: #F8FAFC;
}

[data-theme="dark"] .pop-dot {
  color: #475569;
}

[data-theme="dark"] .globe-caption-pill {
  background: rgba(16, 24, 40, 0.94);
  border-color: rgba(255, 255, 255, 0.12);
  color: #F8FAFC;
}

/* Ticker Helper Banner Dark Mode */
[data-theme="dark"] .ticker-helper-banner {
  background-color: #0C1220;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .ticker-disclaimer {
  color: #94A3B8;
}

/* Sectors Dark Mode */
[data-theme="dark"] .sectors-section-v2 {
  background-color: #090D16;
}

[data-theme="dark"] .section-title-v2 {
  color: #F8FAFC;
}

[data-theme="dark"] .section-intro-v2 {
  color: #94A3B8;
}

[data-theme="dark"] .sector-card-v2 {
  background: #101828;
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .sector-card-v2:hover {
  border-color: var(--accent-momentum);
  box-shadow: 0 18px 45px rgba(255, 128, 0, 0.22);
}

[data-theme="dark"] .sector-card-title {
  color: #F8FAFC;
}

[data-theme="dark"] .sector-icon-pill {
  background-color: #162035;
  color: #F8FAFC;
}

[data-theme="dark"] .sector-lead-p {
  color: #94A3B8;
}

[data-theme="dark"] .feature-li {
  color: #CBD5E1;
}

[data-theme="dark"] .sector-card-footer {
  border-top-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .sector-body-text {
  color: #94A3B8;
}

[data-theme="dark"] .sector-card-bottom {
  border-top-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .sector-link-cta {
  color: #F8FAFC;
}

[data-theme="dark"] .sector-card-v2:hover .sector-link-cta {
  color: var(--accent-momentum);
}

/* Section Flow Divider Dark Mode */
[data-theme="dark"] .section-flow-divider {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 128, 0, 0.04) 50%, transparent 100%);
}

/* Featured Reports Deck Dark Mode */
[data-theme="dark"] .featured-reports-section-v2 {
  background-color: #0C1220;
  border-top-color: rgba(255, 255, 255, 0.08);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .reports-shelf-header {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .featured-report-card,
[data-theme="dark"] .report-card-v2 {
  background: #101828;
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .featured-report-card:hover,
[data-theme="dark"] .report-card-v2:hover {
  border-color: var(--accent-momentum);
  box-shadow: 0 18px 45px rgba(255, 128, 0, 0.22);
}

[data-theme="dark"] .report-card-media {
  background-color: #162035;
}

[data-theme="dark"] .report-sector-tag {
  color: #F8FAFC;
}

[data-theme="dark"] .featured-title,
[data-theme="dark"] .report-card-title {
  color: #F8FAFC;
}

[data-theme="dark"] .quick-stats-row {
  color: #94A3B8;
}

[data-theme="dark"] .stat-sep {
  color: #475569;
}

[data-theme="dark"] .key-finding-callout {
  background: rgba(255, 128, 0, 0.10);
  border-left-color: var(--accent-momentum);
}

[data-theme="dark"] .key-finding-callout p {
  color: #F8FAFC;
}

[data-theme="dark"] .featured-overview,
[data-theme="dark"] .report-card-summary {
  color: #94A3B8;
}

[data-theme="dark"] .what-you-get-box {
  background: #131B2C;
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .wyg-title {
  color: #94A3B8;
}

[data-theme="dark"] .what-you-get-box p {
  color: #CBD5E1;
}

[data-theme="dark"] .featured-price-tier,
[data-theme="dark"] .report-card-footer {
  border-top-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .price-main {
  color: #F8FAFC;
}

[data-theme="dark"] .price-sub {
  color: #94A3B8;
}

[data-theme="dark"] .btn-sample-brief,
[data-theme="dark"] .report-btn-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  color: #F8FAFC;
}

[data-theme="dark"] .btn-sample-brief:hover,
[data-theme="dark"] .report-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-momentum);
  color: var(--accent-momentum);
}

[data-theme="dark"] .rail-arrow-btn {
  background: #101828;
  color: #F8FAFC;
  border-color: rgba(255, 255, 255, 0.12);
}

[data-theme="dark"] .rail-arrow-btn:hover {
  background: var(--accent-momentum);
  color: #FFFFFF;
  border-color: var(--accent-momentum);
}

[data-theme="dark"] .rail-track-hint {
  color: #94A3B8;
}

/* Comparison Table (The Renalytica Advantage) Dark Mode */
[data-theme="dark"] .difference-section-v2,
[data-theme="dark"] .comparison-section-v2 {
  background-color: #090D16;
}

[data-theme="dark"] .comparison-table-wrapper,
[data-theme="dark"] .comparison-table-v2 {
  background: #101828;
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .comparison-table th {
  border-bottom-color: rgba(255, 255, 255, 0.10);
}

[data-theme="dark"] .th-need,
[data-theme="dark"] .table-header-cell {
  background-color: #131B2C;
  color: #94A3B8;
}

[data-theme="dark"] .th-generic {
  background-color: #0E1524;
  color: #94A3B8;
}

[data-theme="dark"] .th-renalytica,
[data-theme="dark"] .col-renalytica {
  background-color: rgba(255, 128, 0, 0.14);
  color: var(--accent-momentum);
  border-left-color: var(--accent-momentum);
  border-inline-color: rgba(255, 128, 0, 0.3);
}

[data-theme="dark"] .comparison-table td,
[data-theme="dark"] .table-row-v2 {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .td-feature,
[data-theme="dark"] .feature-title {
  font-weight: 700;
  color: #F8FAFC;
  background-color: #131B2C;
}

[data-theme="dark"] .td-generic,
[data-theme="dark"] .table-cell,
[data-theme="dark"] .val-others {
  color: #94A3B8;
  background-color: #101828;
}

[data-theme="dark"] .td-renalytica {
  background-color: #0E1524;
  color: #CBD5E1;
  border-left-color: var(--accent-momentum);
}

[data-theme="dark"] .td-renalytica strong {
  color: #FFFFFF;
}

/* Methodology Section Dark Mode */
[data-theme="dark"] .methodology-summary-v2,
[data-theme="dark"] .methodology-section-v2 {
  background-color: #0C1220;
  border-top-color: rgba(255, 255, 255, 0.08);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .step-card-v2,
[data-theme="dark"] .methodology-step-card {
  background: #101828;
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .step-card-v2:hover,
[data-theme="dark"] .methodology-step-card.active-step {
  border-color: var(--accent-momentum);
  box-shadow: 0 14px 36px rgba(255, 128, 0, 0.18);
}

[data-theme="dark"] .step-title,
[data-theme="dark"] .step-card-title {
  color: #F8FAFC;
}

[data-theme="dark"] .step-desc,
[data-theme="dark"] .step-card-desc {
  color: #94A3B8;
}

[data-theme="dark"] .methodology-media-card {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
}

[data-theme="dark"] .methodology-telemetry-overlay {
  background: rgba(16, 24, 40, 0.94);
  border-color: rgba(255, 255, 255, 0.12);
}

[data-theme="dark"] .telemetry-header-line {
  color: #F8FAFC;
}

[data-theme="dark"] .telemetry-sub-line {
  color: #94A3B8;
}

/* Corporate Subscriptions Dark Mode */
[data-theme="dark"] .corporate-subscription-section,
[data-theme="dark"] .corporate-sub-section-v2 {
  background-color: #090D16;
}

[data-theme="dark"] .subscription-feature-box,
[data-theme="dark"] .sub-card-wrap {
  background: #101828;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

[data-theme="dark"] .sub-headline,
[data-theme="dark"] .sub-box-title {
  color: #F8FAFC;
}

[data-theme="dark"] .sub-intro,
[data-theme="dark"] .sub-box-lead {
  color: #94A3B8;
}

[data-theme="dark"] .benefit-item,
[data-theme="dark"] .sub-perk-item {
  color: #CBD5E1;
}

[data-theme="dark"] .benefit-item span {
  color: #E2E8F0;
}

[data-theme="dark"] .btn-pill-ghost-dark {
  border-color: rgba(255, 255, 255, 0.30);
  color: #F8FAFC;
}

[data-theme="dark"] .btn-pill-ghost-dark:hover {
  background-color: #F8FAFC;
  color: #090D16;
  border-color: #F8FAFC;
}

[data-theme="dark"] .sub-media-frame {
  border-color: rgba(255, 255, 255, 0.12);
}

/* Testimonials Dark Mode */
[data-theme="dark"] .testimonials-section-v2 {
  background-color: #0C1220;
  border-top-color: rgba(255, 255, 255, 0.08);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .feedback-card-v2 {
  background: #101828;
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .feedback-card-v2:hover {
  border-color: var(--accent-momentum);
  box-shadow: 0 18px 45px rgba(255, 128, 0, 0.18);
}

[data-theme="dark"] .quote-text {
  color: #CBD5E1;
}

[data-theme="dark"] .quote-author-info {
  border-top-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .q-name {
  color: #F8FAFC;
}

[data-theme="dark"] .q-role {
  color: #94A3B8;
}

/* Final CTA Card Dark Mode */
[data-theme="dark"] .final-cta-section-v2 {
  background-color: #090D16;
}

[data-theme="dark"] .final-cta-card {
  background: transparent;
  border: none;
  box-shadow: none;
}

[data-theme="dark"] .cta-title-v2 {
  color: #F8FAFC;
}

[data-theme="dark"] .cta-subtitle-v2 {
  color: #94A3B8;
}

[data-theme="dark"] .btn-pill-whatsapp {
  background: rgba(22, 163, 74, 0.12);
  color: #22C55E;
  border-color: #22C55E;
}

[data-theme="dark"] .btn-pill-whatsapp:hover {
  background: #16A34A;
  color: #FFFFFF;
}

[data-theme="dark"] .newsletter-card-v2 {
  background: #101828;
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .news-box-title {
  color: #F8FAFC;
}

[data-theme="dark"] .news-box-sub {
  color: #94A3B8;
}

[data-theme="dark"] .news-input-v2 {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: #F8FAFC;
}

[data-theme="dark"] .news-input-v2::placeholder {
  color: #64748B;
}

/* Mega Footer Dark Mode */
[data-theme="dark"] .mega-footer-v2 {
  background-color: #090D16;
  border-top-color: rgba(255, 255, 255, 0.10);
  color: #F8FAFC;
}

[data-theme="dark"] .col-heading-v2 {
  color: #F8FAFC;
}

[data-theme="dark"] .contact-line {
  color: #F8FAFC;
}

[data-theme="dark"] .contact-line strong {
  color: #F8FAFC;
}

[data-theme="dark"] .footer-lead-p {
  color: #94A3B8;
}

[data-theme="dark"] .footer-ul-v2 a {
  color: #94A3B8;
}

[data-theme="dark"] .footer-bottom-bar-v2 {
  border-top-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .copy-notice {
  color: #64748B;
}

[data-theme="dark"] .trust-tag {
  background: rgba(255, 255, 255, 0.06);
  color: #94A3B8;
  border-color: rgba(255, 255, 255, 0.10);
}
