:root {
  /* Existing Colors */
  --navy: #14294D; --navy-2: #2F63C4; --navy-deep: #0D1A33; --navy-soft: #E7EDF7;
  --steel: #586376; --steel-soft: #E7EAEF;
  --orange: #E8501E; --orange-soft: #FCE3D6;
  --green: #4C8B5A; --green-soft: #E1EEE3;
  --kid-1: #FF6B6B; --kid-2: #FFC94C; --kid-3: #2EC4B6; --kid-4: #4C8DFF; --kid-5: #B084F0;
  --kid-gradient: linear-gradient(90deg, var(--kid-1), var(--kid-2), var(--kid-3), var(--kid-4), var(--kid-5));
  --kid-1-d: #D63A36; --kid-2-d: #C98A00; --kid-3-d: #0E7A6E; --kid-4-d: #2955C4; --kid-5-d: #7A45C7;
  --kid-gradient-text: linear-gradient(90deg, var(--kid-1-d), var(--kid-2-d), var(--kid-3-d), var(--kid-4-d), var(--kid-5-d));
  
  --accent-red: var(--kid-1); --accent-amber: var(--kid-2); --accent-teal: var(--kid-3);
  --accent-blue: var(--kid-4); --accent-violet: var(--kid-5);
  --accent-gradient: var(--kid-gradient);
  
  --paper: #F7F9FC; --paper-2: #EDF1F7; --paper-3: #E1E7F0;
  --text: #1A2230; --text-muted: #57606F; --text-faint: #8993A3;
  --line: rgba(20, 33, 56, .10); --line-strong: rgba(20, 33, 56, .20);
  
  --shadow: 0 10px 26px rgba(15, 25, 45, .07);
  --shadow-sm: 0 2px 9px rgba(15, 25, 45, .05);
  --radius: 4px; --radius-lg: 8px;
  
  /* Typography */
  --font-display: 'Hoefler Text', 'Iowan Old Style', Palatino, 'Palatino Linotype', Constantia, Cambria, Georgia, serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  --heading: var(--navy-deep);

  /* Standardized Spacing Scale */
  --space-xs: 0.5rem;   /* 8px */
  --space-sm: 1rem;     /* 16px */
  --space-md: 1.5rem;   /* 24px */
  --space-lg: 2rem;     /* 32px */
  --space-xl: 3rem;     /* 48px */
  --space-2xl: 4.5rem;  /* 72px */
}

@media (prefers-color-scheme: dark) { 
  :root:not([data-theme="light"]) {
    --navy: #8FADE8; --navy-2: #5B93F0; --navy-deep: #0A1220; --navy-soft: #16233D;
    --steel: #9AA6B8; --steel-soft: #1C2331;
    --orange: #FF8256; --orange-soft: #3A2418;
    --green: #8CC49A; --green-soft: #1B2B20;
    --paper: #0E131C; --paper-2: #151B27; --paper-3: #1C2433;
    --text: #E7EAF0; --text-muted: #A5AEBE; --text-faint: #6E7889;
    --line: rgba(231, 234, 240, .10); --line-strong: rgba(231, 234, 240, .20);
    --shadow: 0 10px 28px rgba(0, 0, 0, .32);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, .22);
    --heading: var(--text);
  }
}

:root[data-theme="dark"] {
  --navy: #8FADE8; --navy-2: #5B93F0; --navy-deep: #0A1220; --navy-soft: #16233D;
  --steel: #9AA6B8; --steel-soft: #1C2331;
  --orange: #FF8256; --orange-soft: #3A2418;
  --green: #8CC49A; --green-soft: #1B2B20;
  --paper: #0E131C; --paper-2: #151B27; --paper-3: #1C2433;
  --text: #E7EAF0; --text-muted: #A5AEBE; --text-faint: #6E7889;
  --line: rgba(231, 234, 240, .10); --line-strong: rgba(231, 234, 240, .20);
  --shadow: 0 10px 28px rgba(0, 0, 0, .32);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, .22);
  --heading: var(--text);
}
:root[data-theme="light"] { --heading: var(--navy-deep); }

/* Globals */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); color: var(--text); background: var(--paper); line-height: 1.6; font-size: 1rem; }
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1180px, calc(100% - var(--space-lg))); margin: 0 auto; }

/* Typography */
.eyebrow { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700; color: var(--navy-2); }
.eyebrow.green { color: var(--green); }
.eyebrow.red { color: var(--accent-red); }
.eyebrow.amber { color: var(--accent-amber); }
.eyebrow.teal { color: var(--accent-teal); }
.eyebrow.violet { color: var(--accent-violet); }
.eyebrow.blue { color: var(--accent-blue); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; margin: var(--space-xs) 0 var(--space-sm); text-wrap: balance; }
h2 { font-size: clamp(2rem, 1.5rem + 2vw, 2.75rem); color: var(--heading); }
h3 { font-size: 1.25rem; margin: 0 0 var(--space-xs); }
p { max-width: 64ch; color: var(--text-muted); margin-bottom: var(--space-sm); }
.lede { font-size: 1.125rem; max-width: 48rem; margin-bottom: var(--space-md); line-height: 1.6; }
.mono { font-family: var(--font-mono); letter-spacing: 0.01em; }

/* Sections */
section { padding: clamp(4rem, 8vw, 6rem) 0; border-top: 1px solid var(--line); }

/* Navigation */
#stickyTop { position: sticky; top: 0; z-index: 60; }
#stickyTop::before { content: ""; display: block; height: 3px; background: var(--accent-gradient); }
header { backdrop-filter: blur(14px); background: color-mix(in srgb, var(--paper) 86%, transparent); }
.topbar { display: flex; align-items: center; justify-content: space-between; gap: var(--space-md); padding: var(--space-sm) 0; }
.brand { display: flex; align-items: center; gap: var(--space-sm); text-decoration: none; }
.brand img { height: 44px; width: auto; object-fit: contain; }

nav.links { display: flex; flex-wrap: wrap; gap: var(--space-md); font-size: 0.875rem; }
nav.links a { text-decoration: none; color: var(--text-muted); padding: 0.25rem 0; border-bottom: 2px solid transparent; transition: color 0.15s ease, border-color 0.15s ease; }
nav.links a.active { color: var(--accent-blue); border-color: var(--accent-blue); font-weight: 600; }
nav.links a:hover { color: var(--navy-2); }

.navctl { display: flex; align-items: center; gap: var(--space-sm); }
.theme-toggle { border: 1px solid var(--line-strong); background: var(--paper-2); border-radius: 999px; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; cursor: pointer; flex: none; color: var(--text); transition: transform 0.2s ease; }
.theme-toggle:hover { transform: scale(1.05); }

/* Mobile Nav */
.navburger { display: none; border: 1px solid var(--line-strong); background: var(--paper-2); border-radius: var(--radius-lg); width: 40px; height: 40px; cursor: pointer; color: var(--text); }
@media (max-width: 1020px) { 
  nav.links { display: none; opacity: 0; transform: translateY(-10px); transition: opacity 0.3s ease, transform 0.3s ease; } 
  .navburger { display: block; } 
  nav.links.open { display: flex; opacity: 1; transform: translateY(0); position: absolute; top: 100%; left: 0; right: 0; background: var(--paper); flex-direction: column; padding: var(--space-md) var(--space-lg); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm); } 
}

/* Quote Strip */
.quote-strip { background: linear-gradient(90deg, var(--navy-deep), var(--navy) 50%, var(--navy-deep)); padding: var(--space-xs) 0; overflow: hidden; position: relative; }
.quote-strip::after { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--accent-gradient); opacity: 0.7; }
.quote-strip-inner { position: relative; min-height: 1.5rem; display: flex; align-items: center; justify-content: center; text-align: center; }
.qs-item { position: absolute; inset: 0; margin: auto; display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(3px); transition: opacity 1.2s ease, transform 1.2s ease; font-style: italic; font-size: 0.875rem; letter-spacing: 0.01em; color: #E9E4F5; padding: 0 var(--space-sm); }
.qs-item.is-active { position: relative; opacity: 1; transform: translateY(0); }
.qs-item::before, .qs-item::after { content: ""; width: 24px; height: 1px; background: #9FBBEF; margin: 0 var(--space-sm); flex: none; align-self: center; }

/* Hero */
.hero { background: var(--navy-deep); color: #EFEFF2; padding: 0; border-top: none; overflow: hidden; position: relative; }
.hero-inner { padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 6rem); position: relative; z-index: 2; }
.hero-logo { height: 64px; width: auto; margin-bottom: var(--space-lg); }
@media (min-width: 700px) { .hero-logo { height: 80px; } }
.hero .eyebrow { color: #8FB4F5; }
.hero h1 { font-size: clamp(2.5rem, 2rem + 3vw, 4.5rem); max-width: 16ch; color: #F7F6F3; margin: var(--space-sm) 0 var(--space-md); letter-spacing: -0.015em; line-height: 1.1; }
.hero .lede { color: #C7C9D6; }
.hero-actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; margin-top: var(--space-xl); }
.hero-rule { width: 48px; height: 1px; background: rgba(247, 246, 243, 0.35); margin-bottom: var(--space-md); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: var(--space-xs); padding: 0.75rem 1.5rem; border-radius: var(--radius); text-decoration: none; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid transparent; transition: background 0.15s ease, border-color 0.15s ease, opacity 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease; }
.btn-primary { background: linear-gradient(120deg, var(--accent-blue), var(--accent-violet)); color: #fff; box-shadow: 0 4px 14px color-mix(in srgb, var(--accent-blue) 35%, transparent); }
.btn-primary:hover { background: linear-gradient(120deg, var(--accent-violet), var(--accent-blue)); transform: translateY(-1px) scale(1.02); box-shadow: 0 6px 18px color-mix(in srgb, var(--accent-blue) 45%, transparent); }
.btn-secondary { background: transparent; border-color: rgba(247, 246, 243, 0.4); color: #F7F6F3; }
.btn-secondary:hover { border-color: rgba(247, 246, 243, 0.8); transform: scale(1.02); }
.btn-ghost { background: transparent; border-color: transparent; color: #F7F6F3; text-decoration: underline; text-underline-offset: 5px; text-decoration-color: rgba(247, 246, 243, 0.45); padding-left: var(--space-xs); padding-right: var(--space-xs); }
.btn-ghost:hover { text-decoration-color: rgba(247, 246, 243, 0.9); }

/* Backgrounds */
#company-profile, #focus { background: var(--paper-2); }
#vision { background: linear-gradient(180deg, color-mix(in srgb, var(--navy) 7%, var(--paper)), var(--paper) 65%); }
#cares { background: var(--green-soft); }

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: var(--space-xl); align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-sm); }
@media (max-width: 980px) { .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; gap: var(--space-lg); } }
@media (min-width: 640px) and (max-width: 980px) { .grid-4, .grid-5 { grid-template-columns: 1fr 1fr; } }

/* Trust Band */
.trust-band { background: var(--navy-deep); position: relative; overflow: hidden; }
.trust-band::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent-gradient); }
.trust-band .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-band .cell { padding: var(--space-md); border-left: 1px solid rgba(255, 255, 255, 0.12); }
.trust-band .cell:first-child { border-left: none; }
.trust-band .cell .lbl { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: #8FA0C9; margin-bottom: var(--space-xs); }
.trust-band .cell .val { font-family: var(--font-mono); font-size: 0.875rem; color: #EFEDE6; letter-spacing: 0.01em; }
.trust-band .cell:nth-child(1) .val { color: var(--accent-red); }
.trust-band .cell:nth-child(2) .val { color: var(--accent-amber); }
.trust-band .cell:nth-child(3) .val { color: var(--accent-teal); }
.trust-band .cell:nth-child(4) .val { color: var(--accent-blue); }
@media (max-width: 900px) { .trust-band .container { grid-template-columns: 1fr 1fr; } .trust-band .cell:nth-child(3) { border-left: none; } }
@media (max-width: 560px) { .trust-band .container { grid-template-columns: 1fr; } .trust-band .cell { border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.12); } .trust-band .cell:first-child { border-top: none; } }

/* Cards & Panels */
.snapshot { background: var(--paper-2); border: 1px solid var(--line); border-left: 4px solid var(--accent-blue); border-radius: var(--radius-lg); padding: var(--space-lg); box-shadow: var(--shadow-sm); margin-top: var(--space-lg); }
.snapshot p { max-width: none; font-size: 1.125rem; margin-bottom: 0; }

.panel { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--space-lg); box-shadow: var(--shadow-sm); }
.panel h3 { color: var(--heading); }
.kicker { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; color: var(--text-faint); margin-bottom: var(--space-xs); }

.value-card { border-top: 4px solid var(--accent-red); padding-top: var(--space-sm); }
.value-card:nth-child(2) { border-color: var(--accent-amber); }
.value-card:nth-child(3) { border-color: var(--accent-teal); }
.value-card:nth-child(4) { border-color: var(--accent-blue); }
.value-card:nth-child(5) { border-color: var(--accent-violet); }

.focus-card { background: var(--paper); border: 1px solid var(--line); border-top: 4px solid var(--accent-teal); border-radius: var(--radius-lg); padding: var(--space-lg); height: 100%; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.focus-card:hover { transform: translateY(-3px) scale(1.02); box-shadow: var(--shadow); }
.focus-tag { display: inline-block; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.75rem; border-radius: var(--radius); background: color-mix(in srgb, var(--accent-teal) 16%, var(--paper)); color: color-mix(in srgb, var(--accent-teal) 70%, var(--heading)); font-weight: 700; margin-bottom: var(--space-sm); }
.focus-card:nth-child(2) { border-top-color: var(--accent-blue); }
.focus-card:nth-child(2) .focus-tag { background: color-mix(in srgb, var(--accent-blue) 16%, var(--paper)); color: color-mix(in srgb, var(--accent-blue) 70%, var(--heading)); }
.focus-card:nth-child(3) { border-top-color: var(--accent-violet); }
.focus-card:nth-child(3) .focus-tag { background: color-mix(in srgb, var(--accent-violet) 16%, var(--paper)); color: color-mix(in srgb, var(--accent-violet) 70%, var(--heading)); }
.focus-card:nth-child(4) { border-top-color: var(--accent-red); }
.focus-card:nth-child(4) .focus-tag { background: color-mix(in srgb, var(--accent-red) 16%, var(--paper)); color: color-mix(in srgb, var(--accent-red) 70%, var(--heading)); }

.facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-sm); margin-top: var(--space-md); }
.fact { border: 1px solid var(--line); background: var(--paper); border-radius: var(--radius-lg); padding: var(--space-sm); }
.fact-label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); }
.fact-value { margin-top: var(--space-xs); font-family: var(--font-mono); font-size: 1rem; color: var(--heading); font-weight: 600; }
@media (max-width: 600px) { .facts { grid-template-columns: 1fr; } }

/* Forms & Inputs */
input, textarea {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.5rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--navy-2);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--navy-2) 20%, transparent);
}

/* Cares Cards */
.cares-card {
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}
.cares-card h3 { color: var(--heading); }
.cares-card-priority { border-top: 4px solid var(--accent-blue); }
.cares-card-initiative { border-top: 4px solid var(--accent-teal); }
.cares-card-ground { border-top: 4px solid var(--accent-amber); }

/* Links & Accents */
.link-pill { display: inline-flex; align-items: center; padding: 0.25rem 0; font-size: 0.875rem; font-weight: 600; text-decoration: none; border-bottom: 2px solid transparent; transition: border-color 0.15s ease, opacity 0.15s ease; }
.link-pill:hover { opacity: 0.72; }
.link-pill-navy { color: var(--navy-2); border-color: color-mix(in srgb, var(--navy-2) 45%, transparent); }
.link-pill-gray { color: var(--steel); border-color: color-mix(in srgb, var(--steel) 45%, transparent); }
.kids-gradient { background: var(--kid-gradient-text); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Quotes */
.quote { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; line-height: 1.4; color: var(--heading); border-left: 4px solid var(--navy-2); padding-left: var(--space-md); margin: var(--space-lg) 0; max-width: 48rem; }
.quote.green { border-color: var(--green); }
.quote.kids { border-image: var(--kid-gradient) 1; }

/* Lists */
.partner-list { list-style: none; margin: var(--space-md) 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
.partner-list li { border-bottom: 1px solid var(--line); padding: var(--space-xs) 0 var(--space-sm); font-family: var(--font-display); font-size: 1.125rem; color: var(--heading); }
.contact-list { list-style: none; margin: var(--space-md) 0 0; padding: 0; }
.contact-list li { padding: var(--space-sm) 0; border-top: 1px solid var(--line); }
.contact-list a { text-decoration: none; color: var(--heading); font-weight: 600; transition: color 0.2s ease; }
.contact-list a:hover { color: var(--navy-2); }

/* Footer */
footer { padding: var(--space-xl) 0 var(--space-xl); color: var(--text-faint); font-size: 0.875rem; border-top: 1px solid var(--line); background: var(--navy-deep); }
footer .container { color: #B9BCC9; }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-md); align-items: center; margin-bottom: var(--space-md); }
footer a { color: #8FB4F5; text-decoration: none; margin-right: var(--space-sm); }
.footer-legal { font-size: 0.75rem; color: #8D91A6; border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: var(--space-sm); }

/* Accessibility */
.skip { position: absolute; left: -9999px; }
.skip:focus { left: var(--space-sm); top: var(--space-sm); background: var(--paper); padding: var(--space-sm) var(--space-md); border-radius: var(--radius-lg); z-index: 200; }

/* Chatbot */
.ts-chat { position: fixed; right: var(--space-md); bottom: var(--space-md); z-index: 120; display: flex; flex-direction: column; align-items: flex-end; gap: var(--space-sm); }
.ts-chat-toggle { display: flex; align-items: center; gap: var(--space-xs); border: none; cursor: pointer; padding: 0.75rem 1.5rem; border-radius: 999px; background: linear-gradient(120deg, var(--accent-blue), var(--accent-violet)); color: #fff; box-shadow: 0 4px 16px color-mix(in srgb, var(--accent-violet) 40%, transparent); font: inherit; font-weight: 600; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; transition: transform 0.15s ease, box-shadow 0.15s ease; }
.ts-chat-toggle:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-violet) 50%, transparent); }
.ts-chat-toggle-icon { font-size: 1.25rem; line-height: 1; }
.ts-chat-panel { width: min(24rem, 84vw); max-height: min(36rem, 70vh); display: none; flex-direction: column; background: var(--paper); border: 1px solid var(--line-strong); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.ts-chat-head { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--space-sm); padding: var(--space-sm) var(--space-md); background: linear-gradient(120deg, var(--navy-deep), var(--navy)); color: #fff; }
.ts-chat-head-name { font-family: var(--font-display); font-weight: 700; font-size: 1.125rem; }
.ts-chat-head-sub { font-size: 0.75rem; color: #C7CEEA; margin-top: 0.25rem; line-height: 1.4; }
.ts-chat-close { background: none; border: none; color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer; flex: none; padding: 0; }
.ts-chat-body { flex: 1; overflow-y: auto; padding: var(--space-md); display: flex; flex-direction: column; gap: var(--space-sm); background: var(--paper-2); }
.ts-msg { max-width: 86%; padding: 0.75rem 1rem; border-radius: 14px; font-size: 0.875rem; line-height: 1.5; }
.ts-msg-bot { align-self: flex-start; background: var(--paper); border: 1px solid var(--line); color: var(--text); border-bottom-left-radius: 4px; }
.ts-chat-chips { display: flex; flex-wrap: wrap; gap: var(--space-xs); padding: var(--space-sm) var(--space-md); border-top: 1px solid var(--line); }
.ts-chip { border: 1px solid var(--line-strong); background: var(--paper); color: var(--heading); font: inherit; font-size: 0.875rem; padding: 0.5rem 1rem; border-radius: 999px; cursor: pointer; transition: background 0.2s, color 0.2s; }
.ts-chip:hover { border-color: var(--navy-2); color: var(--navy-2); background: var(--paper-2); }
@media (max-width: 640px) { .ts-chat { right: var(--space-sm); bottom: var(--space-sm); } .ts-chat-toggle-label { display: none; } .ts-chat-toggle { padding: 1rem; } }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }

/* Hero Cares Line & Tooltip */
.hero-cares-line {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: #B7BED0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 2.1rem;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  border-image: var(--kid-gradient) 1;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}

.hero-cares-line:hover { 
  opacity: 1; 
}

.kids-dots { 
  display: inline-flex; 
  gap: 3px; 
  flex: none; 
  transform: scale(0.85); 
}

.kids-dots i { 
  width: 6px; 
  height: 6px; 
  border-radius: 50%; 
  display: block; 
  font-style: normal; 
}

.kids-dots i:nth-child(1) { background: var(--kid-1); }
.kids-dots i:nth-child(2) { background: var(--kid-2); }
.kids-dots i:nth-child(3) { background: var(--kid-3); }
.kids-dots i:nth-child(4) { background: var(--kid-4); }
.kids-dots i:nth-child(5) { background: var(--kid-5); }

.hero-cares-line .hcp-tip {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 16.5rem;
  max-width: 70vw;
  text-align: left;
  background: var(--paper);
  color: var(--heading);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.4;
  padding: 0.85rem 1.05rem;
  border-radius: 6px;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 5;
}

.hero-cares-line .hcp-tip::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 1.4rem;
  border: 6px solid transparent;
  border-bottom-color: var(--paper);
}

.hero-cares-line:hover .hcp-tip, 
.hero-cares-line:focus-visible .hcp-tip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 480px) {
  .hero-cares-line .hcp-tip { width: 13rem; font-size: 0.86rem; }
}

/* Portraits for Leadership Panels */
.portrait-row { 
  display: flex; 
  gap: var(--space-md); 
  margin-bottom: var(--space-md); 
}

.portrait-slot { 
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center; 
  font-size: 0.8rem; 
  color: var(--text-muted); 
  max-width: 90px;
}

.portrait-img { 
  width: 72px; 
  height: 72px; 
  border-radius: 50%; 
  object-fit: cover; 
  margin-bottom: var(--space-xs); 
  border: 2px solid var(--paper-3); 
  box-shadow: var(--shadow-sm);
}

/* Stacked Cards inside Panels */
.stacked-card {
  margin-top: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
}

.stacked-card .fact-value {
  font-family: var(--font-body); /* Overriding monospace for names */
  font-size: 0.95rem;
}
