/* ============================================
   Arhasi × Millennium Group  ·  Assessment Site
   Colors: Red, Black, White
   ============================================ */

:root {
  --red: #C8102E;
  --red-dark: #9B0C24;
  --red-light: #E8354F;
  --red-glow: rgba(200, 16, 46, 0.25);
  --red-subtle: rgba(200, 16, 46, 0.08);
  --black: #100809;
  --black-soft: #1A1012;
  --gray-900: #2D2D2D;
  --gray-700: #4A4A4A;
  --gray-500: #737373;
  --gray-300: #B3B3B3;
  --gray-100: #F0F0F0;
  --white: #FFFFFF;
  --off-white: #FAF6F6;
  --cream: #F7F5F3;
  --surface-dark: #120A0C;
  --surface-light: #FBF7F7;

  --font-sans: 'DM Sans', system-ui, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;

  --nav-height: 72px;
  --section-pad: clamp(4rem, 10vw, 8rem);
  --container: min(1200px, 92vw);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black-soft);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: var(--container);
  margin-inline: auto;
}

/* ---- Particles Canvas ---- */
#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

/* ---- Cursor Glow ---- */
.cursor-glow {
  position: fixed;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s;
  opacity: 0;
  mix-blend-mode: multiply;
}

body:hover .cursor-glow { opacity: 1; }

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  transform: translateY(0);
  transition: background 0.4s var(--ease-out), box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08), 0 8px 24px rgba(16, 8, 9, 0.04);
}

.nav-report-toggle {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0.22rem;
  border-radius: 999px;
  background: rgba(16, 8, 9, 0.05);
  border: 1px solid rgba(200, 16, 46, 0.14);
}

.nav-report-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.5rem;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--gray-600);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.nav-report-toggle-btn:hover {
  color: var(--black);
}

.nav-report-toggle-btn.is-active {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 2px 10px rgba(16, 8, 9, 0.08);
}

.nav-report-toggle-btn.is-active::after {
  display: none;
}

.nav-right--minimal {
  gap: 0.75rem;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: clamp(1rem, 4vw, 2rem);
  max-width: 1400px;
  margin-inline: auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--black);
  flex-shrink: 0;
}

.nav-logo-img {
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-logo-mg {
  height: 32px;
  width: auto;
  max-width: 140px;
}

.nav-logo-arhasi {
  height: 22px;
  width: auto;
  max-width: 88px;
  border-radius: 4px;
}

.nav-arhasi-mark {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--black);
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}

.nav-arhasi-i {
  position: relative;
  display: inline-block;
}

.nav-arhasi-i::after {
  content: '';
  position: absolute;
  top: 0.02em;
  left: 50%;
  transform: translateX(-50%);
  width: 0.27em;
  height: 0.27em;
  background: var(--red);
  border-radius: 50%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.nav-partner {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.75rem;
  background: rgba(200, 16, 46, 0.04);
  border: 1px solid rgba(200, 16, 46, 0.14);
  border-radius: 8px;
}

.nav-partner-label {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  white-space: nowrap;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--red-glow); }
  50% { box-shadow: 0 0 0 8px transparent; }
}

.logo-divider {
  color: var(--gray-300);
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--red);
  width: 0%;
  transition: width 0.1s linear;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 2rem) 0 4rem;
  overflow: hidden;
  background-color: var(--white);
  background-image:
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(200, 16, 46, 0.035) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(200, 16, 46, 0.025) 0%, transparent 50%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 16, 46, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 16, 46, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 20s linear infinite;
}

@keyframes gridDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: orbFloat 8s ease-in-out infinite;
  pointer-events: none;
}

.hero-orb-1 {
  width: 320px;
  height: 320px;
  background: rgba(200, 16, 46, 0.12);
  top: 5%;
  right: 5%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 260px;
  height: 260px;
  background: rgba(10, 10, 10, 0.03);
  bottom: 10%;
  left: 5%;
  animation-delay: -4s;
}

.hero-orb-3 {
  width: 180px;
  height: 180px;
  background: rgba(200, 16, 46, 0.08);
  top: 45%;
  right: 18%;
  animation-delay: -2s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Hero items visible by default  ·  JS enhances with entrance animation */
.hero-item {
  opacity: 1;
  transform: none;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.25rem 2rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200, 16, 46, 0.12);
  border-radius: 16px;
  max-width: 680px;
  margin-inline: auto;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--red);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--gray-100);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.hero-pill {
  padding: 0.35rem 0.85rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: border-color 0.3s, color 0.3s, transform 0.3s var(--ease-spring);
}

.hero-pill:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--red-subtle);
  border: 1px solid rgba(200, 16, 46, 0.15);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-eyebrow {
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 1.25rem;
}

.hero-title em {
  font-style: italic;
  color: var(--red);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--gray-700);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.meta-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
}

.meta-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black-soft);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--black);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 100px;
  transition: background 0.3s, transform 0.3s var(--ease-spring), box-shadow 0.3s;
}

.hero-cta:hover {
  background: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--red-glow);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.hero-download,
.nav-download,
.footer-download {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.875rem 1.5rem;
  background: transparent;
  color: var(--red);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.875rem;
  border: 2px solid var(--red);
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease-spring), box-shadow 0.3s;
}

.nav-download {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  border-width: 1.5px;
}

.footer-download {
  padding: 0.4rem 0.9rem;
  font-size: 0.75rem;
  border-width: 1.5px;
  color: var(--gray-700);
  border-color: var(--gray-300);
  text-decoration: none;
}

.hero-download:hover,
.nav-download:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--red-glow);
}

.footer-download:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.hero-download:disabled,
.nav-download:disabled,
.footer-download:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

.btn-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

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

.hero-cta svg {
  animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ---- Sections ---- */
.section {
  position: relative;
  padding: var(--section-pad) 0;
  z-index: 1;
  overflow: hidden;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
  position: relative;
}

.section-header::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  margin: 1.25rem auto 0;
  border-radius: 2px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 1rem;
}

.section-tag-light { color: rgba(255, 255, 255, 0.7); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 1rem;
}

.section-title-light { color: var(--white); }

.section-title em {
  font-style: italic;
  color: var(--red);
}

.section-title-light em { color: var(--red-light); }

.section-lead {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.7;
}

/* ---- Alternating Section Backgrounds ---- */
.section-bg-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.deco-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}

.deco-blob-1 {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -80px;
  background: rgba(200, 16, 46, 0.12);
  animation: blobDrift 14s ease-in-out infinite;
}

.deco-blob-2 {
  width: 320px;
  height: 320px;
  bottom: -80px;
  left: -60px;
  background: rgba(200, 16, 46, 0.08);
  animation: blobDrift 18s ease-in-out infinite reverse;
}

.deco-blob-3 {
  width: 480px;
  height: 480px;
  top: -140px;
  left: -100px;
  background: rgba(200, 16, 46, 0.22);
  animation: blobDrift 16s ease-in-out infinite;
}

.deco-icon {
  position: absolute;
  width: 88px;
  height: 88px;
  color: rgba(200, 16, 46, 0.15);
}

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

.section-light .deco-icon {
  color: rgba(200, 16, 46, 0.12);
}

.section-dark .deco-icon {
  color: rgba(200, 16, 46, 0.28);
}

.deco-float {
  top: 12%;
  right: 6%;
  animation: floatRotate 8s ease-in-out infinite;
}

.deco-float-slow {
  bottom: 10%;
  left: 4%;
  animation: floatY 10s ease-in-out infinite;
}

.deco-ring {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 1px dashed rgba(200, 16, 46, 0.2);
  border-radius: 50%;
  bottom: 8%;
  right: 5%;
}

.deco-ring-spin {
  animation: ringSpin 24s linear infinite;
}

@keyframes blobDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -16px) scale(1.06); }
}

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

.section-white {
  background-color: #FFFFFF;
  background-image: linear-gradient(180deg, #FFFFFF 0%, #FEFEFE 100%);
}

.section-white .deco-icon {
  color: rgba(200, 16, 46, 0.08);
}

.section-white .deco-blob-1,
.section-white .deco-blob-2 {
  opacity: 0.35;
}

/* Red-bordered boxes on plain white sections */
.section-white .summary-card,
.section-white .dim-detail-card,
.section-white .dim-pill {
  border: 1.5px solid rgba(200, 16, 46, 0.28);
  box-shadow: 0 4px 20px rgba(200, 16, 46, 0.05);
}

.section-white .summary-card:hover,
.section-white .dim-detail-card:hover,
.section-white .dim-pill:hover {
  border-color: rgba(200, 16, 46, 0.42);
}

.section-white .summary-card-accent {
  background: linear-gradient(145deg, #FFFFFF 0%, #FFF3F3 100%);
  color: inherit;
  border: 2px solid rgba(200, 16, 46, 0.38);
  box-shadow: 0 8px 28px rgba(200, 16, 46, 0.1);
}

.section-white .summary-card.summary-card-accent h3 {
  color: var(--black);
}

.section-white .summary-card.summary-card-accent p,
.section-white .summary-card.summary-card-accent p strong {
  color: var(--gray-700);
}

.section-white .summary-card.summary-card-accent p strong {
  color: var(--black);
}

.section-white .summary-card-accent .card-icon {
  background: var(--red-subtle);
  color: var(--red);
}

.section-white .dim-detail-card--finding {
  border: 2px solid rgba(200, 16, 46, 0.38);
  box-shadow: 0 8px 28px rgba(200, 16, 46, 0.1);
}

.section-light {
  background-color: #FFFAFA;
  background-image:
    radial-gradient(ellipse 85% 65% at 95% 0%, rgba(200, 16, 46, 0.09) 0%, transparent 58%),
    radial-gradient(ellipse 65% 55% at 0% 100%, rgba(200, 16, 46, 0.07) 0%, transparent 55%),
    linear-gradient(180deg, #FFFCFC 0%, #FFF6F6 50%, #FFF3F3 100%);
}

.section-dark {
  background-color: #160C0F;
  background-image:
    radial-gradient(ellipse 90% 70% at 10% 0%, rgba(200, 16, 46, 0.2) 0%, transparent 58%),
    radial-gradient(ellipse 70% 60% at 90% 100%, rgba(200, 16, 46, 0.14) 0%, transparent 55%),
    linear-gradient(180deg, #1A0E11 0%, #120A0C 50%, #0D0708 100%);
  color: var(--white);
}

.section-dark .section-title {
  color: var(--white);
}

.section-dark .section-title em {
  color: var(--red-light);
}

.section-dark .section-lead {
  color: rgba(255, 255, 255, 0.78);
}

.section-dark .dim-title {
  color: var(--white);
}

.section-dark .dim-subtitle {
  color: rgba(255, 255, 255, 0.62);
}

.section-dark .dim-narrative p {
  color: rgba(255, 255, 255, 0.8);
}

.section-dark .dim-pill {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(200, 16, 46, 0.2);
  color: rgba(255, 255, 255, 0.88);
}

.section-dark .dim-pill:hover,
.section-dark .dim-pill.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.section-dark .dim-pill.active span,
.section-dark .dim-pill:hover span {
  color: rgba(255, 255, 255, 0.95);
}

.section-dark .gap-card,
.section-dark .data-card:not(.data-card-solution),
.section-dark .pipeline-card:not(.pipeline-card-highlight),
.section-dark .gov-card,
.section-dark .security-core,
.section-dark .risk-card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(200, 16, 46, 0.18);
}

.section-dark .data-card-warning {
  background: rgba(200, 16, 46, 0.14);
  border-color: rgba(200, 16, 46, 0.35);
}

.section-dark .data-card-solution {
  background: var(--red);
  border-color: var(--red);
}

.section-dark .finding-bar,
.section-dark .implication-bar {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(200, 16, 46, 0.22);
}

.section-dark .pipeline-num {
  color: rgba(255, 255, 255, 0.2);
}

.section-dark .pipeline-card-highlight .pipeline-num {
  color: rgba(255, 255, 255, 0.4);
}

.section-dark .gap-icon {
  color: rgba(255, 255, 255, 0.35);
}

.section-dark .data-card.data-card-solution .data-icon {
  background: rgba(0, 0, 0, 0.25);
  color: var(--white);
}

.section-dark .metric-label {
  color: rgba(255, 255, 255, 0.55);
}

/* ---- Summary ---- */
.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.summary-grid.summary-grid-flow {
  grid-template-columns: minmax(0, 1.15fr) auto minmax(0, 1fr) auto minmax(0, 0.85fr);
  gap: 1rem 0.75rem;
  align-items: stretch;
  max-width: 1200px;
  margin-inline: auto;
}

.summary-grid.summary-grid-flow .summary-card {
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.summary-grid.summary-grid-flow .summary-card-accent {
  align-self: stretch;
}

.summary-flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  color: var(--red);
  opacity: 0.55;
  flex-shrink: 0;
  width: 32px;
  animation: arrowPulse 2s ease-in-out infinite;
}

.summary-flow-arrow svg {
  width: 28px;
  height: 28px;
}

.summary-dim-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1rem;
  flex: 1;
}

.summary-dim-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.summary-dim-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-subtle);
  color: var(--red);
  border-radius: 8px;
  animation: floatY 4s ease-in-out infinite;
}

.summary-dim-list li:nth-child(2) .summary-dim-icon { animation-delay: -1s; }
.summary-dim-list li:nth-child(3) .summary-dim-icon { animation-delay: -2s; }
.summary-dim-list li:nth-child(4) .summary-dim-icon { animation-delay: -3s; }
.summary-dim-list li:nth-child(5) .summary-dim-icon { animation-delay: -4s; }
.summary-dim-list li:nth-child(6) .summary-dim-icon { animation-delay: -5s; }

.summary-dim-icon svg {
  width: 16px;
  height: 16px;
}

.summary-dim-list li div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.summary-dim-list li strong {
  font-size: 0.82rem;
  color: var(--black);
  line-height: 1.25;
}

.summary-dim-list li span {
  font-size: 0.75rem;
  color: var(--gray-700);
  line-height: 1.35;
}

.card-icon-pulse {
  animation: iconPulse 3s ease-in-out infinite, floatRotate 5s ease-in-out infinite;
}

.summary-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
}

.summary-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-color: rgba(200, 16, 46, 0.2);
}

.summary-card-accent {
  background: linear-gradient(145deg, #FFFFFF 0%, #FFF3F3 100%);
  color: inherit;
  border: 2px solid rgba(200, 16, 46, 0.38);
  box-shadow: 0 8px 28px rgba(200, 16, 46, 0.1);
}

.summary-card.summary-card-accent h3 {
  color: var(--black);
}

.summary-card.summary-card-accent p {
  font-size: 0.925rem;
  line-height: 1.65;
  color: var(--gray-700);
}

.summary-card.summary-card-accent p strong {
  color: var(--black);
}

.summary-card-accent .card-icon {
  background: var(--red-subtle);
  color: var(--red);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-subtle);
  color: var(--red);
  border-radius: 12px;
  margin-bottom: 1.25rem;
}

.card-icon svg { width: 24px; height: 24px; }

.summary-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.summary-card:not(.summary-card-accent) p {
  font-size: 0.925rem;
  color: var(--gray-700);
  line-height: 1.65;
}

.assessment-notice {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--black);
  color: var(--white);
  border-radius: 12px;
  border-left: 4px solid var(--red);
}

.assessment-notice .notice-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.85rem;
}

.assessment-notice p {
  font-size: 0.925rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

/* ---- Readiness Scorecard ---- */
.scorecard-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.scorecard-overall {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #fdf8f8 100%);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.scorecard-overall-copy h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.scorecard-overall-copy p {
  font-size: 0.925rem;
  line-height: 1.65;
  color: var(--gray-700);
  margin-bottom: 1.25rem;
  max-width: 520px;
}

.score-legend {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem 1.5rem;
}

.score-legend li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--gray-700);
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-l1 { background: #fca5a5; }
.legend-l2 { background: var(--red); }
.legend-l3 { background: #991b1b; }
.legend-l4 { background: #7f1d1d; }
.legend-l5 { background: var(--black); }

.score-ring {
  position: relative;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.score-ring-lg {
  width: 160px;
  height: 160px;
}

.score-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  overflow: visible;
}

.score-ring .ring-bg {
  fill: none;
  stroke: var(--gray-100);
  stroke-width: 7;
}

.score-ring .ring-fill {
  fill: none;
  stroke: var(--red);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 339.292;
  stroke-dashoffset: 339.292;
  filter: drop-shadow(0 0 6px rgba(200, 16, 46, 0.35));
}

.score-ring-lg .ring-bg,
.score-ring-lg .ring-fill {
  stroke-width: 9;
}

.score-ring-glow {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.12) 0%, transparent 70%);
  animation: ringPulse 3s ease-in-out infinite;
  pointer-events: none;
}

.ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.ring-value {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--black);
}

.score-ring-lg .ring-value {
  font-size: 2.75rem;
  color: var(--red);
}

.ring-sub {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-700);
  margin-top: 0.2rem;
}

.readiness-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.readiness-grid-rings {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.summary-dim-list-eight {
  grid-template-columns: repeat(2, 1fr);
}

.summary-dim-list-eight li:nth-child(7) .summary-dim-icon { animation-delay: -6s; }
.summary-dim-list-eight li:nth-child(8) .summary-dim-icon { animation-delay: -7s; }

.readiness-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 1.75rem;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
}

.readiness-card-ring {
  text-align: center;
  padding: 1.5rem 1.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.readiness-card-ring .score-ring {
  margin-bottom: 0.25rem;
}

.readiness-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  border-color: rgba(200, 16, 46, 0.2);
}

.readiness-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.25rem;
  text-transform: capitalize;
}

.readiness-def {
  font-size: 0.85rem;
  color: var(--gray-700);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.readiness-gap {
  font-size: 0.8rem;
  color: var(--gray-700);
  line-height: 1.5;
}

.readiness-status {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.2rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-700);
  background: var(--gray-100);
  border-radius: 100px;
}

.readiness-status.status-preliminary {
  color: var(--red);
  background: var(--red-subtle);
}

/* Scorecard on dark sections */
.section-dark .scorecard-overall {
  background: linear-gradient(155deg, rgba(46, 26, 31, 0.96) 0%, rgba(24, 14, 17, 0.98) 100%);
  border: 1px solid rgba(200, 16, 46, 0.32);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.section-dark .scorecard-overall-copy h3 {
  color: var(--white);
}

.section-dark .scorecard-overall-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.section-dark .scorecard-overall-copy p strong {
  color: rgba(255, 255, 255, 0.95);
}

.section-dark .score-legend li {
  color: rgba(255, 255, 255, 0.72);
}

.section-dark .readiness-card {
  background: linear-gradient(155deg, rgba(46, 26, 31, 0.96) 0%, rgba(24, 14, 17, 0.98) 100%);
  border: 1px solid rgba(200, 16, 46, 0.28);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
}

.section-dark .readiness-card:hover {
  border-color: rgba(200, 16, 46, 0.45);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.38);
}

.section-dark .readiness-card h3 {
  color: var(--white);
}

.section-dark .readiness-gap {
  color: rgba(255, 255, 255, 0.72);
}

.section-dark .score-ring .ring-bg {
  stroke: rgba(255, 255, 255, 0.14);
}

.section-dark .ring-value {
  color: var(--white);
}

.section-dark .score-ring-lg .ring-value {
  color: var(--red-light);
}

.section-dark .ring-sub {
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 1024px) {
  .readiness-grid-rings {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .scorecard-overall {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.75rem;
  }

  .scorecard-overall-copy p {
    max-width: none;
  }

  .score-legend {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .score-ring-lg {
    margin: 0 auto;
  }

  .readiness-grid-rings {
    grid-template-columns: 1fr;
  }
}

.data-gap-notice {
  margin-top: -1rem;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--red-subtle);
  border-left: 3px solid var(--red);
  border-radius: 0 8px 8px 0;
}

.section-dark .data-gap-notice {
  background: rgba(200, 16, 46, 0.12);
  color: rgba(255, 255, 255, 0.85);
}

/* ---- Collection CTA ---- */
.collection-cta {
  padding-bottom: 5rem;
}

.collection-box {
  background: linear-gradient(145deg, #1A1012 0%, var(--black) 100%);
  border: 1px solid rgba(200, 16, 46, 0.25);
  border-radius: 20px;
  padding: 3rem;
  color: var(--white);
}

.collection-box .section-tag {
  color: var(--red);
}

.collection-box .section-title {
  color: var(--white);
}

.collection-box .section-title em {
  color: var(--red);
}

.collection-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
}

.hero-download-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-download-outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.nav-download-secondary {
  background: transparent;
  color: var(--gray-700);
  border-color: var(--gray-300);
}

.nav-download-secondary:hover {
  background: var(--gray-100);
  color: var(--black);
  border-color: var(--gray-300);
  box-shadow: none;
}

.nav-internal-link {
  text-decoration: none;
  color: var(--gray-700);
  border-color: var(--gray-300);
  background: var(--gray-50, #fafafa);
  font-size: 0.75rem;
}

.nav-internal-link:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.footer-internal-link {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
  text-decoration: none;
  padding: 0.4rem 0.9rem;
  border: 1.5px solid var(--gray-300);
  border-radius: 100px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.footer-internal-link:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.summary-banner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  margin-bottom: 3.5rem;
}

.banner-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.summary-banner p {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-style: italic;
  color: var(--black);
  white-space: nowrap;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.metric {
  position: relative;
}

.metric-number {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--red);
  line-height: 1;
}

.metric-prefix,
.metric-suffix {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--red);
}

.metric-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-top: 0.5rem;
}

/* ---- Dimension Nav ---- */
.dimensions-intro {
  padding-bottom: 2rem;
}

.dimension-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.dim-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.3s var(--ease-out);
}

.dim-pill span {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--red);
}

.dim-pill:hover,
.dim-pill.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.dim-pill.active span,
.dim-pill:hover span { color: var(--red-light); }

.dim-pill-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.dim-pill:hover .dim-pill-icon,
.dim-pill.active .dim-pill-icon {
  opacity: 1;
}

.readiness-grid-rings {
  position: relative;
}

.readiness-grid-rings::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 16, 46, 0.2) 20%, rgba(200, 16, 46, 0.2) 80%, transparent);
  pointer-events: none;
  z-index: 0;
}

.readiness-card-ring {
  position: relative;
  z-index: 1;
}

/* ---- Dimensions ---- */
.dimension {
  position: relative;
  overflow: hidden;
}

.dim-stripe {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--red), var(--red-dark));
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 1s var(--ease-out);
}

.dimension.in-view .dim-stripe {
  transform: scaleY(1);
}

.dim-header {
  margin-bottom: 2.5rem;
}

.dim-number {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.dim-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.dim-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
}

.dim-narrative {
  max-width: 800px;
  margin-bottom: 2.5rem;
}

.dim-narrative p {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* ---- Dimension Detail Cards (unified 3-card flow) ---- */
.dim-layout-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0.5rem 0.75rem;
  align-items: stretch;
}

.dim-flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  opacity: 0.45;
  padding: 0 0.15rem;
}

.dim-flow-arrow svg {
  width: 28px;
  height: 28px;
  animation: arrowPulse 2.5s ease-in-out infinite;
}

.dim-flow-arrow--dark {
  color: rgba(255, 255, 255, 0.35);
}

@keyframes arrowPulse {
  0%, 100% { transform: translateX(0); opacity: 0.45; }
  50% { transform: translateX(4px); opacity: 0.85; }
}

.dim-detail-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 18px;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
}

.dim-detail-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.dim-detail-card--exists::after { background: #22c55e; }
.dim-detail-card--friction::after { background: #f59e0b; }
.dim-detail-card--finding::after { background: var(--red); }

.dim-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.09);
  border-color: rgba(200, 16, 46, 0.15);
}

.dim-detail-card:hover::after {
  transform: scaleX(1);
}

.dim-card-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.dim-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dim-card-icon svg {
  width: 22px;
  height: 22px;
}

.dim-card-icon--exists {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}

.dim-card-icon--friction {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
}

.dim-card-icon--finding {
  background: rgba(200, 16, 46, 0.15);
  color: var(--red);
}

.dim-card-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 0;
}

.dim-detail-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.dim-detail-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--gray-700);
  margin-bottom: 0.75rem;
}

.dim-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.dim-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--gray-700);
}

.dim-detail-list li::before {
  display: none;
}

.dim-list-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1em;
}

.dim-list-icon svg {
  width: 11px;
  height: 11px;
}

.dim-list-icon--check {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}

.dim-list-icon--warn {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
}

.dim-detail-list li strong {
  color: var(--black);
}

.dim-card-foot {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}

.dim-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-700);
  background: var(--gray-100);
  padding: 0.3rem 0.65rem;
  border-radius: 100px;
}

.dim-card-tag svg {
  width: 12px;
  height: 12px;
  opacity: 0.7;
}

.dim-detail-card--finding {
  background: linear-gradient(145deg, #FFFFFF 0%, #FFF5F5 100%);
  border-color: rgba(200, 16, 46, 0.32);
  box-shadow: 0 8px 32px rgba(200, 16, 46, 0.08);
}

.dim-detail-card--finding h3,
.dim-detail-card--finding p,
.dim-detail-card--finding li,
.dim-detail-card--finding li strong {
  color: var(--gray-700);
}

.dim-detail-card--finding h3 {
  color: var(--black);
}

.dim-detail-card--finding li strong {
  color: var(--black);
}

.dim-detail-card--finding .dim-card-label {
  color: var(--red);
}

.dim-detail-card--finding .dim-card-icon--finding {
  background: rgba(200, 16, 46, 0.12);
  color: var(--red);
}

.dim-score-inline {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 1rem;
  padding: 0.55rem 0.9rem;
  background: var(--red-subtle);
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-700);
}

.dim-score-inline span {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--red);
}

.dim-score-inline-dark {
  background: rgba(200, 16, 46, 0.18);
  color: rgba(255, 255, 255, 0.7);
}

.dim-score-inline-dark span {
  color: var(--red-light);
}

/* Dark sections: unified elevated card surfaces */
.section-dark .dim-detail-card {
  background: linear-gradient(155deg, rgba(46, 26, 31, 0.96) 0%, rgba(24, 14, 17, 0.98) 100%);
  border: 1px solid rgba(200, 16, 46, 0.28);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
}

.section-dark .dim-detail-card h3 {
  color: var(--white);
}

.section-dark .dim-detail-card p,
.section-dark .dim-detail-card li {
  color: rgba(255, 255, 255, 0.8);
}

.section-dark .dim-detail-card li strong {
  color: rgba(255, 255, 255, 0.95);
}

.section-dark .dim-detail-card:hover {
  border-color: rgba(200, 16, 46, 0.45);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.38);
}

.section-dark .dim-detail-card--finding {
  background: linear-gradient(155deg, rgba(52, 28, 33, 0.98) 0%, rgba(20, 10, 12, 1) 100%);
  border-color: rgba(200, 16, 46, 0.45);
  box-shadow: 0 12px 40px rgba(200, 16, 46, 0.12);
}

.section-dark .dim-detail-card--finding h3,
.section-dark .dim-detail-card--finding p,
.section-dark .dim-detail-card--finding li,
.section-dark .dim-detail-card--finding li strong {
  color: rgba(255, 255, 255, 0.9);
}

.section-dark .dim-detail-card--finding h3 {
  color: var(--white);
}

.section-dark .dim-detail-card--finding .dim-card-label {
  color: var(--red-light);
}

.section-dark .dim-detail-card--finding .dim-card-icon--finding {
  background: rgba(200, 16, 46, 0.22);
  color: var(--red-light);
}

.section-dark .dim-card-foot {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.section-dark .dim-card-tag {
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

/* Light cards on dark dimension sections (legacy — overridden by section-dark rules above) */
.dim-detail-card--light {
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.dim-detail-card--light h3,
.dim-detail-card--light p,
.dim-detail-card--light li,
.dim-detail-card--light li strong {
  color: var(--gray-700);
}

.dim-detail-card--light h3 {
  color: var(--black);
}

.dim-detail-card--light li strong {
  color: var(--black);
}

@media (max-width: 1100px) {
  .dim-layout-flow {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .dim-flow-arrow {
    transform: rotate(90deg);
    padding: 0.25rem 0;
  }

  .dim-flow-arrow svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 768px) {
  .dim-detail-card {
    padding: 1.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dim-flow-arrow svg {
    animation: none;
  }
}

/* Gap Cards */
.gap-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.gap-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.gap-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.gap-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.gap-card:hover::before { transform: scaleX(1); }

.gap-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.gap-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  background: var(--red-subtle);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.gap-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
}

.gap-icon svg { width: 20px; height: 20px; }

.gap-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.gap-card p {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.65;
}

.finding-bar,
.implication-bar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--black);
  color: var(--white);
  border-radius: 12px;
  margin-top: 2rem;
}

.finding-label,
.implication-label {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red-light);
  padding-top: 0.15rem;
}

.finding-bar p,
.implication-bar p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

/* Data Grid */
.data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.data-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--gray-100);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.data-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.data-card-warning {
  border-color: rgba(200, 16, 46, 0.2);
  background: linear-gradient(135deg, var(--white) 0%, rgba(200, 16, 46, 0.03) 100%);
}

.data-card-solution {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.data-card.data-card-solution h3 {
  color: var(--white);
}

.data-card.data-card-solution p {
  color: rgba(255, 255, 255, 0.88);
}

.data-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-subtle);
  color: var(--red);
  border-radius: 12px;
  margin-bottom: 1.25rem;
}

.data-icon svg { width: 24px; height: 24px; }

.data-card:not(.data-card-solution) h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.data-card:not(.data-card-solution) p,
.data-card:not(.data-card-solution) li {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.65;
}

.data-card-solution .data-icon {
  background: var(--red);
  color: var(--white);
}

.data-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Pipeline Grid */
.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.pipeline-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 1.75rem;
  position: relative;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.pipeline-card:hover {
  transform: translateY(-4px) rotate(-0.5deg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.pipeline-card-highlight {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.pipeline-card.pipeline-card-highlight h3 {
  color: var(--white);
}

.pipeline-card.pipeline-card-highlight p {
  color: rgba(255, 255, 255, 0.9);
}

.pipeline-card.pipeline-card-highlight .pipeline-num {
  color: rgba(255, 255, 255, 0.3);
}

.pipeline-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.pipeline-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.pipeline-card:not(.pipeline-card-highlight) p {
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.6;
}

/* Security Layout */
.security-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.security-core {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.security-shield {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-subtle);
  color: var(--red);
  border-radius: 50%;
  animation: shieldPulse 3s ease-in-out infinite;
}

@keyframes shieldPulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--red-glow); }
  50% { box-shadow: 0 0 0 16px transparent; }
}

.security-shield svg { width: 36px; height: 36px; }

.security-core h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.security-core p {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.65;
}

.risk-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.risk-card {
  background: var(--white);
  border-left: 3px solid var(--red);
  border-radius: 0 12px 12px 0;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s var(--ease-out);
}

.risk-card:hover {
  transform: translateX(8px);
}

.risk-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 0.35rem;
}

.risk-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.35rem;
}

.risk-card p {
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.6;
}

/* Governance Grid */
.governance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.gov-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 1.75rem;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.gov-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.gov-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white);
  border-radius: 10px;
  margin-bottom: 1rem;
}

.gov-icon svg { width: 22px; height: 22px; }

.gov-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.gov-card p {
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.65;
}

.mandate-box {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem 2rem;
  background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
  color: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(200, 16, 46, 0.3);
}

.mandate-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  border-radius: 12px;
}

.mandate-icon svg { width: 24px; height: 24px; }

.mandate-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red-light);
  margin-bottom: 0.35rem;
}

.mandate-box p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
}

/* ---- Transition Section ---- */
.transition {
  position: relative;
  overflow: hidden;
}

.transition-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.transition-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200, 16, 46, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(200, 16, 46, 0.12) 0%, transparent 50%);
  animation: gradientShift 10s ease-in-out infinite alternate;
}

@keyframes gradientShift {
  0% { opacity: 0.8; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.1); }
}

.transition .container { position: relative; z-index: 1; }

.transition-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.transition-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: transform 0.4s var(--ease-out), background 0.4s, border-color 0.4s;
}

.transition-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(200, 16, 46, 0.4);
}

.transition-card-accent {
  background: var(--red);
  border-color: var(--red);
}

.transition-card-accent:hover {
  background: var(--red-light);
  border-color: var(--red-light);
}

.transition-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 1.25rem;
}

.transition-card-accent .transition-icon {
  background: rgba(0, 0, 0, 0.2);
}

.transition-icon svg { width: 24px; height: 24px; }

.transition-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.transition-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.transition-card-accent p {
  color: rgba(255, 255, 255, 0.95);
}

/* Gap Summary Matrix */
.gap-summary {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 2rem;
}

.gap-summary-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.matrix {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.matrix-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
  gap: 1rem;
}

.matrix-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.matrix-bar {
  height: 10px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  overflow: hidden;
}

.matrix-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  border-radius: 4px;
  transition: width 1.2s var(--ease-out);
}

.matrix-item[data-impact="high"] .matrix-fill { --fill-width: 90%; }
.matrix-item[data-impact="medium"] .matrix-fill { --fill-width: 65%; }
.matrix-item[data-impact="low"] .matrix-fill { --fill-width: 40%; }

.matrix-item.animated .matrix-fill { width: var(--fill-width); }

/* ---- Footer ---- */
.footer {
  background-color: #FFFFFF;
  background-image: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
  border-top: 1px solid rgba(200, 16, 46, 0.08);
  padding: 3rem 0 2rem;
}

/* ---- Closing (dark section) ---- */
.section-dark.closing-section .closing-box .section-title,
.section-dark.closing-section .closing-box h2 {
  color: var(--white);
}

.section-dark.closing-section .closing-box p {
  color: rgba(255, 255, 255, 0.82);
}

.section-dark.closing-section .section-tag {
  color: var(--red-light);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo-img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-brand strong {
  display: block;
  font-size: 0.95rem;
  color: var(--black);
}

.footer-brand span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: var(--gray-500);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* ---- Reveal Animations (initial state set by GSAP in main.js) ---- */
.reveal-up,
.reveal-left {
  will-change: opacity, transform;
}

.revealed {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* ---- Dark Section Legibility (cascade overrides) ---- */
.section-dark .gap-card h3,
.section-dark .data-card h3,
.section-dark .pipeline-card h3,
.section-dark .gov-card h3,
.section-dark .security-core h3,
.section-dark .risk-card h4 {
  color: var(--white);
}

.section-dark .gap-card p,
.section-dark .data-card:not(.data-card-solution) p,
.section-dark .data-card:not(.data-card-solution) li,
.section-dark .pipeline-card:not(.pipeline-card-highlight) p,
.section-dark .gov-card p,
.section-dark .security-core p,
.section-dark .risk-card p {
  color: rgba(255, 255, 255, 0.82);
}

.section-dark .data-card:not(.data-card-solution) strong,
.section-dark .data-card:not(.data-card-solution) li strong {
  color: rgba(255, 255, 255, 0.95);
}

.section-dark .data-card.data-card-solution h3,
.section-dark .data-card.data-card-solution p {
  color: rgba(255, 255, 255, 0.96);
}

.section-dark .finding-bar p,
.section-dark .implication-bar p {
  color: rgba(255, 255, 255, 0.88);
}

.section-dark .finding-label,
.section-dark .implication-label {
  color: var(--red-light);
}

.section-dark .risk-tag {
  color: var(--red-light);
}

.section-dark .gap-badge {
  color: var(--red-light);
  background: rgba(200, 16, 46, 0.2);
}

.section-dark .gov-icon {
  background: var(--red);
  color: var(--white);
}

.section-dark .data-icon {
  background: rgba(200, 16, 46, 0.2);
  color: var(--red-light);
}

.section-dark .data-card-solution .data-icon {
  background: rgba(0, 0, 0, 0.25);
  color: var(--white);
}

.section-dark .security-shield {
  background: rgba(200, 16, 46, 0.2);
  color: var(--red-light);
}

.section-dark .gap-summary-title {
  color: var(--white);
}

.section-dark .matrix-label {
  color: rgba(255, 255, 255, 0.94);
}

.section-dark .transition-card h3 {
  color: var(--white);
}

.section-dark .transition-card p {
  color: rgba(255, 255, 255, 0.85);
}

.section-dark .matrix-label {
  color: rgba(255, 255, 255, 0.94);
}

.section-dark .transition-card h3 {
  color: var(--white);
}

.section-dark .transition-card p {
  color: rgba(255, 255, 255, 0.85);
}

.section-dark .section-lead a {
  color: var(--red-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---- Company Context ---- */
.company-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.company-grid-eight {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.company-fact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  text-align: left;
  padding: 1.35rem 1.25rem;
  background: var(--white);
  border: 1px solid rgba(200, 16, 46, 0.15);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(200, 16, 46, 0.06);
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
  position: relative;
  min-height: 148px;
}

.company-fact:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 16, 46, 0.35);
  box-shadow: 0 8px 28px rgba(200, 16, 46, 0.1);
}

.section-dark .company-fact {
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.section-dark .company-fact:hover {
  border-color: rgba(200, 16, 46, 0.45);
  box-shadow: none;
}

.company-fact-icon {
  width: 32px;
  height: 32px;
  color: var(--red);
  opacity: 0.9;
  animation: floatY 4s ease-in-out infinite;
  margin-bottom: 0.15rem;
}

.section-dark .company-fact-icon {
  color: var(--red-light);
}

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

.company-fact:nth-child(2) .company-fact-icon { animation-delay: -1s; }
.company-fact:nth-child(3) .company-fact-icon { animation-delay: -2s; }
.company-fact:nth-child(4) .company-fact-icon { animation-delay: -3s; }
.company-fact:nth-child(5) .company-fact-icon { animation-delay: -0.5s; }
.company-fact:nth-child(6) .company-fact-icon { animation-delay: -1.5s; }
.company-fact:nth-child(7) .company-fact-icon { animation-delay: -2.5s; }
.company-fact:nth-child(8) .company-fact-icon { animation-delay: -3.5s; }

.company-fact-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--red);
  line-height: 1;
  opacity: 0.35;
  position: absolute;
  top: 1rem;
  right: 1.1rem;
}

.section-dark .company-fact-num {
  color: var(--red-light);
}

.company-fact-title {
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--gray-900);
  line-height: 1.3;
  margin: 0;
  padding-right: 2rem;
}

.section-dark .company-fact-title {
  color: var(--white);
}

.company-fact-desc {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
  letter-spacing: 0.01em;
}

.section-dark .company-fact-desc {
  color: rgba(255, 255, 255, 0.55);
}

.company-fact-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-700);
}

.section-dark .company-fact-label {
  color: rgba(255, 255, 255, 0.6);
}

.company-narrative {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding: 2rem 2.25rem;
  background: var(--white);
  border: 1px solid rgba(200, 16, 46, 0.12);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(200, 16, 46, 0.05);
}

.company-narrative-col p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--gray-700);
  margin: 0;
}

.company-narrative-heading {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin: 0 0 0.75rem;
}

@media (max-width: 1024px) {
  .company-grid-eight {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .company-grid-eight {
    grid-template-columns: 1fr;
  }

  .company-narrative {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 1.5rem;
  }
}

.section-white .dim-pill {
  box-shadow: 0 2px 10px rgba(200, 16, 46, 0.06);
}

.section-white .dim-pill.active,
.section-white .dim-pill:hover {
  border-color: var(--red);
}

/* ---- Pilot Banner ---- */
.pilot-banner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(200, 16, 46, 0.15);
  border: 1px solid rgba(200, 16, 46, 0.35);
  border-radius: 12px;
  margin-bottom: 2rem;
}

.pilot-badge {
  flex-shrink: 0;
  padding: 0.3rem 0.75rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
}

.pilot-banner p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.section-light .pilot-banner {
  background: rgba(200, 16, 46, 0.06);
  border-color: rgba(200, 16, 46, 0.2);
}

.section-light .pilot-banner p {
  color: var(--gray-700);
}

/* ---- Detail Lists ---- */
.detail-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.detail-list li {
  font-size: 0.875rem;
  line-height: 1.6;
  padding-left: 1rem;
  position: relative;
}

.detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  background: var(--red);
  border-radius: 50%;
}

.section-dark .detail-list li {
  color: rgba(255, 255, 255, 0.82);
}

.section-dark .detail-list li strong {
  color: var(--white);
}

/* ---- Feature Priority Tags ---- */
.feature-priority {
  margin: 2rem 0;
}

.feature-priority-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--black);
}

.section-dark .feature-priority-title {
  color: var(--white);
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tags span {
  padding: 0.4rem 0.85rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray-700);
}

.section-dark .feature-tags span {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
}

.feature-tags-accent span {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* ---- Migration Grid ---- */
.migration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.migration-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.migration-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.migration-card-highlight {
  background: var(--black);
  border-color: var(--black);
}

.migration-card-highlight h3,
.migration-card-highlight p,
.migration-card-highlight .migration-goal {
  color: rgba(255, 255, 255, 0.88);
}

.migration-card-highlight h3 {
  color: var(--white);
}

.migration-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.migration-tier {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
}

.migration-status {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.status-no {
  background: rgba(200, 16, 46, 0.1);
  color: var(--red);
}

.status-partial {
  background: rgba(200, 16, 46, 0.2);
  color: var(--red-dark);
}

.migration-card-highlight .status-partial {
  background: var(--red);
  color: var(--white);
}

.migration-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.migration-card p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--gray-700);
}

.migration-goal {
  margin-bottom: 0.5rem;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .summary-grid.summary-grid-flow {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 520px;
  }

  .summary-dim-list {
    grid-template-columns: 1fr;
  }

  .summary-flow-arrow {
    transform: rotate(90deg);
    width: auto;
    padding: 0.15rem 0;
  }
}

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

  .summary-banner p {
    white-space: normal;
  }

  .summary-banner {
    flex-direction: column;
  }

  .banner-line { width: 60px; height: 1px; }
}

@media (max-width: 768px) {
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
  }

  .hero-stat-divider {
    width: 40px;
    height: 1px;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s var(--ease-out), opacity 0.4s;
  }

  .nav-partner {
    display: none;
  }

  .nav-right {
    gap: 0.35rem;
  }

  .nav-report-toggle-btn {
    min-width: 0;
    padding: 0.38rem 0.65rem;
    font-size: 0.7rem;
  }

  .logo-text {
    display: none;
  }

  .nav-logo-mg {
    height: 28px;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-toggle { display: flex; }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) { opacity: 0; }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .matrix-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .matrix-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .matrix-note {
    grid-column: 1 / -1;
  }

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

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

  .goal-nav {
    flex-wrap: wrap;
  }

  .footer-meta { align-items: flex-start; }
}

/* ============================================
   Strategic Assessment — Goals & Matrix
   ============================================ */

/* ============================================
   Executive Overview — unified split board
   ============================================ */

.overview-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  background: var(--white);
  border: 1px solid rgba(200, 16, 46, 0.12);
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(16, 8, 9, 0.06);
  overflow: hidden;
}

.overview-column {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 1.65rem 1.75rem 1.5rem;
}

.overview-column--position {
  background: linear-gradient(165deg, rgba(200, 16, 46, 0.07) 0%, rgba(255, 255, 255, 0.94) 55%);
  border-right: 1px solid rgba(200, 16, 46, 0.08);
  padding: 1.4rem 1.45rem 1.35rem;
}

.overview-column--position .overview-column-head {
  margin-bottom: 0.85rem;
  padding-bottom: 0.75rem;
}

.overview-column--position .overview-column-title {
  font-size: clamp(1.1rem, 1.5vw, 1.32rem);
  line-height: 1.24;
}

.overview-column--capabilities {
  background: linear-gradient(195deg, rgba(34, 120, 70, 0.06) 0%, rgba(255, 255, 255, 0.94) 55%);
}

.overview-column-head {
  margin-bottom: 1.15rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.overview-kicker {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red);
  margin-bottom: 0.55rem;
}

.overview-kicker--green {
  color: #1a7a45;
}

.overview-column-title {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.65vw, 1.5rem);
  font-weight: 400;
  line-height: 1.28;
  color: var(--black);
  margin: 0;
}

.overview-column-title em {
  color: var(--red);
  font-style: italic;
}

.overview-column-lead {
  margin: 0.55rem 0 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--gray-700);
}

/* Strategic Position — metrics ribbon + dual-column spine */
.overview-column--position .position-metrics-ribbon {
  margin-bottom: 0.95rem;
  padding: 0.55rem 0;
}

.overview-column--position .position-metric {
  gap: 0.15rem;
  padding: 0.25rem 0.35rem;
}

.overview-column--position .position-metric-num {
  font-size: 1.15rem;
}

.overview-column--position .position-metric-label {
  font-size: 0.54rem;
  letter-spacing: 0.07em;
}

.position-metrics-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 0.75rem;
  padding: 0.45rem 0;
  border-top: 1px solid rgba(200, 16, 46, 0.12);
  border-bottom: 1px solid rgba(200, 16, 46, 0.12);
  background: linear-gradient(90deg, rgba(200, 16, 46, 0.04) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(200, 16, 46, 0.04) 100%);
  flex-shrink: 0;
}

.position-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  padding: 0.2rem 0.3rem;
  text-align: center;
  border-right: 1px solid rgba(200, 16, 46, 0.1);
}

.position-metric:last-child {
  border-right: none;
}

.position-metric-num {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1;
  color: var(--red);
}

.position-metric-label {
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-700);
}

.position-spine {
  position: relative;
  flex: 1;
  min-height: 0;
}

.overview-column--position .position-spine {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.overview-column--position .position-spine-line {
  display: none;
}

.overview-column--position .position-milestones {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 0.65rem;
  flex: 1;
  align-content: space-between;
}

.overview-column--position .position-milestone {
  grid-template-columns: 30px 1fr;
  gap: 0.55rem;
}

.overview-column--position .position-milestone-node {
  width: 30px;
  height: 30px;
  font-size: 0.54rem;
}

.overview-column--position .position-milestone-tag {
  font-size: 0.58rem;
  letter-spacing: 0.11em;
  margin-bottom: 0.22rem;
}

.overview-column--position .position-milestone-body p {
  font-size: 0.82rem;
  line-height: 1.48;
}

.overview-column--position .position-milestone--horizon .position-milestone-node {
  font-size: 0.78rem;
}

.overview-column--position .position-milestone--horizon .position-milestone-body {
  padding: 0.45rem 0.6rem 0.45rem 0;
}

.position-milestones {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.position-milestone {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 0.45rem;
  align-items: start;
}

.position-milestone-node {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--red);
  background: var(--white);
  border: 2px solid rgba(200, 16, 46, 0.35);
  box-shadow: 0 2px 6px rgba(200, 16, 46, 0.1);
  flex-shrink: 0;
}

.position-milestone-body {
  padding: 0 0 0.35rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.overview-column--position .position-milestone-body {
  padding-bottom: 0;
  border-bottom: none;
}

.position-milestone-tag {
  display: block;
  font-size: 0.52rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 0.15rem;
}

.position-milestone-body p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.38;
  color: var(--gray-700);
  font-weight: 500;
}

.position-milestone-body strong {
  color: var(--black);
  font-weight: 700;
}

.position-milestone--horizon {
  grid-column: 1 / -1;
}

.position-milestone--horizon .position-milestone-node {
  font-size: 0.72rem;
  font-weight: 700;
  background: linear-gradient(145deg, rgba(200, 16, 46, 0.12) 0%, rgba(200, 16, 46, 0.04) 100%);
  border-color: var(--red);
}

.position-milestone--horizon .position-milestone-body {
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.06) 0%, transparent 70%);
  border-radius: 0 10px 10px 0;
  padding: 0.35rem 0.5rem 0.35rem 0;
  margin-left: -0.1rem;
}

.position-spine-line {
  position: absolute;
  left: 15px;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(200, 16, 46, 0.08) 0%,
    rgba(200, 16, 46, 0.45) 15%,
    rgba(200, 16, 46, 0.45) 85%,
    rgba(200, 16, 46, 0.15) 100%
  );
  border-radius: 2px;
}

.overview-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.overview-points li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--black-soft);
  font-weight: 500;
}

.overview-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background: var(--red);
}

.overview-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 1.25rem;
  background: rgba(200, 16, 46, 0.1);
  border: 1px solid rgba(200, 16, 46, 0.1);
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}

.overview-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.85rem 0.5rem;
  background: rgba(255, 255, 255, 0.92);
  text-align: center;
}

.overview-stat-num {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1;
  color: var(--red);
}

.overview-stat-label {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gray-700);
}

.capability-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  flex: 1;
  align-content: start;
}

.capability-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.7rem 0.75rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(34, 120, 70, 0.14);
  border-radius: 12px;
  transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.capability-item:hover {
  border-color: rgba(34, 120, 70, 0.32);
  box-shadow: 0 6px 20px rgba(34, 120, 70, 0.08);
}

.capability-item-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(34, 120, 70, 0.12);
  color: #1a7a45;
}

.capability-item-icon svg {
  width: 17px;
  height: 17px;
}

.capability-item-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.capability-item-text strong {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--black);
}

.capability-item-text span {
  font-size: 0.74rem;
  line-height: 1.4;
  color: var(--gray-700);
  font-weight: 500;
}

#insight .section-header {
  margin-bottom: 2rem;
}

#insight .section-lead {
  max-width: 52rem;
}

.insight-hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin-bottom: 3.5rem;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(200, 16, 46, 0.12);
  box-shadow:
    0 24px 64px rgba(200, 16, 46, 0.1),
    0 2px 0 rgba(255, 255, 255, 0.9) inset;
}

.insight-hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 0% 0%, rgba(200, 16, 46, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 100% 100%, rgba(34, 120, 70, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.insight-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 2rem 2rem 1.5rem;
  flex: 1;
}

.insight-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(200, 16, 46, 0.14) 0%, rgba(200, 16, 46, 0.04) 100%);
  border: 1px solid rgba(200, 16, 46, 0.16);
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.12);
}

.insight-icon {
  width: 36px;
  height: 36px;
  color: var(--red);
  animation: floatY 4s ease-in-out infinite;
}

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

.insight-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(200, 16, 46, 0.1);
  border-top: 1px solid rgba(200, 16, 46, 0.1);
}

.insight-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 1.1rem 0.75rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 248, 248, 0.98) 100%);
  text-align: center;
}

.insight-stat-num {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  line-height: 1;
  color: var(--red);
}

.insight-stat-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
}

.insight-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.06) 0%, var(--white) 60%);
  border: 1px solid rgba(200, 16, 46, 0.18);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(200, 16, 46, 0.08);
  margin-bottom: 3rem;
}

.insight-title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 400;
  line-height: 1.25;
  margin: 0.5rem 0 1rem;
  color: var(--black-soft);
}

.insight-title em { color: var(--red); font-style: italic; }

.insight-text {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--gray-700);
  margin: 0;
}

.insight-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.insight-points li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--gray-700);
}

.insight-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.systems-strip {
  margin-top: 0.5rem;
  padding: 1.75rem 1.5rem 1.75rem;
  background: var(--white);
  border: 1px solid rgba(200, 16, 46, 0.1);
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(16, 8, 9, 0.06);
  overflow: visible;
}

.systems-strip-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
}

.systems-strip-eyebrow {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.systems-strip-title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 400;
  color: var(--black-soft);
  margin: 0 0 0.65rem;
  letter-spacing: 0;
  text-transform: none;
}

.systems-strip-lead {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--gray-600);
  margin: 0;
}

.systems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.capability-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
  padding: 1rem 0.75rem;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFAFA 100%);
  border: 1px solid rgba(200, 16, 46, 0.1);
  border-radius: 16px;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}

.capability-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 120, 70, 0.28);
  box-shadow: 0 14px 36px rgba(34, 120, 70, 0.1);
}

.capability-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(34, 120, 70, 0.16) 0%, rgba(34, 120, 70, 0.06) 100%);
  color: #1a7a45;
  border: 1px solid rgba(34, 120, 70, 0.18);
  flex-shrink: 0;
}

.capability-icon svg {
  width: 18px;
  height: 18px;
}

.capability-copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.systems-chip {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  background: var(--white);
  border: 1px solid rgba(200, 16, 46, 0.12);
  border-radius: 12px;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}

.systems-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 16, 46, 0.3);
  box-shadow: 0 6px 24px rgba(200, 16, 46, 0.08);
}

.systems-chip strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--black-soft);
  line-height: 1.3;
}

.systems-chip span {
  font-size: 0.72rem;
  color: var(--gray-600);
  line-height: 1.45;
}

/* Goals grid */
.goals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

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

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

.goals-grid--five {
  grid-template-columns: repeat(6, 1fr);
}

.goals-grid--five .goal-card:nth-child(1),
.goals-grid--five .goal-card:nth-child(2),
.goals-grid--five .goal-card:nth-child(3) {
  grid-column: span 2;
}

.goals-grid--five .goal-card:nth-child(4),
.goals-grid--five .goal-card:nth-child(5) {
  grid-column: span 3;
}

@media (max-width: 1024px) {
  .goals-grid--five {
    grid-template-columns: 1fr;
  }

  .goals-grid--five .goal-card {
    grid-column: span 1 !important;
  }
}

.goal-card {
  position: relative;
  padding: 2rem 1.75rem 1.75rem;
  background: var(--white);
  border: 1px solid rgba(200, 16, 46, 0.14);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(200, 16, 46, 0.06);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
  overflow: hidden;
}

.goal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.goal-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 16, 46, 0.35);
  box-shadow: 0 16px 48px rgba(200, 16, 46, 0.12);
}

.goal-card:hover::before { transform: scaleX(1); }

.goal-num {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--red);
  opacity: 0.12;
  line-height: 1;
}

.goal-icon {
  width: 40px;
  height: 40px;
  color: var(--red);
  margin-bottom: 1rem;
}

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

.goal-card h3 {
  font-size: 1.05rem;
  font-weight: 650;
  color: var(--black-soft);
  margin-bottom: 0.65rem;
  line-height: 1.3;
  padding-right: 2rem;
}

.goal-card p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--gray-700);
  margin-bottom: 1.25rem;
}

.goal-composite {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  padding: 0.35rem 0.75rem;
  background: var(--red-subtle);
  border-radius: 999px;
}

.goal-composite strong { color: var(--red); font-size: 0.85rem; }

/* Dimensions grid */
.dimension-scale {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.scale-item {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.scale-item em {
  font-style: normal;
  font-weight: 700;
  color: var(--red-light);
  margin-right: 0.35rem;
}

/* Dimensions — split intro + circular orbit */
#dimensions .container {
  overflow: visible;
}

.dimensions-layout {
  display: grid;
  grid-template-columns: minmax(0, 30%) minmax(0, 70%);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: center;
}

.dimensions-intro {
  text-align: left;
  align-self: center;
  padding-right: 0.25rem;
}

#dimensions .dimensions-intro .section-tag {
  margin-bottom: 1rem;
}

#dimensions .dimensions-intro .section-title {
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  margin-bottom: 1rem;
  text-align: left;
}

#dimensions .dimensions-intro .section-lead {
  text-align: left;
  max-width: none;
  margin-bottom: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
}

#dimensions .dimensions-intro::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--red-light), transparent);
  margin: 1.25rem 0 0;
  border-radius: 2px;
}

.dimension-scale--stacked {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.65rem;
  margin-top: 1.75rem;
  margin-bottom: 0;
}

.dimensions-visual {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 0.5rem 0;
}

.dimensions-orbit {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  aspect-ratio: 1;
  min-height: clamp(580px, 50vw, 700px);
  overflow: visible;
  container-type: inline-size;
}

.dimensions-orbit-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dimensions-orbit-ring {
  width: 100%;
  height: 100%;
  display: block;
}

.dimensions-orbit-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 118px;
  height: 118px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.1rem;
  background: radial-gradient(circle at 35% 30%, rgba(200, 16, 46, 0.28) 0%, rgba(20, 10, 12, 0.95) 55%);
  border: 1px solid rgba(200, 16, 46, 0.35);
  box-shadow: 0 0 0 6px rgba(200, 16, 46, 0.06), 0 20px 50px rgba(0, 0, 0, 0.35);
}

.dimensions-orbit-hub-num {
  font-family: var(--font-serif);
  font-size: 2.35rem;
  line-height: 1;
  color: var(--red-light);
}

.dimensions-orbit-hub-label {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.25;
  max-width: 7.5rem;
}

.dimensions-orbit-hub-sub {
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
}

.dimensions-orbit-nodes {
  position: absolute;
  inset: 0;
}

.dimension-orbit-node {
  --orbit-angle: calc(-90deg + (var(--orbit-i, 0) * 72deg));
  --orbit-radius: clamp(250px, 36cqw, 300px);
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(186px, 24cqw, 224px);
  z-index: 3;
  transform: translate(-50%, -50%) rotate(var(--orbit-angle)) translateY(calc(-1 * var(--orbit-radius))) rotate(calc(-1 * var(--orbit-angle))) !important;
}

.dimension-orbit-card {
  padding: 0.95rem 1rem;
  background: rgba(18, 10, 12, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.dimension-orbit-node:hover .dimension-orbit-card {
  border-color: rgba(200, 16, 46, 0.45);
  box-shadow: 0 16px 40px rgba(200, 16, 46, 0.12);
}

.dimension-orbit-head {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 0.55rem;
  align-items: start;
  margin-bottom: 0.6rem;
}

.dimension-orbit-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 16, 46, 0.16);
  color: var(--red-light);
  border: 1px solid rgba(200, 16, 46, 0.24);
}

.dimension-orbit-icon svg {
  width: 18px;
  height: 18px;
}

.dimension-orbit-meta {
  min-width: 0;
}

.dimension-orbit-meta h3 {
  font-size: 0.78rem;
  font-weight: 650;
  color: var(--white);
  margin: 0.2rem 0 0;
  line-height: 1.32;
}

.dim-orbit-score {
  position: relative;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.dim-orbit-score svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.dim-orbit-score-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 3;
}

.dim-orbit-score-fill {
  fill: none;
  stroke: var(--red-light);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 100.53;
  stroke-dashoffset: 100.53;
  transition: stroke-dashoffset 1.2s var(--ease-out);
}

.dim-orbit-score-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.8125rem;
  line-height: 1;
  color: var(--red-light);
}

.dim-assess-desc {
  font-size: 0.72rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  padding-left: 0;
}

.dim-id {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red-light);
  line-height: 1;
}

/* Legacy grid (unused) */
.dimensions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.dimensions-grid--five {
  grid-template-columns: repeat(5, 1fr);
}

.dim-score-fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--red-dark), var(--red-light));
  border-radius: 2px;
  transition: width 1.2s var(--ease-out);
}

#assessments.section {
  padding-bottom: 0;
}

#assessments .section-header {
  margin-bottom: 2.25rem;
}

/* Goal navigation */
.goal-nav {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.goal-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-700);
  background: var(--white);
  border: 1px solid rgba(200, 16, 46, 0.15);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.goal-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-size: 0.65rem;
  font-weight: 700;
  background: var(--red-subtle);
  color: var(--red);
  border-radius: 50%;
}

.goal-pill:hover,
.goal-pill.active {
  background: var(--black-soft);
  color: var(--white);
  border-color: var(--black-soft);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.goal-pill.active span,
.goal-pill:hover span {
  background: var(--red);
  color: var(--white);
}

/* Goal assessment stage — unified background for nav + panels */
.goal-assessment-stage {
  width: 100%;
  padding: 2.5rem 0 4rem;
  transition:
    background-color 0.5s var(--ease-out),
    background-image 0.5s var(--ease-out),
    color 0.35s var(--ease-out);
}

.goal-assessment-stage--light {
  background-color: #FFFFFF;
  background-image: linear-gradient(180deg, #FFFFFF 0%, #FAF8F8 100%);
  border-top: 1px solid rgba(200, 16, 46, 0.08);
}

.goal-assessment-stage--dark {
  background-color: #160C0F;
  background-image:
    radial-gradient(ellipse 90% 70% at 10% 0%, rgba(200, 16, 46, 0.2) 0%, transparent 58%),
    radial-gradient(ellipse 70% 60% at 90% 100%, rgba(200, 16, 46, 0.14) 0%, transparent 55%),
    linear-gradient(180deg, #1A0E11 0%, #120A0C 50%, #0D0708 100%);
  color: var(--white);
  border-top: 1px solid rgba(200, 16, 46, 0.25);
}

/* Goal assessment panels (tabbed) */
.goal-assessment-panels {
  margin-top: 2rem;
  position: relative;
}

.goal-panel {
  display: none;
  padding-top: 0.25rem;
}

.goal-panel.is-active {
  display: block;
  animation: goalPanelIn 0.4s var(--ease-out) both;
}

.goal-panel--dark {
  background: none;
  border-radius: 0;
  padding: 0;
}

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

@media (prefers-reduced-motion: reduce) {
  .goal-panel.is-active {
    animation: none;
  }
}

/* Goal sections (legacy + panel dark theme) */
.goal-section {
  position: relative;
  overflow: visible;
}

.goal-panel--dark .goal-tag,
.goal-assessment-stage--dark .goal-tag { color: var(--red-light); }

.goal-panel--dark .goal-title,
.goal-assessment-stage--dark .goal-title { color: var(--white); }

.goal-panel--dark .goal-lead,
.goal-assessment-stage--dark .goal-lead { color: rgba(255, 255, 255, 0.85); }

.goal-panel--dark .goal-state-card--exists,
.goal-assessment-stage--dark .goal-state-card--exists {
  background: linear-gradient(145deg, rgba(34, 120, 70, 0.12) 0%, rgba(255, 255, 255, 0.05) 55%);
  border-color: rgba(34, 120, 70, 0.35);
  box-shadow: none;
}

.goal-panel--dark .goal-state-card--friction,
.goal-assessment-stage--dark .goal-state-card--friction {
  background: linear-gradient(145deg, rgba(200, 16, 46, 0.1) 0%, rgba(255, 255, 255, 0.04) 55%);
  border-color: rgba(200, 16, 46, 0.28);
  box-shadow: none;
}

.goal-panel--dark .goal-state-icon--exists,
.goal-assessment-stage--dark .goal-state-icon--exists { color: #5ecf8a; }

.goal-panel--dark .goal-state-icon--friction,
.goal-assessment-stage--dark .goal-state-icon--friction { color: var(--red-light); }

.goal-panel--dark .goal-state-card--exists .goal-state-label,
.goal-assessment-stage--dark .goal-state-card--exists .goal-state-label { color: #5ecf8a; }

.goal-panel--dark .goal-state-card--friction .goal-state-label,
.goal-assessment-stage--dark .goal-state-card--friction .goal-state-label { color: var(--red-light); }

.goal-panel--dark .goal-state-list li,
.goal-assessment-stage--dark .goal-state-list li { color: rgba(255, 255, 255, 0.78); }

.goal-panel--dark .goal-state-list li::before,
.goal-assessment-stage--dark .goal-state-list li::before { background: #5ecf8a; }

.goal-panel--dark .goal-state-list--friction li::before,
.goal-assessment-stage--dark .goal-state-list--friction li::before { background: var(--red-light); }

/* Goal pills on dark stage */
.goal-assessment-stage--dark .goal-pill {
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.goal-assessment-stage--dark .goal-pill span {
  background: rgba(200, 16, 46, 0.3);
  color: var(--red-light);
}

.goal-assessment-stage--dark .goal-pill:hover,
.goal-assessment-stage--dark .goal-pill.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 4px 20px rgba(200, 16, 46, 0.35);
}

.goal-assessment-stage--dark .goal-pill:hover span,
.goal-assessment-stage--dark .goal-pill.active span {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.goal-assessment-stage--dark .finding-report--dark {
  background: rgba(20, 10, 12, 0.98);
  border-color: rgba(255, 255, 255, 0.12);
  border-left-color: var(--red-light);
}

.goal-assessment-stage--light .finding-report:not(.finding-report--dark) {
  background: var(--white);
  box-shadow: 0 6px 28px rgba(200, 16, 46, 0.06);
}

.goal-stripe {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
  width: 3px;
  height: 80px;
  background: linear-gradient(180deg, var(--red), transparent);
}

.goal-section.in-view .goal-stripe { transform: translateX(-50%) scaleY(1); }

.goal-header { margin-bottom: 2.5rem; }

.goal-header--compact {
  margin-bottom: 0.75rem;
}

.goal-header--compact .goal-title {
  font-size: clamp(1.35rem, 2.8vw, 1.95rem);
  margin-bottom: 0.35rem;
}

.goal-header--compact .goal-lead {
  font-size: 0.88rem;
  line-height: 1.55;
  max-width: 880px;
}

/* Inner view navigation — arrow flip between Current State & Finding */
.goal-view-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0;
  padding: 0.6rem 0.85rem;
  background: var(--white);
  border: 1px solid rgba(200, 16, 46, 0.12);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -4px 24px rgba(16, 8, 9, 0.03);
}

.goal-assessment-stage--dark .goal-view-nav {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.goal-view-arrow {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(200, 16, 46, 0.18);
  border-radius: 50%;
  background: var(--white);
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
}

.goal-view-arrow svg {
  width: 18px;
  height: 18px;
}

.goal-view-arrow:hover:not(:disabled) {
  background: var(--black-soft);
  border-color: var(--black-soft);
  color: var(--white);
  transform: scale(1.05);
}

.goal-view-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.goal-assessment-stage--dark .goal-view-arrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.85);
}

.goal-assessment-stage--dark .goal-view-arrow:hover:not(:disabled) {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.goal-view-status {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  min-width: 160px;
}

.goal-view-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--gray-900);
}

.goal-assessment-stage--dark .goal-view-label {
  color: var(--white);
}

.goal-view-progress {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.goal-view-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(200, 16, 46, 0.25);
  transition: all 0.3s var(--ease-out);
  border: none;
  padding: 0;
  cursor: pointer;
}

.goal-assessment-stage--dark .goal-view-dot {
  background: rgba(255, 255, 255, 0.25);
}

.goal-view-dot.is-active {
  width: 20px;
  background: var(--red);
}

.goal-assessment-stage--dark .goal-view-dot.is-active {
  background: var(--red-light);
}

.goal-view {
  display: none;
}

.goal-view.is-active {
  display: block !important;
  animation: goalPanelIn 0.35s var(--ease-out) both;
}

/* Current State — consulting scorecard layout */
.goal-dimension-board {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border: 1px solid rgba(200, 16, 46, 0.12);
  border-top: none;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 16px 48px rgba(16, 8, 9, 0.06);
  overflow: hidden;
}

.goal-dimension-board-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.5rem 1.75rem 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.goal-dimension-board-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 0.35rem;
}

.goal-dimension-board-continued {
  margin: 0 1.75rem 0.85rem;
}

.goal-dimension-board-title {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 400;
  color: var(--gray-900);
  margin-bottom: 0.4rem;
}

.goal-dimension-board-lead {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--gray-700);
  max-width: 680px;
}

.goal-dimension-composite {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.65rem 1.15rem;
  background: rgba(200, 16, 46, 0.06);
  border: 1px solid rgba(200, 16, 46, 0.14);
  border-radius: 14px;
  flex-shrink: 0;
}

.goal-dimension-composite-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--red);
}

.goal-dimension-composite-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-700);
  white-space: nowrap;
}

.goal-dim-score-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.55rem;
  padding: 1rem 1.75rem 1.15rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: linear-gradient(180deg, rgba(200, 16, 46, 0.025) 0%, transparent 100%);
}

.goal-dim-score-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.75rem 0.45rem;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(16, 8, 9, 0.03);
}

.goal-dim-score-tile-val {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  line-height: 1;
  color: var(--red);
}

.goal-dim-score-tile--strong .goal-dim-score-tile-val {
  color: #1a7a45;
}

.goal-dim-score-tile-id {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--gray-600);
}

.goal-dim-score-tile-name {
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--gray-800);
}

.goal-dim-score-tile--strong {
  background: rgba(34, 120, 70, 0.06);
  border-color: rgba(34, 120, 70, 0.16);
}

.goal-dim-brief-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.15rem 1.75rem 1.75rem;
}

.goal-dim-brief {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  overflow: visible;
  background: #fcfcfc;
  box-shadow: 0 4px 18px rgba(16, 8, 9, 0.04);
}

.goal-dim-brief-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.15rem;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px 18px 0 0;
  overflow: hidden;
}

.goal-dim-brief-identity {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  min-width: 0;
}

.goal-dim-brief-id {
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--red);
  padding: 0.35rem 0.55rem;
  background: rgba(200, 16, 46, 0.08);
  border-radius: 8px;
  margin-top: 0.15rem;
}

.goal-dim-brief-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
}

.goal-dim-brief-context {
  display: none;
}

.goal-dim-brief-score-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.goal-dim-score-ring {
  position: relative;
  width: 46px;
  height: 46px;
}

.goal-dim-score-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.goal-dim-score-ring-track {
  fill: none;
  stroke: rgba(0, 0, 0, 0.08);
  stroke-width: 3;
}

.goal-dim-score-ring-fill {
  fill: none;
  stroke: var(--red);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 100.53;
  stroke-dashoffset: 100.53;
  transition: stroke-dashoffset 1.2s var(--ease-out);
}

.goal-dim-brief--strong .goal-dim-score-ring-fill {
  stroke: #1a7a45;
}

.goal-dim-score-ring-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.875rem;
  line-height: 1;
  color: var(--gray-900);
}

/* Readiness spectrum — score continuum */
.goal-dim-spectrum {
  padding: 0.85rem 1.15rem 0.65rem;
  background: linear-gradient(180deg, rgba(200, 16, 46, 0.03) 0%, transparent 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.goal-dim-spectrum-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-600);
  margin: 0 0 0.35rem;
}

.goal-dim-spectrum-endpoints {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.goal-dim-spectrum-end {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-600);
}

.goal-dim-spectrum-end--high {
  color: #1a7a45;
}

.goal-dim-spectrum-track {
  position: relative;
  height: 10px;
  border-radius: 999px;
  overflow: visible;
}

.goal-dim-spectrum-gradient {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    rgba(200, 16, 46, 0.35) 0%,
    rgba(212, 145, 58, 0.45) 35%,
    rgba(34, 120, 70, 0.55) 100%
  );
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.08);
}

.goal-dim-spectrum-pin {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.goal-dim-spectrum-pin-line {
  width: 2px;
  height: 14px;
  background: var(--gray-900);
  border-radius: 1px;
  box-shadow: 0 0 0 2px var(--white);
}

.goal-dim-spectrum-pin-badge {
  font-family: var(--font-serif);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  color: var(--white);
  background: var(--gray-900);
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.goal-dim-brief--strong .goal-dim-spectrum-pin-line {
  background: #1a7a45;
}

.goal-dim-brief--strong .goal-dim-spectrum-pin-badge {
  background: #1a7a45;
}

.goal-dim-spectrum-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 0.35rem;
  padding: 0 0.05rem;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: 0.02em;
}

/* Readiness ledger — narrative insight layout (legacy) */
.goal-dim-ledger {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
}

.goal-dim-ledger-section {
  padding: 1rem 1.15rem 1.15rem;
  min-width: 0;
}

.goal-dim-ledger-section--established {
  background: linear-gradient(180deg, rgba(34, 120, 70, 0.04) 0%, transparent 100%);
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.goal-dim-ledger-section--focus {
  background: linear-gradient(180deg, rgba(200, 16, 46, 0.03) 0%, transparent 100%);
}

.goal-dim-ledger-head {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.goal-dim-ledger-head-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  color: #1a7a45;
  background: rgba(34, 120, 70, 0.12);
}

.goal-dim-ledger-head-icon svg {
  width: 15px;
  height: 15px;
}

.goal-dim-ledger-head-icon--focus {
  color: var(--red);
  background: rgba(200, 16, 46, 0.1);
}

.goal-dim-ledger-head-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gray-900);
  line-height: 1.25;
}

.goal-dim-ledger-section--established .goal-dim-ledger-head-title {
  color: #1a7a45;
}

.goal-dim-ledger-section--focus .goal-dim-ledger-head-title {
  color: var(--red);
}

.goal-dim-ledger-head-sub {
  font-size: 0.72rem;
  color: var(--gray-600);
  margin-top: 0.12rem;
  line-height: 1.35;
}

.goal-dim-ledger-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.goal-dim-ledger-list--established {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 0.35rem;
}

.goal-dim-ledger-list--established::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, rgba(34, 120, 70, 0.55), rgba(34, 120, 70, 0.08));
  border-radius: 999px;
}

.goal-dim-ledger-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.goal-dim-ledger-item p {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--gray-700);
  margin: 0;
}

.goal-dim-ledger-item--established {
  padding: 0.45rem 0 0.45rem 0.15rem;
}

.goal-dim-ledger-marker {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  margin-top: 0.28rem;
  border-radius: 50%;
  background: #1a7a45;
  box-shadow: 0 0 0 2px var(--white), 0 0 0 3px rgba(34, 120, 70, 0.25);
}

.goal-dim-ledger-list--focus {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.goal-dim-ledger-item--focus {
  padding: 0.65rem 0.75rem;
  background: var(--white);
  border: 1px solid rgba(200, 16, 46, 0.1);
  border-radius: 11px;
  border-left: 3px solid var(--red);
  box-shadow: 0 2px 8px rgba(200, 16, 46, 0.04);
}

.goal-dim-ledger-num {
  flex-shrink: 0;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1;
  color: rgba(200, 16, 46, 0.28);
  padding-top: 0.05rem;
}

/* Insight flip card — established / focus on one card */
.goal-dim-flip {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.goal-dim-flip-scene {
  perspective: 1200px;
  padding: 0.85rem 1rem 1rem;
}

.goal-dim-flip-inner {
  position: relative;
}

.goal-dim-flip-face {
  position: relative;
  display: none;
  flex-direction: column;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: visible;
  box-shadow: 0 8px 28px rgba(16, 8, 9, 0.07);
}

.goal-dim-flip:not(.is-flipped) .goal-dim-flip-face--front {
  display: flex;
}

.goal-dim-flip.is-flipped .goal-dim-flip-face--back {
  display: flex;
}

.goal-dim-flip-face--front {
  background: linear-gradient(155deg, rgba(34, 120, 70, 0.12) 0%, rgba(255, 255, 255, 0.98) 38%, #fff 100%);
}

.goal-dim-flip-face--back {
  background: linear-gradient(155deg, rgba(200, 16, 46, 0.1) 0%, rgba(212, 145, 58, 0.06) 35%, #fff 100%);
}

.goal-dim-flip-watermark {
  position: absolute;
  top: -20px;
  right: -10px;
  width: 120px;
  height: 120px;
  opacity: 0.14;
  pointer-events: none;
}

.goal-dim-flip-watermark svg {
  width: 52px;
  height: 52px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #1a7a45;
}

.goal-dim-flip-watermark--focus svg {
  color: var(--red);
}

.goal-dim-flip-ring {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(34, 120, 70, 0.35);
  border-radius: 50%;
}

.goal-dim-flip-ring--2 {
  inset: 14px;
  opacity: 0.6;
}

.goal-dim-flip-ring--focus {
  border-color: rgba(200, 16, 46, 0.35);
}

.goal-dim-flip-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.05rem 0.75rem;
}

.goal-dim-flip-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.goal-dim-flip-badge--strength {
  color: #1a7a45;
  background: rgba(34, 120, 70, 0.14);
  border: 1px solid rgba(34, 120, 70, 0.22);
}

.goal-dim-flip-badge--focus {
  color: var(--red);
  background: rgba(200, 16, 46, 0.12);
  border: 1px solid rgba(200, 16, 46, 0.2);
}

.goal-dim-flip-lead {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.4;
}

.goal-dim-flip-stat {
  flex-shrink: 0;
  text-align: center;
  min-width: 3.5rem;
  padding: 0.35rem 0.5rem;
  border-radius: 12px;
  background: rgba(34, 120, 70, 0.1);
  border: 1px solid rgba(34, 120, 70, 0.16);
}

.goal-dim-flip-stat--focus {
  background: rgba(200, 16, 46, 0.08);
  border-color: rgba(200, 16, 46, 0.16);
}

.goal-dim-flip-stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1;
  color: #1a7a45;
}

.goal-dim-flip-stat--focus .goal-dim-flip-stat-num {
  color: var(--red);
}

.goal-dim-flip-stat-label {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-600);
}

.goal-dim-flip-face .goal-insight-grid {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  overflow: visible;
  padding: 0 1rem 0.35rem;
}

.goal-dim-flip-btn {
  position: relative;
  z-index: 2;
  margin: 0 1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: calc(100% - 2rem);
  padding: 0.72rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), border-color 0.2s;
}

.goal-dim-flip-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(16, 8, 9, 0.08);
}

.goal-dim-flip-btn--to-focus {
  border-color: rgba(200, 16, 46, 0.18);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(200, 16, 46, 0.06) 100%);
}

.goal-dim-flip-btn--to-strength {
  border-color: rgba(34, 120, 70, 0.18);
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.95) 0%, rgba(34, 120, 70, 0.06) 100%);
}

.goal-dim-flip-btn-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-900);
}

.goal-dim-flip-btn-sub {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.68rem;
  color: var(--gray-600);
}

.goal-dim-flip-btn-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  background: rgba(200, 16, 46, 0.1);
}

.goal-dim-flip-btn--to-strength .goal-dim-flip-btn-icon {
  color: #1a7a45;
  background: rgba(34, 120, 70, 0.12);
}

.goal-dim-flip-btn-icon svg {
  width: 18px;
  height: 18px;
}

.goal-insight-grid--timeline {
  position: relative;
  padding-left: 0.35rem;
}

.goal-insight-grid--timeline::before {
  content: '';
  position: absolute;
  left: 1.15rem;
  top: 0.75rem;
  bottom: 0.75rem;
  width: 2px;
  background: linear-gradient(180deg, var(--red) 0%, rgba(200, 16, 46, 0.15) 100%);
  border-radius: 2px;
}

.goal-insight-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.goal-insight-icon svg {
  width: 18px;
  height: 18px;
}

.goal-insight-icon--strength {
  color: #1a7a45;
  background: rgba(34, 120, 70, 0.12);
  border: 1px solid rgba(34, 120, 70, 0.16);
}

.goal-insight-icon--focus {
  color: var(--red);
  background: rgba(200, 16, 46, 0.1);
  border: 1px solid rgba(200, 16, 46, 0.14);
}

@media (prefers-reduced-motion: reduce) {
  .goal-dim-flip-face {
    transition: opacity 0.2s ease, visibility 0.2s;
    transform: none !important;
  }
}

/* Insight deck — legacy dual lane (unused) */
.goal-dim-insights {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.goal-dim-insight-lane {
  padding: 1rem 1.15rem 1.2rem;
  min-width: 0;
}

.goal-dim-insight-lane--strength {
  background: linear-gradient(165deg, rgba(34, 120, 70, 0.07) 0%, rgba(34, 120, 70, 0.02) 55%, transparent 100%);
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.goal-dim-insight-lane--focus {
  background: linear-gradient(165deg, rgba(200, 16, 46, 0.06) 0%, rgba(212, 145, 58, 0.04) 50%, transparent 100%);
}

.goal-dim-insight-lane-head {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.goal-dim-insight-lane-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #1a7a45;
  background: rgba(34, 120, 70, 0.14);
  border: 1px solid rgba(34, 120, 70, 0.18);
}

.goal-dim-insight-lane-icon svg {
  width: 16px;
  height: 16px;
}

.goal-dim-insight-lane-icon--focus {
  color: var(--red);
  background: rgba(200, 16, 46, 0.12);
  border-color: rgba(200, 16, 46, 0.2);
}

.goal-dim-insight-lane-text {
  flex: 1;
  min-width: 0;
}

.goal-dim-insight-lane-title {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.25;
  color: var(--gray-900);
}

.goal-dim-insight-lane--strength .goal-dim-insight-lane-title {
  color: #1a7a45;
}

.goal-dim-insight-lane--focus .goal-dim-insight-lane-title {
  color: var(--red);
}

.goal-dim-insight-lane-sub {
  margin-top: 0.15rem;
  font-size: 0.72rem;
  color: var(--gray-600);
  line-height: 1.35;
}

.goal-dim-insight-count {
  flex-shrink: 0;
  min-width: 1.65rem;
  height: 1.65rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--gray-700);
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.goal-dim-insight-lane--strength .goal-dim-insight-count {
  color: #1a7a45;
  background: rgba(34, 120, 70, 0.1);
  border-color: rgba(34, 120, 70, 0.16);
}

.goal-dim-insight-lane--focus .goal-dim-insight-count {
  color: var(--red);
  background: rgba(200, 16, 46, 0.08);
  border-color: rgba(200, 16, 46, 0.14);
}

.goal-insight-grid {
  display: grid;
  gap: 0.65rem;
}

.goal-insight-grid--strength {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.goal-insight-grid--focus {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.goal-insight-grid--timeline::before {
  display: none;
}

.goal-insight-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  align-items: start;
  padding: 0.62rem 0.7rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 2px 10px rgba(16, 8, 9, 0.04);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.goal-insight-card--focus {
  grid-template-columns: auto auto 1fr;
  gap: 0.45rem;
}

.goal-insight-card--focus .goal-insight-priority {
  margin-top: 0.28rem;
}

.goal-insight-card--focus .goal-insight-icon {
  margin-top: 0.15rem;
}

.goal-insight-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(16, 8, 9, 0.07);
}

.goal-insight-card--strength {
  border-left: 3px solid #1a7a45;
}

.goal-insight-card--focus {
  border-left: 3px solid var(--red);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(200, 16, 46, 0.03) 100%);
}

.goal-insight-marker {
  display: none;
}

.goal-insight-priority {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--white);
  background: var(--red);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px rgba(200, 16, 46, 0.25);
  margin-top: 0.35rem;
  position: relative;
  z-index: 1;
}

.goal-insight-copy {
  min-width: 0;
}

.goal-insight-title {
  margin: 0 0 0.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--gray-900);
}

.goal-insight-body {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--gray-600);
}

@media (max-width: 960px) {
  .goal-insight-grid--strength,
  .goal-insight-grid--focus {
    grid-template-columns: 1fr;
  }
}

.goal-dim-score-bar {
  display: none;
}

/* Dark stage — consulting scorecard */
.goal-assessment-stage--dark .goal-dimension-board,
.goal-assessment-stage--dark .goal-execution-section {
  background: rgba(20, 10, 12, 0.98);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.goal-assessment-stage--dark .goal-dimension-board-kicker,
.goal-assessment-stage--dark .goal-imperative-tag,
.goal-assessment-stage--dark .goal-pilot-tag,
.goal-assessment-stage--dark .goal-pilot-step-when {
  color: var(--red-light);
}

.goal-assessment-stage--dark .goal-dimension-board-header,
.goal-assessment-stage--dark .goal-execution-imperatives,
.goal-assessment-stage--dark .goal-dim-score-strip {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.goal-assessment-stage--dark .goal-dim-score-strip {
  background: linear-gradient(180deg, rgba(200, 16, 46, 0.08) 0%, transparent 100%);
}

.goal-assessment-stage--dark .goal-dimension-board-title,
.goal-assessment-stage--dark .goal-dim-brief-name,
.goal-assessment-stage--dark .goal-execution-title,
.goal-assessment-stage--dark .goal-pilot-name,
.goal-assessment-stage--dark .goal-imperative-title,
.goal-assessment-stage--dark .goal-pilot-step-label,
.goal-assessment-stage--dark .goal-dim-ledger-head-title {
  color: var(--white);
}

.goal-assessment-stage--dark .goal-dimension-board-lead,
.goal-assessment-stage--dark .goal-execution-lead,
.goal-assessment-stage--dark .goal-pilot-summary,
.goal-assessment-stage--dark .goal-dim-ledger-item p,
.goal-assessment-stage--dark .goal-imperative-desc,
.goal-assessment-stage--dark .goal-pilot-step-detail,
.goal-assessment-stage--dark .goal-pilot-focus-text,
.goal-assessment-stage--dark .goal-dim-ledger-head-sub,
.goal-assessment-stage--dark .goal-dim-spectrum-label,
.goal-assessment-stage--dark .goal-dim-spectrum-end,
.goal-assessment-stage--dark .goal-dim-spectrum-ticks {
  color: rgba(255, 255, 255, 0.78);
}

.goal-assessment-stage--dark .goal-dim-spectrum-end--high {
  color: #6ee09a;
}

.goal-assessment-stage--dark .goal-dimension-composite {
  background: rgba(200, 16, 46, 0.14);
  border-color: rgba(232, 53, 79, 0.28);
}

.goal-assessment-stage--dark .goal-dimension-composite-num {
  color: var(--red-light);
}

.goal-assessment-stage--dark .goal-dimension-composite-label {
  color: rgba(255, 255, 255, 0.72);
}

.goal-assessment-stage--dark .goal-dim-score-tile {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.goal-assessment-stage--dark .goal-dim-score-tile-val {
  color: var(--red-light);
}

.goal-assessment-stage--dark .goal-dim-score-tile--strong {
  background: rgba(94, 207, 138, 0.1);
  border-color: rgba(94, 207, 138, 0.24);
}

.goal-assessment-stage--dark .goal-dim-score-tile--strong .goal-dim-score-tile-val {
  color: #6ee09a;
}

.goal-assessment-stage--dark .goal-dim-score-tile-id {
  color: rgba(255, 255, 255, 0.55);
}

.goal-assessment-stage--dark .goal-dim-score-tile-name {
  color: rgba(255, 255, 255, 0.85);
}

.goal-assessment-stage--dark .goal-dim-brief {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.goal-assessment-stage--dark .goal-dim-brief-head {
  background: rgba(255, 255, 255, 0.05);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.goal-assessment-stage--dark .goal-dim-brief-id {
  color: var(--red-light);
  background: rgba(200, 16, 46, 0.2);
}

.goal-assessment-stage--dark .goal-dim-score-ring-track {
  stroke: rgba(255, 255, 255, 0.12);
}

.goal-assessment-stage--dark .goal-dim-score-ring-fill {
  stroke: var(--red-light);
}

.goal-assessment-stage--dark .goal-dim-brief--strong .goal-dim-score-ring-fill {
  stroke: #6ee09a;
}

.goal-assessment-stage--dark .goal-dim-score-ring-num {
  color: var(--white);
}

.goal-assessment-stage--dark .goal-dim-score-bar {
  background: rgba(255, 255, 255, 0.12);
}

.goal-assessment-stage--dark .goal-dim-score-bar-fill {
  background: var(--red-light);
}

.goal-assessment-stage--dark .goal-dim-brief--strong .goal-dim-score-bar-fill {
  background: #6ee09a;
}

.goal-assessment-stage--dark .goal-dim-spectrum {
  background: linear-gradient(180deg, rgba(200, 16, 46, 0.1) 0%, transparent 100%);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.goal-assessment-stage--dark .goal-dim-spectrum-pin-line {
  background: var(--white);
  box-shadow: 0 0 0 2px rgba(20, 10, 12, 0.95);
}

.goal-assessment-stage--dark .goal-dim-spectrum-pin-badge {
  background: var(--red-light);
  color: var(--white);
}

.goal-assessment-stage--dark .goal-dim-brief--strong .goal-dim-spectrum-pin-badge {
  background: #6ee09a;
  color: #0f2a18;
}

.goal-assessment-stage--dark .goal-dim-ledger-section--established {
  background: linear-gradient(180deg, rgba(94, 207, 138, 0.08) 0%, transparent 100%);
  border-right-color: rgba(255, 255, 255, 0.08);
}

.goal-assessment-stage--dark .goal-dim-ledger-section--focus {
  background: linear-gradient(180deg, rgba(200, 16, 46, 0.08) 0%, transparent 100%);
}

.goal-assessment-stage--dark .goal-dim-ledger-section--established .goal-dim-ledger-head-title {
  color: #6ee09a;
}

.goal-assessment-stage--dark .goal-dim-ledger-section--focus .goal-dim-ledger-head-title {
  color: var(--red-light);
}

.goal-assessment-stage--dark .goal-dim-ledger-head-icon {
  color: #6ee09a;
  background: rgba(94, 207, 138, 0.14);
}

.goal-assessment-stage--dark .goal-dim-ledger-head-icon--focus {
  color: var(--red-light);
  background: rgba(200, 16, 46, 0.18);
}

.goal-assessment-stage--dark .goal-dim-ledger-list--established::before {
  background: linear-gradient(180deg, rgba(94, 207, 138, 0.55), rgba(94, 207, 138, 0.08));
}

.goal-assessment-stage--dark .goal-dim-ledger-marker {
  background: #6ee09a;
  box-shadow: 0 0 0 2px rgba(20, 10, 12, 0.95), 0 0 0 3px rgba(94, 207, 138, 0.3);
}

.goal-assessment-stage--dark .goal-dim-ledger-item--focus {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(200, 16, 46, 0.22);
  box-shadow: none;
}

.goal-assessment-stage--dark .goal-dim-ledger-num {
  color: rgba(232, 53, 79, 0.35);
}

.goal-assessment-stage--dark .goal-dim-insights {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.goal-assessment-stage--dark .goal-dim-flip {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.goal-assessment-stage--dark .goal-dim-flip-face {
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.goal-assessment-stage--dark .goal-dim-flip-face--front {
  background: linear-gradient(155deg, rgba(94, 207, 138, 0.14) 0%, rgba(255, 255, 255, 0.04) 38%, rgba(20, 10, 12, 0.95) 100%);
}

.goal-assessment-stage--dark .goal-dim-flip-face--back {
  background: linear-gradient(155deg, rgba(200, 16, 46, 0.16) 0%, rgba(212, 145, 58, 0.08) 35%, rgba(20, 10, 12, 0.95) 100%);
}

.goal-assessment-stage--dark .goal-dim-flip-lead,
.goal-assessment-stage--dark .goal-dim-flip-stat-label,
.goal-assessment-stage--dark .goal-dim-flip-btn-sub {
  color: rgba(255, 255, 255, 0.72);
}

.goal-assessment-stage--dark .goal-dim-flip-btn-label {
  color: var(--white);
}

.goal-assessment-stage--dark .goal-dim-flip-btn {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.goal-assessment-stage--dark .goal-dim-flip-btn--to-focus {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, rgba(200, 16, 46, 0.12) 100%);
}

.goal-assessment-stage--dark .goal-dim-flip-btn--to-strength {
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.05) 0%, rgba(94, 207, 138, 0.1) 100%);
}

.goal-assessment-stage--dark .goal-dim-flip-badge--strength {
  color: #6ee09a;
  background: rgba(94, 207, 138, 0.14);
  border-color: rgba(94, 207, 138, 0.24);
}

.goal-assessment-stage--dark .goal-dim-flip-badge--focus {
  color: var(--red-light);
  background: rgba(200, 16, 46, 0.18);
  border-color: rgba(200, 16, 46, 0.28);
}

.goal-assessment-stage--dark .goal-dim-flip-stat {
  background: rgba(94, 207, 138, 0.12);
  border-color: rgba(94, 207, 138, 0.2);
}

.goal-assessment-stage--dark .goal-dim-flip-stat-num {
  color: #6ee09a;
}

.goal-assessment-stage--dark .goal-dim-flip-stat--focus {
  background: rgba(200, 16, 46, 0.14);
  border-color: rgba(200, 16, 46, 0.22);
}

.goal-assessment-stage--dark .goal-dim-flip-stat--focus .goal-dim-flip-stat-num {
  color: var(--red-light);
}

.goal-assessment-stage--dark .goal-dim-flip-watermark svg {
  color: #6ee09a;
}

.goal-assessment-stage--dark .goal-dim-flip-watermark--focus svg {
  color: var(--red-light);
}

.goal-assessment-stage--dark .goal-dim-insight-lane--strength {
  background: linear-gradient(165deg, rgba(94, 207, 138, 0.1) 0%, rgba(94, 207, 138, 0.03) 55%, transparent 100%);
  border-right-color: rgba(255, 255, 255, 0.08);
}

.goal-assessment-stage--dark .goal-dim-insight-lane--focus {
  background: linear-gradient(165deg, rgba(200, 16, 46, 0.12) 0%, rgba(212, 145, 58, 0.06) 50%, transparent 100%);
}

.goal-assessment-stage--dark .goal-dim-insight-lane--strength .goal-dim-insight-lane-title {
  color: #6ee09a;
}

.goal-assessment-stage--dark .goal-dim-insight-lane--focus .goal-dim-insight-lane-title {
  color: var(--red-light);
}

.goal-assessment-stage--dark .goal-dim-insight-lane-sub,
.goal-assessment-stage--dark .goal-insight-body {
  color: rgba(255, 255, 255, 0.72);
}

.goal-assessment-stage--dark .goal-dim-insight-lane-icon {
  color: #6ee09a;
  background: rgba(94, 207, 138, 0.14);
  border-color: rgba(94, 207, 138, 0.22);
}

.goal-assessment-stage--dark .goal-dim-insight-lane-icon--focus {
  color: var(--red-light);
  background: rgba(200, 16, 46, 0.18);
  border-color: rgba(200, 16, 46, 0.28);
}

.goal-assessment-stage--dark .goal-dim-insight-count {
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.goal-assessment-stage--dark .goal-dim-insight-lane--strength .goal-dim-insight-count {
  color: #6ee09a;
  background: rgba(94, 207, 138, 0.12);
  border-color: rgba(94, 207, 138, 0.2);
}

.goal-assessment-stage--dark .goal-dim-insight-lane--focus .goal-dim-insight-count {
  color: var(--red-light);
  background: rgba(200, 16, 46, 0.14);
  border-color: rgba(200, 16, 46, 0.22);
}

.goal-assessment-stage--dark .goal-insight-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.goal-assessment-stage--dark .goal-insight-card--strength {
  border-left-color: #6ee09a;
}

.goal-assessment-stage--dark .goal-insight-card--focus {
  border-left-color: var(--red-light);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(200, 16, 46, 0.08) 100%);
}

.goal-assessment-stage--dark .goal-insight-priority {
  color: var(--white);
  background: var(--red-light);
  border-color: rgba(20, 10, 12, 0.95);
  box-shadow: 0 0 0 2px rgba(200, 16, 46, 0.35);
}

.goal-assessment-stage--dark .goal-insight-icon--strength {
  color: #6ee09a;
  background: rgba(94, 207, 138, 0.14);
  border-color: rgba(94, 207, 138, 0.22);
}

.goal-assessment-stage--dark .goal-insight-icon--focus {
  color: var(--red-light);
  background: rgba(200, 16, 46, 0.16);
  border-color: rgba(200, 16, 46, 0.24);
}

.goal-assessment-stage--dark .goal-insight-marker {
  background: #6ee09a;
  box-shadow: 0 0 0 3px rgba(94, 207, 138, 0.22);
}

.goal-assessment-stage--dark .goal-insight-title {
  color: var(--white);
}

.goal-assessment-stage--dark .goal-execution-board {
  border-color: rgba(255, 255, 255, 0.1);
}

.goal-assessment-stage--dark .goal-imperative-item {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  border-left-color: var(--red-light);
}

.goal-assessment-stage--dark .goal-imperative-item::before {
  color: var(--red-light);
}

.goal-assessment-stage--dark .goal-imperative-tag {
  background: rgba(200, 16, 46, 0.18);
}

.goal-assessment-stage--dark .goal-pilot-header {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.goal-assessment-stage--dark .goal-pilot-focus-chip {
  background: linear-gradient(145deg, rgba(200, 16, 46, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
  border-color: rgba(255, 255, 255, 0.12);
  border-left-color: var(--red-light);
}

.goal-assessment-stage--dark .goal-pilot-focus-label,
.goal-assessment-stage--dark .goal-pilot-step-when {
  color: var(--red-light);
}

.goal-assessment-stage--dark .goal-pilot-step:nth-child(3) .goal-pilot-step-when {
  color: #6ee09a;
}

.goal-assessment-stage--dark .goal-pilot-step-num {
  box-shadow: 0 0 0 4px rgba(20, 10, 12, 0.95), 0 0 0 6px rgba(200, 16, 46, 0.2);
}

.goal-assessment-stage--dark .goal-pilot-step:nth-child(3) .goal-pilot-step-num {
  box-shadow: 0 0 0 4px rgba(20, 10, 12, 0.95), 0 0 0 6px rgba(94, 207, 138, 0.2);
}

.goal-assessment-stage--dark .goal-pilot-step-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.goal-assessment-stage--dark .goal-pilot-step-label {
  color: var(--white);
}

.goal-assessment-stage--dark .goal-pilot-outcomes-banner {
  background: linear-gradient(90deg, rgba(94, 207, 138, 0.12) 0%, rgba(94, 207, 138, 0.03) 100%);
  border-color: rgba(94, 207, 138, 0.22);
}

.goal-assessment-stage--dark .goal-pilot-outcomes-flag {
  background: #2d9a5a;
}

.goal-assessment-stage--dark .goal-pilot-outcomes-list li {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(94, 207, 138, 0.2);
  color: rgba(255, 255, 255, 0.88);
}

.goal-assessment-stage--dark .goal-pilot-deliverable {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
}

.goal-assessment-stage--dark .goal-pilot-deliverables-label {
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 1100px) {
  .goal-dim-score-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .goal-dim-ledger {
    grid-template-columns: 1fr;
  }

  .goal-dim-ledger-section--established {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .goal-assessment-stage--dark .goal-dim-ledger-section--established {
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }

  .goal-pilot-header {
    grid-template-columns: 1fr;
  }

  .goal-pilot-process-steps {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .goal-pilot-process-rail {
    left: 18px;
    right: auto;
    top: 12px;
    bottom: 12px;
    width: 3px;
    height: auto;
  }

  .goal-pilot-process-line {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--red) 0%, rgba(200, 16, 46, 0.45) 55%, rgba(34, 120, 70, 0.55) 100%);
  }

  .goal-pilot-process-line::after {
    top: auto;
    bottom: -1px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid rgba(34, 120, 70, 0.55);
    border-bottom: none;
  }

  .goal-pilot-step {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.85rem;
    padding-left: 0.25rem;
  }

  .goal-pilot-step-node {
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .goal-pilot-step-card {
    flex: 1;
  }

  .goal-pilot-outcomes-banner {
    flex-direction: column;
  }

  .goal-dimension-board-header {
    flex-direction: column;
  }

  .goal-dimension-composite {
    align-self: flex-start;
    flex-direction: row;
    align-items: baseline;
    gap: 0.5rem;
  }

  .goal-dim-score-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .goal-dim-score-strip {
    grid-template-columns: 1fr 1fr;
  }

  .goal-dim-brief-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Growth & Pilot Plan — imperatives + end-to-end pilot */
.goal-execution-board {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid rgba(200, 16, 46, 0.12);
  border-top: none;
  border-radius: 0 0 24px 24px;
  overflow: hidden;
}

.goal-pilots-board {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(200, 16, 46, 0.12);
  border-top: none;
  border-radius: 0 0 24px 24px;
  overflow: hidden;
}

.goal-pilots-board .goal-pilot-programs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 0 1.75rem;
}

.goal-pilots-board .goal-pilot-programs-intro {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 0;
}

.goal-assessment-stage--dark .goal-pilots-board {
  border-color: rgba(255, 255, 255, 0.1);
}

.goal-assessment-stage--dark .goal-pilots-board .goal-pilot-programs-intro {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.goal-execution-section {
  background: var(--white);
  box-shadow: 0 8px 32px rgba(16, 8, 9, 0.04);
}

.goal-execution-imperatives {
  padding: 1.5rem 1.75rem 1.65rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.goal-execution-header {
  margin-bottom: 1.15rem;
}

.goal-execution-title {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 400;
  color: var(--gray-900);
  margin-bottom: 0.35rem;
}

.goal-execution-lead {
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--gray-700);
  max-width: 720px;
}

.goal-imperative-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  counter-reset: imperative;
}

.goal-imperative-item {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 0.35rem 0.85rem;
  align-items: start;
  padding: 0.85rem 1rem;
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-left: 3px solid var(--red);
  border-radius: 12px;
  counter-increment: imperative;
}

.goal-imperative-item::before {
  content: counter(imperative, decimal-leading-zero);
  grid-column: 1;
  grid-row: 1 / span 2;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1;
  color: var(--red);
  opacity: 0.55;
  padding-top: 0.1rem;
}

.goal-imperative-tag {
  grid-column: 2;
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  background: rgba(200, 16, 46, 0.08);
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  margin-bottom: 0.35rem;
}

.goal-imperative-body {
  grid-column: 2;
}

.goal-imperative-title {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.goal-imperative-desc {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--gray-700);
}

/* ── Strategic Imperatives — visual card layout ── */
.goal-imperatives-board {
  background: var(--white);
  border-radius: 0 0 24px 24px;
  overflow: hidden;
}

.goal-imperatives-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: start;
  padding: 1.75rem 1.75rem 1.35rem;
  background:
    radial-gradient(ellipse 70% 120% at 100% 0%, rgba(200, 16, 46, 0.06) 0%, transparent 55%),
    linear-gradient(180deg, #fff 0%, #fafafa 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.goal-imperatives-head-main {
  min-width: 0;
}

.goal-imperatives-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  margin-bottom: 0.75rem;
  font-size: var(--pilot-label, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(200, 16, 46, 0.08);
  border: 1px solid rgba(200, 16, 46, 0.14);
  border-radius: 999px;
}

.goal-imperatives-title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.1vw, 1.55rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 0.55rem;
}

.goal-imperatives-lead {
  font-size: var(--pilot-body-sm, 0.875rem);
  line-height: 1.6;
  color: var(--gray-700);
  max-width: 44rem;
  margin: 0;
}

.goal-imperatives-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-width: 88px;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid rgba(200, 16, 46, 0.14);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.06);
}

.goal-imperatives-meta-num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  line-height: 1;
  color: var(--red);
}

.goal-imperatives-meta-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  color: var(--gray-600);
  max-width: 8rem;
}

.goal-imperatives-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.35rem 1.75rem 1.75rem;
  background: #fafafa;
}

.goal-imperative-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 100%;
  padding: 1.15rem 1.15rem 1.25rem;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 18px;
  box-shadow: 0 10px 32px rgba(16, 8, 9, 0.04);
}

.goal-imperative-card-rail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.goal-imperative-card-num {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1;
  color: var(--red);
  opacity: 0.75;
}

.goal-imperative-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  background: rgba(200, 16, 46, 0.08);
  border: 1px solid rgba(200, 16, 46, 0.12);
}

.goal-imperative-card-icon svg {
  width: 20px;
  height: 20px;
}

.goal-imperative-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.goal-imperative-card-tag {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(200, 16, 46, 0.07);
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(200, 16, 46, 0.1);
}

.goal-imperative-card-title {
  font-size: var(--pilot-subhead, 1rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--gray-900);
}

.goal-imperative-card-desc {
  font-size: var(--pilot-body-sm, 0.875rem);
  line-height: 1.6;
  color: var(--gray-700);
  margin: 0;
}

.goal-imperative-card-detail {
  margin: 0.15rem 0 0;
  padding: 0.65rem 0.75rem;
  font-size: var(--pilot-label, 0.75rem);
  line-height: 1.55;
  font-weight: 600;
  color: var(--gray-800);
  background: linear-gradient(90deg, rgba(200, 16, 46, 0.05) 0%, rgba(200, 16, 46, 0.02) 100%);
  border-left: 3px solid rgba(200, 16, 46, 0.35);
  border-radius: 0 10px 10px 0;
}

.goal-execution-pilot {
  padding: 1.5rem 1.75rem 1.75rem;
}

/* Pilot Programs — readable type scale (scoped to pilot view) */
.goal-view--pilots {
  --pilot-label: 0.75rem;
  --pilot-body: 0.9375rem;
  --pilot-body-sm: 0.875rem;
  --pilot-subhead: 1rem;
  --pilot-section: 1.0625rem;
  --pilot-heading: clamp(1.125rem, 2vw, 1.375rem);
  --pilot-display: clamp(1.1875rem, 2.1vw, 1.4375rem);
  --pilot-line: 1.65;
}

.goal-view--pilots .goal-pilot-tag,
.goal-view--pilots .goal-pilot-focus-label,
.goal-view--pilots .goal-pilot-deliverables-label,
.goal-view--pilots .goal-pilot-component-tag,
.goal-view--pilots .goal-pilot-signal-layer-badge,
.goal-view--pilots .goal-pilot-signal-direction,
.goal-view--pilots .goal-pilot-signal-chip,
.goal-view--pilots .goal-pilot-signal-flow-title,
.goal-view--pilots .goal-pilot-step-when {
  font-size: var(--pilot-label);
}

.goal-view--pilots .goal-pilot-programs-lead {
  font-size: var(--pilot-body-sm);
}

.goal-view--pilots .goal-pilot-summary,
.goal-view--pilots .goal-pilot-focus-text,
.goal-view--pilots .goal-pilot-step-detail,
.goal-view--pilots .goal-pilot-outcomes-list li,
.goal-view--pilots .goal-pilot-deliverable,
.goal-view--pilots .goal-pilot-narrative-lead,
.goal-view--pilots .goal-pilot-narrative-body,
.goal-view--pilots .goal-pilot-narrative-desc,
.goal-view--pilots .goal-pilot-component-desc,
.goal-view--pilots .goal-pilot-advantage-desc,
.goal-view--pilots .goal-pilot-signal-desc,
.goal-view--pilots .goal-pilot-signal-flow-detail,
.goal-view--pilots .goal-pilot-signal-universal-lead,
.goal-view--pilots .goal-pilot-signal-universal-desc {
  font-size: var(--pilot-body);
  line-height: var(--pilot-line);
}

.goal-view--pilots .goal-pilot-step-label,
.goal-view--pilots .goal-pilot-narrative-term,
.goal-view--pilots .goal-pilot-component-term,
.goal-view--pilots .goal-pilot-advantage-term,
.goal-view--pilots .goal-pilot-signal-term,
.goal-view--pilots .goal-pilot-signal-lane-title,
.goal-view--pilots .goal-pilot-signal-flow-label,
.goal-view--pilots .goal-pilot-signal-universal-term {
  font-size: var(--pilot-subhead);
}

.goal-view--pilots .goal-pilot-narrative-title,
.goal-view--pilots .goal-pilot-process-title,
.goal-view--pilots .goal-pilot-signal-universal-title {
  font-size: var(--pilot-section);
}

.goal-view--pilots .goal-pilot-name,
.goal-view--pilots .goal-pilot-programs-title {
  font-size: var(--pilot-display);
}

.goal-view--pilots .goal-pilot-narrative-kicker {
  font-size: var(--pilot-heading);
}

.goal-view--pilots .goal-pilot-outcomes-flag {
  font-size: var(--pilot-label);
}

.goal-view--pilots .goal-pilot-architecture-caption {
  font-size: var(--pilot-body-sm);
}

.goal-view--pilots .goal-pilot-signal-lane-sub {
  font-size: var(--pilot-label);
}

/* ── Migration Pilot Brief — full visual redesign ── */
.goal-pilot-programs--brief {
  gap: 0;
}

.goal-pilot-programs--brief .goal-execution-section.goal-execution-pilot {
  margin: 1.5rem 1.75rem 1.75rem;
  border-radius: 18px;
}

.goal-pilot-programs--brief .goal-pilot-brief + .goal-pilot-brief {
  margin-top: 1.5rem;
  border-radius: 24px;
}

.goal-pilots-board .goal-pilot-programs--brief {
  padding: 0;
}

.goal-pilots-board:has(.goal-pilot-brief) {
  border: none;
  border-radius: 0 0 24px 24px;
}

.goal-pilot-brief {
  background: var(--white);
  border-radius: 0 0 24px 24px;
  overflow: hidden;
}

.pilot-brief-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: 1.5rem;
  align-items: stretch;
  padding: 2rem 2rem 1.75rem;
  background:
    radial-gradient(ellipse 80% 120% at 100% 0%, rgba(200, 16, 46, 0.06) 0%, transparent 55%),
    linear-gradient(180deg, #fff 0%, #fafafa 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--gray-900);
}

.pilot-brief-hero-main {
  min-width: 0;
}

.pilot-brief-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  margin-bottom: 0.85rem;
  font-size: var(--pilot-label);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(200, 16, 46, 0.08);
  border: 1px solid rgba(200, 16, 46, 0.14);
  border-radius: 999px;
}

.pilot-brief-title {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 2.4vw, 1.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.pilot-brief-summary {
  font-size: var(--pilot-body);
  line-height: var(--pilot-line);
  color: var(--gray-700);
  max-width: 52rem;
}

.pilot-brief-focus {
  padding: 1.15rem 1.25rem;
  background: linear-gradient(145deg, rgba(200, 16, 46, 0.05) 0%, var(--white) 100%);
  border: 1px solid rgba(200, 16, 46, 0.12);
  border-left: 4px solid var(--red);
  border-radius: 16px;
}

.pilot-brief-focus-label {
  display: block;
  font-size: var(--pilot-label);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.pilot-brief-focus-text {
  font-size: var(--pilot-body);
  line-height: var(--pilot-line);
  color: var(--gray-700);
  margin: 0;
}

.pilot-brief-architecture {
  margin: 0;
  padding: 1.25rem 1.75rem 1.5rem;
  background: linear-gradient(180deg, #f8f8f8 0%, var(--white) 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pilot-brief-architecture-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 48px rgba(16, 8, 9, 0.08);
}

.pilot-brief-architecture-caption {
  margin-top: 0.75rem;
  font-size: var(--pilot-body-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-600);
  text-align: center;
}

.pilot-brief-outcomes {
  padding: 1.35rem 1.75rem 1.5rem;
  background: linear-gradient(180deg, rgba(34, 120, 70, 0.035) 0%, rgba(34, 120, 70, 0.07) 100%);
  border-bottom: 1px solid rgba(34, 120, 70, 0.1);
}

.pilot-brief-outcomes-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.pilot-brief-outcomes-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: #1a7a45;
  box-shadow: 0 4px 12px rgba(26, 122, 69, 0.22);
}

.pilot-brief-outcomes-icon svg {
  width: 17px;
  height: 17px;
}

.pilot-brief-outcomes-title {
  font-size: var(--pilot-section);
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.01em;
}

.pilot-brief-outcome-grid {
  display: grid;
  gap: 0.85rem;
}

.pilot-brief-outcome-grid--items-1 {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
}

.pilot-brief-outcome-grid--items-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pilot-brief-outcome-grid--items-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pilot-brief-outcome-grid--items-4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pilot-brief-outcome-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 100%;
  padding: 1.1rem 1.2rem;
  background: var(--white);
  border: 1px solid rgba(34, 120, 70, 0.14);
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(34, 120, 70, 0.05);
}

.pilot-brief-outcome-num {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1;
  color: #1a7a45;
  background: rgba(34, 120, 70, 0.1);
  border: 1px solid rgba(34, 120, 70, 0.16);
}

.pilot-brief-outcome-copy {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}

.pilot-brief-outcome-label {
  font-size: var(--pilot-label);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a7a45;
}

.pilot-brief-outcome-text {
  font-size: var(--pilot-body-sm);
  line-height: 1.55;
  color: var(--gray-800);
  margin: 0;
}

.pilot-brief-roadmap {
  padding: 1.75rem 1.75rem 2rem;
  background: #fafafa;
}

.pilot-brief-roadmap-head {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(200, 16, 46, 0.15);
}

.pilot-brief-roadmap-kicker {
  display: block;
  font-size: var(--pilot-label);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.35rem;
}

.pilot-brief-roadmap-title {
  font-family: var(--font-serif);
  font-size: var(--pilot-heading);
  font-weight: 400;
  color: var(--gray-900);
}

.pilot-brief-chapter {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 18px;
  box-shadow: 0 10px 32px rgba(16, 8, 9, 0.04);
}

.pilot-brief-chapter:last-child {
  margin-bottom: 0;
}

.pilot-brief-chapter-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pilot-brief-chapter-index {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--red);
  background: rgba(200, 16, 46, 0.08);
  border: 1px solid rgba(200, 16, 46, 0.14);
}

.pilot-brief-chapter-body {
  min-width: 0;
}

.pilot-brief-chapter-title {
  font-size: var(--pilot-section);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.pilot-brief-chapter-lead {
  font-size: var(--pilot-body);
  line-height: var(--pilot-line);
  color: var(--gray-700);
  margin-bottom: 1rem;
}

.pilot-brief-signal-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  font-size: var(--pilot-label);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a6b8a;
  background: rgba(26, 107, 138, 0.1);
  border: 1px solid rgba(26, 107, 138, 0.18);
  border-radius: 999px;
}

.pilot-brief-layers {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 0.5rem;
  align-items: stretch;
}

.pilot-brief-layer {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 100%;
  padding: 0.85rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.07);
}

.pilot-brief-layer--physical {
  background: linear-gradient(180deg, rgba(107, 76, 46, 0.1) 0%, var(--white) 100%);
  border-color: rgba(107, 76, 46, 0.18);
}

.pilot-brief-layer--edge {
  background: linear-gradient(180deg, rgba(26, 107, 138, 0.1) 0%, var(--white) 100%);
  border-color: rgba(26, 107, 138, 0.16);
}

.pilot-brief-layer--cloud {
  background: linear-gradient(180deg, rgba(74, 61, 143, 0.1) 0%, var(--white) 100%);
  border-color: rgba(74, 61, 143, 0.16);
}

.pilot-brief-layer-head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.pilot-brief-layer-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
}

.pilot-brief-layer--physical .pilot-brief-layer-dot { color: #6b4c2e; }
.pilot-brief-layer--edge .pilot-brief-layer-dot { color: #1a6b8a; }
.pilot-brief-layer--cloud .pilot-brief-layer-dot { color: #4a3d8f; }

.pilot-brief-layer-label {
  font-size: var(--pilot-label);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-800);
}

.pilot-brief-layer-cards {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
  justify-content: center;
}

.pilot-brief-layer-card {
  padding: 0.85rem;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.pilot-brief-layer-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.55rem;
}

.pilot-brief-layer-card-icon svg {
  width: 18px;
  height: 18px;
}

.pilot-brief-layer-card-icon--physical {
  color: #6b4c2e;
  background: rgba(107, 76, 46, 0.12);
  border: 1px solid rgba(107, 76, 46, 0.16);
}

.pilot-brief-layer-card-icon--edge {
  color: #1a6b8a;
  background: rgba(26, 107, 138, 0.12);
  border: 1px solid rgba(26, 107, 138, 0.16);
}

.pilot-brief-layer-card-icon--cloud {
  color: #4a3d8f;
  background: rgba(74, 61, 143, 0.12);
  border: 1px solid rgba(74, 61, 143, 0.16);
}

.pilot-brief-layer-card-term {
  font-size: var(--pilot-subhead);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.35rem;
}

.pilot-brief-layer-card-desc {
  font-size: var(--pilot-body-sm);
  line-height: var(--pilot-line);
  color: var(--gray-700);
}

.pilot-brief-layer-bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0 0.15rem;
  color: rgba(200, 16, 46, 0.35);
}

.pilot-brief-layer-bridge span {
  width: 2px;
  height: 18px;
  border-radius: 2px;
  background: linear-gradient(180deg, transparent, rgba(200, 16, 46, 0.45), transparent);
}

.pilot-brief-layer-bridge span:nth-child(2) {
  width: 14px;
  height: 2px;
  background: rgba(200, 16, 46, 0.45);
}

.pilot-brief-signal-bridge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.65rem 0.85rem;
  background: rgba(0, 0, 0, 0.03);
  border: 1px dashed rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.pilot-brief-signal-bridge-node {
  flex-shrink: 0;
  padding: 0.3rem 0.55rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
}

.pilot-brief-signal-bridge-node--site {
  color: #6b4c2e;
  background: rgba(107, 76, 46, 0.12);
}

.pilot-brief-signal-bridge-node--edge {
  color: #1a6b8a;
  background: rgba(26, 107, 138, 0.12);
}

.pilot-brief-signal-bridge-node--cloud {
  color: #4a3d8f;
  background: rgba(74, 61, 143, 0.12);
}

.pilot-brief-signal-bridge-line {
  flex: 1;
  height: 2px;
  min-width: 1rem;
  background: linear-gradient(90deg, rgba(26, 107, 138, 0.35), rgba(200, 16, 46, 0.35), rgba(74, 61, 143, 0.35));
  border-radius: 2px;
}

.pilot-brief-signal-map {
  margin-top: 0;
  align-items: stretch;
}

.pilot-brief-signal-map .goal-pilot-signal-lane .goal-pilot-signal-cards {
  flex: 1;
  justify-content: center;
}

.pilot-brief-signal-map .goal-pilot-signal-flow-steps {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.pilot-brief-signal-map .goal-pilot-signal-flow-step {
  flex: 1 1 calc(33.333% - 0.5rem);
  min-width: 180px;
  grid-template-columns: auto minmax(0, 1fr);
}

.pilot-brief-signal-map .goal-pilot-signal-flow-arrow {
  display: none;
}

.pilot-brief-universal {
  margin-top: 1.15rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.pilot-brief-universal-title {
  font-size: var(--pilot-subhead);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.35rem;
}

.pilot-brief-universal-lead {
  font-size: var(--pilot-body-sm);
  line-height: var(--pilot-line);
  color: var(--gray-700);
  margin-bottom: 0.85rem;
}

.pilot-brief-universal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.pilot-brief-universal-card {
  padding: 0.85rem;
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
}

.pilot-brief-universal-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.45rem;
  color: var(--red);
  background: rgba(200, 16, 46, 0.08);
  border: 1px solid rgba(200, 16, 46, 0.12);
}

.pilot-brief-universal-icon svg {
  width: 17px;
  height: 17px;
}

.pilot-brief-universal-term {
  font-size: var(--pilot-body-sm);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.pilot-brief-universal-desc {
  font-size: var(--pilot-body-sm);
  line-height: 1.55;
  color: var(--gray-700);
}

.pilot-brief-phases {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  position: relative;
}

.pilot-brief-phases::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, rgba(200, 16, 46, 0.4) 50%, #1a7a45 100%);
  border-radius: 999px;
  z-index: 0;
}

.pilot-brief-phase {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.pilot-brief-phase-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.pilot-brief-phase-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 0 0 4px var(--white), 0 0 0 6px rgba(200, 16, 46, 0.12);
}

.pilot-brief-phase:nth-child(3) .pilot-brief-phase-num {
  background: #1a7a45;
  box-shadow: 0 0 0 4px var(--white), 0 0 0 6px rgba(34, 120, 70, 0.15);
}

.pilot-brief-phase-when {
  font-size: var(--pilot-label);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--red);
  text-align: center;
}

.pilot-brief-phase:nth-child(3) .pilot-brief-phase-when {
  color: #1a7a45;
}

.pilot-brief-phase-card {
  flex: 1;
  padding: 1rem;
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
}

.pilot-brief-phase-label {
  font-size: var(--pilot-subhead);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.45rem;
}

.pilot-brief-phase-detail {
  font-size: var(--pilot-body-sm);
  line-height: var(--pilot-line);
  color: var(--gray-700);
}

.pilot-brief-chapter--vision {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0.5rem 0 0;
}

.pilot-brief-comms-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(90deg, rgba(26, 107, 138, 0.06) 0%, rgba(74, 61, 143, 0.06) 100%);
  border: 1px solid rgba(26, 107, 138, 0.12);
  border-radius: 14px;
}

.pilot-brief-comms-node {
  padding: 0.35rem 0.65rem;
  font-size: var(--pilot-label);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--gray-800);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
}

.pilot-brief-comms-arrow {
  color: rgba(200, 16, 46, 0.45);
  font-weight: 700;
}

.pilot-brief-comms-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.pilot-brief-comms-block {
  padding: 1rem;
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
}

.pilot-brief-comms-block-head {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.pilot-brief-comms-block-num {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--white);
  background: #4a3d8f;
}

.pilot-brief-comms-block-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4a3d8f;
  background: rgba(74, 61, 143, 0.1);
  border: 1px solid rgba(74, 61, 143, 0.14);
}

.pilot-brief-comms-block-icon svg {
  width: 17px;
  height: 17px;
}

.pilot-brief-comms-block-title {
  font-size: var(--pilot-subhead);
  font-weight: 700;
  color: var(--gray-900);
}

.pilot-brief-comms-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pilot-brief-comms-term {
  display: block;
  font-size: var(--pilot-body-sm);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.2rem;
}

.pilot-brief-comms-desc {
  font-size: var(--pilot-body-sm);
  line-height: var(--pilot-line);
  color: var(--gray-700);
}

.pilot-brief-comms-example {
  margin-top: 0.45rem;
  padding: 0.55rem 0.65rem;
  font-size: var(--pilot-body-sm);
  line-height: 1.5;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color: var(--gray-800);
  background: var(--white);
  border: 1px dashed rgba(74, 61, 143, 0.22);
  border-radius: 8px;
}

.goal-view--pilots .pilot-brief-comms-desc {
  font-size: var(--pilot-body);
}

.goal-view--pilots .pilot-brief-comms-example {
  font-size: var(--pilot-body-sm);
}

.pilot-brief-vision-panel {
  padding: 1.5rem 1.75rem;
  background:
    radial-gradient(ellipse 70% 100% at 0% 0%, rgba(200, 16, 46, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #fff 0%, #f5f5f5 100%);
  border: 1px solid rgba(200, 16, 46, 0.12);
  border-left: 4px solid var(--red);
  border-radius: 18px;
  color: var(--gray-900);
}

.pilot-brief-vision-kicker {
  display: block;
  font-size: var(--pilot-label);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.45rem;
}

.pilot-brief-vision-title {
  font-family: var(--font-serif);
  font-size: var(--pilot-heading);
  font-weight: 400;
  color: var(--gray-900);
  margin-bottom: 0.65rem;
}

.pilot-brief-vision-body {
  font-size: var(--pilot-body);
  line-height: var(--pilot-line);
  color: var(--gray-700);
  margin: 0;
}

.goal-view--pilots .pilot-brief-title,
.goal-view--pilots .pilot-brief-roadmap-title,
.goal-view--pilots .pilot-brief-vision-title {
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
}

.goal-view--pilots .pilot-brief-summary,
.goal-view--pilots .pilot-brief-focus-text,
.goal-view--pilots .pilot-brief-chapter-lead,
.goal-view--pilots .pilot-brief-outcome-text,
.goal-view--pilots .pilot-brief-layer-card-desc,
.goal-view--pilots .pilot-brief-phase-detail,
.goal-view--pilots .pilot-brief-vision-body,
.goal-view--pilots .pilot-brief-universal-desc {
  font-size: var(--pilot-body);
  line-height: var(--pilot-line);
}

@media (max-width: 1080px) {
  .pilot-brief-layers {
    grid-template-columns: 1fr;
  }

  .pilot-brief-layer-bridge {
    flex-direction: row;
    padding: 0.25rem 0;
  }

  .pilot-brief-layer-bridge span {
    width: 18px;
    height: 2px;
  }

  .pilot-brief-layer-bridge span:nth-child(2) {
    width: 2px;
    height: 14px;
  }

  .pilot-brief-outcome-grid,
  .pilot-brief-outcome-grid--items-2,
  .pilot-brief-outcome-grid--items-3,
  .pilot-brief-outcome-grid--items-4,
  .pilot-brief-phases {
    grid-template-columns: 1fr;
  }

  .pilot-brief-phases::before {
    display: none;
  }

  .pilot-brief-universal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pilot-brief-comms-grid {
    grid-template-columns: 1fr;
  }

  .goal-imperatives-head {
    grid-template-columns: 1fr;
  }

  .goal-imperatives-meta {
    flex-direction: row;
    justify-content: flex-start;
    align-self: flex-start;
    gap: 0.65rem;
    padding: 0.65rem 0.85rem;
  }

  .goal-imperatives-meta-label {
    text-align: left;
    max-width: none;
  }

  .goal-imperatives-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .pilot-brief-hero {
    grid-template-columns: 1fr;
    padding: 1.5rem 1.25rem;
  }

  .pilot-brief-architecture,
  .pilot-brief-outcomes,
  .pilot-brief-roadmap {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .pilot-brief-chapter {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .pilot-brief-chapter-rail {
    flex-direction: row;
  }

  .pilot-brief-universal-grid {
    grid-template-columns: 1fr;
  }

  .pilot-brief-signal-bridge {
    flex-wrap: wrap;
  }

  .pilot-brief-signal-map .goal-pilot-signal-flow-step {
    flex: 1 1 100%;
  }
}

.goal-pilot-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  gap: 1.25rem;
  align-items: start;
  padding-bottom: 1.15rem;
  margin-bottom: 0.35rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.goal-pilot-header--solo {
  grid-template-columns: 1fr;
}

.goal-pilot-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 0.45rem;
}

.goal-pilot-name {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 400;
  color: var(--gray-900);
  margin-bottom: 0.45rem;
  line-height: 1.25;
}

.goal-pilot-summary {
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--gray-700);
  max-width: 720px;
}

.goal-pilot-focus-chip {
  padding: 0.85rem 1rem;
  background: linear-gradient(145deg, rgba(200, 16, 46, 0.06) 0%, rgba(255, 255, 255, 0.98) 100%);
  border: 1px solid rgba(200, 16, 46, 0.12);
  border-left: 3px solid var(--red);
  border-radius: 12px;
}

.goal-pilot-focus-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 0.35rem;
}

.goal-pilot-focus-text {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--gray-700);
  margin: 0;
}

/* Process diagram timeline */
.goal-pilot-process {
  position: relative;
  margin: 0.5rem 0 1.15rem;
  padding-top: 0.25rem;
}

.goal-pilot-process-rail {
  position: absolute;
  top: 18px;
  left: calc(16.666% + 4px);
  right: calc(16.666% + 4px);
  height: 3px;
  pointer-events: none;
  z-index: 0;
}

.goal-pilot-process-line {
  position: relative;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red) 0%, rgba(200, 16, 46, 0.45) 55%, rgba(34, 120, 70, 0.55) 100%);
}

.goal-pilot-process-line::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid rgba(34, 120, 70, 0.55);
}

.goal-pilot-process-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.goal-pilot-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

.goal-pilot-step-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.7rem;
}

.goal-pilot-step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 0 0 4px var(--white), 0 0 0 6px rgba(200, 16, 46, 0.12);
}

.goal-pilot-step:nth-child(3) .goal-pilot-step-num {
  background: #1a7a45;
  box-shadow: 0 0 0 4px var(--white), 0 0 0 6px rgba(34, 120, 70, 0.15);
}

.goal-pilot-step-when {
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
  text-align: center;
  line-height: 1.2;
}

.goal-pilot-step:nth-child(3) .goal-pilot-step-when {
  color: #1a7a45;
}

.goal-pilot-step-card {
  width: 100%;
  padding: 0.85rem 0.95rem;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(16, 8, 9, 0.05);
  text-align: left;
}

.goal-pilot-step-label {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 0.35rem;
  line-height: 1.3;
}

.goal-pilot-step-detail {
  font-size: 0.76rem;
  line-height: 1.48;
  color: var(--gray-700);
  margin: 0;
}

/* Outcomes banner */
.goal-pilot-outcomes-banner {
  display: flex;
  align-items: stretch;
  gap: 0.85rem;
  padding: 0.75rem 0.85rem;
  margin-bottom: 0.85rem;
  background: linear-gradient(90deg, rgba(34, 120, 70, 0.08) 0%, rgba(34, 120, 70, 0.02) 100%);
  border: 1px solid rgba(34, 120, 70, 0.16);
  border-radius: 14px;
}

.goal-pilot-outcomes-flag {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-width: 68px;
  padding: 0.45rem 0.55rem;
  background: #1a7a45;
  color: var(--white);
  border-radius: 10px;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.goal-pilot-outcomes-flag svg {
  width: 18px;
  height: 18px;
}

.goal-pilot-outcomes-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.goal-pilot-outcomes-list li {
  font-size: 0.76rem;
  line-height: 1.35;
  color: var(--gray-800);
  padding: 0.38rem 0.65rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(34, 120, 70, 0.14);
  border-radius: 999px;
}

/* Deliverable chips */
.goal-pilot-deliverables {
  padding-top: 0.15rem;
}

.goal-pilot-deliverables-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--gray-600);
  margin-bottom: 0.55rem;
}

.goal-pilot-deliverables-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
}

.goal-pilot-deliverable {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-800);
  padding: 0.35rem 0.65rem;
  background: #f5f5f5;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 999px;
  cursor: default;
}

.goal-pilot-deliverable-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.goal-pilot-process-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 1.25rem 0 0.85rem;
}

.goal-current-state-diagram {
  margin: 0 0 1.25rem;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(200, 16, 46, 0.03) 0%, var(--white) 100%);
  border: 1px solid rgba(200, 16, 46, 0.12);
  border-radius: 16px;
}

.goal-current-state-diagram-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.goal-pilot-architecture {
  margin: 1.25rem 0 0;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(200, 16, 46, 0.03) 0%, var(--white) 100%);
  border: 1px solid rgba(200, 16, 46, 0.12);
  border-radius: 16px;
}

.goal-pilot-architecture-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.goal-pilot-architecture-caption {
  margin-top: 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-600);
  text-align: center;
}

.goal-pilot-narrative {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.goal-pilot-narrative-kicker {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 400;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.goal-pilot-narrative-section {
  padding: 1.15rem 1.25rem;
  margin-bottom: 0.85rem;
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
}

.goal-pilot-narrative-section:last-child {
  margin-bottom: 0;
}

.goal-pilot-narrative-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.55rem;
}

.goal-pilot-narrative-lead,
.goal-pilot-narrative-body {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--gray-700);
  margin-bottom: 0.75rem;
}

.goal-pilot-narrative-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}

.goal-pilot-narrative-item {
  padding-left: 0.85rem;
  border-left: 3px solid rgba(200, 16, 46, 0.25);
}

.goal-pilot-narrative-term {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.goal-pilot-narrative-desc {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--gray-700);
}

.goal-pilot-narrative-section-head {
  margin-bottom: 1rem;
}

.goal-pilot-narrative-section--stack {
  background: linear-gradient(165deg, rgba(200, 16, 46, 0.04) 0%, rgba(255, 255, 255, 0.98) 42%, #fafafa 100%);
  border-color: rgba(200, 16, 46, 0.1);
}

.goal-pilot-component-stack {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.goal-pilot-component {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: stretch;
}

.goal-pilot-component-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
}

.goal-pilot-component-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.goal-pilot-component-icon svg {
  width: 20px;
  height: 20px;
}

.goal-pilot-component-icon--physical {
  color: #6b4c2e;
  background: rgba(107, 76, 46, 0.12);
  border-color: rgba(107, 76, 46, 0.18);
}

.goal-pilot-component-icon--edge {
  color: #1a6b8a;
  background: rgba(26, 107, 138, 0.12);
  border-color: rgba(26, 107, 138, 0.18);
}

.goal-pilot-component-icon--cloud {
  color: #4a3d8f;
  background: rgba(74, 61, 143, 0.12);
  border-color: rgba(74, 61, 143, 0.18);
}

.goal-pilot-component-connector {
  flex: 1;
  width: 2px;
  min-height: 0.85rem;
  margin: 0.35rem 0;
  background: linear-gradient(180deg, rgba(200, 16, 46, 0.45) 0%, rgba(200, 16, 46, 0.08) 100%);
  border-radius: 2px;
}

.goal-pilot-component-card {
  margin-bottom: 0.85rem;
  padding: 0.9rem 1rem;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.goal-pilot-component:last-child .goal-pilot-component-card {
  margin-bottom: 0;
}

.goal-pilot-component-tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.4rem;
  padding: 0.18rem 0.55rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(200, 16, 46, 0.08);
  border: 1px solid rgba(200, 16, 46, 0.12);
  border-radius: 999px;
}

.goal-pilot-component-term {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.35rem;
}

.goal-pilot-component-desc {
  font-size: 0.8125rem;
  line-height: 1.58;
  color: var(--gray-700);
}

.goal-pilot-narrative-section--advantages {
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.goal-pilot-advantage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.goal-pilot-advantage-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 100%;
  padding: 1rem;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.goal-pilot-advantage-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.07);
}

.goal-pilot-advantage-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.goal-pilot-advantage-icon svg {
  width: 21px;
  height: 21px;
}

.goal-pilot-advantage-card:nth-child(1) .goal-pilot-advantage-icon {
  color: #1a7a45;
  background: rgba(34, 120, 70, 0.12);
  border: 1px solid rgba(34, 120, 70, 0.16);
}

.goal-pilot-advantage-card:nth-child(2) .goal-pilot-advantage-icon {
  color: var(--red);
  background: rgba(200, 16, 46, 0.1);
  border: 1px solid rgba(200, 16, 46, 0.14);
}

.goal-pilot-advantage-card:nth-child(3) .goal-pilot-advantage-icon {
  color: #b86a00;
  background: rgba(212, 145, 58, 0.14);
  border: 1px solid rgba(212, 145, 58, 0.18);
}

.goal-pilot-advantage-card:nth-child(4) .goal-pilot-advantage-icon {
  color: #1a6b8a;
  background: rgba(26, 107, 138, 0.12);
  border: 1px solid rgba(26, 107, 138, 0.16);
}

.goal-pilot-advantage-term {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.35rem;
}

.goal-pilot-advantage-desc {
  font-size: 0.8125rem;
  line-height: 1.58;
  color: var(--gray-700);
}

.goal-pilot-narrative .goal-pilot-process-title {
  margin-top: 0.35rem;
}

.goal-pilot-narrative-section--signal-map {
  background: linear-gradient(180deg, rgba(26, 107, 138, 0.04) 0%, rgba(255, 255, 255, 0.98) 38%, #fafafa 100%);
  border-color: rgba(26, 107, 138, 0.12);
}

.goal-pilot-signal-layer-badge {
  display: inline-flex;
  align-items: center;
  margin-top: 0.65rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a6b8a;
  background: rgba(26, 107, 138, 0.1);
  border: 1px solid rgba(26, 107, 138, 0.18);
  border-radius: 999px;
}

.goal-pilot-signal-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 0.35rem;
}

.goal-pilot-signal-lane {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 100%;
  padding: 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.07);
}

.goal-pilot-signal-lane--upstream {
  background: linear-gradient(165deg, rgba(26, 107, 138, 0.08) 0%, rgba(255, 255, 255, 0.98) 55%);
  border-color: rgba(26, 107, 138, 0.14);
}

.goal-pilot-signal-lane--downstream {
  background: linear-gradient(165deg, rgba(200, 16, 46, 0.07) 0%, rgba(255, 255, 255, 0.98) 55%);
  border-color: rgba(200, 16, 46, 0.12);
}

.goal-pilot-signal-lane-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: center;
}

.goal-pilot-signal-lane-num {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--white);
  background: var(--gray-800);
}

.goal-pilot-signal-lane--upstream .goal-pilot-signal-lane-num {
  background: #1a6b8a;
}

.goal-pilot-signal-lane--downstream .goal-pilot-signal-lane-num {
  background: var(--red);
}

.goal-pilot-signal-lane-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.1rem;
}

.goal-pilot-signal-lane-sub {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-600);
}

.goal-pilot-signal-direction {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  white-space: nowrap;
}

.goal-pilot-signal-direction--upstream {
  color: #1a6b8a;
  background: rgba(26, 107, 138, 0.1);
  border: 1px solid rgba(26, 107, 138, 0.16);
}

.goal-pilot-signal-direction--downstream {
  color: var(--red);
  background: rgba(200, 16, 46, 0.08);
  border: 1px solid rgba(200, 16, 46, 0.14);
}

.goal-pilot-signal-cards {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.goal-pilot-signal-card {
  padding: 0.85rem;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.goal-pilot-signal-card-head {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 0.55rem;
}

.goal-pilot-signal-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.goal-pilot-signal-icon svg {
  width: 19px;
  height: 19px;
}

.goal-pilot-signal-icon--upstream {
  color: #1a6b8a;
  background: rgba(26, 107, 138, 0.12);
  border: 1px solid rgba(26, 107, 138, 0.16);
}

.goal-pilot-signal-icon--downstream {
  color: var(--red);
  background: rgba(200, 16, 46, 0.1);
  border: 1px solid rgba(200, 16, 46, 0.14);
}

.goal-pilot-signal-term {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.goal-pilot-signal-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.45rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color: var(--gray-700);
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 6px;
}

.goal-pilot-signal-desc {
  font-size: 0.78rem;
  line-height: 1.58;
  color: var(--gray-700);
}

.goal-pilot-signal-flow {
  margin-top: 0.15rem;
  padding: 0.85rem;
  background: rgba(200, 16, 46, 0.04);
  border: 1px dashed rgba(200, 16, 46, 0.2);
  border-radius: 14px;
}

.goal-pilot-signal-flow-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.65rem;
}

.goal-pilot-signal-flow-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.goal-pilot-signal-flow-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.6rem;
  align-items: center;
  padding: 0.65rem 0.7rem;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
}

.goal-pilot-signal-flow-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  background: rgba(200, 16, 46, 0.08);
  border: 1px solid rgba(200, 16, 46, 0.12);
}

.goal-pilot-signal-flow-icon svg {
  width: 16px;
  height: 16px;
}

.goal-pilot-signal-flow-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.15rem;
}

.goal-pilot-signal-flow-detail {
  font-size: 0.74rem;
  line-height: 1.5;
  color: var(--gray-700);
}

.goal-pilot-signal-flow-arrow {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(200, 16, 46, 0.45);
  line-height: 1;
}

.goal-pilot-signal-universal {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.goal-pilot-signal-universal-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.35rem;
}

.goal-pilot-signal-universal-lead {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--gray-700);
  margin-bottom: 0.85rem;
}

.goal-pilot-signal-universal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.goal-pilot-signal-universal-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 100%;
  padding: 0.85rem;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
}

.goal-pilot-signal-universal-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4a3d8f;
  background: rgba(74, 61, 143, 0.1);
  border: 1px solid rgba(74, 61, 143, 0.14);
}

.goal-pilot-signal-universal-icon svg {
  width: 18px;
  height: 18px;
}

.goal-pilot-signal-universal-card:nth-child(2) .goal-pilot-signal-universal-icon {
  color: #6b4c2e;
  background: rgba(107, 76, 46, 0.12);
  border-color: rgba(107, 76, 46, 0.16);
}

.goal-pilot-signal-universal-card:nth-child(3) .goal-pilot-signal-universal-icon {
  color: var(--red);
  background: rgba(200, 16, 46, 0.08);
  border-color: rgba(200, 16, 46, 0.12);
}

.goal-pilot-signal-universal-card:nth-child(4) .goal-pilot-signal-universal-icon {
  color: #1a7a45;
  background: rgba(34, 120, 70, 0.1);
  border-color: rgba(34, 120, 70, 0.14);
}

.goal-pilot-signal-universal-term {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-900);
}

.goal-pilot-signal-universal-desc {
  font-size: 0.74rem;
  line-height: 1.52;
  color: var(--gray-700);
}

@media (max-width: 960px) {
  .goal-pilot-signal-map {
    grid-template-columns: 1fr;
  }

  .goal-pilot-signal-universal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .goal-pilot-advantage-grid {
    grid-template-columns: 1fr;
  }

  .goal-pilot-signal-universal-grid {
    grid-template-columns: 1fr;
  }

  .goal-pilot-signal-lane-head {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .goal-pilot-signal-direction {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .goal-pilot-component {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 0.65rem;
  }

  .goal-pilot-component-icon {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .goal-pilot-advantage-card {
    transition: none;
  }

  .goal-pilot-advantage-card:hover {
    transform: none;
  }
}

.goal-pilot-subtitle {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-700);
  margin-bottom: 0.75rem;
}

.goal-pilot-programs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.goal-pilot-programs-intro {
  padding: 1.15rem 1.75rem;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.goal-pilot-programs-title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 400;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.goal-pilot-programs-lead {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red);
}

.goal-pilot-alignment-header {
  margin-bottom: 1rem;
}

.goal-pilot-alignment-title {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 400;
  color: var(--gray-900);
}

.goal-pilot-alignment-wrap {
  overflow-x: auto;
}

.goal-pilot-alignment-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  line-height: 1.45;
}

.goal-pilot-alignment-table th,
.goal-pilot-alignment-table td {
  padding: 0.75rem 0.85rem;
  text-align: left;
  vertical-align: top;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.goal-pilot-alignment-table thead th {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-700);
  background: #f7f7f7;
}

.goal-pilot-alignment-table tbody th {
  font-weight: 700;
  color: var(--gray-900);
  background: #fafafa;
  white-space: nowrap;
}

.goal-pilot-alignment-table td {
  color: var(--gray-700);
}

.goal-pilot-alignment-metrics {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.goal-pilot-alignment-metrics li {
  position: relative;
  padding-left: 0.85rem;
}

.goal-pilot-alignment-metrics li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}

.goal-assessment-stage--dark .goal-pilot-programs-intro,
.goal-assessment-stage--dark .goal-pilot-alignment {
  background: rgba(20, 10, 12, 0.98);
}

.goal-assessment-stage--dark .goal-pilot-programs-title,
.goal-assessment-stage--dark .goal-pilot-alignment-title {
  color: var(--white);
}

.goal-assessment-stage--dark .goal-pilot-programs-lead {
  color: var(--red-light);
}

.goal-assessment-stage--dark .goal-pilot-alignment-table th,
.goal-assessment-stage--dark .goal-pilot-alignment-table td {
  border-color: rgba(255, 255, 255, 0.1);
}

.goal-assessment-stage--dark .goal-pilot-alignment-table thead th {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
}

.goal-assessment-stage--dark .goal-pilot-alignment-table tbody th {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.goal-assessment-stage--dark .goal-pilot-alignment-table td {
  color: rgba(255, 255, 255, 0.78);
}

.goal-assessment-stage--dark .goal-pilot-alignment-metrics li::before {
  background: var(--red-light);
}

/* Current State — unified dual-lane board */
.goal-state-board {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border: 1px solid rgba(200, 16, 46, 0.12);
  border-radius: 0 0 24px 24px;
  border-top: none;
  box-shadow: 0 16px 48px rgba(16, 8, 9, 0.06);
  overflow: hidden;
}

.goal-state-board-intro {
  display: none;
}

.goal-state-board-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
}

.goal-state-lane {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.65rem 1.65rem;
  min-height: 100%;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.goal-state-lane--exists {
  background: linear-gradient(165deg, rgba(34, 120, 70, 0.07) 0%, rgba(255, 255, 255, 0.92) 55%);
}

.goal-state-lane--friction {
  background: linear-gradient(195deg, rgba(200, 16, 46, 0.05) 0%, rgba(255, 255, 255, 0.92) 55%);
}

.goal-state-bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  gap: 0.45rem;
  padding: 1rem 0.55rem;
  background: rgba(200, 16, 46, 0.035);
  border-left: 1px solid rgba(200, 16, 46, 0.08);
  border-right: 1px solid rgba(200, 16, 46, 0.08);
}

.goal-state-bridge-line {
  width: 1px;
  flex: 1;
  min-height: 28px;
  background: linear-gradient(180deg, transparent, rgba(200, 16, 46, 0.28), transparent);
}

.goal-state-bridge-badge {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red);
  padding: 0.38rem 0.65rem;
  border: 1px solid rgba(200, 16, 46, 0.2);
  border-radius: 999px;
  background: var(--white);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(200, 16, 46, 0.08);
}

.goal-state-lane-header {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.goal-state-lane-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.goal-state-lane-icon svg {
  width: 20px;
  height: 20px;
}

.goal-state-lane--exists .goal-state-lane-icon {
  background: rgba(34, 120, 70, 0.14);
  color: #1a7a45;
}

.goal-state-lane--friction .goal-state-lane-icon {
  background: rgba(200, 16, 46, 0.12);
  color: var(--red);
}

.goal-state-lane-heading {
  flex: 1;
  min-width: 0;
}

.goal-state-lane-kicker {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}

.goal-state-lane--exists .goal-state-lane-kicker { color: #1a7a45; }
.goal-state-lane--friction .goal-state-lane-kicker { color: var(--red); }

.goal-state-lane-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  color: var(--gray-900);
}

.goal-state-lane-count {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  line-height: 1;
  font-weight: 400;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.goal-state-lane--exists .goal-state-lane-count {
  color: #1a7a45;
  background: rgba(34, 120, 70, 0.1);
  border-color: rgba(34, 120, 70, 0.2);
}

.goal-state-lane--friction .goal-state-lane-count {
  color: var(--red);
  background: rgba(200, 16, 46, 0.08);
  border-color: rgba(200, 16, 46, 0.18);
}

.goal-state-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.goal-state-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 0.95rem;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.25s;
  counter-increment: state-item;
}

.goal-state-items {
  counter-reset: state-item;
}

.goal-state-lane--exists .goal-state-item-marker {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  margin-top: 0.1em;
  background: rgba(34, 120, 70, 0.12);
  color: #1a7a45;
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  flex-shrink: 0;
}

.goal-state-lane--exists .goal-state-item-marker::before {
  content: counter(state-item);
}

.goal-state-lane--friction .goal-state-item-marker {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  margin-top: 0.1em;
  background: rgba(200, 16, 46, 0.1);
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: none;
  flex-shrink: 0;
}

.goal-state-lane--friction .goal-state-item-marker::before {
  content: counter(state-item);
}

.goal-state-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.goal-state-lane--exists .goal-state-item {
  border-color: rgba(34, 120, 70, 0.12);
}

.goal-state-lane--friction .goal-state-item {
  border-color: rgba(200, 16, 46, 0.1);
}

.goal-state-items.goal-state-list li {
  padding-left: 0;
}

.goal-state-items.goal-state-list li::before {
  display: none;
}

.goal-state-item-text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #2a2a2a;
  font-weight: 500;
}

/* Dark stage — state board */
.goal-assessment-stage--dark .goal-state-board {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.goal-assessment-stage--dark .goal-state-board-intro {
  display: none;
}

.goal-assessment-stage--dark .goal-state-lane--exists {
  background: linear-gradient(165deg, rgba(34, 120, 70, 0.12) 0%, rgba(255, 255, 255, 0.02) 55%);
  border: none;
  box-shadow: none;
}

.goal-assessment-stage--dark .goal-state-lane--friction {
  background: linear-gradient(195deg, rgba(200, 16, 46, 0.1) 0%, rgba(255, 255, 255, 0.02) 55%);
  border: none;
  box-shadow: none;
}

.goal-assessment-stage--dark .goal-state-bridge {
  background: rgba(255, 255, 255, 0.03);
  border-left-color: rgba(255, 255, 255, 0.08);
  border-right-color: rgba(255, 255, 255, 0.08);
}

.goal-assessment-stage--dark .goal-state-bridge-line {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.goal-assessment-stage--dark .goal-state-bridge-badge {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(200, 16, 46, 0.35);
  color: var(--red-light);
  box-shadow: none;
}

.goal-assessment-stage--dark .goal-state-lane-header {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.goal-assessment-stage--dark .goal-state-lane--exists .goal-state-lane-icon {
  background: rgba(34, 120, 70, 0.22);
  color: #5ecf8a;
}

.goal-assessment-stage--dark .goal-state-lane--friction .goal-state-lane-icon {
  background: rgba(200, 16, 46, 0.2);
  color: var(--red-light);
}

.goal-assessment-stage--dark .goal-state-lane--exists .goal-state-lane-kicker { color: #5ecf8a; }
.goal-assessment-stage--dark .goal-state-lane--friction .goal-state-lane-kicker { color: var(--red-light); }

.goal-assessment-stage--dark .goal-state-lane-title { color: var(--white); }

.goal-assessment-stage--dark .goal-state-lane--exists .goal-state-lane-count {
  color: #5ecf8a;
  background: rgba(34, 120, 70, 0.18);
  border-color: rgba(34, 120, 70, 0.3);
}

.goal-assessment-stage--dark .goal-state-lane--friction .goal-state-lane-count {
  color: var(--red-light);
  background: rgba(200, 16, 46, 0.16);
  border-color: rgba(200, 16, 46, 0.28);
}

.goal-assessment-stage--dark .goal-state-item {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.goal-assessment-stage--dark .goal-state-lane--exists .goal-state-item {
  border-color: rgba(34, 120, 70, 0.22);
}

.goal-assessment-stage--dark .goal-state-lane--friction .goal-state-item {
  border-color: rgba(200, 16, 46, 0.2);
}

.goal-assessment-stage--dark .goal-state-item-text {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.goal-assessment-stage--dark .goal-state-lane--exists .goal-state-item-marker {
  background: rgba(34, 120, 70, 0.22);
  color: #5ecf8a;
}

.goal-assessment-stage--dark .goal-state-lane--friction .goal-state-item-marker {
  background: rgba(200, 16, 46, 0.2);
  color: var(--red-light);
}

.goal-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.section-dark .goal-tag { color: var(--red-light); }

.goal-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.section-dark .goal-title { color: var(--white); }

.goal-lead {
  font-size: 1rem;
  line-height: 1.65;
  color: #333333;
  max-width: 720px;
  font-weight: 500;
}

.goal-assessment-stage--dark .goal-lead { color: rgba(255, 255, 255, 0.85); }

.section-dark .goal-lead { color: rgba(255, 255, 255, 0.65); }

/* Score matrix */
.score-matrix {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.matrix-row {
  display: grid;
  grid-template-columns: 160px 1fr 36px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem 1.25rem;
  background: var(--white);
  border: 1px solid rgba(200, 16, 46, 0.1);
  border-radius: 12px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.score-matrix--dark .matrix-row {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.matrix-row:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(200, 16, 46, 0.08);
}

.matrix-dim {
  font-size: 0.72rem;
  font-weight: 650;
  color: var(--gray-900);
  white-space: nowrap;
}

.score-matrix--dark .matrix-dim { color: rgba(255, 255, 255, 0.85); }

.matrix-bar {
  height: 6px;
  background: rgba(200, 16, 46, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.score-matrix--dark .matrix-bar { background: rgba(255, 255, 255, 0.1); }

.matrix-fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--red-dark), var(--red-light));
  border-radius: 3px;
}

.matrix-score {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--red);
  text-align: center;
}

.score-matrix--dark .matrix-score { color: var(--red-light); }

.matrix-note {
  font-size: 0.72rem;
  color: var(--gray-600);
  line-height: 1.4;
}

.score-matrix--dark .matrix-note { color: rgba(255, 255, 255, 0.5); }

/* Finding panel */
.finding-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 2rem 2.25rem;
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.05) 0%, var(--white) 100%);
  border: 1px solid rgba(200, 16, 46, 0.2);
  border-radius: 16px;
  border-left: 4px solid var(--red);
}

.finding-panel--dark {
  background: rgba(200, 16, 46, 0.12);
  border-color: rgba(200, 16, 46, 0.35);
}

.finding-icon {
  width: 44px;
  height: 44px;
  color: var(--red);
  flex-shrink: 0;
}

.finding-panel--dark .finding-icon { color: var(--red-light); }

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

.finding-panel h3 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 0.65rem;
}

.finding-panel--dark h3 { color: var(--red-light); }

.finding-panel p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin: 0;
}

.finding-panel--dark p { color: rgba(255, 255, 255, 0.8); }

/* KPI grid */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.kpi-card {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid rgba(200, 16, 46, 0.12);
  border-radius: 14px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.kpi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(200, 16, 46, 0.1);
}

.kpi-card h3 {
  font-size: 0.85rem;
  font-weight: 650;
  color: var(--black-soft);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.kpi-card p {
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--gray-600);
  margin: 0;
}

/* Goal assessment flow — Exists / Friction / Finding */
.goal-assessment-flow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.goal-state-card {
  padding: 1.75rem 1.5rem;
  border-radius: 16px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.goal-state-card:hover {
  transform: translateY(-4px);
}

.goal-state-card--exists {
  background: linear-gradient(145deg, rgba(34, 120, 70, 0.06) 0%, var(--white) 55%);
  border: 1px solid rgba(34, 120, 70, 0.22);
  box-shadow: 0 4px 24px rgba(34, 120, 70, 0.08);
}

.section-dark .goal-state-card--exists {
  background: linear-gradient(145deg, rgba(34, 120, 70, 0.12) 0%, rgba(255, 255, 255, 0.05) 55%);
  border-color: rgba(34, 120, 70, 0.35);
  box-shadow: none;
}

.goal-state-card--friction {
  background: linear-gradient(145deg, rgba(200, 16, 46, 0.04) 0%, var(--white) 55%);
  border: 1px solid rgba(200, 16, 46, 0.15);
  box-shadow: 0 4px 24px rgba(200, 16, 46, 0.05);
}

.section-dark .goal-state-card--friction {
  background: linear-gradient(145deg, rgba(200, 16, 46, 0.1) 0%, rgba(255, 255, 255, 0.04) 55%);
  border-color: rgba(200, 16, 46, 0.28);
  box-shadow: none;
}

.goal-state-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.goal-state-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.goal-state-icon svg { width: 20px; height: 20px; }

.goal-state-icon--exists {
  background: rgba(34, 120, 70, 0.12);
  color: #1a7a45;
}

.goal-state-icon--friction {
  background: rgba(200, 16, 46, 0.1);
  color: var(--red);
}

.section-dark .goal-state-icon--exists { color: #5ecf8a; }
.section-dark .goal-state-icon--friction { color: var(--red-light); }

.goal-state-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.goal-state-card--exists .goal-state-label { color: #1a7a45; }
.goal-state-card--friction .goal-state-label { color: var(--red); }

.section-dark .goal-state-card--exists .goal-state-label { color: #5ecf8a; }
.section-dark .goal-state-card--friction .goal-state-label { color: var(--red-light); }

.goal-state-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.goal-state-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--gray-700);
}

.section-dark .goal-state-list li { color: rgba(255, 255, 255, 0.78); }

.goal-state-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1a7a45;
}

.goal-state-list--friction li::before { background: var(--red); }

.section-dark .goal-state-list li::before { background: #5ecf8a; }
.section-dark .goal-state-list--friction li::before { background: var(--red-light); }

/* Assessment Finding — executive report layout (static, no hover motion) */
.goal-view--finding .finding-report {
  border-radius: 0 0 24px 24px;
  border-top: none;
  margin-top: 0;
}

.finding-report {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "header"
    "scores"
    "reality"
    "imperatives";
  gap: 0;
  background: var(--white);
  border: 1px solid rgba(200, 16, 46, 0.1);
  box-shadow: 0 12px 40px rgba(16, 8, 9, 0.05);
  padding: 2rem 2.25rem 2.5rem;
  transform: none;
}

.finding-report--dark {
  background: rgba(20, 10, 12, 0.98);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.finding-report-header {
  grid-area: header;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.finding-report--dark .finding-report-header {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.finding-report-kicker {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
}

.finding-report--dark .finding-report-kicker {
  color: var(--red-light);
}

.finding-report-composite {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  padding: 0.55rem 1.1rem;
  background: rgba(200, 16, 46, 0.06);
  border: 1px solid rgba(200, 16, 46, 0.14);
  border-radius: 12px;
}

.finding-report--dark .finding-report-composite {
  background: rgba(200, 16, 46, 0.14);
  border-color: rgba(232, 53, 79, 0.28);
}

.finding-report-composite-num {
  font-family: var(--font-serif);
  font-size: 2.85rem;
  line-height: 1;
  color: var(--red);
}

.finding-report--dark .finding-report-composite-num {
  color: var(--red-light);
}

.finding-report-composite-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.finding-report--dark .finding-report-composite-label {
  color: rgba(255, 255, 255, 0.78);
}

.finding-report-scores {
  grid-area: scores;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 1.75rem;
  padding: 0 0 1.5rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0;
}

.finding-report--dark .finding-report-scores {
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.finding-report-score {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  padding: 0.85rem 0.9rem;
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  transform: none;
  min-height: 100%;
}

.finding-report-score--strong {
  background: rgba(26, 122, 69, 0.06);
  border-color: rgba(26, 122, 69, 0.18);
}

.finding-report--dark .finding-report-score {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.finding-report--dark .finding-report-score--strong {
  background: rgba(94, 207, 138, 0.08);
  border-color: rgba(94, 207, 138, 0.22);
}

.finding-report-score-val {
  order: -1;
  font-family: var(--font-serif);
  font-size: 1.65rem;
  line-height: 1;
  color: var(--red);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}

.finding-report-score--strong .finding-report-score-val {
  color: #1a7a45;
}

.finding-report--dark .finding-report-score-val {
  color: var(--red-light);
}

.finding-report--dark .finding-report-score--strong .finding-report-score-val {
  color: #5ecf8a;
}

.finding-report-score-name {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  color: #2a2a2a;
}

.finding-report--dark .finding-report-score-name {
  color: rgba(255, 255, 255, 0.88);
}

.finding-report-score-track {
  display: none;
}

.finding-report-score-fill {
  display: none;
}

.finding-report-section {
  margin-bottom: 0;
}

.finding-report-section--reality {
  grid-area: reality;
}

.finding-report-section--imperatives {
  grid-area: imperatives;
}

.finding-report-section-title {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin: 0 0 1rem;
}

.finding-report--dark .finding-report-section-title {
  color: var(--red-light);
}

.finding-report-section--reality {
  padding: 1.35rem 1.4rem;
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
}

.finding-report--dark .finding-report-section--reality {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.finding-report-prose {
  font-size: 1rem;
  line-height: 1.7;
  color: #1a1a1a;
  margin: 0;
}

.finding-report-prose strong {
  color: #100809;
  font-weight: 700;
}

.finding-report--dark .finding-report-prose {
  color: rgba(255, 255, 255, 0.94);
}

.finding-report--dark .finding-report-prose strong {
  color: #ffffff;
}

.finding-report-lead {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #2a2a2a;
  margin: 0 0 1.15rem;
  font-weight: 500;
}

.finding-report--dark .finding-report-lead {
  color: rgba(255, 255, 255, 0.86);
}

.finding-report-actions {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.finding-report-action {
  display: grid;
  grid-template-columns: 7.25rem 1fr;
  gap: 0.4rem 1.15rem;
  align-items: start;
  padding: 1.15rem 1.25rem;
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 12px;
  border-left: 3px solid var(--red);
  transform: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.finding-report-action:hover {
  transform: none;
  translate: none;
}

.finding-report--dark .finding-report-action {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  border-left-color: var(--red-light);
}

.finding-report-action-tag {
  display: inline-block;
  align-self: start;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(200, 16, 46, 0.08);
  border: 1px solid rgba(200, 16, 46, 0.16);
  border-radius: 6px;
  padding: 0.3rem 0.5rem;
}

.finding-report--dark .finding-report-action-tag {
  color: var(--red-light);
  background: rgba(200, 16, 46, 0.18);
  border-color: rgba(200, 16, 46, 0.32);
}

.finding-report-action-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.finding-report-action-title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: #100809;
}

.finding-report--dark .finding-report-action-title {
  color: #ffffff;
}

.finding-report-action-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #333333;
  margin: 0;
  font-weight: 400;
}

.finding-report--dark .finding-report-action-desc {
  color: rgba(255, 255, 255, 0.84);
}

@media (min-width: 960px) {
  .finding-report {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
      "header header"
      "scores scores"
      "reality imperatives";
    column-gap: 1.75rem;
    row-gap: 0;
  }

  .finding-report-scores {
    margin-bottom: 1.75rem;
  }

  .finding-report-section--reality {
    align-self: start;
  }

  .finding-report-section--imperatives {
    padding-top: 0.15rem;
  }
}

.insight-banner--positive {
  background: transparent;
  border-color: rgba(34, 120, 70, 0.14);
}

.insight-hero.insight-banner--positive .insight-hero-glow {
  background:
    radial-gradient(ellipse 70% 80% at 0% 0%, rgba(34, 120, 70, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 100% 100%, rgba(200, 16, 46, 0.1) 0%, transparent 50%);
}

.insight-hero.insight-banner--positive .insight-icon-wrap {
  background: linear-gradient(145deg, rgba(34, 120, 70, 0.14) 0%, rgba(34, 120, 70, 0.04) 100%);
  border-color: rgba(34, 120, 70, 0.18);
  box-shadow: 0 8px 24px rgba(34, 120, 70, 0.12);
}

.insight-hero.insight-banner--positive .insight-icon {
  color: #1a7a45;
}

.systems-chip--positive {
  border-color: rgba(34, 120, 70, 0.15);
}

.systems-chip--positive:hover {
  border-color: rgba(34, 120, 70, 0.35);
  box-shadow: 0 6px 24px rgba(34, 120, 70, 0.08);
}

@media (max-width: 960px) {
  .dimensions-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #dimensions .dimensions-intro .section-title,
  #dimensions .dimensions-intro .section-lead {
    text-align: left;
  }

  .dimension-scale--stacked {
    align-items: flex-start;
  }

  .dimensions-orbit {
    aspect-ratio: auto;
    min-height: 0;
    max-width: none;
  }

  .dimensions-orbit-visual,
  .dimensions-orbit-hub {
    display: none;
  }

  .dimensions-orbit-nodes {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .dimension-orbit-node {
    position: static;
    width: 100%;
    transform: none !important;
  }
}

@media (max-width: 1200px) {
  .dimensions-grid--five { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1100px) {
  .overview-board {
    grid-template-columns: 1fr;
  }

  .overview-column--position {
    border-right: none;
    border-bottom: 1px solid rgba(200, 16, 46, 0.08);
  }

  .overview-column--position .position-milestones {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .finding-report-scores {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .finding-report-action {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .dimensions-grid--five { grid-template-columns: repeat(3, 1fr); }
  .finding-body { grid-template-columns: 1fr; }
  .goal-state-board-grid { grid-template-columns: 1fr; }
  .goal-state-lane--exists {
    border-bottom: 1px solid rgba(200, 16, 46, 0.08);
  }
  .goal-state-bridge {
    flex-direction: row;
    padding: 0.75rem 1.25rem;
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(200, 16, 46, 0.08);
    border-bottom: 1px solid rgba(200, 16, 46, 0.08);
  }
  .goal-state-bridge-line {
    width: auto;
    height: 1px;
    flex: 1;
    min-height: 0;
    background: linear-gradient(90deg, transparent, rgba(200, 16, 46, 0.28), transparent);
  }
  .goal-assessment-stage--dark .goal-state-bridge-line {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  }
  .insight-stats { grid-template-columns: repeat(2, 1fr); }
  .overview-stats { grid-template-columns: repeat(2, 1fr); }
  .position-metrics-ribbon { grid-template-columns: repeat(2, 1fr); }
  .position-metric:nth-child(2) { border-right: none; }
  .position-metric:nth-child(odd) { border-right: 1px solid rgba(200, 16, 46, 0.1); }
  .overview-column--position .position-milestones { grid-template-columns: 1fr; }
  .position-milestone--horizon { grid-column: 1; }
  .capability-list { grid-template-columns: 1fr; }
  .insight-hero-inner { grid-template-columns: 1fr; }
  .goal-assessment-flow { grid-template-columns: 1fr; }
  .systems-grid { grid-template-columns: repeat(2, 1fr); }
  .dimensions-grid { grid-template-columns: repeat(2, 1fr); }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .insight-banner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .finding-report {
    padding: 1.5rem 1.25rem 1.75rem;
  }

  .finding-report-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .finding-report-scores {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dimensions-grid--five { grid-template-columns: 1fr; }
  .insight-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 420px) {
  .finding-report-scores {
    grid-template-columns: 1fr;
  }
}

/* PDF screenshot export */
body.pdf-export-active {
  min-width: 1280px;
}

body.pdf-export-active .section,
body.pdf-export-active #assessments,
body.pdf-export-active .assessment-pdf-capture {
  overflow: visible !important;
}

body.pdf-export-active .goal-panel.is-active {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}

body.pdf-export-active .goal-state-board,
body.pdf-export-active .goal-state-item,
body.pdf-export-active .finding-report,
body.pdf-export-active .goal-pill,
body.pdf-export-active #insight .position-milestone-body p,
body.pdf-export-active #insight .capability-item-text span,
body.pdf-export-active #insight .overview-column-lead,
body.pdf-capture-mode #insight .position-milestone-body p,
body.pdf-capture-mode #insight .capability-item-text span,
body.pdf-capture-mode #insight .overview-column-lead {
  opacity: 1 !important;
  transform: none !important;
  color: #2a2a2a !important;
}

body.pdf-export-active #insight .position-milestone-body strong,
body.pdf-export-active #insight .capability-item-text strong,
body.pdf-export-active #insight .overview-column-title,
body.pdf-capture-mode #insight .position-milestone-body strong,
body.pdf-capture-mode #insight .capability-item-text strong,
body.pdf-capture-mode #insight .overview-column-title {
  color: #100809 !important;
}

body.pdf-export-active .capability-item,
body.pdf-export-active .overview-board,
body.pdf-export-active .capability-card,
body.pdf-export-active .systems-chip {
  opacity: 1 !important;
  transform: none !important;
}

body.pdf-export-active .hero-title,
body.pdf-export-active .hero-item,
body.pdf-export-active .hero-content,
body.pdf-export-active .hero-stat,
body.pdf-export-active .hero-badge,
body.pdf-export-active .hero-eyebrow,
body.pdf-export-active .hero-subtitle,
body.pdf-export-active .hero-actions,
body.pdf-capture-mode .hero-title,
body.pdf-capture-mode .hero-item,
body.pdf-capture-mode .hero-content,
body.pdf-capture-mode .hero-stat {
  opacity: 1 !important;
  transform: none !important;
  transform-style: flat !important;
  perspective: none !important;
}

body.pdf-export-active .hero-orb,
body.pdf-export-active .hero-bg,
body.pdf-capture-mode .hero-orb,
body.pdf-capture-mode .hero-bg {
  display: none !important;
}

body.pdf-export-active .hero-title em,
body.pdf-capture-mode .hero-title em {
  display: block !important;
  opacity: 1 !important;
  transform: none !important;
}

body.pdf-export-active .title-word,
body.pdf-export-active .section-header,
body.pdf-export-active .section-header *,
body.pdf-capture-mode .title-word,
body.pdf-capture-mode .section-header,
body.pdf-capture-mode .section-header * {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

body.pdf-export-active .nav,
body.pdf-capture-mode .nav {
  visibility: hidden !important;
  pointer-events: none !important;
}

body.pdf-export-active .goal-assessment-stage--dark .goal-panel.is-active,
body.pdf-export-active .goal-assessment-stage--dark .goal-panel.is-active *,
body.pdf-capture-mode .goal-assessment-stage--dark .goal-panel.is-active,
body.pdf-capture-mode .goal-assessment-stage--dark .goal-panel.is-active * {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

body.pdf-export-active .goal-assessment-stage--light .goal-panel.is-active .goal-state-item-text,
body.pdf-capture-mode .goal-assessment-stage--light .goal-panel.is-active .goal-state-item-text {
  color: #444444 !important;
}

body.pdf-export-active .goal-assessment-stage--light .goal-panel.is-active .goal-title,
body.pdf-capture-mode .goal-assessment-stage--light .goal-panel.is-active .goal-title {
  color: #100809 !important;
}

body.pdf-export-active .goal-assessment-stage--light .goal-panel.is-active .goal-lead,
body.pdf-capture-mode .goal-assessment-stage--light .goal-panel.is-active .goal-lead {
  color: #444444 !important;
}

body.pdf-export-active .goal-assessment-stage--dark .goal-panel.is-active .goal-state-item-text,
body.pdf-capture-mode .goal-assessment-stage--dark .goal-panel.is-active .goal-state-item-text {
  color: #ececec !important;
}

body.pdf-export-active .goal-assessment-stage--dark .goal-panel.is-active .goal-title,
body.pdf-export-active .goal-assessment-stage--dark .goal-panel.is-active .goal-state-lane-title,
body.pdf-export-active .goal-assessment-stage--dark .goal-panel.is-active .goal-view-label,
body.pdf-capture-mode .goal-assessment-stage--dark .goal-panel.is-active .goal-title,
body.pdf-capture-mode .goal-assessment-stage--dark .goal-panel.is-active .goal-state-lane-title,
body.pdf-capture-mode .goal-assessment-stage--dark .goal-panel.is-active .goal-view-label {
  color: #ffffff !important;
}

body.pdf-export-active .goal-assessment-stage--dark .goal-panel.is-active .goal-lead,
body.pdf-capture-mode .goal-assessment-stage--dark .goal-panel.is-active .goal-lead {
  color: #ececec !important;
}

body.pdf-export-active .goal-assessment-stage--dark .goal-panel.is-active .goal-dimension-board-lead,
body.pdf-export-active .goal-assessment-stage--dark .goal-panel.is-active .goal-dim-ledger-item p,
body.pdf-export-active .goal-assessment-stage--dark .goal-panel.is-active .goal-execution-lead,
body.pdf-export-active .goal-assessment-stage--dark .goal-panel.is-active .goal-imperative-desc,
body.pdf-export-active .goal-assessment-stage--dark .goal-panel.is-active .goal-pilot-summary,
body.pdf-export-active .goal-assessment-stage--dark .goal-panel.is-active .goal-pilot-step-detail,
body.pdf-export-active .goal-assessment-stage--dark .goal-panel.is-active .goal-pilot-focus-text,
body.pdf-export-active .goal-assessment-stage--dark .goal-panel.is-active .goal-pilot-outcomes-list li,
body.pdf-capture-mode .goal-assessment-stage--dark .goal-panel.is-active .goal-dimension-board-lead,
body.pdf-capture-mode .goal-assessment-stage--dark .goal-panel.is-active .goal-dim-ledger-item p,
body.pdf-capture-mode .goal-assessment-stage--dark .goal-panel.is-active .goal-execution-lead,
body.pdf-capture-mode .goal-assessment-stage--dark .goal-panel.is-active .goal-imperative-desc,
body.pdf-capture-mode .goal-assessment-stage--dark .goal-panel.is-active .goal-pilot-summary,
body.pdf-capture-mode .goal-assessment-stage--dark .goal-panel.is-active .goal-pilot-step-detail,
body.pdf-capture-mode .goal-assessment-stage--dark .goal-panel.is-active .goal-pilot-focus-text,
body.pdf-capture-mode .goal-assessment-stage--dark .goal-panel.is-active .goal-pilot-outcomes-list li {
  color: #ececec !important;
}

body.pdf-export-active .goal-assessment-stage--light .goal-panel.is-active .goal-dim-ledger-item p,
body.pdf-export-active .goal-assessment-stage--light .goal-panel.is-active .goal-imperative-desc,
body.pdf-export-active .goal-assessment-stage--light .goal-panel.is-active .goal-pilot-step-detail,
body.pdf-capture-mode .goal-assessment-stage--light .goal-panel.is-active .goal-dim-ledger-item p,
body.pdf-capture-mode .goal-assessment-stage--light .goal-panel.is-active .goal-imperative-desc,
body.pdf-capture-mode .goal-assessment-stage--light .goal-panel.is-active .goal-pilot-step-detail {
  color: #444444 !important;
}

body.pdf-export-active .goal-assessment-stage--dark .goal-panel.is-active .goal-dimension-board-title,
body.pdf-export-active .goal-assessment-stage--dark .goal-panel.is-active .goal-dim-brief-name,
body.pdf-export-active .goal-assessment-stage--dark .goal-panel.is-active .goal-execution-title,
body.pdf-export-active .goal-assessment-stage--dark .goal-panel.is-active .goal-pilot-name,
body.pdf-export-active .goal-assessment-stage--dark .goal-panel.is-active .goal-imperative-title,
body.pdf-capture-mode .goal-assessment-stage--dark .goal-panel.is-active .goal-dimension-board-title,
body.pdf-capture-mode .goal-assessment-stage--dark .goal-panel.is-active .goal-dim-brief-name,
body.pdf-capture-mode .goal-assessment-stage--dark .goal-panel.is-active .goal-execution-title,
body.pdf-capture-mode .goal-assessment-stage--dark .goal-panel.is-active .goal-pilot-name,
body.pdf-capture-mode .goal-assessment-stage--dark .goal-panel.is-active .goal-imperative-title {
  color: #ffffff !important;
}

body.pdf-export-active .goal-assessment-stage--dark .goal-panel.is-active .finding-report--dark .finding-report-prose,
body.pdf-export-active .goal-assessment-stage--dark .goal-panel.is-active .finding-report--dark .finding-report-lead,
body.pdf-export-active .goal-assessment-stage--dark .goal-panel.is-active .finding-report--dark .finding-report-action-desc,
body.pdf-capture-mode .goal-assessment-stage--dark .goal-panel.is-active .finding-report--dark .finding-report-prose,
body.pdf-capture-mode .goal-assessment-stage--dark .goal-panel.is-active .finding-report--dark .finding-report-lead,
body.pdf-capture-mode .goal-assessment-stage--dark .goal-panel.is-active .finding-report--dark .finding-report-action-desc {
  color: #ececec !important;
}

body.pdf-export-active .goal-assessment-stage--dark .goal-panel.is-active .finding-report--dark .finding-report-score-name,
body.pdf-capture-mode .goal-assessment-stage--dark .goal-panel.is-active .finding-report--dark .finding-report-score-name {
  color: #d0d0d0 !important;
}

body.pdf-export-active .scroll-indicator,
body.pdf-capture-mode .scroll-indicator {
  display: none !important;
}

body.pdf-export-active .reveal-up,
body.pdf-export-active .reveal-left,
body.pdf-export-active .anim-card:not(.dimension-orbit-node),
body.pdf-capture-mode .reveal-up,
body.pdf-capture-mode .reveal-left,
body.pdf-capture-mode .anim-card:not(.dimension-orbit-node) {
  opacity: 1 !important;
  transform: none !important;
}

body.pdf-export-active #dimensions,
body.pdf-export-active #dimensions .dimensions-layout,
body.pdf-export-active #dimensions .dimensions-visual,
body.pdf-export-active #dimensions .dimensions-orbit,
body.pdf-export-active #dimensions .dimensions-orbit-nodes,
body.pdf-capture-mode #dimensions,
body.pdf-capture-mode #dimensions .dimensions-layout,
body.pdf-capture-mode #dimensions .dimensions-visual,
body.pdf-capture-mode #dimensions .dimensions-orbit,
body.pdf-capture-mode #dimensions .dimensions-orbit-nodes {
  overflow: visible !important;
}

body.pdf-export-active .dimension-orbit-node,
body.pdf-capture-mode .dimension-orbit-node {
  opacity: 1 !important;
  visibility: visible !important;
}

body.pdf-export-active .dimension-orbit-card,
body.pdf-capture-mode .dimension-orbit-card {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

body.pdf-export-active .nav,
body.pdf-export-active .cursor-glow,
body.pdf-export-active #particles,
body.pdf-capture-mode .nav {
  display: none !important;
}

body.pdf-export-active .goal-nav,
body.pdf-export-active .goal-view-nav,
body.pdf-capture-mode .goal-nav,
body.pdf-capture-mode .goal-view-nav {
  display: none !important;
}

body.pdf-export-active .future-vision-nav,
body.pdf-capture-mode .future-vision-nav {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

body.pdf-export-active #futureVisionStage,
body.pdf-export-active .future-vision-panels,
body.pdf-export-active .future-vision-panel.is-active,
body.pdf-capture-mode #futureVisionStage,
body.pdf-capture-mode .future-vision-panels,
body.pdf-capture-mode .future-vision-panel.is-active {
  overflow: visible !important;
  max-height: none !important;
}

body.pdf-export-active .future-vision-panel.is-active,
body.pdf-capture-mode .future-vision-panel.is-active {
  display: block !important;
}

body.pdf-export-active .fv-kpi-grid,
body.pdf-export-active .fv-timeline,
body.pdf-capture-mode .fv-kpi-grid,
body.pdf-capture-mode .fv-timeline {
  overflow: visible !important;
}

body.pdf-export-active .future-vision-section,
body.pdf-export-active .future-vision-section .container,
body.pdf-export-active .future-vision-stage,
body.pdf-export-active .future-vision-panels,
body.pdf-export-active .future-vision-panel,
body.pdf-capture-mode .future-vision-section,
body.pdf-capture-mode .future-vision-section .container,
body.pdf-capture-mode .future-vision-stage,
body.pdf-capture-mode .future-vision-panels,
body.pdf-capture-mode .future-vision-panel {
  overflow: visible !important;
}

body.pdf-export-active .future-vision-panel,
body.pdf-export-active .future-vision-panel *,
body.pdf-export-active .fv-summary,
body.pdf-export-active .fv-summary *,
body.pdf-export-active .fv-rank-card,
body.pdf-export-active .goal-current-state-diagram,
body.pdf-export-active .goal-imperatives-board,
body.pdf-export-active .goal-imperatives-board *,
body.pdf-export-active .goal-pilot-brief,
body.pdf-export-active .goal-pilot-brief *,
body.pdf-capture-mode .future-vision-panel,
body.pdf-capture-mode .future-vision-panel *,
body.pdf-capture-mode .fv-summary,
body.pdf-capture-mode .fv-summary *,
body.pdf-capture-mode .fv-rank-card,
body.pdf-capture-mode .goal-current-state-diagram,
body.pdf-capture-mode .goal-imperatives-board,
body.pdf-capture-mode .goal-imperatives-board *,
body.pdf-capture-mode .goal-pilot-brief,
body.pdf-capture-mode .goal-pilot-brief * {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  visibility: visible !important;
}

body.pdf-export-active .goal-current-state-diagram-img,
body.pdf-export-active .pilot-brief-architecture-img,
body.pdf-capture-mode .goal-current-state-diagram-img,
body.pdf-capture-mode .pilot-brief-architecture-img {
  max-width: 100% !important;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}

body.pdf-export-active .goal-current-state-diagram,
body.pdf-export-active .pilot-brief-architecture,
body.pdf-export-active .pilot-brief-chapter,
body.pdf-export-active .fv-plan,
body.pdf-export-active .fv-target,
body.pdf-capture-mode .goal-current-state-diagram,
body.pdf-capture-mode .pilot-brief-architecture,
body.pdf-capture-mode .pilot-brief-chapter,
body.pdf-capture-mode .fv-plan,
body.pdf-capture-mode .fv-target {
  overflow: visible !important;
  max-height: none !important;
}

body.pdf-export-active .goal-pilot-brief,
body.pdf-export-active .future-vision-panel,
body.pdf-capture-mode .goal-pilot-brief,
body.pdf-capture-mode .future-vision-panel {
  overflow: visible !important;
}

body.pdf-export-active .pilot-brief-roadmap-continued,
body.pdf-export-active .fv-section-continued,
body.pdf-capture-mode .pilot-brief-roadmap-continued,
body.pdf-capture-mode .fv-section-continued {
  margin: 0.5rem 0 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888 !important;
}

body.pdf-export-active .fv-summary-bridge-glow,
body.pdf-export-active .fv-summary-bridge-pulse,
body.pdf-capture-mode .fv-summary-bridge-glow,
body.pdf-capture-mode .fv-summary-bridge-pulse {
  animation: none !important;
  opacity: 1 !important;
}

body.pdf-export-active .goal-dim-flip-scene,
body.pdf-capture-mode .goal-dim-flip-scene {
  perspective: none !important;
}

body.pdf-export-active .goal-dim-flip-inner,
body.pdf-export-active .goal-dim-flip-face,
body.pdf-export-active .goal-insight-card,
body.pdf-export-active .goal-insight-copy,
body.pdf-export-active .goal-insight-copy *,
body.pdf-capture-mode .goal-dim-flip-inner,
body.pdf-capture-mode .goal-dim-flip-face,
body.pdf-capture-mode .goal-insight-card,
body.pdf-capture-mode .goal-insight-copy,
body.pdf-capture-mode .goal-insight-copy * {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  visibility: visible !important;
}

body.pdf-export-active .goal-dim-flip-watermark,
body.pdf-capture-mode .goal-dim-flip-watermark {
  display: none !important;
}

body.pdf-export-active .goal-dim-flip-inner,
body.pdf-capture-mode .goal-dim-flip-inner {
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
}

body.pdf-export-active .goal-dim-flip-face--front,
body.pdf-export-active .goal-dim-flip-face--back,
body.pdf-capture-mode .goal-dim-flip-face--front,
body.pdf-capture-mode .goal-dim-flip-face--back {
  display: flex !important;
  position: relative !important;
}

body.pdf-export-active .goal-dim-flip-btn,
body.pdf-capture-mode .goal-dim-flip-btn {
  display: none !important;
}

body.pdf-export-active .goal-dim-brief-grid,
body.pdf-capture-mode .goal-dim-brief-grid {
  grid-template-columns: 1fr !important;
}

/* ================================================================
   EXECUTIVE FINDINGS
   ================================================================ */
.findings-page {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.findings-rollup {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #fdf8f8 100%);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.findings-rollup-ring {
  flex-shrink: 0;
  align-self: center;
}

.findings-rollup .score-ring-lg {
  width: 148px;
  height: 148px;
}

.findings-rollup .score-ring-lg .ring-value {
  font-size: 2.5rem;
  line-height: 1;
}

.findings-rollup .score-ring-lg .ring-sub {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--gray-600);
  margin-top: 0.35rem;
}

.findings-rollup-kicker {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.findings-rollup-copy h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.findings-rollup-copy p {
  font-size: 0.925rem;
  line-height: 1.65;
  color: var(--gray-700);
  max-width: 640px;
}

.findings-headlines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.findings-headline {
  padding: 1.5rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s;
}

.findings-headline:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  border-color: rgba(200, 16, 46, 0.18);
}

.findings-headline-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red);
  background: var(--red-subtle);
  border-radius: 8px;
}

.findings-headline h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 0.55rem;
}

.findings-headline p {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--gray-700);
}

@media (max-width: 960px) {
  .findings-rollup {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .findings-rollup-ring {
    margin: 0 auto;
  }

  .findings-rollup-copy {
    text-align: left;
  }

  .findings-headlines {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .findings-rollup {
    padding: 1.25rem 1.35rem;
  }
}

/* ================================================================
   FUTURE VISION
   ================================================================ */
.future-vision-section {
  position: relative;
  overflow: hidden;
}

.fv-summary {
  margin: 2rem 0 2.25rem;
  padding: 1.5rem 1.5rem 1.35rem;
  border: 1px solid rgba(200, 16, 46, 0.12);
  border-radius: 20px;
  background:
    radial-gradient(circle at 12% 18%, rgba(200, 16, 46, 0.08), transparent 42%),
    radial-gradient(circle at 88% 82%, rgba(26, 122, 69, 0.07), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 248, 247, 0.95));
  box-shadow: 0 20px 50px rgba(16, 8, 9, 0.06);
}

.fv-summary-head {
  max-width: 760px;
  margin-bottom: 1.35rem;
}

.fv-summary-kicker,
.fv-pilots-intro-kicker {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

.fv-summary-title {
  margin: 0.35rem 0 0.45rem;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.2;
  color: var(--gray-900);
}

.fv-summary-lead {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--gray-700);
}

.fv-summary-bridge {
  position: relative;
  margin-bottom: 1.35rem;
  padding: 1.1rem 0.75rem 0.55rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(16, 8, 9, 0.94), rgba(32, 18, 20, 0.98));
  overflow: hidden;
}

.fv-summary-bridge::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(200, 16, 46, 0.22), transparent 34%),
    radial-gradient(circle at 85% 50%, rgba(26, 122, 69, 0.18), transparent 34%);
  pointer-events: none;
}

.fv-summary-bridge-track {
  position: relative;
  height: 4px;
  margin: 0 6% 1.15rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.fv-summary-bridge-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(200, 16, 46, 0.35) 0%, rgba(255, 255, 255, 0.85) 50%, rgba(26, 122, 69, 0.85) 100%);
}

.fv-summary-bridge-pulse {
  position: absolute;
  top: -6px;
  left: 0;
  width: 18%;
  height: 16px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
  animation: fv-bridge-pulse 4.5s ease-in-out infinite;
}

@keyframes fv-bridge-pulse {
  0%, 100% { transform: translateX(-10%); opacity: 0.35; }
  50% { transform: translateX(520%); opacity: 1; }
}

.fv-summary-milestones {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.5rem;
  padding: 0 0.35rem;
}

.fv-summary-milestone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
}

.fv-summary-milestone-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18), 0 0 18px rgba(255, 255, 255, 0.35);
}

.fv-summary-milestone:nth-child(1) .fv-summary-milestone-dot { background: #e85a6b; }
.fv-summary-milestone:nth-child(2) .fv-summary-milestone-dot { background: #f0a060; }
.fv-summary-milestone:nth-child(3) .fv-summary-milestone-dot { background: #f5d060; }
.fv-summary-milestone:nth-child(4) .fv-summary-milestone-dot { background: #8fd4a0; }
.fv-summary-milestone:nth-child(5) .fv-summary-milestone-dot { background: #1a7a45; }

.fv-summary-milestone-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.fv-summary-milestone-short {
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.92);
}

.fv-summary-bridge-labels {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.85rem;
  padding: 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.fv-summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.fv-summary-panel {
  padding: 1.1rem 1.15rem;
  border-radius: 16px;
  border: 1px solid rgba(200, 16, 46, 0.1);
  background: var(--white);
}

.fv-summary-panel--current {
  border-color: rgba(200, 16, 46, 0.16);
  background: linear-gradient(180deg, rgba(200, 16, 46, 0.04), rgba(255, 255, 255, 0.98));
}

.fv-summary-panel--impact {
  border-color: rgba(26, 122, 69, 0.18);
  background: linear-gradient(180deg, rgba(26, 122, 69, 0.05), rgba(255, 255, 255, 0.98));
}

.fv-summary-panel-kicker {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.fv-summary-panel--current .fv-summary-panel-kicker { color: var(--red); }
.fv-summary-panel--impact .fv-summary-panel-kicker { color: #1a7a45; }

.fv-summary-panel-title {
  margin: 0.35rem 0 0.65rem;
  font-size: 1.02rem;
  line-height: 1.25;
  color: var(--gray-900);
}

.fv-summary-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.fv-summary-list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--gray-700);
}

.fv-summary-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}

.fv-summary-panel--impact .fv-summary-list li::before {
  background: #1a7a45;
}

.fv-summary-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(200, 16, 46, 0.45);
}

.fv-summary-divider svg {
  width: 28px;
  height: auto;
}

.fv-pilots-intro {
  margin-bottom: 0.85rem;
}

.fv-pilots-intro-title {
  margin: 0.3rem 0 0;
  font-size: 1.15rem;
  color: var(--gray-900);
}

.future-vision-rank-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0 0 1.5rem;
}

.fv-rank-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(200, 16, 46, 0.12);
  border-radius: 14px;
  background: var(--white);
  text-align: left;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
}

.fv-rank-card:hover,
.fv-rank-card.is-active {
  border-color: rgba(200, 16, 46, 0.35);
  box-shadow: 0 10px 28px rgba(16, 8, 9, 0.07);
  transform: translateY(-2px);
}

.fv-rank-card.is-active {
  background: linear-gradient(145deg, rgba(200, 16, 46, 0.06), rgba(255, 255, 255, 0.98));
}

.fv-rank-index {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--red);
}

.fv-rank-name {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--gray-900);
}

.fv-rank-score {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black-soft);
}

.fv-rank-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  margin-top: 0.15rem;
}

.fv-rank-duration {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.future-vision-stage {
  border: 1px solid rgba(200, 16, 46, 0.12);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(16, 8, 9, 0.06);
  overflow: hidden;
}

.future-vision-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(200, 16, 46, 0.1);
  background: rgba(250, 248, 247, 0.95);
}

.future-vision-arrow {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(200, 16, 46, 0.18);
  border-radius: 50%;
  background: var(--white);
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
}

.future-vision-arrow svg {
  width: 18px;
  height: 18px;
}

.future-vision-arrow:hover:not(:disabled) {
  background: var(--black-soft);
  border-color: var(--black-soft);
  color: var(--white);
  transform: scale(1.05);
}

.future-vision-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.future-vision-status {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
  flex: 1;
}

.future-vision-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-900);
  text-align: center;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.future-vision-progress {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.future-vision-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(200, 16, 46, 0.22);
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
}

.future-vision-dot.is-active {
  width: 18px;
  background: var(--red);
}

.future-vision-counter {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gray-500);
}

.future-vision-panels {
  padding: 1.25rem 1.35rem 1.5rem;
}

.future-vision-panel {
  display: none;
}

.future-vision-panel.is-active {
  display: block;
}

.fv-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.35rem 1.4rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(200, 16, 46, 0.1);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.04), rgba(255, 255, 255, 0.98));
}

.fv-panel-header-main {
  min-width: 0;
  flex: 1;
}

.fv-panel-goal {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
}

.fv-panel-duration {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(16, 8, 9, 0.06);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-700);
}

.fv-panel-title {
  margin: 0.55rem 0 0.45rem;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.2;
  color: var(--gray-900);
}

.fv-panel-lead {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--gray-700);
  max-width: 760px;
}

.fv-importance {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  min-width: 120px;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid rgba(200, 16, 46, 0.14);
}

.fv-importance-value {
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
  color: var(--black-soft);
}

.fv-importance-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-500);
  text-align: center;
}

.fv-importance-bar {
  width: 100%;
  height: 4px;
  margin-top: 0.35rem;
  border-radius: 999px;
  background: rgba(200, 16, 46, 0.12);
  overflow: hidden;
}

.fv-importance-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), #e85a6b);
}

.fv-plan,
.fv-target {
  padding: 1.15rem 1.2rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(200, 16, 46, 0.1);
  border-radius: 16px;
  background: var(--white);
}

.fv-target {
  margin-bottom: 0;
}

.fv-section-head {
  margin-bottom: 0.85rem;
}

.fv-section-kicker {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

.fv-section-title {
  margin: 0.3rem 0 0;
  font-size: 1.05rem;
  color: var(--gray-900);
}

.fv-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  position: relative;
}

.fv-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, rgba(200, 16, 46, 0.4) 50%, #1a7a45 100%);
  border-radius: 999px;
  z-index: 0;
}

.fv-timeline-step {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.fv-timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.fv-timeline-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 0 0 4px var(--white), 0 0 0 6px rgba(200, 16, 46, 0.12);
}

.fv-timeline-step:nth-child(3) .fv-timeline-num {
  background: #1a7a45;
  box-shadow: 0 0 0 4px var(--white), 0 0 0 6px rgba(34, 120, 70, 0.15);
}

.fv-timeline-when {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--red);
  text-align: center;
}

.fv-timeline-step:nth-child(3) .fv-timeline-when {
  color: #1a7a45;
}

.fv-timeline-card {
  flex: 1;
  padding: 1rem;
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
}

.fv-timeline-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 0.45rem;
}

.fv-timeline-detail {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--gray-700);
}

.fv-target-body {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--gray-700);
}

.fv-kpi-section {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.fv-kpi-heading {
  margin: 0 0 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.fv-kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.fv-kpi-card {
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(200, 16, 46, 0.1);
  background: rgba(200, 16, 46, 0.03);
}

.fv-kpi-metric {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--gray-900);
  margin-bottom: 0.35rem;
}

.fv-kpi-target {
  display: block;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--gray-700);
}

@media (max-width: 1100px) {
  .future-vision-rank-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fv-summary-milestones {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 0.85rem;
  }

  .fv-summary-grid {
    grid-template-columns: 1fr;
  }

  .fv-summary-divider {
    transform: rotate(90deg);
    padding: 0.35rem 0;
  }

  .fv-timeline {
    grid-template-columns: 1fr;
  }

  .fv-timeline::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .future-vision-rank-strip {
    grid-template-columns: 1fr;
  }

  .fv-kpi-grid {
    grid-template-columns: 1fr;
  }

  .fv-summary {
    padding: 1.15rem;
  }

  .fv-summary-milestones {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fv-summary-bridge-labels {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .fv-panel-header {
    flex-direction: column;
  }

  .fv-importance {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .fv-importance-bar {
    flex-basis: 100%;
  }

  .future-vision-label {
    white-space: normal;
  }
}

/* ================================================================
   STRATEGIC OPERATIONS — GTM SECTION
   ================================================================ */
.ops-report .nav-link-muted {
  opacity: 0.72;
}

.gtm-objectives-board {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

/* GTM Pie — Section 1 objectives visual */
.gtm-pie-board {
  margin-top: 1.25rem;
}

.gtm-pie-layout {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  border: 1px solid rgba(200, 16, 46, 0.12);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(16, 8, 9, 0.06);
}

.gtm-pie-visual {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
  aspect-ratio: 1;
}

.gtm-pie-chart {
  display: block;
  width: 100%;
  height: 100%;
}

.gtm-pie-segment {
  cursor: pointer;
  transition: opacity 0.2s var(--ease-out);
}

.gtm-pie-segment:hover {
  opacity: 0.88;
}

.gtm-pie-segment:focus {
  outline: none;
}

.gtm-pie-segment:focus-visible {
  stroke: var(--white);
  stroke-width: 3;
}

.gtm-pie-hub {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: 46%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(200, 16, 46, 0.1), 0 8px 24px rgba(16, 8, 9, 0.08);
  pointer-events: none;
}

.gtm-pie-hub-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  color: var(--gray-900);
}

.gtm-pie-hub-label {
  margin-top: 0.25rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
}

.gtm-pie-hub-sub {
  margin-top: 0.2rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.gtm-pie-callouts {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.gtm-pie-callout {
  padding: 1rem 1.05rem;
  border-radius: 16px;
  border: 1px solid rgba(200, 16, 46, 0.1);
  background: #fafafa;
  cursor: pointer;
  transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.gtm-pie-callout:hover,
.gtm-pie-callout.is-active {
  border-color: rgba(200, 16, 46, 0.28);
  box-shadow: 0 8px 22px rgba(16, 8, 9, 0.06);
  transform: translateX(4px);
}

.gtm-pie-callout[data-gtm="02"].is-active,
.gtm-pie-callout[data-gtm="02"]:hover {
  border-color: rgba(200, 120, 48, 0.35);
}

.gtm-pie-callout[data-gtm="03"].is-active,
.gtm-pie-callout[data-gtm="03"]:hover {
  border-color: rgba(26, 122, 69, 0.35);
}

.gtm-pie-callout-code {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: rgba(200, 16, 46, 0.08);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--red);
}

.gtm-pie-callout[data-gtm="02"] .gtm-pie-callout-code {
  background: rgba(200, 120, 48, 0.12);
  color: #a85820;
}

.gtm-pie-callout[data-gtm="03"] .gtm-pie-callout-code {
  background: rgba(26, 122, 69, 0.1);
  color: #1a7a45;
}

.gtm-pie-callout-title {
  margin: 0 0 0.45rem;
  font-size: 0.95rem;
  line-height: 1.35;
  color: var(--gray-900);
}

.gtm-pie-callout-question {
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--gray-900);
}

.gtm-pie-callout-question em {
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.gtm-pie-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1rem;
}

.gtm-pie-control {
  padding: 0.5rem 0.95rem;
  border: 1px solid rgba(200, 16, 46, 0.18);
  border-radius: 999px;
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
}

.gtm-pie-control:hover {
  border-color: rgba(200, 16, 46, 0.35);
  color: var(--black);
}

.gtm-pie-control.is-active {
  background: var(--black-soft);
  border-color: var(--black-soft);
  color: var(--white);
}

.gtm-pie-control[data-gtm="02"].is-active {
  background: #c87830;
  border-color: #c87830;
}

.gtm-pie-control[data-gtm="03"].is-active {
  background: #1a7a45;
  border-color: #1a7a45;
}

.gtm-boundary-detail {
  position: relative;
  min-height: 160px;
  padding: 1.35rem 1.4rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(200, 16, 46, 0.12);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 10px 32px rgba(16, 8, 9, 0.05);
}

.gtm-boundary-detail-panel {
  display: none;
}

.gtm-boundary-detail-panel.is-active {
  display: block;
  animation: gtm-boundary-fade 0.35s var(--ease-out);
}

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

.gtm-objectives-board-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  padding: 0.85rem 1.15rem;
  border: 1px dashed rgba(200, 16, 46, 0.22);
  border-radius: 14px;
  background: rgba(250, 248, 247, 0.8);
}

.gtm-table-kicker {
  display: block;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.25rem;
}

.gtm-table-heading {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-700);
}

.gtm-objective-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(200, 16, 46, 0.12);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(16, 8, 9, 0.05);
  position: relative;
  overflow: hidden;
}

.gtm-objective-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--red);
}

.gtm-objective-card[data-gtm="02"]::before {
  background: linear-gradient(180deg, var(--red), #c87830);
}

.gtm-objective-card[data-gtm="03"]::before {
  background: linear-gradient(180deg, #c87830, #1a7a45);
}

.gtm-objective-code {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: rgba(200, 16, 46, 0.08);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--red);
}

.gtm-objective-title {
  margin: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.3;
  color: var(--gray-900);
}

.gtm-objective-card-question {
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.05), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(200, 16, 46, 0.1);
}

.gtm-objective-question-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 0.35rem;
}

.gtm-objective-question {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.45;
  color: var(--gray-900);
  font-style: italic;
}

.gtm-boundaries-intro {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.gtm-subsection-kicker {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

.gtm-subsection-title {
  margin: 0.35rem 0 0.5rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.15;
  color: var(--gray-900);
}

.gtm-subsection-lead {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray-700);
}

.gtm-boundary-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.gtm-boundary-pillar {
  padding: 1.2rem 1.15rem 1.15rem;
  border: 1px solid rgba(200, 16, 46, 0.1);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 6px 22px rgba(16, 8, 9, 0.04);
}

.gtm-boundary-pillar-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
}

.gtm-boundary-pillar-code {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--red);
}

.gtm-boundary-pillar-own {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
}

.gtm-boundary-pillar-body {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--gray-700);
}

.gtm-boundary-cases {
  margin-bottom: 1.5rem;
}

.gtm-boundary-cases-head {
  max-width: 820px;
  margin-bottom: 1rem;
}

.gtm-boundary-cases-title {
  margin: 0.35rem 0 0;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--gray-800);
}

.gtm-boundary-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.gtm-boundary-case {
  padding: 1.15rem 1.2rem;
  border-radius: 16px;
  border: 1px solid rgba(200, 16, 46, 0.12);
  background: linear-gradient(160deg, rgba(200, 16, 46, 0.04), rgba(255, 255, 255, 0.98));
}

.gtm-boundary-case-tag {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--red);
}

.gtm-boundary-case-body {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.62;
  color: var(--gray-700);
}

.gtm-funded-panel {
  padding: 1.35rem 1.45rem;
  border-radius: 18px;
  border: 1px solid rgba(16, 8, 9, 0.08);
  background: linear-gradient(135deg, rgba(16, 8, 9, 0.94), rgba(32, 18, 20, 0.98));
  box-shadow: 0 18px 40px rgba(16, 8, 9, 0.12);
}

.gtm-funded-kicker {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.gtm-funded-body {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  max-width: 920px;
}

@media (max-width: 960px) {
  .gtm-pie-layout {
    grid-template-columns: 1fr;
  }

  .gtm-objectives-board-head,
  .gtm-objective-card {
    grid-template-columns: 1fr;
  }

  .gtm-boundary-pillars {
    grid-template-columns: 1fr;
  }

  .gtm-boundary-cases-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-up, .reveal-left {
    opacity: 1;
    transform: none;
  }
}
