/* ============================================================
   Wayne Wang Portfolio
   Fonts: DM Sans (display/headings) + Inter (body) + IBM Plex Mono (labels)
   Closest open-source match to NVIDIA Sans web stack
   ============================================================ */

:root {
  --ink:         #0c1110;
  --ink-soft:    #2f3835;
  --muted:       #66706c;
  --line:        #d9dfda;
  --paper:       #f6f8f5;
  --paper-hi:    #ffffff;
  --accent:      #76b900;
  --accent-dark: #467400;
  --shadow:      0 24px 80px rgba(20,32,26,0.12);
  --max:         1220px;
  --radius:      8px;
  --fd:          'NVIDIA Sans', 'Rubik', 'Helvetica Neue', 'Arial', system-ui, sans-serif;
  --fb:          'NVIDIA Sans', 'Rubik', 'Helvetica Neue', 'Arial', system-ui, sans-serif;
  --fm:          'IBM Plex Mono', 'Consolas', monospace;
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--fb);
  font-size: 17px;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::selection { color: var(--ink); background: rgba(118,185,0,0.26); }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }

/* ── TYPOGRAPHY ── */
h1,h2,h3 { margin-top: 0; font-family: var(--fd); }
p { margin-top: 0; }

h1 {
  margin-bottom: 24px;
  font-size: clamp(36px,5.5vw,72px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
}
h1 > span { display: block; }

h2 {
  margin-bottom: 24px;
  font-size: clamp(22px,3vw,36px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
h3 {
  margin-bottom: 12px;
  font-size: clamp(19px,2vw,26px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.eyebrow, .section-kicker {
  margin: 0 0 20px;
  font-family: var(--fm);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── LAYOUT ── */
.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px,10vw,140px) 0;
}

/* ── HEADER ── */
.site-header {
  position: fixed; z-index: 30;
  top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  padding: 0 clamp(16px,4vw,48px);
  color: #fff;
  transition: background 180ms ease, border-color 180ms ease;
}
.site-header.is-solid {
  color: var(--ink);
  background: rgba(246,248,245,0.94);
  border-bottom: 1px solid rgba(12,17,16,0.08);
  backdrop-filter: blur(20px);
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--fd);
  font-size: 14px; font-weight: 700; letter-spacing: -0.01em;
}
.brand-mark {
  display: inline-grid; place-items: center;
  width: 32px; height: 32px;
  border: 1.5px solid currentColor; border-radius: 50%;
  font-family: var(--fd); font-size: 11px; font-weight: 700;
}
.brand-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.last-updated {
  font-size: 10px;
  font-family: var(--fm);
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
  margin-left: 4px;
}
.nav {
  display: flex; align-items: center;
  gap: clamp(14px,2.2vw,28px);
  font-family: var(--fb); font-size: 13px; font-weight: 500;
}
.nav a { opacity: 0.75; transition: opacity 150ms, color 150ms; }
.nav a:hover, .nav a.is-active { opacity: 1; color: var(--accent); }

/* Hide mobile elements on desktop */
.nav-toggle,
.mobile-nav,
.mobile-nav-overlay { display: none; }

/* ── BUTTONS ── */
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.36);
  font-family: var(--fb); font-size: 13px; font-weight: 600;
  white-space: nowrap;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}
.button:active { transform: scale(0.98) translateY(1px); }
.button.primary { color: #102007; background: var(--accent); border-color: var(--accent); }
.button.primary:hover { background: #8ed022; transform: translateY(-2px); }
.button.ghost { color: #fff; background: rgba(255,255,255,0.08); }
.button.ghost:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.14); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100dvh;
  overflow: hidden; color: #fff; background: #080d0b;
}
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media {
  z-index: 0;
  background-image: url("../assets/media/workplace-tech-hero.webp");
  background-position: right 52%;
  background-size: 76% auto;
  background-repeat: no-repeat;
  transform: scale(1.02);
  opacity: 0.46;
  animation: hero-media-drift 24s ease-in-out infinite;
}
/* Contrast zones: dark pocket behind the headline, a top scrim so the nav stays
   legible, and a lifted right scrim so the profile block reads over the crowd. */
.hero-shade {
  z-index: 1;
  background:
    radial-gradient(120% 88% at 6% 76%, rgba(4,8,6,0.94) 0%, rgba(4,8,6,0.6) 44%, transparent 74%),
    linear-gradient(180deg, rgba(4,8,6,0.72) 0%, rgba(4,8,6,0.18) 14%, transparent 26%),
    linear-gradient(90deg, rgba(5,8,6,0.96) 0%, rgba(5,8,6,0.84) 44%, rgba(5,8,6,0.66) 70%, rgba(5,8,6,0.74) 100%),
    linear-gradient(0deg,  rgba(5,8,6,0.96) 0%, rgba(5,8,6,0.4) 38%, transparent 64%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  pointer-events: none;
  opacity: 0.82;
  mix-blend-mode: screen;
}

@keyframes hero-media-drift {
  0%, 100% { transform: scale(1.02) translate3d(0,0,0); }
  50% { transform: scale(1.055) translate3d(-0.35%,-0.25%,0); }
}
.hero-inner {
  position: relative; z-index: 3;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(280px,350px);
  gap: clamp(36px,4.4vw,64px);
  width: min(var(--max), calc(100% - 40px));
  min-height: 100dvh;
  margin: 0 auto;
  padding: 120px 0 92px;
  align-items: end;
}
.hero-copy { min-width: 0; max-width: 780px; }

/* Headline sizing is scoped to the hero so global section h1 rules never
   override the hiring proposition at any breakpoint. */
.hero .eyebrow {
  margin: 0 0 24px;
  color: #a7e34b;
  letter-spacing: 0.2em;
}
.hero h1 {
  margin: 0 0 30px;
  font-size: clamp(32px,3.45vw,52px);
  line-height: 1.08;
  letter-spacing: -0.028em;
  text-shadow: 0 2px 26px rgba(3,6,4,0.5);
}
.hero h1 span { display: block; white-space: nowrap; }
.hero-lede {
  max-width: 620px;
  margin: 0 0 36px;
  color: rgba(255,255,255,0.84);
  font-family: var(--fb);
  font-size: clamp(15px,1.2vw,17px); font-weight: 400; line-height: 1.68;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 0 0 36px; }
.hero-actions .button {
  min-height: 46px;
  padding: 0 24px;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}
.hero-actions .button.primary:hover {
  background: #91d526;
  box-shadow: 0 6px 18px rgba(118,185,0,0.12);
  transform: none;
}
.hero-actions .button.ghost {
  background: rgba(8,14,10,0.42);
  border-color: rgba(255,255,255,0.34);
  font-weight: 500;
  backdrop-filter: blur(6px);
}
.hero-actions .button.ghost:hover {
  background: rgba(8,14,10,0.62);
  border-color: rgba(255,255,255,0.72);
}

/* THRIVE Hub Demo button animation */
.thrive-pulse {
  background: linear-gradient(135deg, #76b900, #5a9400) !important;
  box-shadow: 0 0 16px rgba(118,185,0,0.4), 0 0 40px rgba(118,185,0,0.15);
  animation: thrive-glow 2s ease-in-out infinite, thrive-bounce 2s ease-in-out infinite;
  position: relative;
  overflow: hidden;
  border-color: #76b900 !important;
}
.thrive-wrap {
  position: relative;
  display: inline-flex;
}
.thrive-new-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #fb7185;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: 8px;
  line-height: 1.4;
  box-shadow: 0 2px 8px rgba(251,113,133,0.4);
  animation: badge-pop 2s ease-in-out infinite;
  z-index: 10;
  pointer-events: none;
}
@keyframes badge-pop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
.thrive-pulse::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  animation: thrive-shimmer 3s ease-in-out infinite;
  pointer-events: none;
}
.thrive-pulse:hover {
  animation: none;
  box-shadow: 0 0 36px rgba(118,185,0,0.6), 0 0 60px rgba(118,185,0,0.25) !important;
  transform: translateY(-3px) scale(1.05) !important;
}
.thrive-pulse:hover::after { animation: none; opacity: 0; }
@keyframes thrive-glow {
  0%, 100% { box-shadow: 0 0 16px rgba(118,185,0,0.4), 0 0 40px rgba(118,185,0,0.1); }
  50% { box-shadow: 0 0 32px rgba(118,185,0,0.7), 0 0 60px rgba(118,185,0,0.25), 0 0 8px rgba(118,185,0,0.3) inset; }
}
@keyframes thrive-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
@keyframes thrive-shimmer {
  0% { left: -60%; }
  40% { left: 110%; }
  100% { left: 110%; }
}
@media (prefers-reduced-motion: reduce) {
  .thrive-pulse { animation: none; }
  .thrive-pulse::after { animation: none; display: none; }
  .thrive-new-badge { animation: none; }
}
/* The global green focus ring has poor contrast on the green primary button */
.hero-actions .button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

/* Capability proof points: two quiet columns, not a dense badge wall */
.hero-surface {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 9px 18px;
  max-width: 640px;
  margin: 0 0 24px; padding: 0;
  list-style: none;
}
.hero-surface li {
  display: flex; align-items: center;
  min-height: 20px;
  padding: 2px 0 2px 10px;
  font-family: var(--fm); font-size: 9px; font-weight: 500;
  letter-spacing: 0.085em; text-transform: uppercase;
  color: rgba(198,235,141,0.88);
  border-left: 1px solid rgba(167,227,75,0.42);
  white-space: nowrap;
}

/* Environment proof points: deliberately quieter than the capability tags */
.hero-env {
  display: flex; flex-wrap: wrap; align-items: baseline;
  gap: 4px 12px;
}
.hero-env-label {
  font-family: var(--fm);
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.58);
  white-space: nowrap;
}
.hero-env-list {
  display: flex; flex-wrap: wrap; align-items: baseline;
  gap: 4px 10px;
  margin: 0; padding: 0;
  list-style: none;
}
.hero-env-list li {
  font-family: var(--fm);
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.11em; text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  white-space: nowrap;
}
.hero-env-list li + li::before {
  content: "/";
  margin-right: 10px;
  color: rgba(255,255,255,0.34);
}

/* Executive credibility summary: hierarchy and hairlines, no card treatment */
.identity-panel {
  align-self: end;
  max-width: 350px;
  min-width: 0;
  padding-left: 24px;
  border-left: 1px solid rgba(255,255,255,0.14);
}
.identity-panel .panel-label {
  margin: 0 0 6px;
  color: rgba(255,255,255,0.94); font-family: var(--fd);
  font-size: clamp(18px,1.4vw,20px); font-weight: 700; letter-spacing: -0.015em;
}
.identity-panel .panel-role {
  margin: 0 0 16px;
  color: #a7e34b; font-family: var(--fm);
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.045em; line-height: 1.5;
}
.identity-panel .panel-summary {
  max-width: 36ch;
  margin: 0;
  color: rgba(255,255,255,0.7);
  font-family: var(--fb);
  font-size: 13px; line-height: 1.62;
}
.identity-divider {
  width: 32px; height: 1px;
  margin: 18px 0;
  background: rgba(167,227,75,0.72);
}
.identity-panel .panel-organizations {
  margin: 0;
  color: rgba(255,255,255,0.86);
  font-family: var(--fm);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.06em; line-height: 1.5;
}
.identity-panel .panel-credentials {
  display: grid;
  gap: 4px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.identity-panel .panel-credentials p {
  margin: 0;
  color: rgba(255,255,255,0.62);
  font-family: var(--fb);
  font-size: 10.5px;
  line-height: 1.45;
}
.panel-footprint {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.hero-refinement-note {
  position: absolute;
  z-index: 3;
  left: 50%; bottom: 20px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-family: var(--fm);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4;
  pointer-events: none;
}

/* Restrained staggered entrance, transform and opacity only */
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.hero-rise { animation: hero-rise 520ms cubic-bezier(0.16,1,0.3,1) both; }
.hero-rise--1 { animation-delay: 40ms; }
.hero-rise--2 { animation-delay: 100ms; }
.hero-rise--3 { animation-delay: 170ms; }
.hero-rise--4 { animation-delay: 240ms; }
.hero-rise--5 { animation-delay: 300ms; }
.hero-rise--6 { animation-delay: 350ms; }
.hero-rise--7 { animation-delay: 300ms; }

/* ── OPERATING MODEL: SIGNALS TO SAFE SUPPORT ── */
.om-section {
  position: relative;
  width: 100%;
  background: #eef2ed;
  border-bottom: 1px solid var(--line);
}
.om-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(46px,5.6vw,72px) 0 clamp(42px,5vw,64px);
}
.om-shell .section-kicker { margin-bottom: 14px; }
.om-shell h2 { margin-bottom: 10px; }
.om-sub {
  font-family: var(--fb);
  font-size: clamp(14px,1.3vw,16px);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 78ch;
  margin: 0 0 26px;
}

/* Editorial principle: visible enough to frame the model, quiet enough to keep the process primary */
.om-psychological-safety {
  max-width: 900px;
  margin: 0 0 30px;
  padding: 3px 0 3px 18px;
  border-left: 2px solid rgba(70,116,0,0.7);
}
.om-psychological-safety-label {
  margin: 0 0 8px;
  font-family: var(--fm);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
}
.om-psychological-safety-statement {
  max-width: 68ch;
  margin: 0;
  font-family: var(--fd);
  font-size: clamp(17px,1.6vw,21px);
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.om-psychological-safety-source {
  margin: 9px 0 0;
  font-family: var(--fb);
  font-size: 11px;
  line-height: 1.5;
  color: var(--muted);
}

/* Five-step process strip */
.om-flow {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 16px;
}
.om-flow-anchor {
  font-size: 13px;
  font-style: italic;
  color: rgba(118,185,0,0.7);
  margin: 0 0 30px;
  letter-spacing: 0.02em;
}
.om-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 0 0 11px;
  border-left: 2px solid rgba(118,185,0,0.5);
}
.om-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 7px;
  right: -14px;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid rgba(70,116,0,0.45);
  border-right: 1.5px solid rgba(70,116,0,0.45);
  transform: rotate(45deg);
}
.om-step-name {
  font-family: var(--fm);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
}
.om-step-desc {
  font-family: var(--fb);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* Localization is Wayne's translation layer between global strategy and field reality */
.om-localization {
  display: grid;
  grid-template-columns: minmax(280px,1.05fr) minmax(0,1.95fr);
  gap: 18px;
  margin: 0 0 28px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.58);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.om-localization-copy {
  min-width: 0;
  padding: 2px 18px 2px 12px;
  border-left: 3px solid var(--accent);
}
.om-principle-label {
  display: block;
  margin-bottom: 7px;
  font-family: var(--fm);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-dark);
}
.om-localization-copy strong {
  display: block;
  font-family: var(--fd);
  font-size: 18px;
  line-height: 1.25;
  color: var(--ink);
}
.om-localization-copy p {
  margin: 7px 0 0;
  font-family: var(--fb);
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.om-context-list {
  align-self: center;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 0;
  min-width: 0;
  margin: 0;
}
.om-context-list > div {
  min-width: 0;
  padding: 2px 14px;
  border-left: 1px solid rgba(12,17,16,0.12);
}
.om-context-list dt {
  margin: 0 0 4px;
  font-family: var(--fd);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
}
.om-context-list dd {
  margin: 0;
  font-family: var(--fb);
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--muted);
}
/* Data lanes: the primary visual of this section */
.om-lanes-label {
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
}
.om-lanes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-bottom: 20px;
}
.om-lane {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 24px 22px;
  background: var(--paper-hi);
  border: 1px solid var(--line);
  border-top: 3px solid rgba(12,17,16,0.18);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(20,32,26,0.06);
}
.om-lane--confidential {
  background: linear-gradient(180deg, rgba(118,185,0,0.09), rgba(118,185,0,0.03));
  border-color: rgba(70,116,0,0.34);
  border-top-color: var(--accent);
  box-shadow: 0 14px 36px rgba(70,116,0,0.12);
}
.om-lane-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  align-self: flex-start;
  font-family: var(--fm);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 4px 9px;
  border-radius: 3px;
}
.om-lane-tag--lock {
  color: var(--accent-dark);
  border-color: rgba(70,116,0,0.32);
  background: rgba(255,255,255,0.72);
}
.om-lane-tag svg { width: 11px; height: 11px; flex-shrink: 0; }
.om-lane-name {
  font-family: var(--fd);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.2;
}
.om-lane-desc {
  font-family: var(--fb);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

/* Governance + evidence */
.om-governance {
  margin: 0;
  padding: 14px 18px;
  background: var(--paper-hi);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--fb);
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.6;
}
.om-governance strong {
  color: var(--accent-dark);
  font-weight: 700;
}
.om-evidence {
  margin: 12px 0 0;
  padding-left: 21px;
  font-family: var(--fb);
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 1100px) {
  .om-flow { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px 20px; }
  .om-step:not(:last-child)::after { display: none; }
  .om-lanes { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .om-localization { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .om-shell { width: min(100% - 32px, var(--max)); }
  .om-psychological-safety { margin-bottom: 26px; padding-left: 14px; }
  .om-psychological-safety-statement { font-size: 16px; line-height: 1.5; }
  .om-psychological-safety-source { font-size: 10.5px; }
  .om-flow { grid-template-columns: 1fr; gap: 12px; }
  .om-localization { padding: 16px; }
  .om-localization-copy { padding-right: 0; }
  .om-context-list { grid-template-columns: 1fr; gap: 10px; }
  .om-context-list > div { padding: 0; border-left: 0; }
  .om-lane { padding: 20px; }
  .om-evidence { padding-left: 0; }
}

/* ── ABOUT WAYNE ── */
.about-fit-layout {
  display: grid;
  grid-template-columns: minmax(0,1fr) 320px;
  gap: clamp(28px,5vw,56px);
  align-items: start;
}
.about-fit { max-width: 900px; min-width: 0; }
.about-philosophy {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-hi);
  position: sticky;
  top: 96px;
}
.aph-label {
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin: 0 0 16px;
}
.aph-term {
  font-family: var(--fd);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.aph-op {
  font-family: var(--fm);
  font-size: 13px;
  color: var(--muted);
  margin: 6px 0;
}
.aph-op--accent { color: var(--accent-dark); }
.aph-part {
  font-family: var(--fb);
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}
.aph-part span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}
@media (max-width: 1100px) {
  .about-fit-layout { grid-template-columns: 1fr; }
  .about-philosophy { position: static; }
}
.about-fit-head { margin-bottom: 18px; }
.about-fit-head h2 { margin-bottom: 8px; }
.about-fit-lede {
  font-family: var(--fb);
  font-size: clamp(15px,1.5vw,18px);
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 32px;
}
.about-fit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.about-fit-list li {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 18px 22px;
  background: var(--paper-hi);
}
.aft-label {
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent-dark);
}
.aft-text {
  font-family: var(--fb);
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}
@media (max-width: 680px) {
  .about-fit-list li { grid-template-columns: 1fr; gap: 6px; padding: 16px 18px; }
}

.about-wayne-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: clamp(32px,6vw,80px);
  align-items: start;
}
.about-wayne-role {
  font-family: var(--fm); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-dark); margin-bottom: 22px;
}
.about-wayne-body {
  font-family: var(--fb);
  font-size: clamp(14px,1.35vw,16px); color: var(--ink-soft);
  line-height: 1.72; margin-bottom: 18px;
}
.about-wayne-facts { border-top: 1px solid var(--line); margin-top: 28px; }
.aw-fact {
  display: grid; grid-template-columns: 110px 1fr; gap: 14px;
  padding: 13px 0; border-bottom: 1px solid var(--line); align-items: baseline;
}
.aw-fact-label {
  font-family: var(--fm); font-size: 10px; font-weight: 500;
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted);
}
.aw-fact-val { font-family: var(--fb); font-size: 13px; color: var(--ink-soft); line-height: 1.5; }

/* Right metrics block */
.aw-metrics {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  position: sticky; top: 84px;
}
.aw-metric {
  background: var(--paper-hi); padding: 22px 18px;
  display: flex; flex-direction: column; gap: 6px;
}
.aw-metric strong {
  font-family: var(--fd);
  font-size: clamp(28px,3.2vw,48px); font-weight: 700;
  line-height: 1; letter-spacing: -0.04em; color: var(--accent-dark);
}
.aw-metric span { font-family: var(--fb); font-size: 12px; color: var(--muted); line-height: 1.4; }

/* ── CAREER TIMELINE ── */
.career-trajectory { margin-top: 68px; position: relative; }
.career-heading {
  font-family: var(--fd);
  font-size: clamp(20px,2.6vw,36px); font-weight: 700;
  letter-spacing: -0.02em; color: var(--ink);
  margin-bottom: 44px; max-width: 640px;
}
.career-timeline {
  position: relative;
  width: 100%;
  min-height: 480px;
  padding-bottom: 0;
  overflow: visible;
}
/* Diagonal rising line — replaced by SVG curve */
.career-timeline::before { display: none; }
/* SVG curve behind the nodes */
.ct-curve {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 120px;
  pointer-events: none;
  z-index: 0;
}
/* Nodes positioned along the parabolic curve */
.ct-node {
  position: absolute;
  display: flex; flex-direction: column; align-items: flex-start;
  width: 13%; padding: 0;
  z-index: 1;
}
.ct-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--line); border: 2.5px solid var(--paper-hi);
  outline: 2px solid var(--line);
  flex-shrink: 0; margin-bottom: 12px;
}
.ct-node-accent .ct-dot { background: var(--accent); outline-color: rgba(118,185,0,0.3); }
.ct-node-current { width: 15%; }
.ct-node-current .ct-dot {
  background: var(--accent); outline-color: rgba(118,185,0,0.35);
  width: 16px; height: 16px;
  box-shadow: 0 0 0 0 rgba(118,185,0,0.55);
  animation: pulse-dot 2.2s cubic-bezier(0.4,0,0.6,1) infinite;
}
.ct-content { display: flex; flex-direction: column; }
.ct-co {
  display: block; font-family: var(--fd);
  font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 2px;
}
.ct-role { display: block; font-family: var(--fb); font-size: 12px; color: var(--ink-soft); margin-bottom: 3px; }
.ct-year {
  display: inline-block; font-family: var(--fm);
  font-size: 10px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent-dark); margin-bottom: 8px;
}
.ct-desc { font-family: var(--fb); font-size: 12px; color: var(--muted); line-height: 1.55; margin: 0; }
.ct-bullets {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 4px;
}
.ct-bullets li {
  font-family: var(--fb); font-size: 12px; color: var(--muted); line-height: 1.45;
  padding-left: 12px; position: relative;
}
.ct-bullets li::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent); opacity: 0.6;
}
.ct-aws-roles {
  margin-top: 20px;
}
.ct-aws-roles-label {
  display: block;
  margin-bottom: 9px;
  font-family: var(--fm);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
}
.ct-role-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ct-role-list li {
  position: relative;
  padding-left: 13px;
  font-family: var(--fb);
  font-size: 11px;
  line-height: 1.45;
  color: var(--muted);
}
.ct-role-list li::before {
  content: "";
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0    rgba(118,185,0,0.55); }
  60%  { box-shadow: 0 0 0 10px rgba(118,185,0,0); }
  100% { box-shadow: 0 0 0 0    rgba(118,185,0,0); }
}
@media (prefers-reduced-motion: reduce) {
  .ct-node-current .ct-dot { animation: none; }
}

@media (max-width: 1280px) {
  .ct-node { width: 12%; }
  .ct-node-current { width: 15%; }
}
@media (max-width: 900px) {
  .career-timeline { height: auto; min-height: auto; padding-bottom: 0; }
  .ct-curve { display: none; }
  .ct-node {
    position: static;
    width: auto;
    display: flex; flex-direction: column;
  }
  .career-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px 12px;
  }
}
@media (max-width: 680px) {
  .career-timeline { grid-template-columns: 1fr; gap: 20px; }
  .ct-node { padding: 16px; background: var(--paper-hi); border-radius: var(--radius); border: 1px solid var(--line); }
  .ct-dot { width: 10px; height: 10px; margin-bottom: 10px; }
  .ct-co { font-size: 15px; }
  .ct-role { font-size: 13px; }
  .ct-year { font-size: 11px; }
  .ct-bullets li,
  .ct-role-list li { font-size: 13px; line-height: 1.5; }
  .ct-aws-roles-label { font-size: 10px; }
}

/* ── INTRO GRID (operating thesis) ── */
.intro-grid, .profile-section, .radar-section {
  display: grid;
  grid-template-columns: minmax(0,.95fr) minmax(340px,1.05fr);
  gap: clamp(28px,6vw,90px);
  align-items: start;
}
.intro-copy p, .profile-text p, .portfolio-heading p, .radar-copy p, .analytics-header p, .wellness-header p {
  color: var(--ink-soft);
  font-size: clamp(14px,1.35vw,16px); line-height: 1.68;
}

/* ── PROFILE SECTION ── */
.profile-section {
  position: relative; align-items: stretch;
  padding-top: clamp(88px,11vw,144px);
  padding-bottom: clamp(88px,11vw,144px);
}
.profile-section::before {
  position: absolute; z-index: -1;
  inset: 0 calc(50% - 50vw);
  background: linear-gradient(90deg, rgba(118,185,0,0.08), transparent 40%), #eef2ed;
  content: "";
}
.profile-facts {
  display: grid; background: var(--paper-hi);
  border: 1px solid rgba(12,17,16,0.1);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.profile-facts div { padding: 26px; border-bottom: 1px solid var(--line); }
.profile-facts div:last-child { border-bottom: 0; }
.profile-facts span {
  display: inline-block; margin-bottom: 8px;
  font-family: var(--fm); font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-dark);
}
.profile-facts p { margin-bottom: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }

/* ── 8 DIMENSIONS GRID ── */
.wellness-section { position: relative; }
.wellness-section::before {
  position: absolute; z-index: -1;
  inset: 0 calc(50% - 50vw);
  background: #111713; content: "";
}
/* Bottom slash divider — mirrors the radar top slash, creates visual break between the two dark sections */
.wellness-section::after {
  content: "";
  position: absolute;
  bottom: 0; left: calc(50% - 50vw); right: calc(50% - 50vw);
  height: 6px;
  background:
    repeating-linear-gradient(
      -65deg,
      rgba(118,185,0,0.55)    0px,
      rgba(118,185,0,0.55)    3px,
      transparent              3px,
      transparent              14px,
      rgba(118,185,0,0.55)    14px,
      rgba(118,185,0,0.55)    17px,
      transparent              17px,
      transparent              28px
    );
  z-index: 2;
}
.wellness-header { color: #fff; max-width: 660px; margin-bottom: 44px; }
.wellness-header .section-kicker { color: var(--accent); }
.wellness-header h2 { color: #fff; }
.wellness-header p { color: rgba(255,255,255,0.65); font-size: clamp(16px,1.5vw,19px); line-height: 1.62; }

.wellness-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); overflow: hidden;
  margin-bottom: 0;
}
.w-cell {
  background: rgba(15,21,17,0.92); padding: 26px 22px;
  position: relative; transition: background 180ms ease;
}
.w-cell:hover { background: rgba(24,33,27,0.96); }
.w-cell.span2 { grid-column: span 2; }
.w-accent { position: absolute; top: 0; left: 0; right: 0; height: 2px; }
.w-dim {
  font-family: var(--fm); font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 9px;
}
.w-name {
  font-family: var(--fd); font-size: 16px; font-weight: 700;
  color: #fff; margin-bottom: 10px; line-height: 1.1;
}
.w-desc { font-family: var(--fb); font-size: 13px; color: rgba(255,255,255,0.58); line-height: 1.6; margin-bottom: 14px; }
.w-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.w-tag {
  font-family: var(--fm); font-size: 10px; font-weight: 400;
  letter-spacing: 0.06em; color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 3px 8px; border-radius: 3px;
}

/* ── RADAR ── */
.radar-section {
  position: relative; align-items: center; color: #fff;
}
.radar-section::before {
  position: absolute; z-index: -1;
  inset: 0 calc(50% - 50vw);
  background: linear-gradient(120deg, rgba(118,185,0,0.14), transparent 44%), #111713;
  content: "";
}

/* NVIDIA-style double green slash divider at top of radar section */
.radar-section::after {
  content: "";
  position: absolute;
  top: 0; left: calc(50% - 50vw); right: calc(50% - 50vw);
  height: 6px;
  background:
    /* two diagonal slash lines using repeating-linear-gradient */
    repeating-linear-gradient(
      -65deg,
      var(--accent)    0px,
      var(--accent)    3px,
      transparent      3px,
      transparent      14px,
      var(--accent)    14px,
      var(--accent)    17px,
      transparent      17px,
      transparent      28px
    );
  z-index: 2;
}
.radar-section .radar-copy p, .radar-section .radar-legend { color: rgba(255,255,255,0.7); }
.radar-section h2 { color: #fff; }
.radar-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 20px; }
.tab {
  min-height: 36px; padding: 0 16px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px; color: #fff;
  background: rgba(255,255,255,0.06);
  font-family: var(--fb); font-size: 13px; font-weight: 500;
  cursor: pointer;
  transition: border-color 150ms, background 150ms, color 150ms;
}
.tab:hover, .tab.active { border-color: var(--accent); color: #102007; background: var(--accent); }
.radar-legend { display: grid; gap: 10px; padding: 0; margin: 0; list-style: none; font-size: 14px; }
.radar-legend li { position: relative; padding-left: 17px; }
.radar-legend li::before {
  position: absolute; top: 0.7em; left: 0;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent); content: "";
}
.radar-wrap {
  display: grid; place-items: center;
  min-height: 500px; padding: clamp(16px,4vw,40px);
  position: relative;
  background:
    /* dot grid texture */
    radial-gradient(circle, rgba(118,185,0,0.18) 1px, transparent 1px),
    /* green glow top-left */
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(118,185,0,0.10) 0%, transparent 70%),
    /* base dark */
    #0b100e;
  background-size: 28px 28px, 100% 100%, 100% 100%;
  border: 1px solid rgba(118,185,0,0.18);
  border-radius: var(--radius);
  box-shadow:
    0 0 0 1px rgba(118,185,0,0.08),
    0 24px 80px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(118,185,0,0.12);
  overflow: hidden;
}
/* Corner accent line — top-left */
.radar-wrap::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 80px; height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
/* Corner accent line — bottom-right */
.radar-wrap::after {
  content: "";
  position: absolute; bottom: 0; right: 0;
  width: 80px; height: 2px;
  background: linear-gradient(270deg, rgba(118,185,0,0.5), transparent);
}
canvas { max-width: 100%; height: auto; }
#skillRadar { max-width: min(560px, 100%); width: 100%; height: auto; }

/* ── ANALYTICS ── */
.analytics-section { position: relative; }
.analytics-section::before {
  position: absolute; z-index: -1;
  inset: 0 calc(50% - 50vw);
  background: linear-gradient(90deg, rgba(118,185,0,0.06), transparent 40%), #eef2ed;
  content: "";
}
.analytics-header { max-width: 800px; margin-bottom: 44px; }
.analytics-header p + p { margin-top: 14px; }
.analytics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.analytics-grid .a-card { width: 100%; }
.a-card {
  background: var(--paper-hi); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease;
}
.a-card:hover { transform: translateY(-4px); border-color: rgba(118,185,0,0.5); }
.a-card-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 15px 11px; border-bottom: 1px solid var(--line);
}
.a-card-title { font-family: var(--fb); font-size: 13px; font-weight: 600; color: var(--ink); }
.a-badge {
  font-family: var(--fm); font-size: 10px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-dark);
  border: 1px solid rgba(70,116,0,0.25); padding: 3px 8px; border-radius: 3px;
}
.a-card-body { padding: 15px; }
.a-card-body--split { display: flex; gap: 20px; align-items: flex-start; padding: 15px; }
.a-card-image-col { flex: 0 0 auto; width: 320px; }
.a-card-screenshot {
  width: 100%; border-radius: 4px; border: 1px solid var(--line);
  display: block; box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  object-fit: cover;
}
.a-card-image-label {
  font-family: var(--fm); font-size: 10px; color: var(--muted);
  text-align: center; margin-top: 6px; letter-spacing: 0.04em;
}
.a-card-content-col { flex: 1; min-width: 0; }
.a-metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 11px; }
.a-metric { background: var(--paper); border-radius: 5px; padding: 11px 13px; }
.a-metric-val {
  font-family: var(--fd); font-size: 1.3rem; font-weight: 700;
  color: var(--accent-dark); line-height: 1;
}
.a-metric-lbl { font-family: var(--fb); font-size: 11px; color: var(--muted); margin-top: 4px; }
.a-bar-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 11px; }
.a-bar-row { display: flex; align-items: center; gap: 8px; }
.a-bar-lbl { font-family: var(--fb); font-size: 11px; color: var(--muted); width: 110px; flex-shrink: 0; }
.a-bar-track { flex: 1; height: 5px; background: var(--line); border-radius: 3px; overflow: hidden; }
.a-bar-fill { height: 100%; background: var(--accent); border-radius: 3px; }
.a-bar-pct { font-family: var(--fm); font-size: 11px; font-weight: 500; color: var(--accent-dark); width: 30px; text-align: right; flex-shrink: 0; }
.a-tool-list { display: flex; flex-direction: column; }
.a-tool-row {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 0; border-bottom: 1px solid var(--line);
  font-family: var(--fb); font-size: 13px; color: var(--ink-soft);
}
.a-tool-row:last-child { border-bottom: 0; }
.a-tool-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.a-insight {
  padding: 9px 11px; margin-top: 10px;
  background: rgba(118,185,0,0.07); border-left: 3px solid var(--accent);
  border-radius: 0 4px 4px 0; font-family: var(--fb); font-size: 12px; color: var(--ink-soft); line-height: 1.55;
}

/* -- PORTFOLIO CASES -- */
.portfolio-section { width: min(1340px, calc(100% - 40px)); margin: 0 auto; padding: clamp(56px,8vw,110px) 0; }
.portfolio-heading { max-width: 820px; margin-bottom: 0; }
.portfolio-heading p { color: var(--ink-soft); font-size: clamp(16px,1.5vw,19px); line-height: 1.62; }

.case-grid {
  display: grid; grid-template-columns: repeat(12,1fr);
  gap: 16px; margin-top: 44px;
}
.case-card {
  grid-column: span 4;
  overflow: hidden;
  background: var(--paper-hi);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.case-card:nth-child(1) { grid-column: span 7; }
.case-card:nth-child(2) { grid-column: span 5; }
.case-card:nth-child(3), .case-card:nth-child(4) { grid-column: span 6; }
.case-card:hover { transform: translateY(-4px); border-color: rgba(118,185,0,0.55); box-shadow: var(--shadow); }
.case-card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; display: block; }
.case-card:nth-child(1) img { aspect-ratio: 16/8.2; }
.case-card > div { padding: clamp(20px,2.8vw,32px); }
.case-card span {
  display: inline-block; margin-bottom: 9px;
  font-family: var(--fm); font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-dark);
}
.case-card p { margin-bottom: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }
.case-card strong { display: block; margin-top: 16px; color: var(--ink); font-family: var(--fb); font-size: 14px; }

/* -- NVIDIA SECTION -- */
.nvidia-section {
  width: 100%; max-width: none; margin: 0; padding: 0;
  background: linear-gradient(120deg, rgba(118,185,0,0.14), transparent 42%), #111713;
  color: #fff;
}
.nvidia-panel {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px,10vw,140px) 0;
  display: flex;
  flex-direction: column;
  gap: clamp(36px,5vw,64px);
}
.nvidia-panel .section-kicker { color: var(--accent); }
.nvidia-panel h2 { color: #fff; }
.nvidia-intro {
  color: rgba(255,255,255,0.74);
  font-size: clamp(16px,1.6vw,19px);
  line-height: 1.75;
  margin-top: 20px;
  max-width: 68ch;
}
.nvidia-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  border: 1px solid rgba(255,255,255,0.16);
}
.nvidia-grid article {
  min-height: 220px; padding: 24px;
  background: rgba(17,23,19,0.7);
  border-right: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.nvidia-grid article:nth-child(2n) { border-right: 0; }
.nvidia-grid article:nth-child(n+5) { border-bottom: 0; }
/* 5th article spans full width */
.nvidia-grid article:nth-child(5) {
  grid-column: 1 / -1;
  border-right: 0;
}
.nvidia-grid span {
  display: inline-block; margin-bottom: 10px;
  font-family: var(--fm); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; color: var(--accent);
}
.nvidia-context {
  font-family: var(--fb); font-size: 13px; font-style: italic;
  color: rgba(255,255,255,0.38); line-height: 1.55;
  margin-bottom: 10px; margin-top: 0;
  border-left: 2px solid rgba(118,185,0,0.35);
  padding-left: 10px;
}
.nvidia-grid h3 { color: #fff; font-size: clamp(18px,1.8vw,24px); }
.nvidia-grid p { color: rgba(255,255,255,0.68); font-size: 15.5px; line-height: 1.72; }

/* -- FOOTER -- */
.site-footer {
  display: flex; flex-direction: column; gap: 0;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto; padding: 42px 0 56px;
  border-top: 1px solid var(--line);
}
.footer-top {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.footer-top div { display: grid; gap: 4px; }
.site-footer strong { font-family: var(--fd); font-size: 15px; font-weight: 700; color: var(--ink); }
.site-footer span, .site-footer a { color: var(--muted); font-size: 14px; }
.site-footer a:hover { color: var(--accent-dark); }
.footer-links {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.footer-linkedin {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--muted); font-size: 14px;
  transition: color 150ms;
}
.footer-linkedin:hover { color: #0a66c2; }
.footer-linkedin svg { flex-shrink: 0; }
.footer-logout {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: none; cursor: pointer;
  font-family: var(--fm); font-size: 12px; letter-spacing: 0.08em;
  color: rgba(102,112,108,0.5);
  padding: 0;
  transition: color 150ms;
}
.footer-logout:hover { color: var(--muted); }

/* -- Reveal animation -- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 700ms cubic-bezier(0.16,1,0.3,1), transform 700ms cubic-bezier(0.16,1,0.3,1); }
.reveal.in-view { opacity: 1; transform: none; }

/* -- Focus -- */
:focus-visible { outline: 3px solid rgba(118,185,0,0.5); outline-offset: 4px; }

/* -- Cursor + hover feedback (Pre-Delivery Checklist) -- */
.case-card,
.a-card,
.w-cell,
.tab,
.button,
.brand,
.nav a,
.radar-wrap canvas { cursor: pointer; }

/* Smooth transitions on all interactive elements */
.case-card,
.a-card,
.w-cell,
.nvidia-grid article { transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease; }
.case-card:hover { transform: translateY(-4px); border-color: rgba(118,185,0,0.55); box-shadow: var(--shadow); }
.a-card:hover { transform: translateY(-4px); border-color: rgba(118,185,0,0.5); }
.w-cell:hover { background: rgba(24,33,27,0.98); }
.nvidia-grid article:hover { background: rgba(25,35,28,0.9); }

/* -- RESPONSIVE -- */

/* ── Laptop / small desktop (1024px – 1280px) ── */
@media (max-width: 1280px) {
  /* Reduce section vertical padding so each section fits in a laptop viewport */
  .section,
  .portfolio-section { padding: clamp(60px,8vw,100px) 0; }
  .nvidia-panel { padding: clamp(60px,8vw,100px) 0; }

  /* Tighter headings */
  h1 { font-size: clamp(28px,3.8vw,44px); }
  h2 { font-size: clamp(20px,2.6vw,32px); }

  /* About grid: give text more room, shrink metric block */
  .about-wayne-grid { grid-template-columns: 1fr 320px; gap: clamp(24px,4vw,56px); }
  .aw-metrics { top: 84px; }
  .aw-metric strong { font-size: clamp(24px,2.6vw,38px); }

  /* Analytics: keep 1-col full width */
  .analytics-grid { gap: 12px; }

  /* Hero: tighter profile column so the headline keeps its measure */
  .hero-inner { grid-template-columns: minmax(0,1fr) minmax(300px,392px); gap: clamp(20px,3vw,48px); }

  /* NVIDIA panel: tighter gap */
  .nvidia-panel { gap: clamp(24px,4vw,56px); }
}

/* ── Compact laptop (900px – 1100px) ── */
@media (max-width: 1100px) {
  /* Switch about grid to full-width, metrics below */
  .about-wayne-grid { grid-template-columns: 1fr; }
  .aw-metrics { position: static; grid-template-columns: repeat(4,1fr); }

  /* Analytics full-width split layout */
  .analytics-grid { grid-template-columns: 1fr; }

  /* Radar layout: stack vertically, limit canvas width so it looks balanced */
  .radar-section { grid-template-columns: 1fr; }
  .radar-wrap { min-height: 380px; }
  #skillRadar { max-width: min(480px, 90%); }

  /* NVIDIA: panel already flex-column, just ensure grid border resets */
  .nvidia-grid { grid-template-columns: repeat(2,1fr); }
  .nvidia-grid article:nth-child(2n) { border-right: 0; }
  .nvidia-grid article:nth-child(n+5) { border-bottom: 0; }
  .nvidia-grid article:nth-child(5) { grid-column: 1 / -1; border-right: 0; }
}

@media (max-width: 980px) {
  .site-header { height: auto; min-height: 62px; align-items: center; padding-top: 14px; padding-bottom: 14px; }
  .nav { display: none; }
  .last-updated { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav,
  .mobile-nav-overlay { display: flex; }

  /* ── Hamburger button ── */
  .nav-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 40px; height: 40px; padding: 8px;
    background: none; border: none; cursor: pointer;
    margin-left: auto; flex-shrink: 0;
  }
  .nav-toggle span {
    display: block; width: 22px; height: 2px;
    background: currentColor; border-radius: 2px;
    transition: transform 220ms ease, opacity 220ms ease;
    transform-origin: center;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── Overlay ── */
  .mobile-nav-overlay {
    position: fixed; inset: 0; z-index: 38;
    background: rgba(8,12,10,0.55);
    backdrop-filter: blur(4px);
    opacity: 0; pointer-events: none;
    transition: opacity 260ms ease;
  }
  .mobile-nav-overlay.is-open { opacity: 1; pointer-events: auto; }

  /* ── Drawer ── */
  .mobile-nav {
    position: fixed; z-index: 39;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 86vw);
    background: #0e1612;
    border-left: 1px solid rgba(118,185,0,0.2);
    display: flex; flex-direction: column;
    transform: translateX(100%);
    transition: transform 280ms cubic-bezier(0.25,0.46,0.45,0.94);
    overflow-y: auto;
  }
  .mobile-nav.is-open { transform: translateX(0); }

  .mobile-nav-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .mobile-nav-name {
    font-family: var(--fd); font-size: 15px; font-weight: 700;
    color: #fff; letter-spacing: -0.01em;
  }
  .mobile-nav-close {
    display: grid; place-items: center;
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%; color: #fff; cursor: pointer;
    transition: background 150ms, border-color 150ms;
  }
  .mobile-nav-close:hover { background: rgba(118,185,0,0.15); border-color: var(--accent); }

  .mobile-nav-links {
    display: flex; flex-direction: column;
    padding: 12px 0; flex: 1;
  }
  .mobile-nav-links a {
    padding: 14px 24px;
    font-family: var(--fb); font-size: 16px; font-weight: 500;
    color: rgba(255,255,255,0.75);
    border-left: 3px solid transparent;
    transition: color 150ms, border-color 150ms, background 150ms;
  }
  .mobile-nav-links a:hover,
  .mobile-nav-links a.is-active {
    color: #fff;
    border-left-color: var(--accent);
    background: rgba(118,185,0,0.06);
  }

  .mobile-nav-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; flex-direction: column; gap: 10px;
  }
  .mobile-nav-footer a {
    font-family: var(--fm); font-size: 12px; letter-spacing: 0.06em;
    color: rgba(255,255,255,0.4);
    transition: color 150ms;
  }
  .mobile-nav-footer a:hover { color: var(--accent); }
}

/* ── Hero: stack the profile once two columns stop being comfortable ──
   Must sit after the 1280px hero rule above so it wins between 901 and 1100. */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: minmax(0,1fr);
    gap: 32px;
    padding: 108px 0 82px;
    align-items: end;
  }
  .hero-copy { max-width: 760px; }
  .hero-media { background-size: 82% auto; background-position: right 44%; }
  .identity-panel { align-self: start; max-width: 520px; padding-left: 20px; }
}

@media (max-width: 900px) {
  .hero-particles { opacity: 0.68; }
  .hero-inner,
  .intro-grid,
  .profile-section,
  .radar-section { grid-template-columns: 1fr; }
  .hero-inner { align-items: end; min-height: 100dvh; padding-top: 100px; }
  /* Profile summary moves below the proposition rather than being dropped */
  .identity-panel { align-self: start; max-width: 520px; padding-left: 18px; }
  .identity-panel .panel-summary { font-size: 12.5px; }
  .about-wayne-grid { grid-template-columns: 1fr; }
  .aw-metrics { position: static; grid-template-columns: repeat(2,1fr); }
  .analytics-grid { grid-template-columns: 1fr; }
  .wellness-grid { grid-template-columns: repeat(2,1fr); }
  .w-cell.span2 { grid-column: span 1; }
  .case-grid { grid-template-columns: repeat(2,1fr); }
  .case-card,
  .case-card:nth-child(1),
  .case-card:nth-child(2),
  .case-card:nth-child(3),
  .case-card:nth-child(4) { grid-column: auto; display: block; }
  /* nvidia-grid: keep 2-col, fix border logic for 5 articles */
  .nvidia-grid { grid-template-columns: 1fr 1fr; }
  .nvidia-grid article { border-right: 1px solid rgba(255,255,255,0.12); border-bottom: 1px solid rgba(255,255,255,0.12); }
  .nvidia-grid article:nth-child(2n) { border-right: 0; }
  .nvidia-grid article:nth-child(n+5) { border-bottom: 0; }
  .nvidia-grid article:nth-child(5) { grid-column: 1 / -1; border-right: 0; }
}

@media (max-width: 680px) {
  .hero { min-height: 100dvh; }
  .hero-media { background-size: 118% auto; background-position: left 40%; }
  .hero-inner { width: min(100% - 32px, var(--max)); min-height: 100dvh; padding: 96px 0 70px; gap: 30px; }
  h1 { font-size: clamp(26px,7.5vw,40px); letter-spacing: -0.02em; }
  .hero .eyebrow { margin-bottom: 16px; font-size: 10px; letter-spacing: 0.16em; }
  .hero h1 { font-size: clamp(24px,6.4vw,29px); margin-bottom: 22px; letter-spacing: -0.02em; }
  .hero h1 span { white-space: normal; }
  .hero-lede { max-width: 42rem; font-size: 14.5px; line-height: 1.62; margin-bottom: 28px; }
  .hero-actions { margin-bottom: 26px; gap: 10px; }
  .hero-surface { grid-template-columns: 1fr; gap: 7px; margin-bottom: 20px; }
  .hero-surface li { min-height: 18px; font-size: 8.75px; padding: 1px 0 1px 9px; letter-spacing: 0.08em; }
  .hero-env { gap: 3px 8px; }
  .hero-env-list { gap: 3px 8px; }
  .hero-env-list li { font-size: 9.5px; }
  .hero-env-list li + li::before { margin-right: 8px; }
  .identity-panel { max-width: none; padding-left: 14px; }
  .identity-panel .panel-role { margin-bottom: 12px; }
  .identity-panel .panel-credentials { margin-top: 10px; padding-top: 10px; }
  .hero-refinement-note { bottom: 14px; width: min(100% - 32px,var(--max)); font-size: 9px; letter-spacing: 0.06em; }
  h2 { font-size: clamp(18px,6vw,28px); }
  .hero-actions { display: grid; gap: 10px; }
  .button { width: 100%; justify-content: center; }
  .thrive-wrap { width: 100%; }
  .thrive-wrap .button { width: 100%; }
  .panel-footprint { font-size: 9px; }
  .section, .portfolio-section, .nvidia-panel, .site-footer { width: min(100% - 32px, var(--max)); }
  .section, .portfolio-section { padding: clamp(44px,10vw,64px) 0; }
  .nvidia-panel { padding: clamp(44px,10vw,64px) 0; }
  .analytics-grid,
  .wellness-grid,
  .case-grid { grid-template-columns: 1fr; }
  .nvidia-grid { grid-template-columns: 1fr; }
  .nvidia-grid article:nth-child(n) { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .nvidia-grid article:last-child { border-bottom: 0; }
  .aw-metrics { grid-template-columns: 1fr 1fr; }
  .aw-fact { grid-template-columns: 1fr; gap: 3px; }
  .site-footer { display: grid; gap: 16px; }
  .footer-top { flex-direction: column; gap: 16px; }
  .radar-wrap { min-height: 300px; padding: 12px; }
  #skillRadar { max-width: min(340px, 92%); }
  .about-wayne-body { font-size: 15px; line-height: 1.65; }
  .section-kicker { font-size: 10px; }
  .model-intro { font-size: 15px; }
  .cycle-details { grid-template-columns: 1fr; }
  .flow-process { overflow-x: auto; }
  .flow-steps { min-width: 600px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-particles { opacity: 0.58; }
  .hero-rise { animation: none !important; opacity: 1; transform: none; }
  .hero-media { animation: none !important; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* -- WELLNESS WHEEL -- */
.wellness-wheel-wrap {
  display: flex;
  align-items: center;
  gap: clamp(24px,4vw,64px);
  margin-top: 48px;
  flex-wrap: wrap;
}
#wellnessWheel {
  flex-shrink: 0;
  width: clamp(280px, 44vw, 520px);
  height: clamp(280px, 44vw, 520px);
  cursor: pointer;
}
.wellness-wheel-detail {
  flex: 1;
  min-width: 240px;
}

/* Laptop: wheel smaller so detail text has breathing room */
@media (max-width: 1280px) {
  #wellnessWheel {
    width: clamp(260px, 38vw, 460px);
    height: clamp(260px, 38vw, 460px);
  }
}

/* Below 900px: stack wheel + detail vertically, wheel fills width */
@media (max-width: 900px) {
  .wellness-wheel-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  #wellnessWheel {
    width: min(480px, 88vw);
    height: min(480px, 88vw);
    align-self: center;
  }
  .wellness-wheel-detail {
    width: 100%;
    min-width: 0;
  }
}
.wheel-detail-hint {
  font-family: var(--fm);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin: 0;
}
.wheel-detail-dim {
  font-family: var(--fm);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.wheel-detail-name {
  font-family: var(--fd);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.1;
}
.wheel-detail-desc {
  font-family: var(--fb);
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.68;
  margin-bottom: 16px;
}
.wheel-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.wheel-detail-tag {
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 4px 10px;
  border-radius: 3px;
}

/* -- UC DAVIS REFERENCE -- */
.wellness-source {
  margin-top: 20px;
  font-family: var(--fm);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.32);
  text-align: left;
}

/* -- WELLNESS WHEEL GLOW -- */
#wellnessWheel {
  filter: drop-shadow(0 0 16px rgba(118,185,0,0.28))
          drop-shadow(0 0 4px rgba(91,155,213,0.12));
  transition: filter 0.3s ease;
}
#wellnessWheel:hover {
  filter: drop-shadow(0 0 22px rgba(118,185,0,0.42))
          drop-shadow(0 0 8px rgba(91,155,213,0.18));
}

/* ── PASSWORD GATE ── */
.pw-gate {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(ellipse 70% 60% at 20% 30%, rgba(118,185,0,0.08) 0%, transparent 60%),
    #080d0b;
  transition: opacity 480ms ease, transform 480ms ease;
}
.pw-gate--out {
  opacity: 0;
  transform: scale(1.03);
  pointer-events: none;
}
.pw-box {
  width: min(420px, calc(100% - 40px));
  padding: 48px 40px 44px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(118,185,0,0.2);
  border-radius: 12px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), inset 0 1px 0 rgba(118,185,0,0.1);
  display: flex; flex-direction: column; gap: 6px;
}
.pw-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--fd); font-size: 15px; font-weight: 700;
  color: #fff; letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.pw-mark {
  display: inline-grid; place-items: center;
  width: 32px; height: 32px;
  border: 1.5px solid var(--accent); border-radius: 50%;
  font-size: 11px; font-weight: 700; color: var(--accent);
  font-family: var(--fd);
}
.pw-label {
  font-family: var(--fm); font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 6px;
}
.pw-sub {
  font-family: var(--fb); font-size: 14px;
  color: rgba(255,255,255,0.45); margin: 0 0 28px;
}
.pw-form { display: flex; flex-direction: column; gap: 10px; }
.pw-input-wrap {
  display: flex; align-items: stretch;
  border: 1px solid rgba(118,185,0,0.25);
  border-radius: 6px; overflow: hidden;
  background: rgba(255,255,255,0.04);
  transition: border-color 150ms;
}
.pw-input-wrap:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(118,185,0,0.15);
}
.pw-input {
  flex: 1; min-width: 0;
  padding: 13px 16px;
  background: none; border: none; outline: none;
  font-family: var(--fb); font-size: 15px;
  color: #fff; letter-spacing: 0.08em;
}
.pw-input::placeholder { color: rgba(255,255,255,0.25); letter-spacing: 0; }
.pw-submit {
  display: grid; place-items: center;
  width: 48px; flex-shrink: 0;
  background: var(--accent); border: none; cursor: pointer;
  color: #0c1a06;
  transition: background 150ms;
}
.pw-submit:hover { background: #8ed022; }
.pw-error {
  font-family: var(--fm); font-size: 11px;
  color: #ff6b6b; letter-spacing: 0.06em;
  min-height: 16px; margin: 0;
}
@keyframes pw-shake {
  0%,100% { transform: translateX(0); }
  20%      { transform: translateX(-8px); }
  40%      { transform: translateX(8px); }
  60%      { transform: translateX(-5px); }
  80%      { transform: translateX(5px); }
}
.pw-input--shake { animation: pw-shake 0.45s ease; }


/* ============================================================
   WORKPLACE WELL-BEING MODEL SECTION
   ============================================================ */
.model-section {
  width: 100%;
  max-width: none;
  padding: clamp(40px,5vw,72px) 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(118,185,0,0.05) 0%, transparent 60%),
    #0c100e;
  color: #fff;
}
.model-header,
.model-tabs,
.model-panel {
  width: min(var(--max), calc(100% - 40px));
  margin-left: auto; margin-right: auto;
}
.model-header { text-align: center; max-width: 920px; }
.model-header .section-kicker { color: var(--accent); }
.model-header h2 { color: #fff; }
.model-intro {
  margin: 12px auto 0;
  max-width: 760px;
  color: rgba(255,255,255,0.62);
  font-size: clamp(14px,1.35vw,16px);
  line-height: 1.7;
}

/* ── Tabs ── */
.model-tabs {
  display: flex; justify-content: center;
  gap: 8px; margin-top: 24px; margin-bottom: 24px;
  flex-wrap: wrap;
}
.model-tab {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease;
}
.model-tab:hover { color: #fff; border-color: rgba(118,185,0,0.4); }
.model-tab.is-active {
  color: #0c1a06; background: var(--accent); border-color: var(--accent);
}
.model-tab-no {
  font-family: var(--fm); font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; opacity: 0.7;
}
.model-tab-label {
  font-family: var(--fd); font-size: 14px; font-weight: 600; letter-spacing: -0.01em;
}

/* ── Panels ── */
.model-panel { display: none; animation: modelFade 480ms cubic-bezier(0.16,1,0.3,1); }
.model-panel.is-active { display: block; }
@keyframes modelFade {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* ── Surgeon General Framework ── */
.sg-framework {
  margin-bottom: 48px;
}
.sg-framework-header {
  margin-bottom: 24px;
}
.sg-framework-kicker {
  display: block;
  font-family: var(--fm); font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-dark); margin-bottom: 8px;
}
.sg-framework-note {
  font-family: var(--fb); font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,0.75); margin: 0; line-height: 1.5;
}
.sg-framework-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.sg-row {
  display: flex; flex-direction: column; gap: 12px;
  padding: 18px 16px 16px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid var(--sg-color, rgba(118,185,0,0.6));
  transition: background 160ms ease, transform 160ms ease;
}
.sg-row:hover { background: rgba(255,255,255,0.06); transform: translateY(-2px); }
.sg-dimension {
  display: flex; flex-direction: column; gap: 4px;
}
.sg-dim-label {
  font-family: var(--fb); font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,0.92); line-height: 1.3;
}
.sg-dim-sub {
  font-family: var(--fm); font-size: 10px;
  color: rgba(255,255,255,0.35); letter-spacing: 0.06em;
}
.sg-cases {
  display: flex; flex-direction: column; gap: 5px; flex: 1;
}
.sg-case-tag {
  font-family: var(--fb); font-size: 11px;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 4px; padding: 5px 8px;
  line-height: 1.35;
}
.sg-framework-source {
  margin-top: 14px;
  font-family: var(--fm); font-size: 10px;
  color: rgba(255,255,255,0.2);
  font-style: italic;
}

/* ── Tab 1: layered model stack ── */
.model-frame {
  position: relative;
  border: 1.5px dashed rgba(118,185,0,0.28);
  border-radius: var(--radius);
  padding: clamp(20px,2.5vw,32px) clamp(16px,2vw,28px) clamp(18px,2vw,28px);
  background:
    /* dot grid texture */
    radial-gradient(circle, rgba(118,185,0,0.14) 1px, transparent 1px),
    /* green glow top-left */
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(118,185,0,0.08) 0%, transparent 70%),
    /* base dark */
    #0b100e;
  background-size: 28px 28px, 100% 100%, 100% 100%;
  box-shadow:
    0 0 0 1px rgba(118,185,0,0.08),
    0 24px 80px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(118,185,0,0.12);
}
/* Corner accent line — bottom-right */
.model-frame::after {
  content: "";
  position: absolute; bottom: 0; right: 0;
  width: 80px; height: 2px;
  background: linear-gradient(270deg, rgba(118,185,0,0.5), transparent);
}
/* Orbiting dot along the frame border (clockwise) */
.frame-orbit-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #76b900;
  box-shadow: 0 0 8px 3px rgba(118,185,0,0.6), 0 0 20px 6px rgba(118,185,0,0.2);
  z-index: 10;
  pointer-events: none;
  animation: frameOrbit 18s linear infinite;
}
@keyframes frameOrbit {
  0%    { top: -5px;              left: -5px; }
  25%   { top: -5px;              left: calc(100% - 5px); }
  50%   { top: calc(100% - 5px);  left: calc(100% - 5px); }
  75%   { top: calc(100% - 5px);  left: -5px; }
  100%  { top: -5px;              left: -5px; }
}
@media (prefers-reduced-motion: reduce) {
  .frame-orbit-dot { animation: none; display: none; }
}
.model-frame-label {
  display: inline-block;
  margin-top: 8px;
  margin-bottom: 28px;
  padding: 5px 16px;
  background: rgba(118,185,0,0.08);
  border: 1px solid rgba(118,185,0,0.3);
  border-radius: 999px;
  font-family: var(--fm); font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); white-space: nowrap;
}
.model-stack { display: flex; flex-direction: column; align-items: center; gap: 0; }

.model-enablers {
  width: 100%;
  border: 1px dashed rgba(118,185,0,0.3);
  border-radius: 10px;
  padding: 12px 18px;
  margin-bottom: 18px;
  text-align: center;
  background: rgba(118,185,0,0.03);
}
.model-enabler-label {
  display: block;
  font-family: var(--fm); font-size: 9px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(118,185,0,0.8); margin-bottom: 10px;
}
.model-enabler-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
}
.model-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 13px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  font-family: var(--fb); font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.02);
}
.model-chip svg { width: 13px; height: 13px; color: var(--accent); flex-shrink: 0; }

.model-layer {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: clamp(15px,2vw,22px) clamp(18px,2.4vw,26px);
  background: rgba(255,255,255,0.02);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}
.model-layer:hover {
  border-color: rgba(118,185,0,0.45);
  background: rgba(118,185,0,0.04);
  transform: translateY(-2px);
}
.model-layer-tag {
  display: inline-block;
  font-family: var(--fm); font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  padding: 3px 9px;
  border: 1px solid rgba(118,185,0,0.3);
  border-radius: 4px;
}
.model-layer-head h3 { color: #fff; margin-bottom: 4px; font-size: clamp(16px,1.65vw,21px); }
.model-layer-head p { color: rgba(255,255,255,0.55); font-size: 13.5px; line-height: 1.5; margin: 0; max-width: 72ch; }

/* width tiering — visually communicates the pyramid */
.model-layer--outcome    { max-width: 60%; background: rgba(118,185,0,0.08); border-color: rgba(118,185,0,0.35); }
.model-layer--moments    { max-width: 80%; }
.model-layer--core       { max-width: 90%; }
.model-layer--foundation { max-width: 100%; background: rgba(255,255,255,0.04); }

.model-arrow {
  display: grid; place-items: center;
  height: 26px; color: rgba(118,185,0,0.5);
}
.model-arrow svg { width: 18px; height: 18px; }

/* pills + dims */
.model-pills, .model-dims { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.model-pills span, .model-dims span {
  font-family: var(--fb); font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  padding: 5px 12px; border-radius: 999px;
}
.model-dims span { color: rgba(118,185,0,0.92); border-color: rgba(118,185,0,0.25); background: rgba(118,185,0,0.05); }

/* life-moment cards */
.model-cards {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 12px; margin-top: 16px;
}
.model-card {
  display: flex; flex-direction: column; gap: 6px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  transition: border-color 200ms ease, transform 200ms ease;
}
.model-card:hover { border-color: rgba(118,185,0,0.4); transform: translateY(-3px); }
.model-card svg { width: 21px; height: 21px; color: var(--accent); }
.model-card strong { font-family: var(--fd); font-size: 14px; font-weight: 600; color: #fff; }
.model-card span { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.45; }

/* ── Tab 2: capability matrix ── */
.cap-grid {
  display: flex; flex-direction: column;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; overflow: hidden;
  margin-top: 40px;
}
.cap-row {
  display: grid; grid-template-columns: 280px 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 200ms ease;
}
.cap-row:last-child { border-bottom: 0; }
.cap-row:hover { background: rgba(118,185,0,0.04); }
.cap-layer {
  padding: 26px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  display: flex; flex-direction: column; gap: 6px; justify-content: center;
}
.cap-layer-tag {
  font-family: var(--fm); font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent);
}
.cap-layer-name { font-family: var(--fd); font-size: 17px; font-weight: 600; color: #fff; line-height: 1.2; }
.cap-bring { padding: 26px 28px; display: flex; flex-direction: column; gap: 10px; justify-content: center; }
.cap-bring p { margin: 0; color: rgba(255,255,255,0.7); font-size: 14.5px; line-height: 1.65; }
.cap-proof {
  font-family: var(--fm); font-size: 11px; letter-spacing: 0.05em;
  color: rgba(118,185,0,0.85);
}

/* ── Tab 3: cross-functional engine ── */
.flow-wrap { display: flex; flex-direction: column; gap: 48px; }
.flow-hub-diagram {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 32px; align-items: center;
  margin-bottom: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: clamp(24px,3vw,40px);
  background: rgba(255,255,255,0.02);
}
.flow-center {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 10px; padding: 28px 20px;
  border: 1.5px solid rgba(118,185,0,0.4);
  border-radius: 14px;
  background: rgba(118,185,0,0.06);
}
.flow-center svg { width: 40px; height: 40px; color: var(--accent); }
.flow-center strong { font-family: var(--fd); font-size: 17px; font-weight: 700; color: #fff; line-height: 1.25; }
.flow-center span { font-size: 12.5px; color: rgba(255,255,255,0.5); }
.flow-spokes { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.flow-spoke {
  position: relative;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  font-family: var(--fb); font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.78);
  transition: border-color 200ms ease, color 200ms ease, transform 200ms ease;
}
.flow-spoke:hover { border-color: rgba(118,185,0,0.45); color: #fff; transform: translateX(3px); }
.flow-spoke::before {
  content: ""; position: absolute; left: -1px; top: 50%; transform: translateY(-50%);
  width: 3px; height: 0; background: var(--accent);
  border-radius: 0 2px 2px 0; transition: height 200ms ease;
}
.flow-spoke:hover::before { height: 60%; }

.flow-process-label {
  display: block; text-align: center;
  font-family: var(--fm); font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 24px;
}
.flow-steps { display: flex; align-items: stretch; justify-content: center; gap: 8px; flex-wrap: wrap; }
.flow-step {
  flex: 1; min-width: 150px; max-width: 200px;
  display: flex; flex-direction: column; gap: 8px;
  padding: 20px 18px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  transition: border-color 200ms ease, transform 200ms ease;
}
.flow-step:hover { border-color: rgba(118,185,0,0.4); transform: translateY(-3px); }
.flow-step-no {
  display: grid; place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(118,185,0,0.15); color: var(--accent);
  font-family: var(--fm); font-size: 13px; font-weight: 600;
}
.flow-step strong { font-family: var(--fd); font-size: 15px; font-weight: 600; color: #fff; }
.flow-step p { margin: 0; font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.55; }
.flow-step-arrow {
  display: flex; align-items: center;
  color: rgba(118,185,0,0.5); font-size: 20px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .model-cards { grid-template-columns: repeat(2,1fr); }
  .model-layer--outcome,
  .model-layer--moments,
  .model-layer--core,
  .model-layer--foundation { max-width: 100%; }
  .cap-row { grid-template-columns: 1fr; }
  .cap-layer { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .flow-hub-diagram { grid-template-columns: 1fr; }
  .flow-step-arrow { transform: rotate(90deg); }
}
@media (max-width: 560px) {
  .model-cards { grid-template-columns: 1fr; }
  .flow-spokes { grid-template-columns: 1fr; }
  .model-tab { padding: 11px 16px; }
  .model-tab-label { font-size: 13px; }
}


/* ── Model: relocated wellness wheel block ── */
.model-wheel-block {
  margin-top: 56px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: clamp(24px,3vw,40px);
  background: rgba(255,255,255,0.02);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px,4vw,56px);
  align-items: center;
}
.model-wheel-intro { min-width: 0; }
.model-wheel-kicker {
  display: block;
  font-family: var(--fm); font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.model-wheel-intro h3 { color: #fff; font-size: clamp(20px,2.1vw,28px); margin-bottom: 12px; }
.model-wheel-intro p { color: rgba(255,255,255,0.62); font-size: 15px; line-height: 1.7; margin: 0 0 16px; }
.model-wheel-source {
  font-family: var(--fm); font-size: 10.5px; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.32); line-height: 1.5;
}
.model-wheel-block .wellness-wheel-wrap { margin-top: 0; justify-content: center; }

@media (max-width: 900px) {
  .model-wheel-block { grid-template-columns: 1fr; gap: 28px; }
}


/* ── Circular Care Cycle (Tab 1) ── */
.cycle-wrap { display: flex; flex-direction: column; align-items: center; gap: 20px; }

.cycle-ring {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
/* center hub */
.cycle-center {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 16px 28px;
  background: rgba(118,185,0,0.08);
  border: 1.5px solid rgba(118,185,0,0.4);
  border-radius: 999px;
  text-align: center;
}
.cycle-center svg { width: 28px !important; height: 28px !important; color: var(--accent); flex-shrink: 0; }
.cycle-center strong { font-family: var(--fd); font-size: 14px; font-weight: 700; color: #fff; }
.cycle-center span { font-size: 11px; color: rgba(255,255,255,0.5); }

.cycle-segments-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  width: 100%;
}

/* segments */
.cycle-segment {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  text-align: center;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
  flex: 1;
  min-width: 0;
}
.cycle-segment:hover { border-color: rgba(118,185,0,0.5); background: rgba(118,185,0,0.05); transform: translateY(-3px); }
.cycle-seg-no {
  display: grid; place-items: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(118,185,0,0.15); color: var(--accent);
  font-family: var(--fm); font-size: 12px; font-weight: 600;
}
.cycle-segment h3 { font-size: clamp(15px,1.5vw,18px); color: #fff; margin: 0; line-height: 1.3; }

/* Connecting arrow hints between segments */
.cycle-segment { position: relative; }
.cycle-segment::after {
  content: "⇄";
  position: absolute; top: 50%; right: -16px; transform: translateY(-50%);
  color: rgba(118,185,0,0.6); font-size: 18px;
  pointer-events: none;
}
.cycle-segment:last-child::after { content: none; }

/* Detail cards */
.cycle-details {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; width: 100%;
}
.cycle-detail {
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  transition: border-color 220ms ease, transform 220ms ease;
}
.cycle-detail:hover { border-color: rgba(118,185,0,0.4); transform: translateY(-3px); }
.cycle-detail svg { color: var(--accent); margin-bottom: 16px; flex-shrink: 0; }
.cycle-detail h4 {
  font-family: var(--fd); font-size: 20px; font-weight: 600;
  color: #fff; margin: 0 0 10px; letter-spacing: -0.01em;
}
.cycle-detail p {
  font-size: 14.5px; color: rgba(255,255,255,0.55); line-height: 1.6;
  margin: 0 0 18px;
}
.cycle-detail ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 9px;
}
.cycle-detail ul li {
  font-size: 14px; color: rgba(255,255,255,0.72);
  padding-left: 18px;
  position: relative;
}
.cycle-detail ul li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

/* Enabler bar */
.cycle-enablers {
  width: 100%;
  border: 1px dashed rgba(118,185,0,0.25);
  border-radius: 10px;
  padding: 14px 20px;
  text-align: center;
  background: rgba(118,185,0,0.03);
}
.cycle-enabler-label {
  display: block;
  font-family: var(--fm); font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(118,185,0,0.8); margin-bottom: 12px;
}
.cycle-enabler-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }

/* Responsive */
@media (max-width: 768px) {
  .cycle-segments-row { flex-direction: column; }
  .cycle-segment::after { content: none; }
  .cycle-details { grid-template-columns: 1fr; }
}


/* ── SKILL: Focus states (accessibility) ── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
/* ── SKILL: cursor-pointer on interactive elements ── */
.model-tab,
.model-card,
.cycle-segment,
.flow-spoke,
.flow-step,
.cap-row,
.nvidia-grid article,
.case-card { cursor: pointer; }


/* ============================================================
   NVIDIA-INSPIRED TRIANGLE DECORATIONS
   ============================================================ */
.geo-lines {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden; pointer-events: none;
}

.geo-triangles-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .geo-triangles-svg { opacity: 0.4; }
}

/* ── 8 Dimensions word cloud inside model frame ── */
.dim-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: space-between;
  gap: 0;
  position: absolute;
  inset: 20px;
  pointer-events: none;
  z-index: 0;
}
.dim-tag {
  font-family: var(--fm);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(118,185,0,0.14);
  white-space: nowrap;
  padding: 6px 10px;
  animation: dimFloat 5s ease-in-out infinite alternate;
}
.dim-tag--lg { font-size: 14px; color: rgba(118,185,0,0.2); }
.dim-tag--md { font-size: 11px; }
.dim-tag--sm { font-size: 9px; color: rgba(118,185,0,0.1); }

.dim-tag:nth-child(1) { align-self: flex-start; }
.dim-tag:nth-child(2) { align-self: flex-end; margin-top: 40px; }
.dim-tag:nth-child(3) { align-self: center; }
.dim-tag:nth-child(4) { align-self: flex-end; }
.dim-tag:nth-child(5) { align-self: flex-start; margin-top: 20px; }
.dim-tag:nth-child(6) { align-self: center; margin-top: 60px; }
.dim-tag:nth-child(7) { align-self: flex-end; }
.dim-tag:nth-child(8) { align-self: flex-start; }

.dim-tag:nth-child(2) { animation-delay: -1s; }
.dim-tag:nth-child(3) { animation-delay: -2s; }
.dim-tag:nth-child(4) { animation-delay: -3s; }
.dim-tag:nth-child(5) { animation-delay: -4s; }
.dim-tag:nth-child(6) { animation-delay: -0.5s; }
.dim-tag:nth-child(7) { animation-delay: -2.5s; }
.dim-tag:nth-child(8) { animation-delay: -4.5s; }

@keyframes dimFloat {
  0%   { transform: translateY(0); opacity: 1; }
  50%  { opacity: 1.6; }
  100% { transform: translateY(-8px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .dim-tag { animation: none; }
}


/* ── Eight Dimensions foundation bar ── */
.cycle-foundation {
  width: 100%;
  margin-top: 28px;
  padding: 28px 24px;
  border: 1px solid rgba(118,185,0,0.18);
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  text-align: center;
}
.cycle-foundation-label {
  display: block;
  font-family: var(--fm); font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(118,185,0,0.6);
  margin-bottom: 18px;
}
.cycle-foundation-dims {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
}
.cycle-foundation-dims span {
  font-family: var(--fb); font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.65);
  padding: 8px 16px;
  border: 1px solid rgba(118,185,0,0.2);
  border-radius: 10px;
  background: rgba(118,185,0,0.04);
  transition: border-color 200ms ease, transform 200ms ease;
}
.cycle-foundation-dims span:hover {
  border-color: rgba(118,185,0,0.5);
  transform: translateY(-2px);
}


/* ── Capability cards (simplified proof grid) ── */
.cap-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.cap-card {
  display: flex; flex-direction: column; gap: 10px;
  padding: 24px 20px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  transition: border-color 220ms ease, transform 220ms ease;
}
.cap-card:hover { border-color: rgba(118,185,0,0.45); transform: translateY(-3px); }
.cap-card .cap-layer-tag { margin-bottom: 0; }
.cap-card .cap-layer-name { font-size: 16px; }
.cap-card .cap-proof { margin-top: auto; }

@media (max-width: 900px) {
  .cap-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .cap-cards { grid-template-columns: 1fr; }
}


/* ── NVIDIA closing statement ── */
.nvidia-closing {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.nvidia-closing h2 {
  color: #fff;
  font-size: clamp(28px,4vw,52px);
}
.nvidia-closing-body {
  color: rgba(255,255,255,0.68);
  font-size: clamp(14px,1.35vw,16px);
  line-height: 1.75;
  margin: 20px 0 36px;
}
.nvidia-closing-actions {
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
}


.nvidia-closing-cta {
  font-family: var(--fd);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  color: #fff;
  margin: 8px 0 28px;
}



/* ── Footer note ── */
.footer-bottom {
  width: 100%;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.footer-note {
  font-family: var(--fb);
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* ============================================================
   MENTAL HEALTH CONTINUUM + NEW PILLARS
   ============================================================ */

/* Continuum track */
.mh-continuum {
  margin: 0 auto 8px;
  max-width: 860px;
  padding: 32px 40px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
}
.mhc-label {
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 24px;
  text-align: center;
}
.mhc-track {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.mhc-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
}
.mhc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid;
  flex-shrink: 0;
}
.mhc-healthy  .mhc-dot { border-color: #76b900; background: rgba(118,185,0,0.25); }
.mhc-reacting .mhc-dot { border-color: #f0c040; background: rgba(240,192,64,0.2); }
.mhc-injured  .mhc-dot { border-color: #e07840; background: rgba(224,120,64,0.2); }
.mhc-ill      .mhc-dot { border-color: #c04848; background: rgba(192,72,72,0.2); }

.mhc-name {
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
}
.mhc-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  line-height: 1.4;
  max-width: 100px;
}
.mhc-arrow {
  width: 40px;
  flex-shrink: 0;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin-top: 15px;
  position: relative;
}
.mhc-arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  border: 3px solid transparent;
  border-left-color: rgba(255,255,255,0.2);
}
.mhc-caption {
  text-align: center;
  margin-top: 20px;
  font-size: 10px;
  font-family: var(--fm);
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.2);
}

/* Connector between continuum and pillars */
.mhc-connector {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 860px;
  margin: 20px auto 28px;
}
.mhc-connector-line {
  flex: 1;
  height: 1px;
  background: rgba(118,185,0,0.15);
}
.mhc-connector-label {
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(118,185,0,0.5);
  white-space: nowrap;
}

/* Three pillars */
.new-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.new-pillar {
  padding: 32px 28px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 250ms ease, transform 250ms ease;
}
.new-pillar:hover {
  transform: translateY(-4px);
}
.new-pillar--body:hover  { border-color: rgba(118,185,0,0.35); }
.new-pillar--life:hover  { border-color: rgba(96,165,250,0.35); }
.new-pillar--mind:hover  { border-color: rgba(167,139,250,0.35); }

.np-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.np-no {
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 4px 8px;
  border-radius: 6px;
  flex-shrink: 0;
  margin-top: 2px;
}
.new-pillar--body .np-no  { color: #76b900; background: rgba(118,185,0,0.1); }
.new-pillar--life .np-no  { color: #60a5fa; background: rgba(96,165,250,0.1); }
.new-pillar--mind .np-no  { color: #a78bfa; background: rgba(167,139,250,0.1); }

.np-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.np-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin: 0;
  letter-spacing: 0.01em;
}
.np-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin: 0;
}
.np-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.np-list li {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.np-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 4px; height: 4px;
  border-radius: 50%;
}
.new-pillar--body .np-list li::before { background: rgba(118,185,0,0.6); }
.new-pillar--life .np-list li::before { background: rgba(96,165,250,0.6); }
.new-pillar--mind .np-list li::before { background: rgba(167,139,250,0.6); }

/* Continuum coverage bar at bottom of each pillar */
.np-continuum-bar {
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 4px;
}
.np-bar-fill {
  display: block;
  height: 100%;
  border-radius: 2px;
}
.np-bar--body { width: 100%; background: linear-gradient(90deg, rgba(118,185,0,0.7), rgba(118,185,0,0.2)); }
.np-bar--life { width: 75%;  background: linear-gradient(90deg, rgba(96,165,250,0.7), rgba(96,165,250,0.2)); }
.np-bar--mind { width: 100%; background: linear-gradient(90deg, rgba(167,139,250,0.7), rgba(167,139,250,0.2)); }

.np-range-label {
  font-size: 10px;
  font-family: var(--fm);
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.2);
}

/* Outcome node */
.mhc-outcome {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 36px auto 0;
  padding: 16px 32px;
  max-width: 260px;
  border: 1px solid rgba(118,185,0,0.3);
  border-radius: 40px;
  background: rgba(118,185,0,0.06);
  color: rgba(118,185,0,0.9);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--fd);
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .new-pillars { grid-template-columns: 1fr; }
  .mhc-track { flex-wrap: wrap; gap: 20px; justify-content: space-around; }
  .mhc-arrow { display: none; }
  .mhc-connector { display: none; }
}

/* ============================================================
   ARCHITECTURE VIEW — HIGH LEVEL MODEL
   ============================================================ */

/* Employee center node */
.cycle-center-node {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}
.cycle-center-node .cycle-center {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 32px;
  border: 1px solid rgba(118,185,0,0.3);
  border-radius: 40px;
  background: rgba(118,185,0,0.05);
  color: rgba(118,185,0,0.9);
}
.cycle-center-node .cycle-center strong {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}
.cycle-center-node .cycle-center span {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}

/* Psychological Safety bridge */
.psych-safety-bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
  padding: 8px 20px;
}
.psych-safety-label {
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(167,139,250,0.8);
  border: 1px solid rgba(167,139,250,0.25);
  border-radius: 20px;
  padding: 3px 12px;
}
.psych-safety-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}
.arch-continuum {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.arch-continuum-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 720px;
  padding: 16px 28px 20px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
}
.arch-ct-label {
  font-family: var(--fm);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.arch-ct-stages {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.arch-ct-stage {
  font-size: 12px;
  font-weight: 600;
  font-family: var(--fd);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid;
}
.arch-ct--healthy   { color: #76b900; border-color: rgba(118,185,0,0.3); background: rgba(118,185,0,0.07); }
.arch-ct--reacting  { color: #f0c040; border-color: rgba(240,192,64,0.3); background: rgba(240,192,64,0.06); }
.arch-ct--struggling { color: #e07840; border-color: rgba(224,120,64,0.3); background: rgba(224,120,64,0.06); }
.arch-ct--crisis    { color: #e06060; border-color: rgba(224,96,96,0.3); background: rgba(224,96,96,0.06); }
.arch-ct-divider {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
}
.arch-ct-bar {
  width: 80%;
  height: 2px;
  background: rgba(255,255,255,0.05);
  border-radius: 1px;
  overflow: hidden;
}
.arch-ct-bar span {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg,
    rgba(118,185,0,0.6) 0%,
    rgba(240,192,64,0.6) 33%,
    rgba(224,120,64,0.6) 66%,
    rgba(224,96,96,0.6) 100%);
}

/* Pillar hint text */
.arch-pillar-hint {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin: 6px 0 0;
  line-height: 1.4;
  text-align: center;
}
.arch-pillars .cycle-segment {
  gap: 8px;
}

/* ============================================================
   WORKPLACE HEALTH & SAFETY SPECTRUM
   ============================================================ */
.arch-spectrum-inner {
  max-width: 900px !important;
  padding: 20px 28px 24px !important;
  gap: 16px !important;
}
.arch-spectrum-cols {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
}
.arch-spec-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 20px;
  border-radius: 10px;
}
.arch-spec--prevent   { background: rgba(118,185,0,0.05);  border: 1px solid rgba(118,185,0,0.15); }
.arch-spec--intervene { background: rgba(240,192,64,0.04); border: 1px solid rgba(240,192,64,0.15); margin: 0 8px; }
.arch-spec--support   { background: rgba(167,139,250,0.05); border: 1px solid rgba(167,139,250,0.15); }

.arch-spec-badge {
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  align-self: flex-start;
}
.arch-spec--prevent   .arch-spec-badge { color: #76b900; background: rgba(118,185,0,0.12); }
.arch-spec--intervene .arch-spec-badge { color: #f0c040; background: rgba(240,192,64,0.12); }
.arch-spec--support   .arch-spec-badge { color: #a78bfa; background: rgba(167,139,250,0.12); }

.arch-spec-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  line-height: 1.45;
  font-style: italic;
}
.arch-spec-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.arch-spec-list li {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
  padding-left: 12px;
  position: relative;
}
.arch-spec-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 5px;
  width: 3px; height: 3px;
  border-radius: 50%;
}
.arch-spec--prevent   .arch-spec-list li::before { background: rgba(118,185,0,0.6); }
.arch-spec--intervene .arch-spec-list li::before { background: rgba(240,192,64,0.6); }
.arch-spec--support   .arch-spec-list li::before { background: rgba(167,139,250,0.6); }

.arch-spec-divider {
  width: 1px;
  background: rgba(255,255,255,0.06);
  flex-shrink: 0;
  align-self: stretch;
}

@media (max-width: 700px) {
  .arch-spectrum-cols { display: flex !important; flex-direction: column; gap: 8px; }
  .arch-spec--intervene { margin: 0; }
  .arch-spec-divider { display: none; }
}

/* ============================================================
   ENGAGE card + EAP band + MHFA note
   ============================================================ */

/* ENGAGE replaces INTERVENE — yellow → teal-green midpoint */
.arch-spec--engage {
  background: rgba(96,185,140,0.05);
  border: 1px solid rgba(96,185,140,0.18);
  margin: 0 8px;
}
.arch-spec--engage .arch-spec-badge {
  color: #60b98c;
  background: rgba(96,185,140,0.12);
}
.arch-spec--engage .arch-spec-list li::before {
  background: rgba(96,185,140,0.6);
}

/* EAP cross-spectrum band */
.arch-eap-band {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-top: 16px;
  padding: 12px 20px;
  border: 1px solid rgba(118,185,0,0.15);
  border-radius: 8px;
  background: rgba(118,185,0,0.03);
}
.arch-eap-label {
  font-family: var(--fm);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(118,185,0,0.7);
}
.arch-eap-track {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.arch-eap-node {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  padding: 4px 10px;
  border: 1px solid rgba(118,185,0,0.15);
  border-radius: 16px;
  background: rgba(118,185,0,0.04);
}
.arch-eap-arrow {
  width: 20px;
  height: 1px;
  background: rgba(118,185,0,0.3);
  position: relative;
  flex-shrink: 0;
}
.arch-eap-arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  border: 3px solid transparent;
  border-left-color: rgba(118,185,0,0.4);
}

/* MHFA note */
.arch-mhfa-note {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  margin-top: 10px;
  padding: 10px 20px;
  border: 1px solid rgba(167,139,250,0.15);
  border-radius: 8px;
  background: rgba(167,139,250,0.03);
}
.arch-mhfa-tag {
  font-size: 11px;
  font-weight: 600;
  color: rgba(167,139,250,0.8);
  font-family: var(--fd);
  letter-spacing: 0.01em;
  text-align: center;
}
.arch-mhfa-desc {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  font-family: var(--fm);
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1.6;
}


/* ============================================================
   SCROLL SPY — DOT NAVIGATION (right side)
   ============================================================ */
.dot-nav {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.dot-nav-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
}
.dot-nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(118,185,0,0.25);
  border: 1.5px solid rgba(118,185,0,0.4);
  transition: background 200ms ease, transform 200ms ease, border-color 200ms ease;
  flex-shrink: 0;
}
.dot-nav-item.is-active .dot-nav-dot {
  background: #76b900;
  border-color: #76b900;
  transform: scale(1.35);
}
.dot-nav-label {
  position: absolute;
  right: 18px;
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper-hi);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 4px 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(4px);
  transition: opacity 160ms ease, transform 160ms ease;
}
.dot-nav-item:hover .dot-nav-label,
.dot-nav-item.is-active .dot-nav-label {
  opacity: 1;
  transform: translateX(0);
}
/* Hide on small screens */
@media (max-width: 768px) {
  .dot-nav { display: none; }
}

/* ============================================================
   ANALYTICS — REDESIGN
   ============================================================ */

/* Hero */
.an-hero {
  max-width: 760px;
  margin-bottom: 64px;
}
.an-hero h2 {
  color: var(--ink);
  margin-bottom: 20px;
}
.an-hero-body {
  font-size: clamp(14px,1.35vw,16px);
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 36px;
}

/* Flow chain */
.an-flow {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  background: var(--paper-hi);
  max-width: 320px;
}
.an-flow-step {
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
}
.an-flow-step--accent {
  color: var(--accent-dark);
  font-weight: 700;
}
.an-flow-arrow {
  font-size: 12px;
  color: var(--muted);
  line-height: 1;
}

/* Evidence layout */
.an-evidence {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 32px;
  align-items: start;
  margin-bottom: 64px;
}

/* Dashboard */
.an-dashboard {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.an-dashboard-label {
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
}
.an-dashboard-img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.an-dashboard-caption {
  font-family: var(--fm);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* Panel */
.an-panel {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-hi);
  box-shadow: var(--shadow);
}
.an-panel-kicker {
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin: 0 0 20px;
}
.an-panel-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.an-panel-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.an-panel-num {
  font-family: var(--fd);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-dark);
  line-height: 1;
}
.an-panel-desc {
  font-size: 12px;
  color: var(--muted);
}
.an-panel-tag {
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 6px 0;
  border-top: 1px solid var(--line);
}
.an-panel-list li:first-child .an-panel-tag,
.an-panel-list li:nth-child(2) .an-panel-tag {
  border-top: none;
}

/* Principle */
.an-principle {
  max-width: 760px;
  padding: 40px 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-hi);
}
.an-principle-kicker {
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin: 0 0 16px;
}
.an-principle-quote {
  font-family: var(--fd);
  font-size: clamp(18px,2vw,24px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin: 0 0 16px;
  border: none;
  padding: 0;
}
.an-principle-chain {
  font-family: var(--fm);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin: 0;
}

@media (max-width: 900px) {
  .an-evidence { grid-template-columns: 1fr; }
  .an-panel { order: -1; }
}

/* ── PROGRAM LIFECYCLE SECTION ── */
.lifecycle-section {
  position: relative;
}
.lifecycle-section::before {
  position: absolute; z-index: -1;
  inset: 0 calc(50% - 50vw);
  background: linear-gradient(180deg, #1a2420 0%, #1e2b25 100%);
  content: "";
}
.lifecycle-section .section-kicker { color: var(--accent); }
.lifecycle-header {
  max-width: 760px;
  margin-bottom: 48px;
}
.lifecycle-header h2 {
  color: #fff;
}
.lifecycle-header p {
  color: rgba(255,255,255,0.6);
  font-size: clamp(14px,1.35vw,16px);
  line-height: 1.72;
}

/* ── Style Switcher (preview only) ── */
.lc-style-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.lc-switch-label {
  font-family: var(--fm);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.lc-switch-btn {
  font-family: var(--fm);
  font-size: 12px;
  padding: 7px 14px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: border-color 150ms, background 150ms, color 150ms;
}
.lc-switch-btn:hover {
  border-color: rgba(118,185,0,0.5);
  color: #fff;
}
.lc-switch-btn.is-active {
  border-color: var(--accent);
  background: rgba(118,185,0,0.1);
  color: var(--accent);
}

/* ── Variant visibility ── */
.lc-variant { display: none; }
.lc-variant--active { display: block; }

/* ═══════════════════════════════════════
   STYLE A: 2x2 Grid
   ═══════════════════════════════════════ */
.lc-grid4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(118,185,0,0.15);
  border: 1px solid rgba(118,185,0,0.2);
  border-radius: 10px;
  overflow: hidden;
}
.lc-grid4-cell {
  background: rgba(22,34,28,0.95);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: background 200ms ease;
}
.lc-grid4-cell:hover {
  background: rgba(28,42,34,0.98);
}
.lc-grid4-phase {
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.lc-grid4-cell h3 {
  font-family: var(--fd);
  font-size: clamp(17px,1.6vw,20px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.25;
}
.lc-grid4-cell > p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}
.lc-grid4-metrics {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.lc-grid4-metric {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.45;
}
.lc-grid4-metric strong {
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-right: 8px;
}

@media (max-width: 680px) {
  .lc-grid4 { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   STYLE B: Accordion
   ═══════════════════════════════════════ */
.lc-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(118,185,0,0.18);
  border-radius: 10px;
  overflow: hidden;
}
.lc-acc-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(22,34,28,0.95);
}
.lc-acc-item:last-child { border-bottom: none; }

.lc-acc-item summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  transition: background 150ms;
}
.lc-acc-item summary::-webkit-details-marker { display: none; }
.lc-acc-item summary::marker { display: none; content: ""; }
.lc-acc-item summary:hover { background: rgba(28,42,34,0.98); }

.lc-acc-phase {
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  min-width: 72px;
  flex-shrink: 0;
}
.lc-acc-title {
  font-family: var(--fd);
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  flex: 1;
}
.lc-acc-chevron {
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
  transition: transform 250ms ease;
}
.lc-acc-item[open] .lc-acc-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.lc-acc-body {
  padding: 0 24px 24px 24px;
  margin-left: 88px;
}
.lc-acc-body > p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 640px;
}
.lc-acc-evidence {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}
.lc-acc-ev-item {
  padding: 10px 14px;
  background: rgba(118,185,0,0.05);
  border: 1px solid rgba(118,185,0,0.15);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lc-acc-ev-item strong {
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.lc-acc-ev-item span {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.45;
}

@media (max-width: 600px) {
  .lc-acc-body { margin-left: 0; }
  .lc-acc-evidence { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   STYLE C: Horizontal Scroll Cards
   ═══════════════════════════════════════ */
.lc-hscroll-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
  scrollbar-width: thin;
  scrollbar-color: rgba(118,185,0,0.3) transparent;
}
.lc-hscroll-wrap::-webkit-scrollbar {
  height: 6px;
}
.lc-hscroll-wrap::-webkit-scrollbar-track {
  background: transparent;
}
.lc-hscroll-wrap::-webkit-scrollbar-thumb {
  background: rgba(118,185,0,0.3);
  border-radius: 3px;
}
.lc-hscroll-track {
  display: flex;
  gap: 16px;
  padding: 8px 0 20px;
  min-width: max-content;
}
.lc-hcard {
  width: 300px;
  flex-shrink: 0;
  padding: 24px;
  background: rgba(22,34,28,0.95);
  border: 1px solid rgba(118,185,0,0.15);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  transition: border-color 200ms, transform 200ms, box-shadow 200ms;
}
.lc-hcard:hover {
  border-color: rgba(118,185,0,0.45);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.lc-hcard-top {
  margin-bottom: 14px;
}
.lc-hcard-phase {
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.lc-hcard h3 {
  font-family: var(--fd);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}
.lc-hcard > p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.lc-hcard-proof {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.lc-hcard-proof span {
  font-family: var(--fm);
  font-size: 10px;
  color: rgba(118,185,0,0.8);
  line-height: 1.45;
}
.lc-hscroll-hint {
  font-family: var(--fm);
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.04em;
}

/* Responsive */
@media (max-width: 768px) {
  .lc-style-switch { gap: 6px; }
  .lc-switch-btn { font-size: 11px; padding: 5px 10px; }
}


/* ═══════════════════════════════════════
   MISSION CONTROL DASHBOARD
   ═══════════════════════════════════════ */
.mc-section {
  position: relative;
}
.mc-section::before {
  position: absolute; z-index: -1;
  inset: 0 calc(50% - 50vw);
  background: #0a0e0c;
  content: "";
}
.mc-section .section-kicker { color: var(--accent); }
.mc-header { max-width: 760px; margin-bottom: 40px; }
.mc-header h2 { color: #fff; }
.mc-header p { color: rgba(255,255,255,0.55); font-size: clamp(14px,1.35vw,16px); line-height: 1.72; }

.mc-dash {
  border: 1px solid rgba(118,185,0,0.25);
  border-radius: 6px;
  overflow: hidden;
  background: #060a08;
}

/* Top bar */
.mc-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: rgba(118,185,0,0.06);
  border-bottom: 1px solid rgba(118,185,0,0.2);
  flex-wrap: wrap;
  gap: 10px;
}
.mc-topbar-brand {
  display: flex; align-items: center; gap: 10px;
}
.mc-brand-mark {
  font-family: var(--fm);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
}
.mc-brand-title {
  font-family: var(--fm);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
}
.mc-brand-ver {
  font-family: var(--fm);
  font-size: 9px;
  color: rgba(255,255,255,0.3);
}
.mc-topbar-status {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--fm);
  font-size: 10px; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
}
.mc-status-dot { width: 6px; height: 6px; border-radius: 50%; }
.mc-status-dot--ok { background: var(--accent); box-shadow: 0 0 6px rgba(118,185,0,0.6); }
.mc-sep { color: rgba(255,255,255,0.15); }

/* MC Grid */
.mc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(118,185,0,0.12);
}
.mc-cell {
  background: #0a0e0c;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.mc-cell--ns { grid-column: span 1; }
.mc-cell--wide { grid-column: span 3; }
.mc-cell-label {
  font-family: var(--fm);
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(118,185,0,0.7);
  margin-bottom: 12px;
}
.mc-cell-note {
  font-family: var(--fm);
  font-size: 9px;
  color: rgba(255,255,255,0.25);
  margin-top: auto;
  padding-top: 8px;
}

/* North Star */
.mc-ns-val { display: flex; align-items: baseline; gap: 10px; margin-bottom: 4px; }
.mc-ns-val strong {
  font-family: var(--fd);
  font-size: 42px; font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.mc-ns-name {
  font-family: var(--fm);
  font-size: 12px; font-weight: 500;
  color: #fff;
  letter-spacing: 0.04em;
}
.mc-ns-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 12px;
}
.mc-ns-trend {
  display: flex; gap: 12px; align-items: center;
}
.mc-ns-target {
  font-family: var(--fm);
  font-size: 10px;
  color: rgba(255,255,255,0.3);
}
.mc-trend-up {
  font-family: var(--fm);
  font-size: 11px; font-weight: 500;
  color: var(--accent);
}

/* Metric rows */
.mc-metric-row {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 14px;
}
.mc-metric-val {
  font-family: var(--fd);
  font-size: 28px; font-weight: 700;
  color: #fff; line-height: 1;
}
.mc-metric-delta {
  font-family: var(--fm);
  font-size: 11px; font-weight: 500;
}
.mc-metric-unit {
  font-family: var(--fm);
  font-size: 11px;
  color: rgba(255,255,255,0.35);
}

/* Bar charts */
.mc-bar-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 8px; }
.mc-bar-item { display: flex; align-items: center; gap: 8px; }
.mc-bar-label { font-family: var(--fm); font-size: 9px; color: rgba(255,255,255,0.45); width: 52px; flex-shrink: 0; letter-spacing: 0.04em; }
.mc-bar-track { flex: 1; height: 4px; background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; }
.mc-bar-fill { height: 100%; background: linear-gradient(90deg, var(--accent), rgba(118,185,0,0.5)); border-radius: 2px; }
.mc-bar-pct { font-family: var(--fm); font-size: 9px; font-weight: 500; color: rgba(255,255,255,0.5); width: 28px; text-align: right; flex-shrink: 0; }

/* Vendor list */
.mc-vendor-list { display: flex; flex-direction: column; gap: 8px; }
.mc-vendor-row { display: flex; align-items: center; gap: 10px; }
.mc-vendor-name { font-family: var(--fm); font-size: 11px; color: rgba(255,255,255,0.7); flex: 1; }
.mc-vendor-status {
  font-family: var(--fm); font-size: 9px; font-weight: 600;
  letter-spacing: 0.1em; padding: 2px 7px; border-radius: 3px;
}
.mc-vendor--green { color: var(--accent); background: rgba(118,185,0,0.1); border: 1px solid rgba(118,185,0,0.3); }
.mc-vendor--amber { color: #f59e0b; background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.3); }
.mc-vendor-score { font-family: var(--fm); font-size: 10px; color: rgba(255,255,255,0.4); }

/* Regional status grid */
.mc-region-grid {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.mc-region {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 8px 12px; border-radius: 4px; min-width: 80px;
  border: 1px solid rgba(255,255,255,0.08);
}
.mc-region span:first-child { font-family: var(--fm); font-size: 10px; color: rgba(255,255,255,0.7); font-weight: 500; }
.mc-region span:last-child { font-family: var(--fm); font-size: 8px; font-weight: 600; letter-spacing: 0.1em; }
.mc-region--green { border-color: rgba(118,185,0,0.25); }
.mc-region--green span:last-child { color: var(--accent); }
.mc-region--amber { border-color: rgba(245,158,11,0.3); }
.mc-region--amber span:last-child { color: #f59e0b; }
.mc-region--red { border-color: rgba(239,68,68,0.3); }
.mc-region--red span:last-child { color: #ef4444; }

/* Sparkline */
.mc-sparkline { height: 32px; margin-bottom: 10px; }
.mc-sparkline svg { width: 100%; height: 100%; }

/* Mini stats */
.mc-mini-stats {
  display: flex; flex-direction: column; gap: 3px;
}
.mc-mini-stats span {
  font-family: var(--fm); font-size: 10px; color: rgba(255,255,255,0.4);
}

/* Ring chart */
.mc-ring-wrap {
  position: relative; width: 80px; height: 80px; margin: 0 auto 8px;
}
.mc-ring-wrap svg { width: 100%; height: 100%; }
.mc-ring-label {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--fd); font-size: 18px; font-weight: 700;
  color: #fff;
}

/* Action list */
.mc-action-list { display: flex; flex-direction: column; gap: 7px; }
.mc-action { display: flex; align-items: center; gap: 8px; }
.mc-action span:last-child { font-family: var(--fm); font-size: 11px; color: rgba(255,255,255,0.6); }
.mc-action-pri {
  font-family: var(--fm); font-size: 9px; font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 6px; border-radius: 3px; flex-shrink: 0;
}
.mc-pri--high { color: #ef4444; background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); }
.mc-pri--med { color: #f59e0b; background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.25); }
.mc-pri--low { color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); }

/* Bottom bar */
.mc-bottombar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 20px;
  border-top: 1px solid rgba(118,185,0,0.15);
  font-family: var(--fm); font-size: 9px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.06em;
}

/* Responsive */
@media (max-width: 900px) {
  .mc-grid { grid-template-columns: 1fr 1fr; }
  .mc-cell--wide { grid-column: span 2; }
  .mc-cell--ns { grid-column: span 2; }
}
@media (max-width: 600px) {
  .mc-grid { grid-template-columns: 1fr; }
  .mc-cell--wide, .mc-cell--ns { grid-column: span 1; }
  .mc-topbar { flex-direction: column; align-items: flex-start; }
  .mc-bottombar { flex-direction: column; gap: 4px; align-items: flex-start; }
  .mc-region-grid { gap: 4px; }
  .mc-region { min-width: 70px; padding: 6px 8px; }
}

/* Population Health Signals grid */
.mc-pop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 8px;
}
.mc-pop-item {
  padding: 10px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mc-pop-val {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.mc-pop-label {
  font-family: var(--fm);
  font-size: 9px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.03em;
  line-height: 1.3;
}
.mc-pop-delta {
  font-family: var(--fm);
  font-size: 9px;
  font-weight: 500;
}
.mc-trend-neutral {
  color: rgba(255,255,255,0.35);
}

/* Vendor Coverage Matrix */
.mc-coverage-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 10px;
}
.mc-cov-header, .mc-cov-row {
  display: grid;
  grid-template-columns: 80px repeat(5, 1fr);
  gap: 4px;
  align-items: center;
  padding: 6px 0;
}
.mc-cov-header {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 8px;
  margin-bottom: 4px;
}
.mc-cov-header span {
  font-family: var(--fm);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-align: center;
}
.mc-cov-corner { visibility: hidden; }
.mc-cov-row {
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.mc-cov-row:last-child { border-bottom: none; }
.mc-cov-country {
  font-family: var(--fm);
  font-size: 10px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.mc-cov-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 auto;
}
.mc-cov--yes { background: var(--accent); box-shadow: 0 0 4px rgba(118,185,0,0.4); }
.mc-cov--partial { background: #f59e0b; box-shadow: 0 0 4px rgba(245,158,11,0.3); }
.mc-cov--no { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); }

.mc-cov-legend {
  display: flex;
  gap: 16px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mc-cov-legend > span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--fm);
  font-size: 9px;
  color: rgba(255,255,255,0.35);
}
.mc-cov-legend .mc-cov-dot {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .mc-cov-header, .mc-cov-row {
    grid-template-columns: 60px repeat(5, 1fr);
  }
  .mc-cov-header span { font-size: 7px; }
  .mc-cov-legend { flex-direction: column; gap: 4px; }
}

/* Country Readiness Scorecard */
.mc-scorecard {
  overflow-x: auto;
  margin-bottom: 8px;
}
.mc-sc-header, .mc-sc-row {
  display: grid;
  grid-template-columns: 76px repeat(6, 1fr) 56px;
  gap: 2px;
  align-items: center;
  min-width: 580px;
}
.mc-sc-header {
  padding: 6px 0 8px;
  border-bottom: 1px solid rgba(118,185,0,0.15);
  margin-bottom: 2px;
}
.mc-sc-header span {
  font-family: var(--fm);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-align: center;
}
.mc-sc-corner {
  text-align: left !important;
  color: rgba(255,255,255,0.5) !important;
}
.mc-sc-score-col {
  text-align: right !important;
}
.mc-sc-row {
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mc-sc-row:last-child { border-bottom: none; }
.mc-sc-country {
  font-family: var(--fm);
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.mc-sc-check {
  font-family: var(--fm);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}
.mc-sc--yes { color: var(--accent); }
.mc-sc--no { color: rgba(239,68,68,0.6); }
.mc-sc--partial { color: rgba(239,68,68,0.6); }
.mc-sc-score {
  font-family: var(--fm);
  font-size: 11px;
  font-weight: 700;
  text-align: right;
}
.mc-sc-score--high { color: var(--accent); }
.mc-sc-score--mid { color: #f59e0b; }
.mc-sc-score--low { color: #f97316; }
.mc-sc-score--crit { color: #ef4444; }

/* Span 2 columns */
.mc-cell--span2 { grid-column: span 2; }

/* Anchor cell - bigger number */
.mc-cell--anchor .mc-ns-val strong {
  font-size: 56px;
}

/* Executive summary cell */
.mc-cell--exec { }
.mc-exec-statement {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin: 0 0 16px;
  max-width: 700px;
}
.mc-exec-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.mc-exec-num {
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mc-exec-num strong {
  font-family: var(--fd);
  font-size: 28px;
  font-weight: 700;
  color: #ef4444;
  line-height: 1;
}
.mc-exec-num > span {
  font-family: var(--fm);
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}
.mc-exec-note {
  font-style: italic;
  font-size: 9px !important;
  color: rgba(255,255,255,0.3) !important;
}

/* 3-Year Roadmap */
.mc-cell--roadmap { }
.mc-roadmap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(118,185,0,0.15);
  border-radius: 6px;
  overflow: hidden;
}
.mc-yr {
  padding: 18px 16px;
  background: rgba(10,14,12,0.95);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mc-yr-badge {
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: rgba(118,185,0,0.1);
  border: 1px solid rgba(118,185,0,0.3);
  padding: 2px 8px;
  border-radius: 3px;
  align-self: flex-start;
}
.mc-yr h4 {
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
.mc-yr ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mc-yr li {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  line-height: 1.45;
  padding-left: 10px;
  position: relative;
}
.mc-yr li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}
.mc-yr-success {
  font-family: var(--fm);
  font-size: 9px;
  color: var(--accent);
  line-height: 1.4;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(118,185,0,0.15);
  opacity: 0.8;
}

/* Country Tier Strategy */
.mc-cell--tiers { }
.mc-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.mc-tier {
  padding: 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mc-tier-badge {
  font-family: var(--fm);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 2px 7px;
  border-radius: 3px;
  align-self: flex-start;
}
.mc-tier--fast { color: var(--accent); background: rgba(118,185,0,0.1); border: 1px solid rgba(118,185,0,0.3); }
.mc-tier--mid { color: #f59e0b; background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.25); }
.mc-tier--complex { color: #ef4444; background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.25); }
.mc-tier--gap { color: #a78bfa; background: rgba(167,139,250,0.08); border: 1px solid rgba(167,139,250,0.25); }
.mc-tier-countries {
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.mc-tier-why {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  line-height: 1.45;
}

@media (max-width: 900px) {
  .mc-exec-numbers { grid-template-columns: 1fr; }
  .mc-roadmap { grid-template-columns: 1fr; }
  .mc-tiers { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .mc-tiers { grid-template-columns: 1fr; }
}

/* Exec insight callout */
.mc-exec-insight {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 14px;
  padding: 10px 14px;
  background: rgba(118,185,0,0.06);
  border: 1px solid rgba(118,185,0,0.2);
  border-radius: 5px;
}
.mc-insight-icon {
  color: var(--accent);
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 2px;
}
.mc-exec-insight > span:last-child {
  font-family: var(--fm);
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}


/* ============================================================
   THRIVE APAC - Program Control Dashboard (tv- prefix)
   ============================================================ */

.tv-section {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}
.tv-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0d1117;
  z-index: -1;
}
.tv-intro {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px,10vw,120px) 0 36px;
  color: #e6edf3;
}
.tv-intro .section-kicker { color: var(--accent); }
.tv-intro h2 { color: #e6edf3; }
.tv-intro p { color: #8b949e; font-size: clamp(15px,1.4vw,17px); line-height: 1.65; max-width: 72ch; }

/* First-year sequencing flow */
.year-flow {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 8px 0 clamp(64px,9vw,110px);
  color: #e6edf3;
}
.year-flow .section-kicker { color: var(--accent); margin-bottom: 14px; }
.year-flow-title {
  font-family: var(--fd);
  font-size: clamp(20px,2.4vw,30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #e6edf3;
  margin: 0 0 12px;
}
.year-flow-lede {
  font-family: var(--fb);
  font-size: clamp(14px,1.3vw,16px);
  color: #8b949e;
  line-height: 1.65;
  max-width: 70ch;
  margin: 0 0 36px;
}
.year-flow-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 30px;
}
.yf-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 18px 18px;
  background: rgba(22,27,34,0.92);
  border: 1px solid rgba(240,246,252,0.12);
  border-top: 2px solid var(--accent);
  border-radius: var(--radius);
}
/* Connector arrow between steps */
.yf-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -22px;
  width: 14px;
  height: 14px;
  border-top: 1.5px solid rgba(118,185,0,0.55);
  border-right: 1.5px solid rgba(118,185,0,0.55);
  transform: translateY(-50%) rotate(45deg);
}
.yf-phase {
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.yf-name {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 700;
  color: #e6edf3;
  line-height: 1.2;
}
.yf-desc {
  font-family: var(--fb);
  font-size: 13px;
  color: #9aa4ae;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.yf-out {
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: #7d8792;
  padding-top: 10px;
  border-top: 1px solid rgba(240,246,252,0.1);
}
.year-flow-goal {
  margin-top: 26px;
  padding: 18px 22px;
  background: rgba(118,185,0,0.07);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.yfg-label {
  display: block;
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.yfg-text {
  font-family: var(--fb);
  font-size: 14px;
  color: #c2cbd4;
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 1100px) {
  .year-flow-steps { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
  .yf-step:not(:last-child)::after { display: none; }
}
@media (max-width: 680px) {
  .year-flow-steps { grid-template-columns: 1fr; gap: 14px; }
}

/* Dashboard container */
.tv-dash {
  width: min(1360px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 clamp(56px,8vw,100px);
}

/* ── TOP BAR ── */
.tv-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 18px;
  background: #161b22;
  border: 1px solid rgba(48,54,61,0.8);
  border-radius: 6px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.tv-topbar-left,
.tv-topbar-center,
.tv-topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.tv-brand-icon {
  display: inline-block;
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}
.tv-brand-title {
  font-family: var(--fm);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #e6edf3;
  white-space: nowrap;
}
.tv-period {
  font-family: var(--fm);
  font-size: 11px;
  color: #8b949e;
  white-space: nowrap;
}
.tv-filter-badge {
  font-family: var(--fm);
  font-size: 10px;
  color: #8b949e;
  border: 1px solid rgba(48,54,61,0.8);
  background: rgba(48,54,61,0.3);
  padding: 3px 8px;
  border-radius: 3px;
  white-space: nowrap;
}
.tv-cadence {
  font-family: var(--fm);
  font-size: 10px;
  color: #8b949e;
  white-space: nowrap;
}
.tv-asof {
  font-family: var(--fm);
  font-size: 10px;
  color: #484f58;
  white-space: nowrap;
}
.tv-illustrative-badge {
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #f85149;
  background: rgba(248,81,73,0.1);
  border: 1px solid rgba(248,81,73,0.2);
  padding: 3px 9px;
  border-radius: 3px;
  white-space: nowrap;
}

/* ── KPI CARDS ── */
.tv-kpi-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.tv-kpi-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 14px;
  background: #161b22;
  border: 1px solid rgba(48,54,61,0.8);
  border-radius: 6px;
}
.tv-kpi-label {
  font-family: var(--fm);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8b949e;
}
.tv-kpi-value {
  font-family: var(--fd);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
}
.tv-kpi-delta {
  font-family: var(--fm);
  font-size: 10px;
  color: #3fb950;
}
.tv-kpi-delta--pos { color: #3fb950; }
.tv-kpi-delta--warn { color: #d29922; }
.tv-kpi-target {
  font-family: var(--fm);
  font-size: 10px;
  color: #484f58;
  margin-top: 2px;
}

/* ── BLOCK SECTION LABELS ── */
.tv-block {
  margin-bottom: 20px;
}
.tv-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px;
}
.tv-block-label {
  font-family: var(--fm);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e6edf3;
  padding-left: 12px;
  border-left: 3px solid var(--accent);
}
.tv-block-label--green { border-left-color: var(--accent); }
.tv-block-label--orange { border-left-color: #d29922; }
.tv-block-note {
  font-family: var(--fm);
  font-size: 10px;
  color: #484f58;
  font-style: italic;
}

/* ── PILLAR CARDS ── */
.tv-pillars-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.tv-pillar-card {
  padding: 16px 14px;
  background: #161b22;
  border: 1px solid rgba(48,54,61,0.8);
  border-radius: 6px;
}
.tv-pillar-title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e6edf3;
  margin-bottom: 12px;
}
.tv-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.tv-dot--mental { background: #3fb950; }
.tv-dot--physical { background: #58a6ff; }
.tv-dot--social { background: #d29922; }
.tv-dot--financial { background: #e3b341; }
.tv-pillar-metrics {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tv-pillar-metric {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--fm);
  font-size: 11px;
  color: #8b949e;
  line-height: 1.3;
}
.tv-pillar-metric strong {
  color: #e6edf3;
  font-weight: 600;
  margin-left: auto;
}
.tv-pm-dot {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #484f58;
  flex-shrink: 0;
}

/* ── COUNTRY STATUS MATRIX ── */
.tv-matrix-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.tv-matrix {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--fm);
  font-size: 11px;
  background: #161b22;
  border: 1px solid rgba(48,54,61,0.8);
  border-radius: 6px;
  overflow: hidden;
}
.tv-matrix thead tr {
  background: rgba(48,54,61,0.4);
}
.tv-matrix th {
  padding: 10px 12px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8b949e;
  text-align: left;
  white-space: nowrap;
  border-bottom: 1px solid rgba(48,54,61,0.8);
}
.tv-matrix td {
  padding: 9px 12px;
  color: #e6edf3;
  border-bottom: 1px solid rgba(48,54,61,0.4);
  white-space: nowrap;
  vertical-align: middle;
}
.tv-matrix tbody tr:last-child td { border-bottom: 0; }
.tv-matrix tbody tr:hover { background: rgba(48,54,61,0.2); }

/* Status dots */
.tv-status {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}
.tv-status--green { background: #3fb950; }
.tv-status--amber { background: #d29922; }
.tv-status--red { background: #f85149; }

/* Delta colors in table */
.tv-delta-pos { color: #3fb950; }
.tv-delta-zero { color: #484f58; }

/* Progress bars */
.tv-prog {
  width: 64px;
  height: 4px;
  background: rgba(48,54,61,0.6);
  border-radius: 2px;
  overflow: hidden;
}
.tv-prog-bar {
  height: 100%;
  border-radius: 2px;
}
.tv-prog-bar--green { background: #3fb950; }
.tv-prog-bar--amber { background: #d29922; }
.tv-prog-bar--red { background: #f85149; }

/* ── FOOTER BAR ── */
.tv-footer {
  margin-top: 20px;
  padding: 10px 18px;
  background: #161b22;
  border: 1px solid rgba(48,54,61,0.8);
  border-radius: 6px;
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: #484f58;
  text-align: center;
  text-transform: uppercase;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .tv-kpi-row { grid-template-columns: repeat(3, 1fr); }
  .tv-pillars-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .tv-kpi-row { grid-template-columns: repeat(2, 1fr); }
  .tv-pillars-row { grid-template-columns: 1fr; }
  .tv-topbar { flex-direction: column; align-items: flex-start; }
  .tv-topbar-center,
  .tv-topbar-right { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .tv-kpi-row { grid-template-columns: 1fr; }
}

/* ── Pillar expand/collapse ── */
.tv-pillar-expandable { cursor: pointer; }
.tv-pillar-expandable .tv-pillar-title { display: flex; align-items: center; gap: 7px; }
.tv-expand-icon {
  color: #484f58;
  margin-left: auto;
  transition: transform 250ms ease, color 200ms;
  flex-shrink: 0;
}
.tv-pillar-expandable.is-expanded .tv-expand-icon {
  transform: rotate(180deg);
  color: var(--accent);
}
.tv-pillar-expand {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 350ms cubic-bezier(0.4,0,0.2,1), opacity 250ms ease, margin 250ms ease;
  margin-top: 0;
}
.tv-pillar-expandable.is-expanded .tv-pillar-expand {
  max-height: 320px;
  opacity: 1;
  margin-top: 14px;
}
.tv-expand-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 10px;
  border-top: 1px solid rgba(48,54,61,0.6);
}
.tv-expand-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--fm);
  font-size: 10px;
  color: #8b949e;
}
.tv-expand-row > span:first-child {
  width: 22px;
  flex-shrink: 0;
  color: #e6edf3;
  font-weight: 500;
}
.tv-expand-row > span:last-child {
  width: 28px;
  text-align: right;
  flex-shrink: 0;
  font-weight: 500;
}
.tv-expand-track {
  flex: 1;
  height: 4px;
  background: rgba(48,54,61,0.6);
  border-radius: 2px;
  overflow: hidden;
}
.tv-expand-fill {
  height: 100%;
  border-radius: 2px;
}
.tv-expand-fill--mental { background: #3fb950; }
.tv-expand-fill--physical { background: #58a6ff; }
.tv-expand-fill--social { background: #d29922; }
.tv-expand-fill--financial { background: #e3b341; }
.tv-expand-label {
  display: block;
  margin-top: 8px;
  font-family: var(--fm);
  font-size: 9px;
  color: #484f58;
  letter-spacing: 0.04em;
}

/* ── KPI Tooltip ── */
.tv-has-tip {
  position: relative;
}
.tv-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  padding: 12px 14px;
  background: #1c2128;
  border: 1px solid rgba(48,54,61,0.9);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  font-family: var(--fm);
  font-size: 10px;
  line-height: 1.55;
  color: #c9d1d9;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
  transform: translateX(-50%) translateY(4px);
  z-index: 50;
}
.tv-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #1c2128;
}
.tv-has-tip:hover .tv-tooltip {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* Keep tooltip visible if at edge */
.tv-kpi-row .tv-kpi-card:first-child .tv-tooltip { left: 0; transform: translateX(0) translateY(4px); }
.tv-kpi-row .tv-kpi-card:first-child:hover .tv-tooltip { transform: translateX(0) translateY(0); }
.tv-kpi-row .tv-kpi-card:first-child .tv-tooltip::after { left: 20px; transform: none; }
.tv-kpi-row .tv-kpi-card:last-child .tv-tooltip { left: auto; right: 0; transform: translateX(0) translateY(4px); }
.tv-kpi-row .tv-kpi-card:last-child:hover .tv-tooltip { transform: translateX(0) translateY(0); }
.tv-kpi-row .tv-kpi-card:last-child .tv-tooltip::after { left: auto; right: 20px; transform: none; }

/* ── Dashboard Dropdowns ── */
.tv-dropdown {
  position: relative;
}
.tv-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--fm);
  font-size: 11px;
  color: #c9d1d9;
  background: rgba(48,54,61,0.3);
  border: 1px solid rgba(48,54,61,0.8);
  border-radius: 4px;
  padding: 5px 10px;
  cursor: pointer;
  transition: border-color 150ms, background 150ms;
  white-space: nowrap;
}
.tv-dropdown-btn:hover {
  border-color: rgba(118,185,0,0.5);
  background: rgba(48,54,61,0.5);
}
.tv-dropdown-btn svg {
  color: #484f58;
  transition: transform 200ms ease;
}
.tv-dropdown.is-open .tv-dropdown-btn {
  border-color: var(--accent);
  background: rgba(118,185,0,0.08);
}
.tv-dropdown.is-open .tv-dropdown-btn svg {
  transform: rotate(180deg);
  color: var(--accent);
}
.tv-dropdown-list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 140px;
  list-style: none;
  padding: 4px 0;
  margin: 0;
  background: #1c2128;
  border: 1px solid rgba(48,54,61,0.9);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 180ms ease, transform 180ms ease;
}
.tv-dropdown.is-open .tv-dropdown-list {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.tv-dropdown-item {
  padding: 7px 12px;
  font-family: var(--fm);
  font-size: 11px;
  color: #8b949e;
  cursor: pointer;
  transition: background 120ms, color 120ms;
}
.tv-dropdown-item:hover {
  background: rgba(118,185,0,0.08);
  color: #e6edf3;
}
.tv-dropdown-item.is-selected {
  color: var(--accent);
  font-weight: 600;
}

/* Tooltip below variant (for Outcomes cards) */
.tv-tooltip--below {
  position: absolute;
  top: calc(100% + 8px);
  bottom: auto;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  width: 220px;
  padding: 10px 12px;
  background: #1c2128;
  border: 1px solid rgba(48,54,61,0.9);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  font-family: var(--fm);
  font-size: 10px;
  line-height: 1.55;
  color: #c9d1d9;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
  z-index: 50;
}
.tv-tooltip--below::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-bottom-color: #1c2128;
}
.tv-has-tip:hover .tv-tooltip--below {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* ── Dashboard spacing fixes ── */
.tv-kpi-row {
  margin-bottom: 32px;
}
.tv-block {
  margin-bottom: 32px;
}
.tv-block-header {
  margin-bottom: 14px;
}
.tv-pillars-row {
  gap: 14px;
}
.tv-pillar-card {
  padding: 20px 16px;
}
.tv-pillar-metrics {
  gap: 10px;
}
.tv-kpi-card {
  padding: 20px 16px;
  gap: 6px;
}
.tv-matrix {
  margin-top: 4px;
}
.tv-topbar {
  margin-bottom: 24px;
}

/* ── Force Drivers and Country Matrix to stack vertically ── */
.tv-block + .tv-block .tv-block-label--orange {
  margin-top: 0;
}
/* Ensure the Drivers row and Matrix don't sit side by side */
.tv-dash > .tv-block {
  width: 100%;
}

/* ── Matrix header tooltips (native title attr + visual hint) ── */
.tv-th-tip {
  cursor: help;
  border-bottom: 1px dashed rgba(139,148,158,0.4);
}

/* ── Business Impact note ── */
.tv-impact-note {
  font-family: var(--fm);
  font-size: 10px;
  color: #484f58;
  margin: 10px 0 0;
  line-height: 1.5;
  font-style: italic;
}

/* ── Business Impact compact cards ── */
.tv-impact-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.tv-impact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 10px;
  background: #161b22;
  border: 1px solid rgba(48,54,61,0.8);
  border-radius: 6px;
  text-align: center;
}
.tv-impact-driver {
  font-family: var(--fm);
  font-size: 10px;
  color: #8b949e;
}
.tv-impact-arrow {
  font-size: 14px;
  color: var(--accent);
  line-height: 1;
}
.tv-impact-outcome {
  font-family: var(--fm);
  font-size: 11px;
  color: #e6edf3;
}
.tv-impact-outcome strong {
  color: #3fb950;
  font-weight: 700;
}
.tv-impact-lag {
  font-family: var(--fm);
  font-size: 9px;
  color: #484f58;
}
@media (max-width: 768px) {
  .tv-impact-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .tv-impact-row { grid-template-columns: 1fr; }
}




/* ============================================================
   TESTIMONIALS — LinkedIn comment highlights
   ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 720px;
  margin: 24px auto 0;
}
.testimonial-card {
  background: var(--paper-hi);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 22px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.testimonial-quote {
  font-family: var(--fd);
  font-style: italic;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}
.testimonial-quote::before { content: "\201C"; }
.testimonial-quote::after { content: "\201D"; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}
.testimonial-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #06210b;
  font-family: var(--fm);
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--fm);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
@media (max-width: 640px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}
.testimonial-grid-single {
  grid-template-columns: 1fr;
  max-width: 460px;
}
