/* =============================================
   THERAPIST TOOLKIT — STYLES
   Rise Against Suicide × CU Boulder
   ============================================= */

:root {
  --teal:       #0091A8;
  --teal-dark:  #006E82;
  --teal-light: #D6F0F4;
  --green:      #8DC585;
  --green-dark: #5E9A56;
  --green-light:#DFF0DA;
  --cream:      #F4EFE4;
  --cream-dark: #EAE3D4;
  --text:       #1C2B2E;
  --text-mid:   #3D5458;
  --text-light: #6B8589;
  --white:      #FFFFFF;
  --orange:     #E8762A;
  --yellow:     #F5C842;
  --purple:     #9B8EC4;

  --radius-sm: 8px;
  --radius:    16px;
  --shadow:    0 4px 24px rgba(0,0,0,.08);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,.12);

  --font:  'Nunito', sans-serif;
  --max-w: 1100px;

  --ease-out: cubic-bezier(.22,.68,0,1.2);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--cream); color: var(--text); line-height: 1.65; font-size: 16px; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- ICONS --- */
.icon     { width: 24px; height: 24px; stroke: currentColor; fill: none; flex-shrink: 0; }
.icon-sm  { width: 20px; height: 20px; stroke: currentColor; fill: none; }
.icon-xs  { width: 16px; height: 16px; stroke: currentColor; fill: none; }

/* --- UTILITY --- */
.section-inner { max-width: var(--max-w); margin: 0 auto; padding: 80px 24px; }
.section-label {
  display: inline-block; font-size: 13px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal); background: var(--teal-light);
  padding: 4px 14px; border-radius: 100px; margin-bottom: 16px;
}
h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 900; color: var(--teal-dark); line-height: 1.2; margin-bottom: 20px; }
h3 { font-size: 20px; font-weight: 800; color: var(--teal-dark); margin-bottom: 10px; }
h4 { font-size: 16px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.section-intro { font-size: 17px; color: var(--text-mid); max-width: 680px; margin-bottom: 48px; }

/* --- SCROLL PROGRESS --- */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 200;
  height: 3px; width: 0%; background: var(--teal);
  transition: width .1s linear;
  pointer-events: none;
}

/* --- FADE IN ANIMATION --- */
[data-fade] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
[data-fade].is-visible { opacity: 1; transform: none; }
[data-fade][data-delay="1"] { transition-delay: .08s; }
[data-fade][data-delay="2"] { transition-delay: .16s; }
[data-fade][data-delay="3"] { transition-delay: .24s; }
[data-fade][data-delay="4"] { transition-delay: .32s; }

/* --- BUTTONS --- */
.btn {
  display: inline-block; padding: 13px 28px; border-radius: 100px;
  font-size: 15px; font-weight: 800; font-family: var(--font);
  cursor: pointer; transition: transform .15s, box-shadow .15s, background .15s;
  border: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.14); }
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-dark); }
.btn-outline { border: 2px solid var(--teal); color: var(--teal); background: transparent; }
.btn-outline:hover { background: var(--teal-light); }
.btn-nav {
  background: var(--teal); color: var(--white);
  padding: 8px 20px; border-radius: 100px;
  font-weight: 800; font-size: 14px; transition: background .15s;
}
.btn-nav:hover { background: var(--teal-dark); }

/* =============================================
   SCROLL PROGRESS + NAV
   ============================================= */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s;
}
.nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1.2; }
.logo-rise { font-size: 17px; font-weight: 900; color: var(--teal-dark); }
.logo-sub  { font-size: 11px; color: var(--text-light); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 14px; font-weight: 700; color: var(--text-mid); transition: color .15s; position: relative; }
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2px; background: var(--teal);
  transition: width .2s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-hamburger {
  display: none; background: none; border: none;
  cursor: pointer; color: var(--teal-dark); padding: 4px;
}
.nav-mobile {
  display: none; flex-direction: column;
  background: var(--white); border-top: 1px solid var(--cream-dark);
  padding: 12px 24px 20px; gap: 12px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 15px; font-weight: 700; color: var(--text-mid); padding: 8px 0; border-bottom: 1px solid var(--cream-dark); }

/* =============================================
   HERO
   ============================================= */
.hero { position: relative; overflow: hidden; background: var(--cream); padding: 80px 24px 0; }
.hero-blob { position: absolute; border-radius: 50% 40% 60% 50% / 50% 60% 40% 50%; opacity: .55; pointer-events: none; }
.hero-blob-tl { width: 340px; height: 300px; background: var(--green-light); top: -60px; left: -80px; }
.hero-blob-br { width: 260px; height: 220px; background: var(--teal-light); bottom: 40px; right: -60px; }
.hero-dots { position: absolute; width: 120px; height: 80px; background-image: radial-gradient(var(--teal) 1.5px, transparent 1.5px); background-size: 12px 12px; opacity: .25; pointer-events: none; }
.hero-dots-tr { top: 24px; right: 24px; }
.hero-dots-bl { bottom: 80px; left: 24px; }
.hero-content { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 2; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.badge { display: inline-block; font-size: 12px; font-weight: 800; padding: 5px 14px; border-radius: 100px; letter-spacing: .05em; }
.badge-teal  { background: var(--teal); color: var(--white); }
.badge-green { background: var(--green); color: var(--white); }
.hero h1 { font-size: clamp(36px, 6vw, 64px); font-weight: 900; color: var(--teal-dark); line-height: 1.1; margin-bottom: 24px; }
.hero-sub { font-size: clamp(16px, 2vw, 19px); color: var(--text-mid); max-width: 600px; margin-bottom: 36px; }
.hero-sub em { font-style: italic; color: var(--teal); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 64px; }

.hero-stats {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--cream-dark);
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden; position: relative; z-index: 2;
}
.stat-card {
  background: var(--white); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 6px;
  transition: background .2s;
}
.stat-card:hover { background: var(--teal-light); }
.stat-num { font-size: clamp(26px, 3vw, 36px); font-weight: 900; color: var(--teal); }
.stat-text { font-size: clamp(20px, 2.5vw, 28px); }
.stat-label { font-size: 13px; color: var(--text-mid); line-height: 1.4; }

/* =============================================
   ABOUT
   ============================================= */
.about { background: var(--white); }

/* Ecosystem diagram */
.ecosystem { margin: 0 auto 56px; }
.eco-hint { font-size: 13px; color: var(--text-light); margin-bottom: 24px; font-style: italic; }

.eco-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: center;
}

/* SVG diagram */
.eco-diagram { flex-shrink: 0; }
.eco-svg { width: 100%; display: block; }

.eco-ring {
  cursor: pointer;
  transition: opacity .22s ease, filter .22s ease;
}
.eco-ring[data-layer="systems"]   { fill: var(--teal); }
.eco-ring[data-layer="providers"] { fill: #3AAFCA; }
.eco-ring[data-layer="network"]   { fill: #7FCFDC; }
.eco-ring[data-layer="youth"]     { fill: var(--green-light); }

/* When any ring is hovered: dim all, then re-illuminate the active one */
.eco-svg.has-active .eco-ring               { opacity: .3; filter: none; }
.eco-svg.has-active .eco-ring.eco-active    { opacity: 1; filter: drop-shadow(0 0 10px rgba(0,145,168,.45)); }

.eco-center-label {
  font-family: var(--font); font-size: 13px; font-weight: 900;
  fill: var(--teal-dark); text-anchor: middle; dominant-baseline: middle;
}
.eco-center-sub {
  font-family: var(--font); font-size: 9px; font-weight: 700;
  fill: var(--teal-dark); text-anchor: middle; dominant-baseline: middle;
  opacity: .65;
}

/* Legend */
.eco-legend { display: flex; flex-direction: column; gap: 6px; }

.eco-legend-item {
  display: flex; gap: 14px; padding: 12px 14px;
  border-radius: var(--radius); cursor: pointer;
  border: 2px solid transparent;
  transition: background .18s, border-color .18s, transform .18s;
}
.eco-legend-item:hover { background: var(--cream); border-color: var(--cream-dark); }
.eco-legend-item.eco-active {
  background: var(--teal-light);
  border-color: var(--teal);
  transform: translateX(4px);
}

.eco-swatch {
  width: 13px; height: 13px; border-radius: 50%;
  flex-shrink: 0; margin-top: 4px;
}
.eco-swatch-systems   { background: var(--teal); }
.eco-swatch-providers { background: #3AAFCA; }
.eco-swatch-network   { background: #7FCFDC; border: 1.5px solid var(--teal); }
.eco-swatch-youth     { background: var(--green-light); border: 1.5px solid var(--green-dark); }

.eco-legend-body strong { font-size: 14px; font-weight: 800; display: block; margin-bottom: 4px; color: var(--text); }
.eco-legend-body p  { font-size: 13px; color: var(--text-mid); line-height: 1.5; margin-bottom: 0; }

.eco-tags { display: none; flex-wrap: wrap; gap: 5px; margin-top: 8px; }
.eco-legend-item.eco-active .eco-tags { display: flex; }
.eco-tags li {
  font-size: 11px; font-weight: 700;
  background: rgba(0,145,168,.12); color: var(--teal-dark);
  padding: 3px 10px; border-radius: 100px;
}

.model-steps { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px; margin-top: 48px; }
.model-step {
  background: var(--cream); border-radius: var(--radius); padding: 20px;
  text-align: center; width: 180px; flex-shrink: 0;
  transition: box-shadow .2s, transform .2s;
}
.model-step:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.step-icon-wrap {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.step-teal  { background: var(--teal-light); }
.step-teal svg  { stroke: var(--teal-dark); }
.step-green { background: var(--green-light); }
.step-green svg { stroke: var(--green-dark); }
.model-step p { font-size: 13px; font-weight: 700; color: var(--text-mid); line-height: 1.4; }
.step-arrow { color: var(--teal); }

/* =============================================
   WHY
   ============================================= */
.why { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-bottom: 40px; }
.why-card {
  background: var(--white); border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid transparent;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-left-color: var(--teal); }
.why-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.why-icon-red    { background: #FDECEA; }  .why-icon-red svg    { stroke: #C0392B; }
.why-icon-orange { background: #FEF0E6; }  .why-icon-orange svg { stroke: var(--orange); }
.why-icon-yellow { background: #FEF9E7; }  .why-icon-yellow svg { stroke: #B7950B; }
.why-icon-teal   { background: var(--teal-light); } .why-icon-teal svg { stroke: var(--teal-dark); }
.why-card p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }
.why-card strong { color: var(--text); }
.why-card em { color: var(--text-light); font-style: normal; font-size: 12px; }

.pull-quote {
  background: var(--teal-dark); color: var(--white);
  border-radius: var(--radius); padding: 32px 40px;
  font-size: 18px; font-style: italic; font-weight: 700; line-height: 1.5;
  max-width: 700px; margin: 0 auto; position: relative;
}
.pull-quote::before {
  content: '\201C'; font-size: 80px; line-height: 0;
  position: absolute; top: 40px; left: 24px;
  color: rgba(255,255,255,.2); font-style: normal;
}
.pull-quote cite { display: block; margin-top: 14px; font-size: 13px; font-style: normal; font-weight: 600; color: rgba(255,255,255,.7); }

/* =============================================
   TOOLKIT
   ============================================= */
.toolkit { background: var(--white); }
.toolkit-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.tab-btn {
  padding: 10px 20px; border-radius: 100px;
  border: 2px solid var(--cream-dark); background: var(--cream);
  font-size: 14px; font-weight: 800; color: var(--text-mid);
  cursor: pointer; transition: all .18s; font-family: var(--font);
}
.tab-btn:hover  { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }
.tab-btn.active { background: var(--teal); color: var(--white); border-color: var(--teal); }

.tab-panel { display: none; opacity: 0; transform: translateY(12px); transition: opacity .3s ease, transform .3s ease; }
.tab-panel.active { display: block; }
.tab-panel.tab-entering { opacity: 1; transform: none; }

.tab-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: start; }
.tab-text h3 { font-size: 22px; margin-bottom: 14px; }
.tab-text p  { font-size: 15px; color: var(--text-mid); line-height: 1.7; }

/* Roadmap */
.roadmap { display: flex; gap: 6px; align-items: flex-start; flex-wrap: wrap; }
.roadmap-phase {
  flex: 1; min-width: 160px; border-radius: var(--radius-sm);
  color: var(--white); overflow: hidden;
  transition: box-shadow .2s;
}
.roadmap-phase:hover { box-shadow: 0 6px 20px rgba(0,0,0,.18); }
.phase-1 { background: var(--orange); }
.phase-2 { background: var(--green-dark); }
.phase-3 { background: var(--teal); }
.phase-top { padding: 18px 18px 0; }
.phase-header  { font-size: 13px; font-weight: 900; margin-bottom: 4px; }
.phase-sessions { font-size: 11px; font-weight: 700; opacity: .8; margin-bottom: 10px; }
.phase-items { margin-bottom: 14px; }
.phase-items li { font-size: 12px; padding: 3px 0 3px 12px; position: relative; line-height: 1.4; }
.phase-items li::before { content: '•'; position: absolute; left: 0; }

.phase-expand-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 10px 18px; background: rgba(0,0,0,.12);
  border: none; color: var(--white); font-size: 12px; font-weight: 800;
  cursor: pointer; font-family: var(--font); transition: background .15s;
}
.phase-expand-btn:hover { background: rgba(0,0,0,.2); }
.expand-icon { transition: transform .25s ease; }
.phase-expand-btn[aria-expanded="true"] .expand-icon { transform: rotate(45deg); }

.phase-expanded {
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(255,255,255,.2);
  animation: slideDown .25s ease;
}
.phase-expanded ul li { font-size: 12px; padding: 4px 0 4px 12px; position: relative; line-height: 1.4; opacity: .9; }
.phase-expanded ul li::before { content: '–'; position: absolute; left: 0; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

.phase-arrow { display: flex; align-items: center; padding-top: 28px; color: var(--text-light); }

/* Library */
.library-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lib-card { border-radius: var(--radius); padding: 22px; color: var(--white); transition: transform .2s, box-shadow .2s; }
.lib-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.lib-teal   { background: var(--teal); }
.lib-green  { background: var(--green-dark); }
.lib-yellow { background: #B8942E; }
.lib-purple { background: #7A6AA8; }
.lib-icon { margin-bottom: 10px; }
.lib-card h4 { color: var(--white); margin-bottom: 10px; }
.lib-card ul li { font-size: 12px; padding: 4px 0 4px 14px; position: relative; opacity: .9; }
.lib-card ul li::before { content: '→'; position: absolute; left: 0; font-size: 10px; }

/* Schools */
.schools-cards { display: flex; flex-direction: column; gap: 14px; }
.school-item {
  background: var(--cream); border-radius: var(--radius);
  padding: 20px; display: flex; gap: 18px; align-items: flex-start;
  transition: box-shadow .2s, transform .2s;
}
.school-item:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.school-icon-wrap {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px;
  background: var(--teal-light); display: flex; align-items: center; justify-content: center;
}
.school-icon-wrap svg { stroke: var(--teal-dark); }
.school-item h4 { margin-bottom: 4px; }
.school-item p  { font-size: 14px; color: var(--text-mid); }

/* Self-care */
.selfcare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.sc-item {
  background: var(--cream); border-radius: var(--radius); padding: 22px;
  transition: box-shadow .2s, transform .2s;
}
.sc-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.sc-icon-wrap {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--teal-light); display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
}
.sc-icon-wrap svg { stroke: var(--teal-dark); }
.sc-item h4 { margin-bottom: 6px; }
.sc-item p  { font-size: 13px; color: var(--text-mid); line-height: 1.5; }

.mini-quote {
  background: var(--teal-light); border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 16px; margin-top: 20px;
  font-style: italic; font-size: 14px; color: var(--teal-dark);
}
.mini-quote cite { display: block; font-style: normal; font-size: 12px; margin-top: 6px; color: var(--text-light); }

/* =============================================
   RESEARCH
   ============================================= */
.research { background: var(--cream); }
.aims-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 64px; }
.aim-card { flex: 1; min-width: 220px; border-radius: var(--radius); padding: 28px; color: var(--white); transition: transform .2s, box-shadow .2s; }
.aim-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.aim-teal  { background: var(--teal); }
.aim-green { background: var(--green-dark); }
.aim-lime  { background: #6B9E60; }
.aim-num { font-size: 40px; font-weight: 900; opacity: .25; line-height: 1; margin-bottom: 8px; }
.aim-card h3 { color: var(--white); margin-bottom: 10px; }
.aim-card p  { font-size: 14px; opacity: .9; line-height: 1.6; }
.aim-arrow { color: var(--text-light); }

/* Quote Carousel */
.quotes-heading { font-size: 22px; font-weight: 900; color: var(--teal-dark); margin-bottom: 24px; }
.carousel {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.carousel-viewport {
  width: 100%; overflow: hidden; border-radius: var(--radius);
}
.carousel-track {
  display: flex; transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.carousel-slide {
  min-width: 100%; padding: 40px 48px;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.slide-quote {
  font-size: clamp(18px, 2.5vw, 24px); font-style: italic;
  font-weight: 700; color: var(--teal-dark); line-height: 1.5; margin-bottom: 24px;
  position: relative; padding-left: 28px;
}
.slide-quote::before {
  content: '\201C'; font-size: 64px; line-height: 0;
  position: absolute; top: 18px; left: 0;
  color: var(--teal-light); font-style: normal;
}
.slide-footer { display: flex; align-items: center; gap: 12px; }
.slide-cite { font-size: 13px; font-weight: 700; color: var(--text-light); }
.quote-domain {
  display: inline-block; font-size: 11px; font-weight: 800;
  padding: 3px 10px; border-radius: 100px;
  background: var(--teal-light); color: var(--teal-dark);
  letter-spacing: .06em; text-transform: uppercase;
}

.carousel-row { display: flex; align-items: center; gap: 16px; width: 100%; }
.carousel-btn {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--cream-dark); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--teal-dark); transition: all .15s;
}
.carousel-btn:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }
.carousel-prev { margin-right: auto; }
.carousel-next { margin-left: auto; }

/* layout: prev | viewport | next on one row */
.carousel {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  grid-template-rows: auto auto;
  column-gap: 12px; row-gap: 16px;
  align-items: center;
}
.carousel-viewport { grid-column: 2; grid-row: 1; }
.carousel-prev { grid-column: 1; grid-row: 1; }
.carousel-next { grid-column: 3; grid-row: 1; }
.carousel-dots { grid-column: 1 / -1; grid-row: 2; display: flex; justify-content: center; gap: 8px; }

.dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: none; background: var(--cream-dark); cursor: pointer;
  transition: background .2s, transform .2s;
  padding: 0;
}
.dot.active { background: var(--teal); transform: scale(1.4); }

/* =============================================
   TEAM
   ============================================= */
.team { background: var(--white); }
.team-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.team-card {
  background: var(--cream); border-radius: var(--radius); padding: 36px;
  transition: box-shadow .2s, transform .2s;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.team-logo {
  width: 70px; height: 70px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 900; margin-bottom: 20px;
  line-height: 1.2; text-align: center;
}
.cu-logo  { background: var(--teal-dark); color: var(--white); font-size: 18px; }
.cu-logo span { font-size: 11px; font-weight: 700; }
.rise-logo { background: var(--teal); color: var(--white); font-size: 20px; letter-spacing: .08em; }
.team-card h3 { margin-bottom: 12px; }
.team-card p  { font-size: 14px; color: var(--text-mid); line-height: 1.65; margin-bottom: 16px; }
.funding-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  color: var(--teal-dark); background: var(--teal-light);
  padding: 5px 12px; border-radius: 100px;
}

/* removed: contact section */

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--text); color: rgba(255,255,255,.6); font-size: 13px; }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 36px 24px;
  display: flex; flex-wrap: wrap; gap: 24px;
  justify-content: space-between; align-items: flex-start;
}
.footer-left { display: flex; flex-direction: column; gap: 4px; }
.footer-left strong { color: var(--white); font-size: 15px; }
.footer-right { max-width: 500px; line-height: 1.5; }
.footer-cite { margin-top: 8px; font-size: 11px; opacity: .6; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .hero-stats     { grid-template-columns: 1fr 1fr; }
  .tab-layout     { grid-template-columns: 1fr; }
  .team-cards     { grid-template-columns: 1fr; }
  .library-grid   { grid-template-columns: 1fr; }
  .selfcare-grid  { grid-template-columns: 1fr; }
  .aims-row       { flex-direction: column; }
  .aim-arrow      { transform: rotate(90deg); }
  .model-steps    { flex-direction: column; }
  .step-arrow     { transform: rotate(90deg); }
  .roadmap        { flex-direction: column; }
  .phase-arrow    { transform: rotate(90deg); align-self: center; padding-top: 0; padding-left: 0; }
  .nav-links      { display: none; }
  .nav-hamburger  { display: flex; }
}

@media (max-width: 700px) {
  .eco-layout { grid-template-columns: 1fr; }
  .eco-diagram { max-width: 240px; margin: 0 auto; }
}

@media (max-width: 600px) {
  .hero-stats     { grid-template-columns: 1fr; }
  .toolkit-tabs   { flex-direction: column; }
  .tab-btn        { text-align: left; border-radius: var(--radius-sm); }
  .carousel-slide { padding: 28px 24px; }
  .carousel       { grid-template-columns: 32px 1fr 32px; }
  .carousel-btn   { width: 32px; height: 32px; }
}
