/* ===== Landing Page Styles - Clinical Instrument Design ===== */

/* Smooth scrolling for anchor links and in-page navigation */
html {
  scroll-behavior: smooth;
}
/* Offset so fixed header doesn’t cover target when jumping to anchors */
@media (min-width: 769px) {
  html { scroll-padding-top: 140px; }
}
@media (max-width: 768px) {
  html { scroll-padding-top: 120px; }
}

/* Typography */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #ffffff;
}

/* Color System - Enterprise-Grade */
:root {
  --navy: #0F1F3C;
  --blue: #1E40AF;
  --blue-hover: #1E3A8A;
  --light-blue-start: #EFF6FF;
  --light-blue-end: #DBEAFE;
  --slate-text: #475569;
  --border-color: #D1D5DB;
  --card-bg: #ffffff;
  --section-bg: #F9FAFB;
  --accent-red: #DC2626;
  --accent-amber: #D97706;
  --accent-teal: #2D8B85;
  --accent-green: #059669;
  --clinical-gray: #F1F5F9;
  --grid-lines: rgba(226, 232, 240, 0.3);
}

/* Skip link (in-page navigation) */
.landing-page {
  position: relative;
}
.skip-to-how-it-works {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
}
.skip-to-how-it-works:focus {
  left: 20px;
  top: 20px;
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 120px 0;
  overflow-x: hidden;
  overflow-y: visible;
  background: #ffffff;
  min-height: 650px;
  display: flex;
  align-items: center;
  /* Limit paint for smoother scroll */
  contain: paint;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(226, 232, 240, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226, 232, 240, 0.3) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
  opacity: 0.5;
}

.hero.hero--enterprise::before {
  opacity: 0.12;
}

/* Abstract Convergence Lines Background */
.hero-bg-lines {
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  bottom: -200px;
  z-index: 1;
  opacity: 1;
  pointer-events: none;
  background: radial-gradient(circle at 72% 50%, rgba(59, 130, 246, 0.04) 0%, rgba(255, 255, 255, 0) 50%);
}

.hero-bg-lines::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 50%, rgba(59, 130, 246, 0.06) 0%, transparent 35%);
  z-index: -1;
}

.hero-lines-svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  /* No filter during scroll for smoother performance; glow is subtle enough to omit */
}

/* Render all hero lines solid (no dash animation = no broken/dashed appearance) */
.hero-bg-lines path {
  stroke-dasharray: none;
  stroke-dashoffset: 0;
  animation: none;
}

/* Respect reduced motion: disable SVG animations */
@media (prefers-reduced-motion: reduce) {
  .hero-lines-svg *,
  .hero-lines-svg animate {
    animation: none !important;
  }
}

/* Hero Inner - Two Column Grid */
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  width: 100%;
}

.hero-content {
  text-align: left;
}

.hero-logo-container {
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-logo {
  height: 40px;
  width: auto;
}

.hero-logo-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-wordmark {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--navy);
  text-transform: uppercase;
}

.hero-tagline {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--slate-text);
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 32px 0;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.hero-supporting {
  font-size: 1rem;
  font-weight: 500;
  color: var(--slate-text);
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.hero-subheadline {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0 0 40px 0;
  color: var(--slate-text);
  font-weight: 400;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-trust-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.trust-item {
  font-size: 0.875rem;
  color: var(--slate-text);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-icon {
  width: 20px;
  height: 20px;
  max-width: 24px;
  max-height: 24px;
  color: #3B82F6;
  flex-shrink: 0;
}

.hero-methodology {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.methodology-badge {
  font-size: 0.75rem;
  color: var(--slate-text);
  font-weight: 500;
  padding: 6px 12px;
  background: var(--clinical-gray);
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.methodology-badge-link {
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.methodology-badge-link:hover {
  background: var(--navy);
  color: #fff;
}

/* Buttons: use sponsor-common .btn .btn-primary / .btn-secondary (product consistency) */
.hero-actions .btn {
  padding: 14px 28px;
  min-height: 44px;
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.1rem;
  min-height: 48px;
}

.btn-icon {
  transition: transform 0.2s ease;
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

.btn:focus-visible,
.landing-cta-primary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* Inline form error (sample report modal) */
.form-error-inline {
  padding: 12px 16px;
  margin-bottom: 16px;
  background: #FEE2E2;
  color: #B91C1C;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
}

.hero-trust-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Hero Score Preview Card */
.hero-score-card {
  background: #ffffff;
  border: 1px solid #D1D5DB;
  border-radius: 16px;
  padding: 0;
  position: relative;
  z-index: 3;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 
    0 20px 40px rgba(15, 31, 60, 0.12), 
    0 8px 16px rgba(15, 31, 60, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  /* Position over convergence point (x=1040 in 1440px viewBox = ~72% from left) */
  transform: translateX(-12%);
  backdrop-filter: blur(10px);
}

.hero-score-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1E3A8A 0%, #3B82F6 50%, #10B981 100%);
}

.hero-score-card:hover {
  transform: translateX(-12%) translateY(-4px);
  box-shadow: 
    0 24px 48px rgba(15, 31, 60, 0.16), 
    0 12px 24px rgba(15, 31, 60, 0.10),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}

@media (max-width: 1024px) {
  .hero-score-card {
    transform: none;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-score-card:hover {
    transform: translateY(-4px);
  }
}

.score-preview-content {
  padding: 40px;
}

.score-badge-wrapper {
  text-align: center;
  margin-bottom: 20px;
}

.score-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: #F1F5F9;
  border-radius: 6px;
}

.score-preview-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.score-preview-main {
  text-align: center;
  margin-bottom: 32px;
}

.score-preview-number {
  font-size: 6.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
  text-shadow: 0 2px 4px rgba(15, 31, 60, 0.08);
}

.score-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #D1FAE5;
  color: #065F46;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.status-icon {
  width: 18px;
  height: 18px;
}

.status-ready {
  background: #D1FAE5;
  color: #065F46;
}

.status-warning {
  background: #FEF3C7;
  color: #92400E;
}

.status-alert {
  background: #FEE2E2;
  color: #991B1B;
}

.score-preview-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #E2E8F0 50%, transparent 100%);
  margin: 32px 0;
}

.score-preview-insights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.insight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: #F8FAFC;
  border-radius: 10px;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
}

.insight-item:hover {
  background: #F1F5F9;
  transform: translateX(2px);
}

.insight-warning {
  border-left-color: #F59E0B;
}

.insight-alert {
  border-left-color: #EF4444;
}

.insight-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--navy);
  opacity: 0.7;
}

.insight-icon svg {
  width: 100%;
  height: 100%;
}

.insight-content {
  flex: 1;
}

.insight-label {
  font-size: 0.75rem;
  color: var(--slate-text);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.insight-value {
  font-size: 0.9375rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.4;
}

.score-cta {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #E2E8F0;
}

.score-cta-text {
  font-size: 0.875rem;
  color: var(--blue);
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* Clinical Instrument Section */
.instrument-section {
  padding: 140px 0;
  background: var(--section-bg);
  position: relative;
  border-top: 1px solid var(--border-color);
}

.instrument-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.instrument-card {
  background: var(--card-bg);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
}

.instrument-card:hover {
  border-color: var(--blue);
  box-shadow: 0 2px 8px rgba(41, 119, 255, 0.08);
}

.instrument-number {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.instrument-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
}

.instrument-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--slate-text);
  margin: 0;
}

/* Conversation Items Section */
.conversation-section {
  padding: 140px 0;
  background: var(--card-bg);
  position: relative;
  border-top: 1px solid var(--border-color);
}

.conversation-examples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.conversation-item {
  background: var(--card-bg);
  padding: 32px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--blue);
  transition: all 0.2s ease;
}

.conversation-item-high {
  border-left-color: #EF4444;
}

.conversation-item-medium {
  border-left-color: #F59E0B;
}

.conversation-item-low {
  border-left-color: #10B981;
}

.conversation-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.conversation-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
  gap: 16px;
}

.conversation-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.metric-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.metric-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.conversation-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 16px 0;
  letter-spacing: -0.01em;
}

.conversation-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.conversation-points li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--slate-text);
  margin: 0 0 12px 0;
  padding-left: 20px;
  position: relative;
}

.conversation-points li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 600;
}

.conversation-points li:last-child {
  margin-bottom: 0;
}

.conversation-points li strong {
  color: var(--navy);
  font-weight: 600;
}

.risk-indicator {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

.risk-high {
  background: #FEE2E2;
  color: #991B1B;
}

.risk-medium {
  background: #FEF3C7;
  color: #92400E;
}

.risk-low {
  background: #D1FAE5;
  color: #065F46;
}

.conversation-cta {
  text-align: center;
  margin-top: 48px;
}

/* What Steradian Reveals Section */
.reveals-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  position: relative;
}

.reveals-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #e5e7eb 50%, transparent 100%);
}

.what-you-get-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
}

.what-you-get-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #e5e7eb 50%, transparent 100%);
}

.why-section {
  padding: 100px 0;
  background: white;
}

.who-section {
  padding: 100px 0;
  background: var(--section-bg);
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 48px auto 0;
}

.who-item {
  background: var(--card-bg);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  transition: all 0.2s ease;
}

.who-item:hover {
  border-color: var(--blue);
  box-shadow: 0 2px 8px rgba(41, 119, 255, 0.1);
  transform: translateY(-2px);
}

.when-section {
  padding: 100px 0;
  background: white;
}

.when-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 48px auto 0;
}

.when-item {
  background: var(--card-bg);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  text-align: center;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  transition: all 0.2s ease;
}

.when-item:hover {
  border-color: var(--blue);
  box-shadow: 0 2px 8px rgba(41, 119, 255, 0.1);
  transform: translateY(-2px);
}

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

.section-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.02em;
}

.section-description {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--slate-text);
  margin: 24px auto 0;
  max-width: 900px;
  text-align: center;
}

.reveals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.reveal-card {
  background: var(--card-bg);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
}

.reveal-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 12px rgba(41, 119, 255, 0.1);
  transform: translateY(-2px);
}

.reveal-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clinical-gray);
  border-radius: 6px;
  margin-bottom: 24px;
  color: var(--blue);
}

.reveal-icon svg {
  width: 28px;
  height: 28px;
}

.reveal-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
}

.reveal-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--slate-text);
  margin: 0;
}

/* Steradian Score Section */
.score-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
  position: relative;
}

.score-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #e5e7eb 50%, transparent 100%);
}

.score-card {
  background: var(--card-bg);
  padding: 56px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  max-width: 900px;
  margin: 0 auto;
}

.score-header {
  text-align: center;
  margin-bottom: 48px;
}

.score-title {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
}

.score-subtitle {
  font-size: 1.1rem;
  color: var(--slate-text);
  margin: 0;
}

.score-visualization {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.score-metrics {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.score-metric {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.metric-label {
  font-size: 0.9rem;
  color: var(--slate-text);
  font-weight: 500;
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.metric-bar {
  height: 12px;
  background: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
}

.metric-fill {
  height: 100%;
  background: var(--blue);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.metric-fill.gap-indicator {
  background: #f59e0b;
}

.score-radial {
  display: flex;
  justify-content: center;
  align-items: center;
}

.radial-chart {
  width: 100%;
  max-width: 280px;
  height: auto;
}

.radial-text {
  font-family: 'Inter', sans-serif;
}

.radial-label {
  font-family: 'Inter', sans-serif;
}

/* How It Works Section */
.how-it-works-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
  position: relative;
}

.how-it-works-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #e5e7eb 50%, transparent 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.step-card {
  text-align: center;
  padding: 40px 24px;
}

.step-number {
  width: 64px;
  height: 64px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 24px;
}

.step-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 12px 0;
}

.step-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--slate-text);
  margin: 0;
}

/* New Detailed Process Steps */
.process-steps {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.process-step {
  background: white;
  border-radius: 16px;
  border: 2px solid #e5e7eb;
  padding: 48px;
  transition: all 0.3s ease;
  position: relative;
}

.process-step:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 40px rgba(41, 119, 255, 0.15);
  transform: translateY(-4px);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.step-number-badge {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--blue), #3B82F6);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(41, 119, 255, 0.3);
}

.step-header h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.02em;
}

.step-intro {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.6;
}

.category-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.category-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
}

.category-item:hover {
  background: #eff6ff;
  border-color: var(--blue);
  transform: translateX(4px);
}

.category-icon {
  width: 20px;
  height: 20px;
  color: var(--blue);
  flex-shrink: 0;
}

.step-highlight {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-left: 4px solid var(--blue);
  padding: 20px 24px;
  border-radius: 8px;
  margin: 24px 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #1e293b;
}

.step-highlight strong {
  color: var(--navy);
  font-weight: 600;
}

.step-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  transition: all 0.2s ease;
}

.feature-badge:hover {
  background: #f8fafc;
  border-color: var(--blue);
  transform: translateY(-2px);
}

.dimensions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.dimension-item {
  padding: 14px 18px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #475569;
  transition: all 0.2s ease;
}

.dimension-item:hover {
  background: #eff6ff;
  border-color: var(--blue);
  transform: translateX(4px);
}

.dimension-item strong {
  color: var(--navy);
  font-weight: 600;
}

.insight-types {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 24px 0;
}

.insight-type h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 12px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.example-box {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #475569;
}

.example-box strong {
  color: var(--navy);
  font-weight: 600;
}

.example-box ul {
  margin: 4px 0 0 20px;
  line-height: 1.8;
}

/* Lists within step-highlight and process steps */
.step-highlight ul,
.process-step ul {
  margin: 8px 0 0 20px;
  line-height: 1.8;
  color: inherit;
}

.step-highlight p {
  margin-top: 8px;
  margin-bottom: 0;
}

.process-step p {
  margin-bottom: 16px;
}

/* CTA Section */
.landing-cta-section {
  text-align: center;
  margin-top: 64px;
}

.landing-cta-note {
  margin-top: 16px;
  color: #64748b;
  font-size: 0.9rem;
}

/* Success Message Modal */
.success-message {
  text-align: center;
  padding: 40px 20px;
}

.success-message svg {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: block;
}

.success-message h3 {
  margin: 0 0 12px 0;
  color: #0F1F3C;
}

.success-message p {
  margin: 0 0 24px 0;
  color: #475569;
}

/* SVG Icon in Buttons */
.btn svg {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  flex-shrink: 0;
}

/* Responsive adjustments for new process steps */
@media (max-width: 768px) {
  .process-step {
    padding: 32px 24px;
  }
  
  .step-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .step-header h3 {
    font-size: 1.4rem;
  }
  
  .category-list,
  .dimensions-grid {
    grid-template-columns: 1fr;
  }
  
  .step-features {
    flex-direction: column;
  }
  
  .feature-badge {
    width: 100%;
    justify-content: center;
  }
}

/* CTA Band */
.cta-band {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--blue) 0%, #1e5fe6 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
}

.cta-headline {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 32px 0;
  color: white;
  letter-spacing: -0.02em;
}

.cta-subtext {
  margin-top: 24px;
  font-size: 0.95rem;
  opacity: 0.9;
  color: white;
}

/* Responsive adjustments for wavy lines */
@media (max-width: 1024px) {
  .wavy-lines {
    opacity: 0.6;
  }
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #e5e7eb 50%, transparent 100%);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.faq-item {
  background: var(--card-bg);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.faq-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 8px 0;
}

.faq-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--slate-text);
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-logo-container {
    justify-content: center;
  }
  
  .hero-subheadline {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-trust-row {
    justify-content: center;
  }
  
  .instrument-grid,
  .conversation-examples {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subheadline {
    font-size: 1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-trust-row {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .hero-score-card {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .section-title {
    font-size: 1.875rem;
  }
  
  .reveals-grid {
    grid-template-columns: 1fr;
  }
  
  .instrument-grid,
  .conversation-examples {
    grid-template-columns: 1fr;
  }
  
  .score-visualization {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-headline {
    font-size: 2rem;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .score-card {
    padding: 40px 24px;
  }
  
  .instrument-section,
  .conversation-section {
    padding: 80px 0;
  }
  
  .hero-methodology {
    flex-direction: column;
    gap: 8px;
  }
  
  .conversation-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .risk-indicator {
    align-self: flex-start;
  }
  
  .conversation-points li {
    font-size: 0.9rem;
  }
}

/* Sample Report Section */
.sample-report-section {
  padding: 140px 0;
  background: linear-gradient(180deg, #F9FAFB 0%, #FFFFFF 100%);
  border-top: 1px solid var(--border-color);
}

.sample-report-preview {
  max-width: 900px;
  margin: 0 auto;
}

.sample-report-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sample-badge {
  display: inline-block;
  background: #FEF3C7;
  color: #92400E;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.sample-report-card h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 8px 0;
}

.sample-date {
  font-size: 0.9375rem;
  color: var(--slate-text);
  margin: 0 0 32px 0;
}

.sample-highlights {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  margin-bottom: 40px;
  padding: 32px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.sample-highlight {
  text-align: center;
  padding: 24px;
  background: var(--clinical-gray);
  border-radius: 8px;
}

.highlight-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.highlight-value {
  font-size: 4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.highlight-value span {
  font-size: 2rem;
  color: var(--slate-text);
}

.highlight-status {
  font-size: 0.875rem;
  font-weight: 600;
  color: #059669;
}

.sample-metrics {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sample-metric {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--clinical-gray);
  border-radius: 8px;
}

.metric-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.metric-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.metric-desc {
  font-size: 0.875rem;
  color: var(--slate-text);
}

.sample-report-cta {
  text-align: center;
}

.sample-cta-note {
  font-size: 0.875rem;
  color: var(--slate-text);
  margin: 16px 0 0 0;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  background: #ffffff;
  border-radius: 16px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

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

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--slate-text);
  transition: color 0.2s ease;
}

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

.modal-close svg {
  width: 24px;
  height: 24px;
}

.modal-header {
  padding: 40px 40px 32px;
  text-align: center;
}

.modal-header h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 12px 0;
}

.modal-header p {
  font-size: 1rem;
  color: var(--slate-text);
  margin: 0;
  line-height: 1.6;
}

.sample-report-form {
  padding: 0 40px 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.form-note {
  font-size: 0.8125rem;
  color: var(--slate-text);
  text-align: center;
  margin: 16px 0 0 0;
  line-height: 1.5;
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 20px;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .cta-headline {
    font-size: 1.75rem;
  }
  
  .reveal-card,
  .score-card {
    padding: 32px 20px;
  }
  
  .sample-report-card {
    padding: 32px 24px;
  }
  
  .sample-highlights {
    grid-template-columns: 1fr;
  }
  
  .modal-content {
    margin: 20px;
  }
  
  .modal-header,
  .sample-report-form {
    padding: 32px 24px;
  }
}

/* ===== Sticky CTA bar ===== */
.landing-sticky-cta {
  position: fixed;
  top: 120px;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, #0f172a 0%, #0b1f3b 50%, #0f172a 100%);
  padding: 8px 20px;
  transform: translateY(-200%);
  transition: transform 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}
.landing-sticky-cta.is-visible {
  transform: translateY(0);
}
.landing-sticky-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.landing-sticky-cta-text {
  color: #e2e8f0;
  font-size: 0.9375rem;
  font-weight: 500;
}
.landing-sticky-cta-btn {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  color: #0B1F3B;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 8px 20px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.landing-sticky-cta-btn:hover {
  background: #e2e8f0;
  color: #0B1F3B;
}

.landing-sticky-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

/* Sticky: green primary (sample), refined outline secondary (diagnostic) */
.landing-sticky-cta .landing-sticky-cta-actions .btn-primary {
  background: var(--gradient-cta);
  color: var(--color-text-inverse, #fff);
  border: none;
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 8px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow-success, 0 2px 8px rgba(16, 185, 129, 0.35));
}

.landing-sticky-cta .landing-sticky-cta-actions .btn-primary:hover {
  background: var(--gradient-cta-hover);
  color: #fff;
  transform: translateY(-1px);
}

.landing-sticky-cta .landing-sticky-cta-actions .btn-secondary {
  background: transparent;
  color: #f1f5f9;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 8px 14px;
  border-radius: 8px;
}

.landing-sticky-cta .landing-sticky-cta-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 640px) {
  .landing-sticky-cta-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .landing-sticky-cta-actions {
    justify-content: stretch;
  }
  .landing-sticky-cta-actions .btn {
    justify-content: center;
    width: 100%;
  }
}

/* ===== Landing — enterprise diagnostic (prospect-first; auth redirects to dashboard) ===== */

.hero.hero--enterprise {
  position: relative;
  padding: 3rem 0 2.75rem;
  min-height: 0;
  align-items: start;
}

.hero-bg-enterprise {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 65% 50% at 82% 8%, rgba(30, 64, 175, 0.06) 0%, transparent 45%),
    linear-gradient(180deg, #fafbfc 0%, #ffffff 45%, #f8fafc 100%);
}

.hero-inner--enterprise {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 2.5rem 3rem;
  align-items: start;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 1024px) {
  .hero-inner--enterprise {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.hero-content--enterprise {
  max-width: 36rem;
}

.hero-eyebrow {
  margin: 0 0 0.65rem 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary-800, #1e40af);
}

.hero-stakes-line {
  margin: 0 0 1rem 0;
  font-size: 1.0625rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.35;
  color: var(--accent-teal);
  max-width: 34rem;
  letter-spacing: -0.02em;
}

.hero-title--enterprise {
  font-size: clamp(2rem, 4.5vw, 2.875rem);
  font-weight: 700;
  line-height: 1.04;
  margin: 0 0 1.25rem 0;
  letter-spacing: -0.038em;
  color: #0B1F33;
}

.hero-lead--enterprise {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: rgba(30, 41, 59, 0.88);
  margin: 0 0 1.5rem 0;
  max-width: 34rem;
}

.hero-lead--enterprise strong {
  color: #0B1F33;
}

/* CTAs */
.hero-cta-cluster {
  margin-bottom: 0.85rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
}

.hero-cta-row .btn {
  font-weight: 600;
}

.hero-cta-row .btn-primary {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}

body.landing-marketing .landing-page .hero-cta-row .btn-primary:hover,
body.landing-marketing .landing-sticky-cta .landing-sticky-cta-btn.btn-primary:hover,
body.landing-marketing .ldg-final-cta-row .btn-primary.btn-large:hover {
  box-shadow: 0 4px 18px rgba(45, 139, 133, 0.22);
}

.hero-cta-row .btn-secondary {
  border-color: #c7cdd5;
  color: #334155;
  opacity: 0.92;
  border-radius: 8px;
}

.hero-cta-row .ldg-tertiary-link {
  margin-top: 0;
  display: inline;
  align-self: center;
  font-size: 0.875rem;
}

.ldg-tertiary-link {
  display: block;
  margin-top: 0.65rem;
  padding: 0;
  border: none;
  background: none;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-primary-700, #1d4ed8);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  text-align: left;
}

.ldg-tertiary-link:hover {
  color: var(--color-primary-900, #1e3a8a);
}

.hero-supportline {
  font-size: 0.78125rem;
  color: rgba(100, 116, 139, 0.78);
  margin: 0 0 1rem 0;
  line-height: 1.45;
  max-width: 32rem;
}

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-trust-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.7rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-gray-600, #4b5563);
  background: var(--color-gray-100, #f3f4f6);
  border: 1px solid var(--color-gray-200, #e5e7eb);
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.hero-trust-chip:hover {
  background: #fff;
  border-color: var(--color-primary-200, #bfdbfe);
  color: var(--color-primary-800, #1e40af);
}

/* Report artifact (hero right) */
.hero-aside--artifact {
  perspective: 1200px;
}

.hero-artifact {
  position: relative;
  max-width: 400px;
  margin-left: auto;
  padding: 1.5rem 1.4rem 1.35rem;
  border-radius: 4px;
  background: #FAFAF8;
  border: 1px solid #E5E7EB;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 24px 64px rgba(15, 23, 42, 0.08),
    0 4px 16px rgba(15, 23, 42, 0.04);
  transform: rotate(-0.2deg);
  transition: box-shadow 0.25s ease;
}

.hero-artifact:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 28px 72px rgba(15, 23, 42, 0.10),
    0 6px 20px rgba(15, 23, 42, 0.05);
}

@media (max-width: 1024px) {
  .hero-artifact {
    margin-left: 0;
    margin-right: auto;
    max-width: 100%;
    transform: none;
  }
}

.hero-artifact__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e4e8;
}

.hero-artifact__kicker {
  margin: 0 0 0.25rem 0;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8b919a;
}

.hero-artifact__headline {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0B1F33;
  line-height: 1.22;
}

.hero-artifact__badge {
  flex-shrink: 0;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.55rem;
  border-radius: 3px;
  color: #1e3a8a;
  background: #eef2ff;
  border: 1px solid #dbeafe;
}

.hero-artifact__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1.15rem;
}

.hero-artifact__metric {
  padding: 0.7rem 0.75rem;
  border-radius: 3px;
  background: #f5f5f3;
  border: 1px solid #e8e9ec;
  min-height: 5.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-artifact__metric-label {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #7c8493;
  margin-bottom: 0.4rem;
}

.hero-artifact__metric-value {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0B1F33;
  line-height: 1.1;
  margin-bottom: 0.25rem;
  font-variant-numeric: tabular-nums;
}

.hero-artifact__metric-value--accent {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--accent-teal);
}

.hero-artifact__metric-caption {
  font-size: 0.6875rem;
  line-height: 1.35;
  color: var(--color-gray-700, #374151);
  margin-top: auto;
}

.hero-artifact__agenda {
  padding-top: 0.85rem;
  border-top: 1px solid #e2e4e8;
}

.hero-artifact__agenda-title {
  margin: 0 0 0.5rem 0;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8b919a;
}

.hero-artifact__agenda-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #374151;
}

.hero-artifact__agenda-list li {
  margin-bottom: 0.2rem;
}

/* Sections — premium vertical rhythm */
.container--ldg {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ldg-section {
  padding: 3.25rem 0;
  border-top: 1px solid #eaeaea;
}

.ldg-section--tight {
  padding: 2.75rem 0;
}

.ldg-section--muted {
  background: #f8fafb;
}

.ldg-section--diff {
  background: linear-gradient(168deg, #0b1324 0%, #1e293b 48%, #0f172a 100%);
  color: #e2e8f0;
  border-top: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.ldg-section--final {
  padding: 3.5rem 0 3.75rem;
  background: #fff;
  border-top: 1px solid #eaeaea;
}

.ldg-h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0B1F33;
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.028em;
  line-height: 1.18;
}

.ldg-h2--center {
  text-align: center;
  margin-bottom: 1.75rem;
}

.ldg-h2--light {
  color: #f8fafc;
}

.ldg-section--diff .ldg-h2 {
  color: #f8fafc;
}

.container--narrow {
  max-width: 38rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.ldg-prose-width {
  max-width: 42rem;
}

.ldg-when-grid--premium {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  max-width: 100%;
}

.ldg-when-tile {
  display: flex;
  align-items: center;
  min-height: 3.25rem;
  padding: 0.95rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1f2937;
  line-height: 1.38;
  background: #fff;
  border: 1px solid #d9dde3;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: background 0.15s, border-color 0.15s;
}

.ldg-section--muted .ldg-when-tile {
  background: #fff;
}

.ldg-when-tile:hover {
  background: #f8fafb;
  border-color: #c7cdd5;
}

/* How it works — step column */
.ldg-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  max-width: 1040px;
  margin: 0 auto;
  align-items: stretch;
}

@media (max-width: 900px) {
  .ldg-steps {
    grid-template-columns: 1fr;
  }
}

.ldg-step {
  position: relative;
  padding: 1.5rem 1.35rem 1.5rem;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #E5E7EB;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  min-height: 100%;
  transition: box-shadow 0.15s ease;
}

.ldg-step:hover {
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.07);
}

.ldg-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  margin-bottom: 0.85rem;
  font-size: 0.8125rem;
  font-weight: 800;
  color: #1e3a8a;
  background: #eef2ff;
  border-radius: 6px;
  border: 1px solid #dbeafe;
}

.ldg-step__title {
  margin: 0 0 0.55rem 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0B1F33;
  line-height: 1.25;
}

.ldg-step__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #4b5563;
}

.ldg-tagline--quiet {
  text-align: center;
  font-size: 0.8125rem;
  color: #6b7280;
  margin: 1.5rem 0 0 0;
  font-weight: 500;
}

/* Deliverables */
.ldg-deliverables {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.55rem;
}

.ldg-deliverable {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--color-gray-200, #e5e7eb);
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  min-height: 4.25rem;
}

.ldg-deliverable__label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-gray-500, #6b7280);
}

.ldg-deliverable__text {
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--color-gray-800, #1f2937);
  font-weight: 500;
}

.ldg-deliverable--line {
  display: flex;
  align-items: center;
  min-height: 3.5rem;
  font-size: 0.875rem;
  line-height: 1.42;
  font-weight: 500;
  color: var(--color-gray-800, #1f2937);
}

.ldg-grid-3--diff {
  gap: 1.25rem;
}

/* .ldg-card--diff-premium visual rules live AFTER base .ldg-card (see below) so white background does not win */

.ldg-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1040px;
  margin: 0 auto;
  align-items: stretch;
}

@media (max-width: 900px) {
  .ldg-grid-3 {
    grid-template-columns: 1fr;
  }
}

.ldg-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 1.5rem 1.35rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.ldg-card--equal {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
}

.ldg-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0B1F33;
  margin: 0 0 0.55rem 0;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.ldg-card__text {
  font-size: 0.875rem;
  line-height: 1.55;
  color: #4b5563;
  margin: 0;
  flex: 1;
}

/* "Why this is different": dark band cards */
.ldg-section--diff .ldg-card.ldg-card--diff-premium {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 1.65rem 1.45rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 16px 48px rgba(0, 0, 0, 0.3);
}

.ldg-section--diff .ldg-card.ldg-card--diff-premium .ldg-card__title {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.125rem;
}

.ldg-section--diff .ldg-card.ldg-card--diff-premium .ldg-card__text {
  color: #cbd5e1;
  line-height: 1.58;
}

.ldg-section--diff .ldg-card.ldg-card--diff-premium .ldg-card__outcome {
  margin: 0.85rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8125rem;
  line-height: 1.48;
  font-weight: 500;
  color: #e2e8f0;
}

.ldg-discover-compact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  max-width: 840px;
}

@media (max-width: 640px) {
  .ldg-discover-compact {
    grid-template-columns: 1fr;
  }
}

.ldg-discover-compact li {
  padding: 0.65rem 0.85rem;
  font-size: 0.875rem;
  line-height: 1.42;
  color: var(--color-gray-900, #111827);
  font-weight: 500;
  background: #fff;
  border: 1px solid var(--color-gray-200, #e5e7eb);
  border-radius: 8px;
}

.ldg-final-lead {
  font-size: 1rem;
  line-height: 1.55;
  color: #334155;
  margin: 0 0 1.5rem 0;
  font-weight: 500;
}

.ldg-final-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 0.85rem;
  margin-bottom: 0.85rem;
}

.ldg-final-cta-row .btn-large {
  min-height: 52px;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
  font-weight: 600;
  border-radius: 8px;
}

.ldg-final-cta-row .btn-primary.btn-large {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ldg-final-cta-row .btn-secondary.btn-large {
  border-color: #c7cdd5;
  color: #334155;
  opacity: 0.92;
}

.ldg-final-micro {
  font-size: 0.78125rem;
  color: rgba(100, 116, 139, 0.78);
  margin: 0;
}

.modal-header .modal-lead {
  margin: 0.35rem 0 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-gray-600, #4b5563);
}

/* Cost of misalignment + proof (landing copy refresh) */
.ldg-cost-lead {
  margin: 0.75rem 0 0.35rem;
  font-size: 0.9375rem;
  color: var(--color-gray-800, #1f2937);
}

.ldg-cost-p {
  margin: 0.55rem 0 0.4rem;
  font-size: 0.9375rem;
  line-height: 1.58;
  color: #334155;
  max-width: 40rem;
}

.ldg-cost-list {
  margin: 0.5rem 0 1rem;
  padding-left: 1.35rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #334155;
  max-width: 40rem;
}

.ldg-cost-list li {
  margin-bottom: 0.25rem;
}

.ldg-cost-close {
  margin: 1rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.58;
  color: #1e293b;
  font-weight: 500;
  max-width: 40rem;
}

.ldg-proof-body {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.58;
  color: #334155;
  max-width: 40rem;
}

.ldg-proof-body:last-child {
  margin-bottom: 0;
}

.ldg-diff-intro {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.58;
  color: #cbd5e1;
  max-width: 40rem;
}

.ldg-diff-intro strong {
  color: #f8fafc;
}

.ldg-cost-list--data li {
  list-style: disc;
  margin-bottom: 0.25rem;
}

.ldg-discover-compact--recognize {
  grid-template-columns: 1fr;
  max-width: 42rem;
}

@media (max-width: 768px) {
  .hero.hero--enterprise {
    padding: 2rem 0 1.75rem;
  }

  .hero-inner--enterprise {
    padding: 0 1.25rem;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-row .btn {
    width: 100%;
    justify-content: center;
  }

  .container--ldg {
    padding: 0 1.25rem;
  }

  .ldg-section {
    padding: 2.25rem 0;
  }

  .ldg-section--tight {
    padding: 2rem 0;
  }

  .ldg-section--final {
    padding: 2.5rem 0 2.75rem;
  }
}

/* Landing: subtle header bottom edge */
body.landing-marketing .sr-header-bar {
  box-shadow:
    0 2px 20px rgba(0, 0, 0, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.04);
}

body.landing-marketing .sr-header-bar .cta-btn:hover {
  box-shadow: 0 3px 14px rgba(45, 139, 133, 0.18);
}

body.landing-marketing .sr-header-bar .cta-btn {
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
  font-weight: 600;
}

/* Landing: quieter footer */
body.landing-marketing .sr-footer {
  background: #f7f8fa;
  border-top-color: #eaeaea;
  padding-top: 56px;
  margin-top: 0;
}
body.landing-marketing .sr-footer-grid {
  gap: 40px;
}
body.landing-marketing .sr-footer-section h4 {
  color: #64748b;
}
body.landing-marketing .sr-footer-link {
  color: rgba(100, 116, 139, 0.82);
  font-size: 0.8125rem;
}
body.landing-marketing .sr-footer-link:hover {
  color: #1e293b;
}
body.landing-marketing .sr-footer-cta-btn {
  opacity: 0.92;
}
body.landing-marketing .sr-footer-bottom {
  color: rgba(107, 114, 128, 0.78);
}

/* Hero micro-line */
.hero-microline {
  margin: 1.15rem 0 0;
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  color: rgba(100, 116, 139, 0.72);
  font-weight: 500;
  font-style: italic;
}

.hero-artifact__topbar {
  display: flex;
  justify-content: flex-end;
  margin: -0.25rem 0 0.5rem;
}

.hero-artifact__confidential {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b0b5be;
}

.hero-artifact__metrics--compact .hero-artifact__metric {
  min-height: 4.25rem;
  padding: 0.6rem 0.7rem;
}

.hero-artifact__metrics--compact .hero-artifact__metric-value {
  margin-bottom: 0;
}

.ldg-emphasis {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0B1F33;
  margin-top: 0.75rem !important;
  margin-bottom: 0.5rem !important;
}

.ldg-proof-emphasis {
  font-weight: 700;
  color: #0B1F33;
  font-size: 1.0625rem;
}

/* Recognition chips — slim, scannable */
.ldg-recognition-chips {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  max-width: 52rem;
}

.ldg-recognition-chips li {
  flex: 1 1 auto;
  min-width: min(100%, 16rem);
  padding: 0.75rem 1.15rem;
  font-size: 0.875rem;
  line-height: 1.48;
  font-weight: 500;
  color: #1e293b;
  background: #fff;
  border: 1px solid #d9dde3;
  border-radius: 999px;
  transition: background 0.15s, border-color 0.15s;
}

.ldg-recognition-chips li:hover {
  background: #f8fafb;
  border-color: #c7cdd5;
}

.ldg-recognition-close {
  margin: 1.35rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.58;
  color: #1e293b;
  font-weight: 500;
  max-width: 42rem;
}

.ldg-grid-3--icp {
  gap: 1.15rem;
}

.ldg-card.ldg-card--icp .ldg-card__text {
  flex: 1;
}

/* What leadership teams uncover — premium tiles */
.ldg-outcome-tiles {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
  max-width: 960px;
}

.ldg-outcome-tiles li {
  padding: 1.1rem 1.15rem;
  font-size: 0.875rem;
  line-height: 1.42;
  font-weight: 600;
  color: #1e293b;
  background: #fff;
  border: 1px solid #d9dde3;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

/* What changes after — payoff */
.ldg-payoff-grid {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 720px;
}

.ldg-payoff-grid li {
  padding: 1.15rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #0B1F33;
  background: #fff;
  border: 1px solid #d9dde3;
  border-radius: 8px;
}

@media (max-width: 560px) {
  .ldg-payoff-grid {
    grid-template-columns: 1fr;
  }
}

/* Final CTA — typical cycle */
.ldg-final-cycle {
  margin-top: 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid #eaeaea;
  text-align: center;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.ldg-final-cycle__label {
  margin: 0 0 0.55rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8b919a;
}

.ldg-final-cycle ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  line-height: 1.75;
  color: #64748b;
}

.ldg-final-cycle li {
  position: relative;
  padding-left: 0;
}

/* Stat callout — prominent data point */
.ldg-stat-callout {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
  padding: 1.25rem 1.35rem;
  background: #f8fafb;
  border-left: 3px solid var(--accent-teal);
  border-radius: 0 6px 6px 0;
}

.ldg-stat-callout__number {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #0B1F33;
  line-height: 1;
  flex-shrink: 0;
}

.ldg-stat-callout__label {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #334155;
  font-weight: 500;
}

/* Bridge paragraph between problem bullets and data bullets */
.ldg-cost-p--bridge {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #eaeaea;
}

/* Final CTA outcomes (folded from standalone section) */
.ldg-final-outcomes {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  text-align: left;
}

.ldg-final-outcomes li {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0B1F33;
  padding: 0.55rem 0.75rem;
  background: #f8fafb;
  border: 1px solid #eaeaea;
  border-radius: 6px;
}

@media (max-width: 480px) {
  .ldg-final-outcomes {
    grid-template-columns: 1fr;
  }
}

.ldg-section--final .ldg-h2 {
  text-align: center;
}

.ldg-section--final .ldg-final-lead,
.ldg-section--final .ldg-final-micro {
  text-align: center;
}

.ldg-section--final .ldg-final-cta-row {
  justify-content: center;
}

.ldg-social-proof {
  text-align: center;
  color: var(--muted, #6B7280);
  font-style: italic;
  font-size: 0.95rem;
  margin: 2rem auto 3rem;
  max-width: 640px;
  line-height: 1.6;
}
