/* ============================================
   Inclusive AI Institute — Stylesheet (v2)
   Brand colors pulled from logos:
     navy   #1a3a52   teal   #6ba0b5   cyan   #36c6c8
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy:        #1a3a52;
  --navy-deep:   #0f2436;
  --navy-soft:   #2d5570;
  --teal:        #6ba0b5;
  --teal-light:  #8eb4c7;
  --teal-bg:     #e6f0f3;
  --cyan:        #36c6c8;
  --cyan-soft:   #b9ebec;
  --amber:       #f4b942;          /* accent for callouts */
  --coral:       #ee6c4d;          /* accent for highlights */
  --bg:          #ffffff;
  --bg-soft:     #f5f8fa;
  --bg-warm:     #fdfaf4;
  --bg-card:     #ffffff;
  --border:      #e2e8f0;
  --border-soft: #edf2f5;
  --text:        #1a3a52;
  --text-muted:  #4a5568;
  --text-light:  #718096;
  --shadow-sm:   0 1px 3px rgba(15, 36, 54, 0.04);
  --shadow:      0 6px 20px rgba(15, 36, 54, 0.05);
  --shadow-lg:   0 18px 40px rgba(15, 36, 54, 0.08);
  --shadow-xl:   0 30px 60px rgba(15, 36, 54, 0.10);
  --radius:      10px;
  --radius-lg:   18px;
  --radius-xl:   28px;
  --max-width:   1240px;
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
p { max-width: 68ch; }
.section-header p, .hero p, .page-header p, .cta-band p { max-width: none; }

img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }

a {
  color: var(--navy-soft);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--cyan); }
a:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 2px;
  border-radius: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
h4 { font-size: 1.05rem; margin-bottom: 0.5rem; }
p  { margin-bottom: 1rem; color: var(--text-muted); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 1.5rem; }

/* ----- Skip link ----- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  z-index: 1000;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; color: #fff; }

/* ----- Eyebrow / pill ----- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--teal);
  font-weight: 700;
}
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(54, 198, 200, 0.12);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(54, 198, 200, 0.25);
}
.eyebrow-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 3px rgba(54, 198, 200, 0.25);
}

/* ============================================
   TOP CONTACT BAR
   ============================================ */
.topbar {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  padding: 0.5rem 0;
}
.topbar-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar a { color: rgba(255, 255, 255, 0.85); }
.topbar a:hover { color: var(--cyan); }
.topbar .contact-items { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.topbar .contact-items span,
.topbar .contact-items a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.topbar svg { width: 14px; height: 14px; }
.topbar .socials { display: flex; gap: 0.75rem; }
@media (max-width: 600px) {
  .topbar { display: none; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--navy);
  font-size: 1.08rem;
  letter-spacing: -0.01em;
}
.nav-brand img { height: 42px; width: auto; }
.nav-brand:hover { color: var(--navy); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
}
.nav-links a {
  display: inline-block;
  padding: 0.55rem 0.95rem;
  color: var(--text);
  font-weight: 500;
  font-size: 0.96rem;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--bg-soft);
  color: var(--navy);
}
.nav-links .nav-cta {
  background: var(--navy);
  color: #fff;
  margin-left: 0.5rem;
  padding: 0.55rem 1.2rem;
}
.nav-links .nav-cta:hover {
  background: var(--cyan);
  color: var(--navy-deep);
}

/* dropdown */
.nav-links li.has-dropdown {
  position: relative;
}
.nav-links li.has-dropdown > a::after {
  content: " ▾";
  font-size: 0.7em;
  color: var(--text-light);
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  list-style: none;
  padding: 0.4rem;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}
.nav-links li.has-dropdown:hover .nav-dropdown,
.nav-links li.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 0.55rem 0.8rem;
  font-size: 0.93rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--navy);
}
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 1rem 1rem;
    gap: 0.1rem;
    box-shadow: var(--shadow);
    display: none;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 1rem; }
  .nav-links .nav-cta { margin: 0.5rem 0 0; text-align: center; }
  .nav-dropdown {
    position: static;
    box-shadow: none;
    border: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0 0 0 1rem;
    background: transparent;
  }
  .nav-dropdown a { padding: 0.5rem 1rem; font-size: 0.88rem; color: var(--text-muted); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.7rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.97rem;
  transition: all 0.2s;
  border: 2px solid transparent;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.2s; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--cyan);
  color: var(--navy-deep);
  box-shadow: 0 8px 20px rgba(54, 198, 200, 0.35);
}
.btn-primary:hover {
  background: #4dd4d6;
  color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(54, 198, 200, 0.45);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-outline:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.btn-dark {
  background: var(--navy);
  color: #fff;
}
.btn-dark:hover {
  background: var(--cyan);
  color: var(--navy-deep);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--bg-soft);
  border-color: var(--teal);
  color: var(--navy);
}

/* ============================================
   HERO CAROUSEL
   ============================================ */
.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--navy-deep);
  color: #fff;
}
.hero-slides {
  position: relative;
  height: 620px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 4rem 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
    rgba(15, 36, 54, 0.92) 0%,
    rgba(26, 58, 82, 0.85) 45%,
    rgba(45, 85, 112, 0.7) 100%);
  z-index: 1;
}
.hero-slide-1::before { background-image: url('../assets/banner.jpg'); }
.hero-slide-2::before {
  background: radial-gradient(circle at 20% 30%, rgba(54, 198, 200, 0.18), transparent 55%),
              radial-gradient(circle at 80% 70%, rgba(107, 160, 181, 0.25), transparent 55%),
              linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
}
.hero-slide-3::before {
  background: radial-gradient(circle at 75% 25%, rgba(244, 185, 66, 0.15), transparent 50%),
              radial-gradient(circle at 25% 75%, rgba(54, 198, 200, 0.2), transparent 50%),
              linear-gradient(120deg, var(--navy) 0%, var(--navy-soft) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.hero h1 {
  color: #fff;
  margin-bottom: 1.25rem;
  font-weight: 800;
}
.hero h1 .accent {
  background: linear-gradient(90deg, var(--cyan) 0%, var(--teal-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lead {
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 720px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}
.hero-cta {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Floating shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}
.hero-shape-1 {
  width: 280px; height: 280px;
  top: -80px; right: -80px;
  background: rgba(54, 198, 200, 0.3);
  animation: float 12s ease-in-out infinite;
}
.hero-shape-2 {
  width: 220px; height: 220px;
  bottom: -60px; left: -60px;
  background: rgba(107, 160, 181, 0.35);
  animation: float 14s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(40px, -30px); }
}

/* Carousel controls */
.hero-dots {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 5;
}
.hero-dot {
  width: 36px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.hero-dot.active { background: var(--cyan); transform: scaleY(1.6); }
.hero-dot:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; }

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 5;
  transition: background 0.2s;
}
.hero-arrow:hover { background: rgba(255, 255, 255, 0.22); }
.hero-arrow.prev { left: 1rem; }
.hero-arrow.next { right: 1rem; }
.hero-arrow svg { width: 22px; height: 22px; }
@media (max-width: 700px) {
  .hero-arrow { display: none; }
  .hero { min-height: 540px; }
  .hero-slides { height: 540px; }
}

/* ============================================
   SECTIONS
   ============================================ */
section { padding: 5rem 0; position: relative; }
.section-soft { background: var(--bg-soft); }
.section-warm { background: var(--bg-warm); }
.section-dark { background: var(--navy-deep); color: rgba(255, 255, 255, 0.85); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: rgba(255, 255, 255, 0.78); }
.section-dark .eyebrow { color: var(--cyan); }

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}
.section-header .eyebrow,
.section-header .eyebrow-pill {
  margin-bottom: 0.85rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { font-size: 1.05rem; }

/* ----- Decorative section divider ----- */
.wave-divider {
  position: relative;
  height: 60px;
  margin-top: -1px;
}
.wave-divider svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ============================================
   VALUES / CORE PILLARS
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.value-card {
  position: relative;
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 0;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.value-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--cyan) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.value-card:hover::before { transform: scaleX(1); }
.value-num {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(54, 198, 200, 0.10);
  line-height: 1;
}
.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 20px rgba(26, 58, 82, 0.18);
}
.value-icon svg {
  width: 28px; height: 28px;
  stroke: #fff; fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.value-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.96rem; margin-bottom: 0; }

/* ============================================
   STATS BAND
   ============================================ */
.stats {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-soft) 100%);
  color: #fff;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54, 198, 200, 0.18), transparent 70%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1.05;
  margin-bottom: 0.4rem;
}
.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

/* ============================================
   PRODUCT SHOWCASE
   ============================================ */
.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #fff 0%, var(--teal-bg) 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}
.product-showcase.reverse { grid-template-columns: 1.1fr 1fr; }
.product-showcase.reverse .product-text { order: 2; }
.product-showcase.reverse .product-visual { order: 1; }

@media (max-width: 880px) {
  .product-showcase,
  .product-showcase.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.75rem;
  }
  .product-showcase.reverse .product-text { order: 1; }
  .product-showcase.reverse .product-visual { order: 2; }
}

.product-text h3 { font-size: 1.6rem; margin-bottom: 0.75rem; }
.product-text .product-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--cyan);
  background: rgba(54, 198, 200, 0.12);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 1rem;
}
.product-text ul {
  list-style: none;
  margin: 1.25rem 0;
}
.product-text ul li {
  padding: 0.4rem 0 0.4rem 1.85rem;
  position: relative;
  color: var(--text);
  font-size: 0.96rem;
}
.product-text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(54, 198, 200, 0.18);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

/* Product visual (browser/app mockup) */
.product-visual {
  position: relative;
}
.mockup {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: relative;
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.4s;
}
.product-showcase:hover .mockup {
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg) translateY(-4px);
}
.product-showcase.reverse .mockup {
  transform: perspective(1000px) rotateY(4deg) rotateX(2deg);
}
.product-showcase.reverse:hover .mockup {
  transform: perspective(1000px) rotateY(2deg) rotateX(1deg) translateY(-4px);
}
.mockup-bar {
  background: #f1f5f8;
  padding: 0.55rem 0.8rem;
  display: flex;
  gap: 0.35rem;
  border-bottom: 1px solid var(--border);
}
.mockup-bar .dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #d8e0e6;
}
.mockup-bar .dot.r { background: #ee6c6c; }
.mockup-bar .dot.y { background: #f4b942; }
.mockup-bar .dot.g { background: #5cc985; }
.mockup-body {
  padding: 1.5rem;
  background: linear-gradient(180deg, #fff 0%, #f7fafc 100%);
  min-height: 280px;
}
/* shared header used across all mockups */
.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
}
.mockup-header .title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}
.mockup-header .pill {
  font-size: 0.72rem;
  color: var(--navy-soft);
  background: var(--teal-bg);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-weight: 600;
}
.mockup-header .pill.live {
  color: #fff;
  background: var(--cyan);
  position: relative;
  padding-left: 1.1rem;
}
.mockup-header .pill.live::before {
  content: "";
  position: absolute;
  left: 0.45rem;
  top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ============================================
   MOCKUP A — O*NET Career Pathways dashboard
   ============================================ */
.mk-profile {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.85rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  border-radius: 12px;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}
.mk-profile::after {
  content: "";
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(54, 198, 200, 0.25);
}
.mk-profile-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.mk-profile-info { position: relative; z-index: 1; flex: 1; min-width: 0; }
.mk-profile-info .name { font-weight: 700; font-size: 0.93rem; }
.mk-profile-info .sub { font-size: 0.76rem; opacity: 0.85; }
.mk-profile-badge {
  position: relative; z-index: 1;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.mk-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.4rem;
  margin-bottom: 0.95rem;
}
.mk-stat {
  background: var(--bg-soft);
  border-radius: 8px;
  padding: 0.55rem 0.6rem;
}
.mk-stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.1;
}
.mk-stat-label {
  font-size: 0.66rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.mk-section-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mk-section-title .meta {
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-light);
  font-size: 0.72rem;
}

.skill-bar { margin-bottom: 0.5rem; }
.skill-bar-row {
  display: flex; justify-content: space-between;
  font-size: 0.76rem;
  margin-bottom: 0.2rem;
  color: var(--text);
}
.skill-bar-row .pct { font-weight: 700; color: var(--cyan); }
.skill-bar-row .pct.amber { color: #b87f00; }
.skill-bar-track {
  height: 6px;
  background: var(--bg-soft);
  border-radius: 999px;
  overflow: hidden;
}
.skill-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--teal) 100%);
  border-radius: 999px;
}
.skill-bar-fill.amber {
  background: linear-gradient(90deg, var(--amber) 0%, #e09a1a 100%);
}

.mk-occupations {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.mk-occ {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
}
.mk-occ .code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.68rem;
  color: var(--cyan);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.mk-occ .occ-title {
  font-family: var(--font-display);
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0.1rem 0 0.3rem;
  line-height: 1.25;
}
.mk-occ .occ-meta {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
}

/* ============================================
   MOCKUP B — Adaptive Learning progress
   ============================================ */
.mk-donut-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, var(--teal-bg) 0%, #fff 100%);
  border-radius: 14px;
  margin-bottom: 0.85rem;
  border: 1px solid var(--border-soft);
}
.donut {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: conic-gradient(var(--cyan) 0% 78%, #e2ebee 78% 100%);
  position: relative;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}
.donut::after {
  content: "";
  position: absolute;
  inset: 9px;
  background: #fff;
  border-radius: 50%;
}
.donut .donut-pct {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
}
.donut-info { flex: 1; min-width: 0; }
.donut-info .label {
  font-size: 0.7rem;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.donut-info .course-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin: 0.15rem 0;
}
.donut-info .next-up {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.mk-modules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.mk-module {
  background: #fff;
  border: 1px solid var(--border);
  padding: 0.7rem;
  border-radius: 10px;
}
.mk-module .m-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.45rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.mk-module .m-label .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}
.mk-module .m-label .dot.dim { background: var(--border); }
.mk-module .m-progress {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mk-module .bar {
  height: 4px;
  flex: 1;
  background: var(--bg-soft);
  border-radius: 999px;
  overflow: hidden;
}
.mk-module .bar > div {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--teal) 100%);
  border-radius: 999px;
}
.mk-module .pct {
  font-size: 0.7rem;
  color: var(--cyan);
  font-weight: 700;
  min-width: 28px;
  text-align: right;
}
.mk-adapt-row {
  display: flex; gap: 0.4rem;
  margin-top: 0.75rem;
  padding: 0.55rem 0.7rem;
  background: rgba(54, 198, 200, 0.1);
  border: 1px dashed rgba(54, 198, 200, 0.4);
  border-radius: 8px;
  font-size: 0.75rem;
  color: var(--navy);
  align-items: center;
}
.mk-adapt-row svg { width: 16px; height: 16px; stroke: var(--cyan); flex-shrink: 0; }
.mk-adapt-row strong { font-weight: 700; color: var(--cyan); }

/* ============================================
   MOCKUP C — Admin / Calendar
   ============================================ */
.mk-cal-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}
.cal-stat {
  background: var(--bg-soft);
  border-radius: 8px;
  padding: 0.55rem 0.5rem;
  text-align: center;
}
.cal-stat .v {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.1;
}
.cal-stat .l {
  font-size: 0.62rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.mk-cal {
  display: grid;
  grid-template-columns: 36px repeat(5, 1fr);
  gap: 2px;
  background: var(--border-soft);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
}
.cal-head {
  background: #fff;
  padding: 0.4rem 0;
  text-align: center;
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cal-head.today { background: var(--cyan); color: var(--navy-deep); }
.cal-time {
  background: #fff;
  padding: 0;
  text-align: center;
  font-size: 0.6rem;
  color: var(--text-light);
  display: grid;
  place-items: center;
  font-weight: 600;
}
.cal-cell {
  background: #fff;
  min-height: 32px;
  padding: 2px;
  position: relative;
}
.cal-event {
  height: 100%;
  border-radius: 6px;
  padding: 0.25rem 0.4rem;
  font-size: 0.62rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  display: flex;
  align-items: center;
}
.cal-event.c1 { background: var(--cyan); color: var(--navy-deep); }
.cal-event.c2 { background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%); }
.cal-event.c3 { background: var(--teal); }
.cal-event.c4 { background: var(--amber); color: var(--navy-deep); }
.cal-event.c5 { background: linear-gradient(135deg, var(--coral) 0%, var(--amber) 100%); color: var(--navy-deep); }

.auto-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.7rem;
  padding: 0.3rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(54, 198, 200, 0.12);
  color: var(--cyan);
  border-radius: 999px;
  border: 1px solid rgba(54, 198, 200, 0.25);
}
.auto-tag svg { width: 12px; height: 12px; }

/* ============================================
   MOCKUP D — Mentor Timeline
   ============================================ */
.mk-timeline {
  position: relative;
  padding-left: 1.5rem;
}
.mk-timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--cyan) 0%, var(--border) 100%);
}
.timeline-item {
  position: relative;
  padding: 0.75rem 0.85rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 0.55rem;
  transition: border-color 0.2s, transform 0.2s;
}
.timeline-item:hover {
  border-color: var(--cyan);
  transform: translateX(3px);
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.55rem;
  top: 1rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px #fff, 0 0 0 5px var(--cyan);
}
.timeline-item.past::before {
  background: var(--border);
  box-shadow: 0 0 0 4px #fff, 0 0 0 5px var(--border);
}
.timeline-item.live::before {
  background: var(--cyan);
  animation: pulse-ring 1.6s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 4px #fff, 0 0 0 5px var(--cyan), 0 0 0 5px rgba(54, 198, 200, 0.4); }
  100% { box-shadow: 0 0 0 4px #fff, 0 0 0 5px var(--cyan), 0 0 0 14px rgba(54, 198, 200, 0); }
}
.timeline-item .when {
  font-family: var(--font-display);
  font-size: 0.68rem;
  color: var(--cyan);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.timeline-item .session-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 0.15rem;
  gap: 0.5rem;
}
.timeline-item .session-info { flex: 1; min-width: 0; }
.timeline-item .mentor-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  line-height: 1.25;
}
.timeline-item .mentor-topic {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}
.timeline-item .tl-pill {
  font-size: 0.62rem;
  font-weight: 700;
  background: rgba(54, 198, 200, 0.15);
  color: var(--cyan);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.timeline-item.past .tl-pill { background: var(--bg-soft); color: var(--text-light); }
.timeline-item.live .tl-pill {
  background: var(--cyan);
  color: var(--navy-deep);
}

/* floating accent behind mockup */
.product-visual::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at 50% 50%, rgba(54, 198, 200, 0.18), transparent 60%);
  z-index: -1;
  border-radius: 50%;
}

/* ============================================
   TAB INTERFACE (AI Academy programs)
   ============================================ */
.tabs {
  max-width: 1100px;
  margin: 0 auto;
}
.tab-list {
  display: flex;
  gap: 0.5rem;
  background: var(--bg-soft);
  padding: 0.4rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.tab-list::-webkit-scrollbar { display: none; }
.tab-btn {
  flex: 1;
  min-width: 180px;
  padding: 0.85rem 1.25rem;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s;
  text-align: center;
  white-space: nowrap;
}
.tab-btn:hover { color: var(--navy); }
.tab-btn.active {
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeUp 0.4s ease; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.tab-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}
@media (max-width: 880px) {
  .tab-content { grid-template-columns: 1fr; gap: 2rem; padding: 1.75rem; }
}
.tab-content h3 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.tab-content .audience {
  font-family: var(--font-display);
  color: var(--cyan);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  margin-bottom: 0.85rem;
  display: block;
}
.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0;
}
.feature-pill {
  background: var(--teal-bg);
  color: var(--navy);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(107, 160, 181, 0.25);
}

.tab-visual {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: #fff;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.tab-visual::before {
  content: "";
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(54, 198, 200, 0.2);
}
.tab-visual::after {
  content: "";
  position: absolute;
  bottom: -40px; left: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.tab-visual .visual-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.15);
  display: grid; place-items: center;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.tab-visual .visual-icon svg {
  width: 32px; height: 32px;
  stroke: #fff; fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tab-visual h4 {
  color: #fff;
  font-size: 1.4rem;
  margin: 1.25rem 0 0.4rem;
  position: relative; z-index: 1;
}
.tab-visual p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.93rem;
  position: relative; z-index: 1;
  margin-bottom: 0;
}

/* ============================================
   AUDIENCE CARDS (Who We Serve)
   ============================================ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.audience-card {
  background: #fff;
  border: 0;
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.audience-card::after {
  content: "";
  position: absolute;
  bottom: -50px; left: 50%;
  transform: translateX(-50%);
  width: 120%; height: 120px;
  background: radial-gradient(ellipse at top, rgba(54, 198, 200, 0.18), transparent 70%);
  transition: opacity 0.3s;
  opacity: 0;
}
.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.audience-card:hover::after { opacity: 1; }
.audience-card .icon-wrap {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-bg) 0%, var(--cyan-soft) 100%);
  display: grid; place-items: center;
  margin: 0 auto 1rem;
  color: var(--navy);
  position: relative;
  z-index: 1;
}
.audience-card .icon-wrap svg {
  width: 32px; height: 32px;
  stroke: var(--navy); fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.audience-card h4 { margin-bottom: 0.4rem; font-size: 1.05rem; }
.audience-card p { font-size: 0.9rem; margin: 0; color: var(--text-muted); }

/* ============================================
   VR / DISABILITY FOCUS SECTION
   ============================================ */
.focus-band {
  background: linear-gradient(135deg, #fff 0%, var(--teal-bg) 100%);
  border-radius: var(--radius-xl);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.focus-band::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54, 198, 200, 0.2), transparent 70%);
  pointer-events: none;
}
.focus-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.focus-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.focus-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 36, 54, 0.55) 100%);
  pointer-events: none;
}
.focus-photo .focus-photo-caption {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  right: 1.25rem;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  z-index: 1;
}
.focus-photo .focus-photo-caption small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.2rem;
}

/* full-width photo banner used on inner pages */
.photo-banner {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 21 / 9;
  max-height: 460px;
}
.photo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(15, 36, 54, 0.65) 0%, rgba(26, 58, 82, 0.25) 50%, transparent 100%);
}
.photo-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem;
  color: #fff;
  z-index: 1;
  max-width: 60%;
}
.photo-banner-overlay h3 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}
.photo-banner-overlay p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 0.98rem;
}
@media (max-width: 700px) {
  .photo-banner { aspect-ratio: 4 / 3; max-height: none; }
  .photo-banner-overlay { max-width: 100%; padding: 1.5rem; }
  .photo-banner-overlay h3 { font-size: 1.25rem; }
}
@media (max-width: 880px) {
  .focus-band {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
    gap: 2rem;
  }
}
.focus-band h2 { margin-bottom: 1rem; }
.focus-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.focus-stat {
  background: #fff;
  padding: 1.25rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--cyan);
}
.focus-stat-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.15rem;
}
.focus-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.focus-visual {
  position: relative;
  z-index: 1;
}
.focus-visual .badge-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.focus-badge {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s;
}
.focus-badge:hover {
  transform: translateX(6px);
  border-color: var(--cyan);
}
.focus-badge .badge-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--teal-bg);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.focus-badge svg {
  width: 22px; height: 22px;
  stroke: var(--navy); fill: none;
  stroke-width: 2;
}
.focus-badge .badge-text {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}
.focus-badge .badge-text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-top: 0.1rem;
}

/* ============================================
   PROCESS / TIMELINE
   ============================================ */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg,
    var(--cyan) 0 8px, transparent 8px 14px);
  z-index: 0;
}
@media (max-width: 880px) {
  .process { grid-template-columns: 1fr 1fr; }
  .process::before { display: none; }
}
@media (max-width: 500px) {
  .process { grid-template-columns: 1fr; }
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 64px; height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--cyan);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy);
  box-shadow: 0 0 0 6px rgba(54, 198, 200, 0.1);
}
.process-step h4 { font-size: 1rem; margin-bottom: 0.4rem; }
.process-step p { font-size: 0.9rem; margin: 0; }

/* ============================================
   TEAM CARDS
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  text-align: center;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-light);
}
.team-avatar {
  width: 130px; height: 130px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: 0 12px 28px rgba(26, 58, 82, 0.18);
  overflow: hidden;
  position: relative;
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px rgba(54, 198, 200, 0.25);
  pointer-events: none;
}
.team-card h3 { font-size: 1.2rem; margin-bottom: 0.2rem; }
.team-card .role {
  font-family: var(--font-display);
  color: var(--cyan);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 0.85rem;
}
.team-card .affil {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.85rem;
  font-style: italic;
}
.team-card p { font-size: 0.93rem; text-align: left; }
.expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 1rem;
  justify-content: center;
}
.expertise span {
  font-size: 0.74rem;
  background: var(--bg-soft);
  color: var(--text);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--border);
}

/* leadership emphasis */
.team-card.lead {
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  border: 2px solid var(--cyan);
  box-shadow: 0 14px 34px rgba(54, 198, 200, 0.12);
}
.team-card.lead .team-avatar {
  width: 130px; height: 130px;
  font-size: 2.4rem;
}

/* ============================================
   OPPORTUNITY CARDS (Work With Us)
   ============================================ */
.opp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}
@media (max-width: 800px) {
  .opp-grid { grid-template-columns: 1fr; }
}
.opp-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.opp-card::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 140px; height: 140px;
  background: radial-gradient(circle at top right, rgba(54, 198, 200, 0.18), transparent 70%);
  pointer-events: none;
}
.opp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.opp-card .opp-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--cyan) 100%);
  display: grid; place-items: center;
  margin-bottom: 1.25rem;
}
.opp-card .opp-icon svg {
  width: 28px; height: 28px;
  stroke: #fff; fill: none;
  stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.opp-card h3 { font-size: 1.3rem; margin-bottom: 0.85rem; }
.opp-card h4 {
  font-size: 0.85rem;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 1rem;
  margin-bottom: 0.4rem;
}

/* ============================================
   CTA BANDS
   ============================================ */
.cta-band {
  background:
    radial-gradient(circle at 20% 50%, rgba(54, 198, 200, 0.25), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(107, 160, 181, 0.25), transparent 50%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: #fff;
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 660px;
  margin: 0 auto 1.75rem;
  font-size: 1.1rem;
}

/* gold-emphasis CTA strip */
.cta-strip {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff;
  padding: 2.5rem 0;
}
.cta-strip-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-strip h3 {
  color: #fff;
  font-size: 1.5rem;
  margin: 0;
  font-weight: 700;
}
.cta-strip h3 .accent {
  background: linear-gradient(90deg, var(--cyan) 0%, var(--amber) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================
   FEATURE / TEXT ROW
   ============================================ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (max-width: 880px) {
  .feature-row { grid-template-columns: 1fr; gap: 2rem; }
}
.feature-row .feature-list {
  list-style: none;
  margin: 1.25rem 0;
}
.feature-row .feature-list li {
  padding: 0.6rem 0 0.6rem 2rem;
  position: relative;
  color: var(--text);
}
.feature-row .feature-list li strong {
  color: var(--navy);
  display: block;
  font-family: var(--font-display);
}
.feature-row .feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--cyan) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/14px no-repeat;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.contact-info-block {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-info-block .icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--bg-soft);
  display: grid; place-items: center;
  color: var(--cyan);
}
.contact-info-block h4 { margin-bottom: 0.2rem; }
.contact-info-block p { font-size: 0.95rem; margin: 0; }
.contact-info-block a { color: var(--navy); font-weight: 600; }
.contact-info-block a:hover { color: var(--cyan); }

.contact-form {
  background: #fff;
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-field { margin-bottom: 1.25rem; }
.form-field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font: inherit;
  font-size: 0.97rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(54, 198, 200, 0.18);
}
.form-field textarea { resize: vertical; min-height: 140px; }

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  color: #fff;
  padding: 3rem 2rem;
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(54, 198, 200, 0.3), transparent 50%);
  pointer-events: none;
}
.newsletter h3 {
  color: #fff;
  position: relative;
  z-index: 1;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.newsletter p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 520px;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1rem;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  font: inherit;
  font-size: 0.95rem;
  color: var(--navy);
}
.newsletter-form input::placeholder { color: var(--text-light); }
.newsletter-form button {
  padding: 0.85rem 1.4rem;
  background: var(--navy-deep);
  color: #fff;
  border: 0;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--cyan); color: var(--navy-deep); }
@media (max-width: 560px) {
  .newsletter-form { flex-direction: column; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 1.5rem;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
}
.footer-brand img {
  height: 40px; width: auto;
  background: #fff;
  padding: 5px;
  border-radius: 8px;
}
.site-footer h4 {
  color: #fff;
  font-size: 0.92rem;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 0.55rem; }
.site-footer a { color: rgba(255, 255, 255, 0.72); }
.site-footer a:hover { color: var(--cyan); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}
.footer-contact-item svg {
  width: 16px; height: 16px;
  color: var(--cyan);
  flex-shrink: 0;
}
.footer-socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.2rem;
}
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: grid; place-items: center;
  color: rgba(255, 255, 255, 0.8);
  transition: background 0.2s, color 0.2s;
}
.footer-socials a:hover {
  background: var(--cyan);
  color: var(--navy-deep);
}
.footer-socials svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
  background:
    radial-gradient(circle at 80% 20%, rgba(54, 198, 200, 0.18), transparent 50%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: #fff;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header h1 {
  color: #fff;
  margin-bottom: 0.85rem;
}
.page-header h1 .accent {
  background: linear-gradient(90deg, var(--cyan) 0%, var(--teal-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-header p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.1rem;
}
.breadcrumb {
  display: inline-flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
}
.breadcrumb a { color: rgba(255, 255, 255, 0.65); }
.breadcrumb a:hover { color: var(--cyan); }

/* ============================================
   PROSE (about / inner text pages)
   ============================================ */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { margin-top: 2.5rem; }
.prose h3 { margin-top: 1.75rem; }
.prose p { color: var(--text-muted); font-size: 1.02rem; }
.prose ul, .prose ol { margin: 1rem 0 1.5rem 1.25rem; color: var(--text-muted); }
.prose ul li, .prose ol li { margin-bottom: 0.4rem; }
.prose blockquote {
  border-left: 4px solid var(--cyan);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 1.75rem 0;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--navy);
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 2rem; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   ACADEMY — Course spotlight (magazine layout)
   ============================================ */
.course-spotlight {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  background: #fff;
  position: relative;
}
@media (max-width: 900px) {
  .course-spotlight { grid-template-columns: 1fr; }
}
.spotlight-visual {
  background:
    radial-gradient(circle at 20% 30%, rgba(54, 198, 200, 0.35), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(244, 185, 66, 0.25), transparent 55%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--teal) 100%);
  padding: 3.5rem 2.5rem;
  position: relative;
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
  min-height: 320px;
}
.spotlight-visual::before {
  content: "";
  position: absolute;
  top: -60px; left: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.18);
  animation: spin 38s linear infinite;
}
.spotlight-visual::after {
  content: "";
  position: absolute;
  bottom: -80px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 1px dashed rgba(54, 198, 200, 0.4);
  animation: spin 28s linear infinite reverse;
}
.spotlight-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--cyan);
  color: var(--navy-deep);
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}
.spotlight-stack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}
.spotlight-stack .stack-card {
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  width: 240px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  transition: transform 0.3s;
}
.spotlight-stack .stack-card:nth-child(1) { transform: translateX(-32px) rotate(-3deg); }
.spotlight-stack .stack-card:nth-child(2) { transform: translateX(0) rotate(1deg); z-index: 2; box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35); }
.spotlight-stack .stack-card:nth-child(3) { transform: translateX(32px) rotate(3deg); }
.course-spotlight:hover .spotlight-stack .stack-card:nth-child(1) { transform: translateX(-40px) rotate(-5deg); }
.course-spotlight:hover .spotlight-stack .stack-card:nth-child(3) { transform: translateX(40px) rotate(5deg); }
.spotlight-stack .stack-card .ic {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--cyan) 100%);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.spotlight-stack .stack-card .ic svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2; }
.spotlight-stack .stack-card .txt { font-size: 0.85rem; font-weight: 600; font-family: var(--font-display); }
.spotlight-stack .stack-card .pct { margin-left: auto; font-weight: 700; color: var(--cyan); font-size: 0.78rem; }

.spotlight-content { padding: 3rem 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.spotlight-meta {
  display: flex; gap: 0.4rem; flex-wrap: wrap;
  margin-bottom: 0.85rem;
}
.spotlight-meta .chip {
  background: var(--teal-bg);
  color: var(--navy);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.spotlight-meta .chip.hot { background: var(--cyan); color: var(--navy-deep); }
.spotlight-content h3 { font-size: 1.8rem; margin-bottom: 0.85rem; }
.spotlight-content > p { font-size: 1rem; margin-bottom: 1rem; }
.spotlight-modules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin: 0.75rem 0 1.5rem;
}
.sp-module {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text);
}
.sp-module .num {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--navy-deep);
  display: grid; place-items: center;
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ============================================
   ACADEMY — Horizontal course rail
   ============================================ */
.rail-wrap { position: relative; }
.rail-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
}
.rail-head h3 {
  margin: 0;
  font-size: 1.05rem;
  font-family: var(--font-display);
  color: var(--navy);
}
.rail-controls { display: flex; gap: 0.4rem; }
.rail-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  display: grid; place-items: center;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--navy);
}
.rail-btn:hover { border-color: var(--cyan); background: var(--cyan); color: var(--navy-deep); }
.rail-btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.5; }

.course-rail {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0.5rem 0.25rem 1.5rem;
  scroll-snap-type: x mandatory;
}
.course-rail::-webkit-scrollbar { height: 8px; }
.course-rail::-webkit-scrollbar-track { background: var(--bg-soft); border-radius: 999px; }
.course-rail::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--navy), var(--cyan));
  border-radius: 999px;
}
.course-tile {
  flex: 0 0 290px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s, opacity 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.course-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-light);
}
.course-tile.hidden { display: none; }
.course-tile-banner {
  height: 56px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0.7rem 1rem;
}
.course-tile.youth .course-tile-banner { background: linear-gradient(135deg, var(--coral) 0%, var(--amber) 100%); }
.course-tile.advanced .course-tile-banner { background: linear-gradient(135deg, var(--navy-deep) 0%, var(--cyan) 100%); }
.course-tile-banner .lvl {
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.course-tile-banner::after {
  content: "";
  position: absolute;
  bottom: -22px; right: 0.85rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--cyan);
  box-shadow: 0 6px 14px rgba(15, 36, 54, 0.12);
}
.course-tile-banner .hrs {
  position: absolute;
  bottom: -14px; right: 0.85rem;
  z-index: 1;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  line-height: 1;
}
.course-tile-banner .hrs small {
  font-size: 0.55rem;
  color: var(--text-light);
  font-weight: 600;
  display: block;
  text-align: center;
  margin-top: 1px;
}
.course-tile-body {
  padding: 1.5rem 1.1rem 1.1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.course-tile-body h4 {
  font-size: 0.98rem;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.course-tile-body p {
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
  flex: 1;
}
.course-tile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.course-tile-tags span {
  font-size: 0.68rem;
  background: var(--bg-soft);
  color: var(--text-muted);
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  font-weight: 500;
}

/* ============================================
   ACADEMY — Certification Journey (staircase)
   ============================================ */
.cert-journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 5rem 1rem 6rem;
}
@media (max-width: 880px) {
  .cert-journey {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 2rem 0;
  }
}
.cert-journey::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--teal) 50%, var(--navy) 100%);
  border-radius: 999px;
  transform: translateY(-50%);
  z-index: 0;
  opacity: 0.35;
}
@media (max-width: 880px) {
  .cert-journey::before { display: none; }
}
.cert-journey::after {
  content: "";
  position: absolute;
  right: 6%;
  top: 50%;
  width: 0; height: 0;
  border-left: 12px solid var(--navy);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.55;
}
@media (max-width: 880px) {
  .cert-journey::after { display: none; }
}
.cert-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1.25rem 0.75rem;
}
@media (min-width: 881px) {
  .cert-step:nth-child(1) { transform: translateY(70px); }
  .cert-step:nth-child(2) { transform: translateY(24px); }
  .cert-step:nth-child(3) { transform: translateY(-24px); }
  .cert-step:nth-child(4) { transform: translateY(-70px); }
}
.cert-medal {
  width: 92px; height: 92px;
  margin: 0 auto 1rem;
  position: relative;
  display: grid;
  place-items: center;
}
.cert-medal::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--cyan), var(--teal), var(--navy), var(--cyan));
  animation: spin 16s linear infinite;
}
.cert-medal::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #fff;
}
.cert-step.specialist .cert-medal::before { background: conic-gradient(from 0deg, var(--amber), var(--coral), var(--cyan), var(--amber)); }
.cert-step.trainer .cert-medal::before { background: conic-gradient(from 0deg, var(--navy-deep), var(--teal), var(--cyan), var(--navy-deep)); }
.cert-medal .ic {
  position: relative;
  z-index: 1;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-soft) 0%, #fff 100%);
  display: grid; place-items: center;
  border: 1px solid var(--border);
}
.cert-medal .ic svg {
  width: 30px; height: 30px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cert-medal .ribbon {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.62rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  letter-spacing: 0.08em;
  z-index: 2;
  white-space: nowrap;
}
.cert-step.featured .cert-medal .ribbon { background: var(--cyan); color: var(--navy-deep); }
.cert-step h3 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.cert-step .hrs {
  font-family: var(--font-display);
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.cert-step p {
  font-size: 0.82rem;
  margin: 0;
}
.cert-step .step-num {
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.5rem;
  color: rgba(54, 198, 200, 0.15);
  line-height: 1;
  z-index: 0;
}

/* ============================================
   ACADEMY — Schedule timeline (cohorts)
   ============================================ */
.schedule {
  position: relative;
  padding: 2rem 0 3rem;
}
.schedule-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
}
@media (max-width: 880px) {
  .schedule-rail { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .schedule-rail { grid-template-columns: 1fr; }
}
.schedule-rail::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--cyan) 0 10px, transparent 10px 18px);
  opacity: 0.35;
}
@media (max-width: 880px) {
  .schedule-rail::before { display: none; }
}
.month-col {
  position: relative;
  z-index: 1;
}
.month-marker {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 auto 1rem;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--cyan), 0 6px 14px rgba(15, 36, 54, 0.18);
}
.month-marker.current {
  background: var(--cyan);
  color: var(--navy-deep);
  box-shadow: 0 0 0 2px var(--navy), 0 6px 14px rgba(54, 198, 200, 0.35);
}
.month-cohorts {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.cohort-node {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  text-align: left;
}
.cohort-node:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--cyan);
}
.cohort-node.youth { border-top: 4px solid var(--amber); }
.cohort-node.summit { border-top: 4px solid var(--coral); }
.cohort-node.default { border-top: 4px solid var(--cyan); }
.cohort-node .day-tag {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--cyan);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.cohort-node.youth .day-tag { color: #b87f00; }
.cohort-node.summit .day-tag { color: var(--coral); }
.cohort-node .title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9rem;
  margin: 0.2rem 0 0.35rem;
  line-height: 1.3;
}
.cohort-node .meta {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.cohort-node .seats-row {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 700;
}
.cohort-node .seats-row .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}
.cohort-node .seats-row .dot.full { background: var(--coral); }
.cohort-node.youth .seats-row .dot { background: var(--amber); }

/* ============================================
   ACADEMY — Format comparison matrix
   ============================================ */
.format-matrix {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.fm-header {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.fm-feature-head {
  padding: 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.fm-col-head {
  padding: 1.25rem 0.75rem;
  text-align: center;
  border-left: 1px solid var(--border);
  position: relative;
}
.fm-col-head.featured {
  background: linear-gradient(180deg, var(--cyan) 0%, transparent 100%);
}
.fm-col-head.featured::before {
  content: "★ Most popular";
  position: absolute;
  top: 0.35rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.fm-col-head .ic {
  width: 44px; height: 44px;
  margin: 0.5rem auto 0.55rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  display: grid; place-items: center;
}
.fm-col-head .ic svg {
  width: 22px; height: 22px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 1.8;
}
.fm-col-head .name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9rem;
  line-height: 1.25;
}
.fm-col-head .sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
.fm-row {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  border-top: 1px solid var(--border-soft);
}
.fm-row:hover { background: rgba(54, 198, 200, 0.04); }
.fm-feature {
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.92rem;
  display: flex; align-items: center; gap: 0.55rem;
}
.fm-feature svg {
  width: 18px; height: 18px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}
.fm-cell {
  padding: 1rem 0.5rem;
  border-left: 1px solid var(--border-soft);
  text-align: center;
  display: grid;
  place-items: center;
}
.fm-cell.featured { background: rgba(54, 198, 200, 0.06); }
.fm-cell .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--cyan);
  display: grid; place-items: center;
  color: var(--navy-deep);
}
.fm-cell .check svg { width: 12px; height: 12px; stroke: var(--navy-deep); fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.fm-cell .x {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: grid; place-items: center;
  color: var(--text-light);
  font-weight: 700;
  font-size: 0.85rem;
}
.fm-cell .partial {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--amber);
  background: rgba(244, 185, 66, 0.16);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}
.fm-cell .val {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--navy);
  font-size: 0.85rem;
}
.fm-cta-row {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}
.fm-cta-row > div { padding: 1rem; }
.fm-cta-row .fm-cell { border-left: 1px solid var(--border-soft); }
.fm-cta-row .btn-mini {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background 0.2s;
}
.fm-cta-row .btn-mini:hover { background: var(--cyan); color: var(--navy-deep); }
.fm-cta-row .btn-mini.featured { background: var(--cyan); color: var(--navy-deep); }

@media (max-width: 880px) {
  .format-matrix { overflow-x: auto; }
  .fm-header, .fm-row, .fm-cta-row { min-width: 720px; }
}

/* ============================================
   ACADEMY — Course catalog with filter chips (legacy support)
   ============================================ */
.catalog-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-chip {
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-chip:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
.filter-chip.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: 0 6px 16px rgba(26, 58, 82, 0.18);
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.25rem;
}
.course-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s, opacity 0.3s;
}
.course-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-light);
}
.course-card.hidden {
  display: none;
}
.course-card-head {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  color: #fff;
  padding: 0.85rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.course-card-head .level {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}
.course-card-head .level-pill {
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.18);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.course-card.youth .course-card-head {
  background: linear-gradient(135deg, var(--coral) 0%, var(--amber) 100%);
}
.course-card.advanced .course-card-head {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
}
.course-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.course-card-body h3 {
  font-size: 1.08rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.course-card-body p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  flex: 1;
}
.course-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.course-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.course-meta svg {
  width: 14px;
  height: 14px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 2;
}
.course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.course-tags .tag {
  font-size: 0.72rem;
  background: var(--bg-soft);
  color: var(--text-muted);
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 500;
}

/* ============================================
   ACADEMY — Certification tier badges
   ============================================ */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.cert-tier {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem 1.75rem;
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.cert-tier:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-light);
}
.cert-tier.featured {
  border-color: var(--cyan);
  background: linear-gradient(180deg, #fff 0%, rgba(54, 198, 200, 0.06) 100%);
}
.cert-tier.featured::before {
  content: "Most enrolled";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: var(--navy-deep);
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.cert-badge {
  width: 110px;
  height: 110px;
  margin: 0 auto 1.25rem;
  position: relative;
  display: grid;
  place-items: center;
}
.cert-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(var(--cyan) 0deg, var(--teal) 120deg, var(--navy) 240deg, var(--cyan) 360deg);
  animation: spin 14s linear infinite;
}
.cert-badge::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 2px rgba(54, 198, 200, 0.2);
}
.cert-badge .inner {
  position: relative;
  z-index: 1;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-soft) 0%, #fff 100%);
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
}
.cert-badge .inner svg {
  width: 36px;
  height: 36px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cert-tier.specialist .cert-badge::before {
  background: conic-gradient(var(--amber) 0deg, var(--coral) 120deg, var(--cyan) 240deg, var(--amber) 360deg);
}
.cert-tier.trainer .cert-badge::before {
  background: conic-gradient(var(--navy-deep) 0deg, var(--teal) 120deg, var(--cyan) 240deg, var(--navy-deep) 360deg);
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.cert-tier h3 {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}
.cert-tier .cert-hours {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--cyan);
  font-size: 0.78rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cert-tier > p {
  font-size: 0.88rem;
  margin-bottom: 1rem;
  text-align: center;
}
.cert-tier ul {
  list-style: none;
  text-align: left;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}
.cert-tier ul li {
  padding: 0.35rem 0 0.35rem 1.6rem;
  position: relative;
}
.cert-tier ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--cyan) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/10px no-repeat;
}

/* ============================================
   ACADEMY — Upcoming cohorts
   ============================================ */
.cohort-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}
.cohort-card {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  align-items: center;
}
.cohort-card:hover {
  transform: translateY(-2px);
  border-color: var(--cyan);
  box-shadow: var(--shadow);
}
.cohort-date {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  border-radius: 10px;
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0.65rem 0.4rem;
  height: 100%;
  align-self: stretch;
}
.cohort-card.youth .cohort-date {
  background: linear-gradient(135deg, var(--coral) 0%, var(--amber) 100%);
}
.cohort-card.summit .cohort-date {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--cyan) 100%);
}
.cohort-date .mon {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  opacity: 0.9;
}
.cohort-date .day {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 1;
  margin: 0.15rem 0;
}
.cohort-date .yr {
  font-size: 0.65rem;
  opacity: 0.85;
}
.cohort-info .cohort-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
  line-height: 1.3;
}
.cohort-info .cohort-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.cohort-info .cohort-pills {
  display: flex;
  gap: 0.3rem;
  margin-top: 0.55rem;
  flex-wrap: wrap;
}
.cohort-info .cohort-pills span {
  font-size: 0.68rem;
  background: var(--teal-bg);
  color: var(--navy);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-weight: 600;
}
.cohort-info .cohort-pills .seats {
  background: rgba(54, 198, 200, 0.18);
  color: var(--cyan);
}
.cohort-info .cohort-pills .full {
  background: rgba(238, 108, 77, 0.16);
  color: var(--coral);
}

/* ============================================
   ACADEMY — Format options
   ============================================ */
.format-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.format-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.format-card.featured {
  border-color: var(--cyan);
  background: linear-gradient(180deg, #fff 0%, rgba(54, 198, 200, 0.06) 100%);
}
.format-card.featured::after {
  content: "Most popular";
  position: absolute;
  top: -12px;
  right: 1rem;
  background: var(--cyan);
  color: var(--navy-deep);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.format-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.format-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--cyan);
}
.format-card.featured .format-icon {
  background: rgba(54, 198, 200, 0.18);
}
.format-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.format-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.4rem;
}
.format-card p {
  font-size: 0.88rem;
  margin-bottom: 0.85rem;
}
.format-card ul {
  list-style: none;
  margin: 0;
  font-size: 0.85rem;
}
.format-card ul li {
  padding: 0.3rem 0 0.3rem 1.4rem;
  position: relative;
  color: var(--text-muted);
}
.format-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 14px;
  height: 14px;
  background: var(--cyan) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/9px no-repeat;
  border-radius: 50%;
}

/* ============================================
   FAQ accordion
   ============================================ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.65rem;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item.open {
  border-color: var(--cyan);
  box-shadow: 0 6px 18px rgba(54, 198, 200, 0.12);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--navy);
  background: transparent;
  border: 0;
  width: 100%;
  text-align: left;
  transition: background 0.2s;
}
.faq-q:hover {
  background: var(--bg-soft);
}
.faq-q .chev {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  transition: transform 0.25s, background 0.25s;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-q .chev svg {
  width: 12px;
  height: 12px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.faq-item.open .faq-q .chev {
  background: var(--cyan);
  transform: rotate(180deg);
}
.faq-item.open .faq-q .chev svg {
  stroke: var(--navy-deep);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.25rem;
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding: 0 1.25rem 1.3rem;
}
.faq-a p {
  font-size: 0.94rem;
  color: var(--text-muted);
  margin: 0;
}
.faq-a p + p {
  margin-top: 0.6rem;
}

/* ============================================
   GLOBAL SOFTENING — less boxy, more editorial
   ============================================ */

/* Lighten every visible border to a hair-thin tint instead of hard line */
.value-card,
.card,
.team-card,
.opp-card,
.audience-card,
.cohort-node,
.cert-tier,
.format-card,
.format-matrix,
.contact-form,
.product-showcase,
.focus-band,
.course-tile,
.course-card,
.faq-item,
.tab-content {
  border: 0;
  box-shadow: var(--shadow-sm);
}
.value-card:hover,
.card:hover,
.team-card:hover,
.opp-card:hover,
.audience-card:hover,
.cohort-node:hover,
.cert-tier:hover,
.format-card:hover,
.course-tile:hover,
.course-card:hover {
  box-shadow: var(--shadow-lg);
}

/* The course-tile keeps the colorful banner so it doesn't need a border */
.course-tile-banner { border-bottom: 0; }

/* Section soft alternation gets warmer */
.section-soft {
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
}

/* Bigger breathing room between sections */
section { padding: 6rem 0; }
@media (max-width: 700px) { section { padding: 4rem 0; } }

/* ============================================
   EDITORIAL TYPOGRAPHY
   ============================================ */
.section-header {
  margin-bottom: 4rem;
}
.section-header h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  letter-spacing: -0.02em;
}
.section-header p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-light);
}

/* lead paragraph for editorial sections */
.lead-paragraph {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: -0.005em;
  max-width: 68ch;
}

/* dropcap for editorial opening */
.dropcap::first-letter {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  float: left;
  line-height: 0.85;
  margin: 0.35rem 0.65rem 0 0;
  color: var(--cyan);
  background: linear-gradient(135deg, var(--navy) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* magazine pull quote */
.pullquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  line-height: 1.4;
  color: var(--navy);
  padding: 1.5rem 2rem 1.5rem 3rem;
  margin: 3rem auto;
  max-width: 720px;
  position: relative;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.pullquote::before {
  content: """;
  position: absolute;
  top: -1.4rem;
  left: 0;
  font-size: 6rem;
  color: var(--cyan);
  opacity: 0.6;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
}
.pullquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 60%;
  background: linear-gradient(180deg, var(--cyan) 0%, transparent 100%);
  transform: translateY(-50%);
}
.pullquote cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  font-style: normal;
  color: var(--text-muted);
}
.pullquote cite::before { content: "— "; }

/* editorial spread (asymmetric) */
.editorial-spread {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 880px) {
  .editorial-spread { grid-template-columns: 1fr; gap: 2rem; }
}
.editorial-spread .ed-side {
  position: sticky;
  top: 100px;
}
.editorial-spread .ed-eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 800;
  margin-bottom: 0.85rem;
  display: block;
}
.editorial-spread h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}
.editorial-spread .ed-meta {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.editorial-spread .ed-meta-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.editorial-spread .ed-meta-item .ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--teal-bg);
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--cyan);
}
.editorial-spread .ed-meta-item .ic svg {
  width: 18px; height: 18px;
  fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.editorial-spread .ed-meta-item .label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
}
.editorial-spread .ed-meta-item .val {
  font-size: 0.83rem;
  color: var(--text-muted);
}
.editorial-spread .ed-body p {
  font-size: 1.08rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
  color: var(--text);
  max-width: none;
}
.editorial-spread .ed-body p:first-of-type { font-weight: 500; }
.editorial-spread .ed-body h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

/* keyword pills used for SEO-friendly inline link clusters */
.kw-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.kw-cluster a {
  background: var(--bg-soft);
  color: var(--navy);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.kw-cluster a:hover {
  background: #fff;
  border-color: var(--cyan);
  color: var(--cyan);
}

/* curve divider (organic feel between sections) */
.curve-divider {
  position: relative;
  height: 80px;
  margin: -1px 0;
  overflow: hidden;
}
.curve-divider svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* floating "blob" decoration to break up boxy layouts */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.blob.cyan  { background: rgba(54, 198, 200, 0.15); }
.blob.teal  { background: rgba(107, 160, 181, 0.18); }
.blob.amber { background: rgba(244, 185, 66, 0.12); }

/* keep section content above blobs */
section .container { position: relative; z-index: 1; }

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