/* ============================================
   CLARISET — style.css
   ============================================ */

:root {
  --bg-primary:  #1A3D31;
  --bg-deep:     #0C1C15;
  --accent:      #3CDD78;
  --text-light:  #EEF6F5;
  --text-muted:  #8FA89D;
  --radius:      8px;
  --transition:  0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

section[id] {
  scroll-margin-top: 100px;
}

body {
  overflow-x: hidden;
  font-family: 'Inter', Arial, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ol, ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   SHARED COMPONENTS
   ============================================ */

.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-headline {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--text-light);
  line-height: 1.15;
  margin-bottom: 20px;
}

.accent {
  color: var(--accent);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn--accent {
  background: var(--accent);
  color: #0C1C15;
  border: 2px solid var(--accent);
}

.btn--accent:hover {
  opacity: 0.88;
}

.btn--outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.btn--outline:hover {
  background: rgba(238, 246, 245, 0.08);
}

.btn--outline-accent {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn--outline-accent:hover {
  background: rgba(60, 221, 120, 0.08);
}

/* ============================================
   LOGO FALLBACKS
   ============================================ */

.nav__logo-text {
  font-size: 18px;
  font-weight: 900;
  color: var(--text-light);
  letter-spacing: -0.02em;
  align-items: center;
}

.footer__logo-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__logo-wordmark {
  font-size: 20px;
  font-weight: 900;
  color: var(--text-light);
  letter-spacing: -0.02em;
}

.footer__logo-tagline {
  font-size: 11px;
  color: var(--text-muted);
  font-style: italic;
  letter-spacing: 0.02em;
}

.partners__logo-fallback {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  padding: 8px 0;
}

/* ============================================
   NAV
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--bg-deep);
  transition: backdrop-filter var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(60, 221, 120, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  gap: 32px;
}

.nav__logo img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav__links a:hover {
  color: var(--text-light);
}

.nav__cta {
  padding: 9px 20px;
  font-size: 14px;
  flex-shrink: 0;
}

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

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */

.hero {
  background: var(--bg-deep);
  padding: 170px 0 100px;
  text-align: left;
}

.hero .label {
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 13px;
}

.hero__headline {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-light);
  margin: 16px 0 24px;
  max-width: 760px;
}

.hero__sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.65;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__stat-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.hero__stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(143, 168, 157, 0.3);
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.how {
  padding: 100px 0;
  background: var(--bg-primary);
}

.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 40px;
}

.how__num {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 12px;
}

.how__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 12px;
}

.how__body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   LEARN SALES FROM ANYWHERE
   ============================================ */

.learn {
  padding: 100px 0;
  background: var(--bg-deep);
}

.learn__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.learn__body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.learn__left .btn {
  margin-top: 16px;
}

.feature-box {
  border: 1px solid rgba(60, 221, 120, 0.18);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 16px;
  background: rgba(60, 221, 120, 0.04);
}

.feature-box p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

.feature-box:last-child {
  margin-bottom: 0;
}

/* ============================================
   CURRICULUM
   ============================================ */

.curriculum {
  padding: 100px 0;
  background: var(--bg-primary);
}

.curriculum__sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 56px;
  max-width: 560px;
}

.curriculum__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.curriculum__item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(143, 168, 157, 0.12);
  transition: background var(--transition);
}

.curriculum__item:first-child {
  border-top: 1px solid rgba(143, 168, 157, 0.12);
}

.curriculum__num {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  min-width: 20px;
  padding-top: 3px;
}

.curriculum__content h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 6px;
}

.curriculum__content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================
   PASSPORT
   ============================================ */

.passport {
  background: var(--bg-deep);
  padding: 100px 0;
  text-align: center;
}

.passport__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--bg-deep);
  background: var(--accent);
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 24px;
}

.passport__headline {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: var(--text-light);
  margin-bottom: 12px;
}

.passport__tagline {
  font-size: 20px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 28px;
}

.passport__body {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

.passport__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 760px;
  margin: 48px auto;
  text-align: left;
}

.passport__feature {
  border: 1px solid rgba(60, 221, 120, 0.18);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(60, 221, 120, 0.04);
}

.passport__feature h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.passport__feature p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   SUCCESS STORIES
   ============================================ */

.stories {
  padding: 100px 0;
  background: var(--bg-primary);
}

.stories__sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 56px;
}

.alumni__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.alumni__card {
  background: var(--bg-deep);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(143, 168, 157, 0.1);
  transition: border-color var(--transition);
}

.alumni__card:hover {
  border-color: rgba(60, 221, 120, 0.3);
}

.alumni__photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  background: rgba(60, 221, 120, 0.1);
  flex-shrink: 0;
}

.alumni__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.alumni__card--logo .alumni__photo {
  display: none;
}

.alumni__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 2px;
}

.alumni__role {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 12px;
}

.alumni__quote {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}

.stories__closing {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 24px;
}

/* Alumni ticker chips */
.alumni-ticker {
  padding: 32px 0;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}


.alumni__track {
  animation: ticker-scroll 28s linear infinite;
}

.alumni__track--reverse {
  animation: ticker-scroll-reverse 32s linear infinite;
}

@keyframes ticker-scroll-reverse {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.alumni-chip {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  background: var(--bg-deep);
  border: 1px solid rgba(143, 168, 157, 0.12);
  border-radius: 10px;
  padding: 14px 22px;
  margin: 0 10px;
  flex-shrink: 0;
  transition: border-color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
  position: relative;
  overflow: visible;
}

.alumni-chip:hover,
.alumni-chip.pinned {
  border-color: rgba(60, 221, 120, 0.35);
  transform: translateY(-3px);
}

/* tooltip span in chip is unused — tooltip rendered globally via JS */
.alumni-chip__tooltip { display: none; }

/* Global floating tooltip */
#alumni-tooltip {
  position: fixed;
  z-index: 9998;
  background: #0C1C15;
  border: 1px solid rgba(60, 221, 120, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  width: 240px;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.55;
  font-style: italic;
  pointer-events: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.15s ease;
}

#alumni-tooltip.visible {
  opacity: 1;
}

#alumni-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(60, 221, 120, 0.3);
}

#alumni-tooltip::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #0C1C15;
  margin-top: -1px;
  z-index: 1;
}

.alumni-chip__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.alumni-chip__role {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
}

.stories__footer {
  text-align: center;
  padding-top: 56px;
}

/* ============================================
   HIRING PARTNERS
   ============================================ */

.partners {
  padding: 100px 0;
  background: var(--bg-deep);
}

.partners__sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 56px;
}

.partners__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.partners__card {
  background: var(--bg-primary);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(143, 168, 157, 0.1);
}

.partners__logo {
  height: 56px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.partners__logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}

.partners__info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.partners__info p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.partners__status {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--text-muted);
  background: rgba(143, 168, 157, 0.1);
  text-transform: uppercase;
}

.partners__status--active {
  color: var(--accent);
  background: rgba(60, 221, 120, 0.12);
}

/* ============================================
   TICKER
   ============================================ */

.ticker-wrap {
  overflow: hidden;
  width: 100%;
  padding: 32px 0;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}


.ticker {
  display: flex;
  width: 100%;
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 55s linear infinite;
  will-change: transform;
}

.ticker__track:hover {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker__item {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-muted);
  padding: 0 40px;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
  cursor: default;
}

.ticker__item:hover {
  color: var(--accent);
}

.ticker__dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
  flex-shrink: 0;
  vertical-align: middle;
}

/* ============================================
   FOR COMPANIES
   ============================================ */

.companies {
  padding: 100px 0;
  background: var(--bg-deep);
}

.companies__body {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.companies__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.companies__col h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 12px;
}

.companies__col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--accent);
}

.companies__col p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================
   TEAM
   ============================================ */

.team {
  padding: 100px 0;
  background: var(--bg-primary);
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.team__card {
  background: var(--bg-deep);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(143, 168, 157, 0.1);
}

.team__photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  background: rgba(60, 221, 120, 0.1);
  border: 2px solid rgba(60, 221, 120, 0.2);
}

.team__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 2px;
}

.team__title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.team__bio {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.team__quote {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.55;
  font-style: italic;
  border-left: 2px solid var(--accent);
  padding-left: 14px;
}

/* ============================================
   FINAL CTA
   ============================================ */

.final-cta {
  background: var(--bg-primary);
  padding: 120px 0;
  text-align: center;
}

.final-cta__headline {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 40px;
}

.final-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.final-cta__sub {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ============================================
   HOVER LIFT + GLOW
   ============================================ */

.alumni__card,
.team__card,
.partners__card,
.passport__feature,
.feature-box {
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.alumni__card:hover,
.team__card:hover {
  transform: translateY(-6px);
  border-color: rgba(60, 221, 120, 0.35);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(60,221,120,0.12);
}

.partners__card:hover {
  transform: translateY(-4px);
  border-color: rgba(60, 221, 120, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.passport__feature:hover {
  border-color: rgba(60, 221, 120, 0.4);
  box-shadow: 0 0 24px rgba(60, 221, 120, 0.08);
}

.feature-box:hover {
  border-color: rgba(60, 221, 120, 0.35);
  background: rgba(60, 221, 120, 0.07);
}

.curriculum__item {
  transition: background 0.25s ease, padding-left 0.3s ease;
}

.curriculum__item:hover {
  background: rgba(60, 221, 120, 0.04);
  padding-left: 12px;
}

/* Active nav link */
.nav__links a.active {
  color: var(--accent);
}

/* Smooth btn base transition */
.btn {
  transition: opacity 0.2s ease, background 0.2s ease,
              transform 0.12s ease, box-shadow 0.2s ease;
}

.btn--accent:hover {
  box-shadow: 0 0 28px rgba(60, 221, 120, 0.35);
}

/* How-it-works number pulse on hover */
.how__col:hover .how__num {
  text-shadow: 0 0 20px rgba(60, 221, 120, 0.6);
}

.how__col {
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
}

.how__col:hover {
  transform: translateY(-4px);
}

/* Accent glow on stat numbers */
.hero__stat-num {
  text-shadow: 0 0 32px rgba(60, 221, 120, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--bg-deep);
  border-top: 1px solid rgba(143, 168, 157, 0.1);
}

.footer__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(143, 168, 157, 0.1);
  flex-wrap: wrap;
}

.footer__brand {
  flex-shrink: 0;
}

.footer__logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
}

.footer__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer__nav a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
  white-space: nowrap;
}

.footer__nav a:hover {
  color: var(--text-light);
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(143, 168, 157, 0.2);
  color: var(--text-muted);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.footer__social a svg {
  width: 16px;
  height: 16px;
}

.footer__social a:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(60, 221, 120, 0.06);
}

.footer__bar {
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__bar p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .how__grid,
  .companies__grid,
  .team__grid,
  .partners__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .alumni__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .learn__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .footer__main {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg-deep);
    padding: 24px;
    gap: 20px;
    border-top: 1px solid rgba(143, 168, 157, 0.1);
  }

  .nav__links.open + .nav__cta {
    display: none;
  }

  .hero {
    padding: 120px 0 72px;
  }

  .hero__stats {
    gap: 20px;
  }

  .hero__stat-num {
    font-size: 24px;
  }

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

  .how,
  .learn,
  .curriculum,
  .passport,
  .stories,
  .partners,
  .companies,
  .team,
  .final-cta {
    padding: 72px 0;
  }
}

@media (max-width: 375px) {
  .container {
    padding: 0 16px;
  }

  .hero__ctas {
    flex-direction: column;
  }

  .final-cta__buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================
   JUNGLE AMBIENT LAYER
   ============================================ */

#ambient-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 3;
  pointer-events: none;
}

/* Scroll-progress trail */
#scroll-trail {
  position: fixed;
  left: 14px;
  top: 15vh;
  bottom: 15vh;
  width: 2px;
  background: rgba(60, 221, 120, 0.08);
  border-radius: 2px;
  z-index: 50;
  pointer-events: none;
}

#scroll-trail__fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, rgba(60, 221, 120, 0.25), var(--accent));
  box-shadow: 0 0 12px rgba(60, 221, 120, 0.5);
  border-radius: 2px;
}

@media (max-width: 900px) {
  #scroll-trail {
    display: none;
  }
}

/* Cave-entrance hero atmosphere */
.hero {
  position: relative;
  overflow: hidden;
}

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

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% 110%, rgba(60, 221, 120, 0.10), transparent 65%),
    radial-gradient(ellipse 70% 50% at 15% -10%, rgba(26, 61, 49, 0.8), transparent 70%),
    radial-gradient(ellipse 70% 50% at 85% -10%, rgba(26, 61, 49, 0.8), transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: -10% -5%;
  background:
    linear-gradient(112deg, transparent 42%, rgba(60, 221, 120, 0.05) 48%, transparent 54%),
    linear-gradient(108deg, transparent 66%, rgba(60, 221, 120, 0.035) 72%, transparent 78%);
  animation: beam-drift 14s ease-in-out infinite;
  pointer-events: none;
}

@keyframes beam-drift {
  0%, 100% { transform: translateX(-3%); opacity: 0.6; }
  50%      { transform: translateX(3%);  opacity: 1; }
}

/* Fog rolling in at section boundaries */
.how, .curriculum, .stories, .team, .final-cta, .sdr-stack {
  position: relative;
}

.how::before, .curriculum::before, .stories::before, .team::before, .final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(to bottom, rgba(12, 28, 21, 0.55), transparent);
  pointer-events: none;
}

/* Gentle pulse on hero stat numbers */
@keyframes stat-pulse {
  0%, 100% { text-shadow: 0 0 32px rgba(60, 221, 120, 0.3); }
  50%      { text-shadow: 0 0 46px rgba(60, 221, 120, 0.55); }
}

.hero__stat-num {
  animation: stat-pulse 4.5s ease-in-out infinite;
}

/* ============================================
   CHAPTER TAGS + SIGNAL CHIPS
   ============================================ */

.chapter-tag {
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 10px;
}

.chapter-tag::before {
  content: '— ';
  color: rgba(60, 221, 120, 0.5);
}

.hero__signals {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.signal-chip {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid rgba(60, 221, 120, 0.22);
  background: rgba(60, 221, 120, 0.05);
  border-radius: 100px;
  padding: 6px 14px;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color var(--transition), border-color var(--transition);
}

.signal-chip::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(60, 221, 120, 0.8);
  animation: signal-blink 2.8s ease-in-out infinite;
}

.signal-chip:nth-child(2)::before { animation-delay: 0.7s; }
.signal-chip:nth-child(3)::before { animation-delay: 1.4s; }
.signal-chip:nth-child(4)::before { animation-delay: 2.1s; }

@keyframes signal-blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}

.signal-chip:hover {
  color: var(--text-light);
  border-color: rgba(60, 221, 120, 0.5);
}

/* ============================================
   CURRICULUM CHECKPOINTS
   ============================================ */

.curriculum__list {
  position: relative;
}

.curriculum__list::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent,
    rgba(60, 221, 120, 0.3) 8%,
    rgba(60, 221, 120, 0.3) 92%,
    transparent);
}

.curriculum__num {
  width: 24px;
  height: 24px;
  min-width: 24px;
  padding-top: 0;
  border-radius: 50%;
  border: 1px solid rgba(60, 221, 120, 0.45);
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.curriculum__item:hover .curriculum__num {
  box-shadow: 0 0 16px rgba(60, 221, 120, 0.6);
  background: rgba(60, 221, 120, 0.14);
}

.curriculum__outcome {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  transition: max-height 0.35s ease, opacity 0.35s ease, margin-top 0.35s ease;
}

.curriculum__item:hover .curriculum__outcome {
  max-height: 48px;
  opacity: 1;
  margin-top: 8px;
}

/* ============================================
   PASSPORT — LIVE DATA TILES
   ============================================ */

.passport__grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 960px;
}

@keyframes tile-glow {
  0%, 100% { border-color: rgba(60, 221, 120, 0.18); }
  50%      { border-color: rgba(60, 221, 120, 0.38); }
}

.passport__feature {
  animation: tile-glow 5.5s ease-in-out infinite;
}

.passport__feature:nth-child(3n+2) { animation-delay: 1.8s; }
.passport__feature:nth-child(3n)   { animation-delay: 3.6s; }

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

/* ============================================
   RESULTS BADGES (what the ecosystem verifies)
   ============================================ */

.stories__hint {
  font-size: 13px;
  font-style: italic;
  color: rgba(60, 221, 120, 0.65);
  margin: -44px 0 20px;
}

.stories__chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 24px;
}

.result-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid rgba(143, 168, 157, 0.25);
  border-radius: 100px;
  padding: 7px 16px;
}

.result-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

/* ============================================
   FOR COMPANIES — PAIN + SOLUTION CARDS
   ============================================ */

.companies__kicker {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-light);
  margin: -8px 0 16px;
}

.companies__grid--pain,
.companies__grid--solutions {
  margin-bottom: 40px;
}

.companies__grid--solutions {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.pain-card,
.solution-card {
  background: var(--bg-primary);
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid rgba(143, 168, 157, 0.12);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.solution-card {
  border-color: rgba(60, 221, 120, 0.18);
  background: rgba(60, 221, 120, 0.04);
}

.pain-card:hover {
  transform: translateY(-4px);
  border-color: rgba(143, 168, 157, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.solution-card:hover {
  transform: translateY(-4px);
  border-color: rgba(60, 221, 120, 0.4);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25), 0 0 24px rgba(60, 221, 120, 0.08);
}

.card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 3px 8px;
  margin-bottom: 14px;
}

.card-tag--pain {
  color: var(--text-muted);
  background: rgba(143, 168, 157, 0.12);
}

.card-tag--solution {
  color: var(--accent);
  background: rgba(60, 221, 120, 0.12);
}

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

/* ============================================
   THE MODERN SDR STACK
   ============================================ */

.sdr-stack {
  padding: 100px 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.sdr-stack::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(12, 28, 21, 0.6), transparent 70%);
  pointer-events: none;
}

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

.sdr-stack__sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 64px;
}

.sdr-stack__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

/* Glowing path connecting the workflow nodes */
.sdr-stack__grid::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(to right,
    transparent,
    rgba(60, 221, 120, 0.4) 12%,
    rgba(60, 221, 120, 0.4) 88%,
    transparent);
  box-shadow: 0 0 10px rgba(60, 221, 120, 0.25);
}

.stack-card {
  background: var(--bg-deep);
  border: 1px solid rgba(60, 221, 120, 0.14);
  border-radius: var(--radius);
  padding: 44px 24px 26px;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.stack-card:hover {
  transform: translateY(-6px);
  border-color: rgba(60, 221, 120, 0.4);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 24px rgba(60, 221, 120, 0.1);
}

.stack-card__node {
  position: absolute;
  top: 20px;
  left: 24px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(60, 221, 120, 0.8);
  animation: node-pulse 3s ease-in-out infinite;
}

.stack-card:nth-child(2) .stack-card__node { animation-delay: 0.75s; }
.stack-card:nth-child(3) .stack-card__node { animation-delay: 1.5s; }
.stack-card:nth-child(4) .stack-card__node { animation-delay: 2.25s; }

@keyframes node-pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(60, 221, 120, 0.5); }
  50%      { box-shadow: 0 0 20px rgba(60, 221, 120, 1); }
}

.stack-card__step {
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(60, 221, 120, 0.5);
  letter-spacing: 0.08em;
}

.stack-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
}

.stack-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

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

  .sdr-stack__grid::before {
    left: 26px;
    right: auto;
    top: 6%;
    bottom: 6%;
    width: 1px;
    height: auto;
    background: linear-gradient(to bottom,
      transparent,
      rgba(60, 221, 120, 0.4) 12%,
      rgba(60, 221, 120, 0.4) 88%,
      transparent);
  }
}

/* ============================================
   TALENT PROOF GRID
   ============================================ */

.proof {
  padding: 100px 0;
  background: var(--bg-deep);
}

.proof__sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.proof-card {
  background: var(--bg-primary);
  border: 1px solid rgba(143, 168, 157, 0.12);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.proof-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-light);
  transition: color 0.25s ease;
}

.proof-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease, margin-top 0.35s ease;
}

.proof-card:hover {
  transform: translateY(-4px);
  border-color: rgba(60, 221, 120, 0.4);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(60, 221, 120, 0.08);
}

.proof-card:hover h4 {
  color: var(--accent);
}

.proof-card:hover p {
  max-height: 80px;
  opacity: 1;
  margin-top: 10px;
}

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

  /* Touch devices: keep detail visible */
  .proof-card p {
    max-height: 80px;
    opacity: 1;
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .proof__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SPLIT FINAL CTA
   ============================================ */

.final-cta__split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto 32px;
  text-align: left;
}

.cta-panel {
  background: var(--bg-deep);
  border: 1px solid rgba(60, 221, 120, 0.16);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.cta-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(60, 221, 120, 0.45);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 32px rgba(60, 221, 120, 0.1);
}

.cta-panel__audience {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.cta-panel__copy {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

@media (max-width: 700px) {
  .final-cta__split {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  #ambient-canvas,
  #scroll-trail {
    display: none;
  }

  .ticker__track,
  .alumni__track,
  .hero::after,
  .hero__stat-num,
  .passport__feature,
  .stack-card__node,
  .signal-chip::before {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}
