/* ── SELF-HOSTED FONTS ── */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/nunito-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/nunito-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('fonts/nunito-latin-800-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('fonts/nunito-latin-900-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/raleway-latin-300-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/raleway-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/raleway-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/raleway-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/raleway-latin-700-normal.woff2') format('woff2');
}

/* ── DESIGN TOKENS (Dark UI, teal accent) ── */
:root {
  --bg:           hsl(222 35% 10%);
  --bg-2:         hsl(222 32% 14%);
  --card:         hsl(222 30% 17%);
  --card-2:       hsl(217 28% 20%);
  --secondary:    hsl(217 28% 20%);
  --muted:        hsl(217 28% 17%);
  --border:       hsl(217 28% 22%);
  --border-soft:  hsl(217 28% 17%);
  --fg:           hsl(210 40% 98%);
  --fg-muted:     hsl(215 20% 65%);
  --fg-soft:      hsl(215 20% 45%);

  /* TEAL ACCENT */
  --accent:       hsl(172 98% 55%);
  --accent-2:     hsl(178 98% 60%);
  --accent-soft:  hsl(172 98% 55% / 0.12);
  --accent-mid:   hsl(172 98% 55% / 0.25);
  --accent-glow:  hsl(172 98% 55% / 0.35);

  --gradient:     linear-gradient(135deg, hsl(172 98% 55%) 0%, hsl(178 98% 60%) 100%);
  --gradient-card:linear-gradient(135deg, hsl(217 33% 12% / 0.8) 0%, hsl(217 33% 8% / 0.9) 100%);
  --shadow-glow:  0 0 30px hsl(172 70% 45% / 0.3);
  --shadow-glow-lg:0 0 80px hsl(172 70% 45% / 0.5);
  --shadow-card:  0 25px 50px -12px hsl(222 47% 3% / 0.6);
  --radius:       0.75rem;
  --radius-lg:    1rem;
  --radius-xl:    1.5rem;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  position: relative;
  font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── ANIMATIONS ── */
@keyframes fade-in   { from { opacity: 0; } to { opacity: 1; } }
@keyframes slide-up  { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float     { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse-glow {
  0%,100% { box-shadow: 0 0 20px hsl(172 70% 45% / 0.3); }
  50%      { box-shadow: 0 0 40px hsl(172 70% 45% / 0.5); }
}
@keyframes spin-slow  { to { transform: rotate(360deg); } }
@keyframes scrolll    { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-50%, 0, 0); } }

.animate-fade-in  { animation: fade-in  0.8s ease-out forwards; }
.animate-slide-up { animation: slide-up 0.6s ease-out forwards; }
.anim-delay-1 { animation-delay: 0.1s; opacity: 0; }
.anim-delay-2 { animation-delay: 0.2s; opacity: 0; }
.anim-delay-3 { animation-delay: 0.3s; opacity: 0; }
.anim-delay-4 { animation-delay: 0.4s; opacity: 0; }

.fade-in-section {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-section.visible { opacity: 1; transform: translateY(0); }

/* ── UTILITY ── */
.container  { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.glow         { box-shadow: var(--shadow-glow); }
.glow-lg      { box-shadow: var(--shadow-glow-lg); }
.glass {
  background: hsl(222 47% 8% / 0.6);
  border: 1px solid hsl(217 33% 18% / 0.5);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.glass-strong {
  background: hsl(222 47% 8% / 0.85);
  border: 1px solid hsl(217 33% 20% / 0.6);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
}
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
  background: var(--accent-soft); color: var(--accent);
  border: 1px solid hsl(172 70% 45% / 0.3);
}
.badge-muted {
  background: var(--muted); color: var(--fg-muted);
  border: 1px solid var(--border);
}
section { padding: 80px 0; }
h1,h2,h3,h4 { line-height: 1.15; font-weight: 700; font-family: 'Nunito', 'Helvetica Neue', Arial, sans-serif; }
h1 { font-size: clamp(58px, 10vw, 130px); font-weight: 900; letter-spacing: -0.04em; }
h2 { font-size: clamp(28px, 3.5vw, 46px); font-weight: 800; letter-spacing: -0.02em; }
h3 { font-size: 20px; font-weight: 700; }
h4 { font-size: 15px; }
p  { color: var(--fg-muted); font-size: 14px; line-height: 1.85; font-weight: 400; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600; font-size: 14px;
  padding: 12px 24px; border-radius: var(--radius);
  border: none; cursor: pointer; transition: all .2s ease;
  text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: var(--gradient); color: hsl(222 47% 6%);
  box-shadow: 0 0 20px hsl(172 70% 45% / 0.4);
}
.btn-primary:hover {
  box-shadow: 0 0 40px hsl(172 70% 45% / 0.6);
  transform: translateY(-1px);
  animation: pulse-glow 2s infinite;
}
.btn-outline {
  background: transparent; color: var(--fg);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }
.btn-ghost { background: var(--secondary); color: var(--fg); }
.btn-ghost:hover { background: var(--muted); }
.btn-lg  { padding: 15px 32px; font-size: 15px; }
.btn-sm  { padding: 8px 16px; font-size: 12px; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  border-bottom: 1px solid transparent;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background .4s ease, border-color .4s ease, backdrop-filter .4s ease;
}
.navbar.scrolled {
  background: hsl(222 47% 4% / 0.82);
  border-bottom: 1px solid var(--border-soft);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.navbar-logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--gradient); display: flex; align-items: center;
  justify-content: center; font-weight: 900; font-size: 16px; color: hsl(222 47% 6%);
  box-shadow: var(--shadow-glow);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong { font-size: 14px; font-weight: 700; color: var(--fg); }
.logo-text span   { font-size: 10px; color: var(--fg-muted); font-weight: 400; }
.navbar-nav { display: flex; align-items: center; gap: 2px; }
.navbar-nav a {
  padding: 6px 12px; border-radius: var(--radius);
  font-size: 13px; font-weight: 500; color: var(--fg-muted);
  transition: all .15s;
}
.navbar-nav a:hover { color: var(--fg); background: var(--secondary); }
.navbar-right { display: flex; align-items: center; gap: 10px; }
.navbar-chip {
  font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
  background: var(--accent-soft); color: var(--accent);
  border: 1px solid hsl(172 70% 45% / 0.3);
  display: none;
}
@media (min-width: 768px) { .navbar-chip { display: inline-flex; } }

/* ── HERO ── */
.hero {
  padding: 160px 0 80px;
  position: relative; overflow: hidden;
  background: var(--bg-2);
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero-glow-1 {
  position: absolute; top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, hsl(172 70% 45% / 0.22) 0%, transparent 68%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute; bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, hsl(172 70% 45% / 0.06) 0%, transparent 70%);
  pointer-events: none;
}
/* hero-grid-dots replaced by canvas */
.hero-content { text-align: center; max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }
.hero-eyebrow { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.hero h1 { margin-bottom: 32px; }
.hero-lead {
  font-size: 18px; color: var(--fg-muted); max-width: 620px;
  margin: 0 auto 40px; line-height: 1.75;
}
.hero-ctas { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 72px; margin-bottom: 80px; flex-wrap: wrap; }
/* hero-stats removed */
.hero-stat {
  background: var(--gradient-card); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 20px;
  text-align: center; transition: all .25s;
}
.hero-stat:hover { border-color: hsl(172 70% 45% / 0.4); box-shadow: var(--shadow-glow); transform: translateY(-2px); }
.hero-stat-val  { font-size: 28px; font-weight: 800; margin-bottom: 4px; }
.hero-stat-label { font-size: 11px; color: var(--fg-muted); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; }


/* ── PARTNER STRIP ── */
.strip-header {
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.strip-label {
  font-size: 11px; color: var(--fg-muted); font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
}
.strip-sub {
  font-size: 12px; color: var(--fg-muted); font-weight: 400;
  opacity: 0.9;
}
.strip-wrap:hover .partner-track { animation-play-state: paused; }
.partner-track {
  display: flex;
  align-items: center;
  gap: 56px;
  animation: scrolll 55s linear infinite;
  white-space: nowrap;
  padding: 8px 0;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
}
.partner-logo {
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  flex-shrink: 0;
  transition: opacity .25s;
}
.partner-logo {
  opacity: 0.8;
  transition: opacity .25s;
  filter: brightness(1.05);
}
.partner-logo:hover { opacity: 1; }
.logo-white:hover { opacity: 1; }

/* ── LOGO STRIP ── */
.logo-strip {
  padding: 28px 0; overflow: hidden;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg);
}
.strip-label { font-size: 11px; color: var(--fg-soft); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; text-align: center; margin-bottom: 16px; }
.strip-wrap  { display: flex; overflow: hidden; position: relative; isolation: isolate; }
.strip-wrap::before, .strip-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
}
.strip-wrap::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.strip-wrap::after  { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.strip-track { display: flex; gap: 10px; animation: scrolll 30s linear infinite; white-space: nowrap; }
.strip-chip {
  display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0;
  padding: 7px 14px; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--border);
  font-size: 12px; font-weight: 600; color: var(--fg-muted);
}
.strip-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); opacity: 0.5; }

/* ── VALUE PROPS ── */
.value-section { background: var(--bg); padding-top: 120px; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.value-card {
  padding: 28px; border-radius: var(--radius-lg);
  background: var(--gradient-card); border: 1px solid var(--border);
  transition: all .25s;
}
.value-card:hover { border-color: hsl(172 70% 45% / 0.4); transform: translateY(-3px); box-shadow: var(--shadow-glow); }
.value-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: var(--accent-soft); border: 1px solid hsl(172 70% 45% / 0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 18px;
}
.value-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--fg); }
.value-card p  { font-size: 14px; line-height: 1.75; }

/* ── ABOUT / PROBLEM ── */
.about-section { background: var(--bg-2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-eyebrow { margin-bottom: 20px; }
.about-quote {
  border-left: 2px solid var(--accent); padding-left: 20px;
  margin: 28px 0; font-size: 18px; font-style: italic;
  color: var(--fg); line-height: 1.65;
}
.about-text { color: var(--fg-muted); font-size: 14px; line-height: 1.8; margin-bottom: 16px; }
.about-features { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.about-feature {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px; border-radius: var(--radius-lg);
  background: var(--gradient-card); border: 1px solid var(--border);
  transition: all .2s;
}
.about-feature:hover { border-color: hsl(172 70% 45% / 0.35); }
.af-icon {
  width: 40px; height: 40px; border-radius: var(--radius); flex-shrink: 0;
  background: var(--accent-soft); border: 1px solid hsl(172 70% 45% / 0.2);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.af-body h4 { font-size: 14px; margin-bottom: 3px; color: var(--fg); }
.af-body p  { font-size: 12px; color: var(--fg-muted); }

/* Stat numbers right side */
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-stat {
  padding: 24px; border-radius: var(--radius-lg);
  background: var(--gradient-card); border: 1px solid var(--border);
  text-align: center; transition: all .25s;
}
.about-stat:hover { border-color: hsl(172 70% 45% / 0.4); box-shadow: 0 0 20px hsl(172 70% 45% / 0.15); }
.as-num   { font-size: 38px; font-weight: 800; line-height: 1; margin-bottom: 6px; }
.as-label { font-size: 12px; font-weight: 600; color: var(--fg-muted); margin-bottom: 6px; }
.as-desc  { font-size: 11px; color: var(--fg-soft); line-height: 1.5; }

/* ── FEATURES 4-GRID ── */
.features-section { background: var(--bg); }
.features-header  { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.features-grid    { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feature-card {
  padding: 32px; border-radius: var(--radius-xl);
  background: var(--gradient-card); border: 1px solid var(--border);
  transition: all .25s; position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle, hsl(172 70% 45% / 0.08) 0%, transparent 70%);
}
.feature-card:hover { border-color: hsl(172 70% 45% / 0.45); box-shadow: var(--shadow-glow); transform: translateY(-3px); }
.fc-icon {
  width: 52px; height: 52px; border-radius: var(--radius-lg);
  background: var(--accent-soft); border: 1px solid hsl(172 70% 45% / 0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.feature-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--fg); }
.feature-card p  { font-size: 12px; color: var(--fg-muted); line-height: 1.7; }
.feature-pill {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 14px;
  font-size: 11px; font-weight: 600; color: var(--accent);
  background: var(--accent-soft); padding: 4px 10px;
  border-radius: 100px; border: 1px solid hsl(172 70% 45% / 0.25);
}

/* ── TARGET ── */
.target-section { background: var(--bg-2); }
.target-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.target-list { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.target-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border-radius: var(--radius);
  background: var(--gradient-card); border: 1px solid var(--border);
  font-size: 14px; color: var(--fg-muted); font-weight: 500;
  transition: all .2s;
}
.target-item:hover { border-color: hsl(172 70% 45% / 0.35); color: var(--fg); }
.ti-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.prereqs {
  margin-top: 28px; padding: 24px; border-radius: var(--radius-lg);
  background: var(--gradient-card); border: 1px solid var(--border);
}
.prereqs h4 { font-size: 12px; font-weight: 600; color: var(--fg-muted); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 16px; }
.prereq-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border-soft); font-size: 12px; color: var(--fg-muted); }
.prereq-item:last-child { border-bottom: none; }
.prereq-check { width: 18px; height: 18px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; flex-shrink: 0; }

/* ── CURRICULUM ── */
.curriculum-section { background: var(--bg); }
.curriculum-header  { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.curriculum-layout  { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.acc-list { display: flex; flex-direction: column; gap: 6px; }
.acc-item {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--gradient-card); border: 1px solid var(--border);
  transition: border-color .2s;
}
.acc-item.open { border-color: hsl(172 70% 45% / 0.5); }
.acc-toggle {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; cursor: pointer; gap: 12px;
  background: none; border: none; width: 100%; text-align: left;
  color: var(--fg);
}
.acc-left  { display: flex; align-items: center; gap: 12px; }
.acc-week  {
  font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 100px; white-space: nowrap;
  background: var(--muted); color: var(--fg-muted); border: 1px solid var(--border);
  transition: all .2s;
}
.acc-item.open .acc-week { background: var(--accent-soft); color: var(--accent); border-color: hsl(172 70% 45% / 0.35); }
.acc-heading { font-size: 14px; font-weight: 600; }
.acc-chevron {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: var(--secondary); color: var(--fg-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: all .25s;
}
.acc-item.open .acc-chevron { background: var(--accent); color: hsl(222 47% 6%); transform: rotate(90deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.acc-item.open .acc-body { max-height: 600px; }
.acc-lessons { padding: 0 20px 16px; border-top: 1px solid var(--border-soft); }
.lesson {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid var(--border-soft); gap: 12px;
}
.lesson:last-child { border-bottom: none; }
.lesson-name { font-size: 11px; color: var(--fg-muted); flex: 1; }
.lesson-tag {
  font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em;
  padding: 2px 8px; border-radius: 100px;
  background: var(--muted); color: var(--fg-soft); border: 1px solid var(--border-soft);
  white-space: nowrap;
}
.lesson-tag.tag-acc { background: var(--accent-soft); color: var(--accent); border-color: hsl(172 70% 45% / 0.25); }

/* Curriculum sidebar */
.curr-sidebar { position: sticky; top: 80px; }
.curr-card {
  padding: 26px; border-radius: var(--radius-xl);
  background: var(--gradient-card); border: 1px solid var(--border);
}
.curr-card h3 { font-size: 16px; margin-bottom: 18px; color: var(--accent); }
.curr-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 20px; }
.cs-stat {
  padding: 14px; border-radius: var(--radius);
  background: var(--muted); border: 1px solid var(--border-soft);
  text-align: center;
}
.cs-val   { font-size: 22px; font-weight: 800; color: var(--accent); }
.cs-label { font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--fg-soft); margin-top: 2px; }
.curr-features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; }
.cf-item { display: flex; align-items: center; gap: 9px; font-size: 12px; color: var(--fg-muted); }
.cf-check { width: 16px; height: 16px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 8px; font-weight: 700; flex-shrink: 0; }
.sbfi-note {
  padding: 12px 14px; border-radius: var(--radius);
  background: hsl(172 70% 45% / 0.07); border: 1px solid hsl(172 70% 45% / 0.2);
  margin-bottom: 16px;
}
.sbfi-note p { font-size: 11px; color: hsl(215 20% 75%); margin: 0; }
.sbfi-note strong { color: var(--accent); }

/* ── FORMAT ── */
.format-section { background: var(--bg-2); }
.format-header   { text-align: center; max-width: 540px; margin: 0 auto 48px; }
.format-grid     { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.format-card {
  padding: 32px; border-radius: var(--radius-xl);
  background: var(--gradient-card); border: 1px solid var(--border);
  transition: all .25s; position: relative;
}
.format-card:hover { border-color: hsl(172 70% 45% / 0.45); box-shadow: var(--shadow-glow); }
.format-card.featured { border-color: hsl(172 70% 45% / 0.5); box-shadow: 0 0 40px hsl(172 70% 45% / 0.15); }
.format-popular {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gradient); color: hsl(222 47% 6%); font-size: 10px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; padding: 4px 14px; border-radius: 100px;
  white-space: nowrap;
}
.fc-icon-lg {
  width: 56px; height: 56px; border-radius: var(--radius-lg);
  background: var(--accent-soft); border: 1px solid hsl(172 70% 45% / 0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.format-card h3 { font-size: 20px; margin-bottom: 8px; }
.format-card .sub { font-size: 12px; color: var(--fg-muted); margin-bottom: 24px; }
.format-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.format-item { display: flex; align-items: flex-start; gap: 10px; font-size: 12px; color: var(--fg-muted); }
.fi-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-top: 6px; flex-shrink: 0; }

/* ── PRICING ── */
.pricing-section { background: var(--bg); }
.pricing-header  { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.pricing-steps   { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 48px; flex-wrap: wrap; }
.pricing-step {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 24px; border-radius: var(--radius-lg);
  background: var(--gradient-card); border: 1px solid var(--border);
  transition: all .2s;
}
.pricing-step:hover { border-color: hsl(172 70% 45% / 0.35); }
.ps-num { font-size: 24px; font-weight: 800; color: var(--fg-soft); }
.ps-num.crossed { text-decoration: line-through; color: var(--fg-soft); font-size: 18px; }
.ps-label { font-size: 10px; color: var(--fg-soft); font-weight: 500; text-transform: uppercase; letter-spacing: .07em; }
.ps-arrow { color: var(--accent); font-size: 20px; margin: 0 8px; }
.ps-final .ps-num { font-size: 28px; color: var(--accent); }
.ps-final .ps-label { color: var(--accent); }
.ps-final { border-color: hsl(172 70% 45% / 0.45); box-shadow: var(--shadow-glow); }
.pricing-card {
  max-width: 640px; margin: 0 auto;
  padding: 40px; border-radius: var(--radius-xl);
  background: var(--gradient-card); border: 1px solid hsl(172 70% 45% / 0.45);
  box-shadow: var(--shadow-glow-lg); position: relative; overflow: hidden;
}
.pricing-card::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, hsl(172 70% 45% / 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.pc-pop {
  display: inline-block; background: var(--gradient); color: hsl(222 47% 6%);
  font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 100px; margin-bottom: 20px;
}
.pricing-card h3 { font-size: 26px; margin-bottom: 6px; }
.pc-sub { font-size: 12px; color: var(--fg-muted); margin-bottom: 0; }
.pc-sub:last-of-type { margin-bottom: 48px; }
.price-display { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.price-chf  { font-size: 20px; font-weight: 600; color: var(--accent); margin-top: 6px; }
.price-main { font-size: 52px; font-weight: 800; line-height: 1; }
.price-was  { font-size: 20px; color: var(--fg-soft); text-decoration: line-through; }
.price-note { font-size: 12px; color: var(--accent); font-weight: 600; margin-bottom: 24px; }
.funding-box {
  padding: 14px 18px; border-radius: var(--radius);
  background: hsl(172 70% 45% / 0.08); border: 1px solid hsl(172 70% 45% / 0.25);
  margin-bottom: 24px;
}
.funding-box p { font-size: 12px; color: hsl(210 40% 85%); margin: 0; line-height: 1.6; }
.funding-box strong { color: var(--accent); }
.includes { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 28px; }
.inc-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: hsl(210 40% 80%); }
.inc-check { width: 17px; height: 17px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 8px; font-weight: 700; flex-shrink: 0; }
.pricing-cta { width: 100%; justify-content: center; font-size: 16px; padding: 16px; }
.pricing-note { text-align: center; margin-top: 12px; font-size: 11px; color: var(--fg-soft); }

/* ── TESTIMONIALS ── */
.test-section { background: var(--bg-2); overflow: hidden; }
.test-header  { text-align: center; max-width: 560px; margin: 0 auto 48px; }
.test-hint { font-size: 12px; color: var(--fg-soft); text-align: center; margin-top: -32px; margin-bottom: 40px; font-style: italic; }
.test-track-wrap { overflow: hidden; margin-bottom: 16px; }
.test-track {
  display: flex; gap: 16px;
  animation: scrolll 40s linear infinite;
  will-change: transform;
}
.test-track.rev { animation: scrolll 48s linear infinite reverse; }
.test-card {
  min-width: 320px; max-width: 320px; flex-shrink: 0;
  padding: 24px; border-radius: var(--radius-xl);
  background: var(--gradient-card); border: 1px solid var(--border);
  box-shadow: var(--shadow-card); transition: border-color .2s;
}
.test-card:hover { border-color: hsl(172 70% 45% / 0.35); }
.tc-stars  { display: flex; gap: 3px; margin-bottom: 12px; }
.tc-star   { width: 13px; height: 13px; fill: var(--accent); }
.tc-quote  { font-size: 12px; color: var(--fg-muted); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.tc-author { display: flex; align-items: center; gap: 10px; }
.tc-ava {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  object-fit: cover; object-position: center top; display: block;
  box-shadow: 0 0 0 2px hsl(172 95% 52% / 0.35);
}
.tc-name { font-size: 12px; font-weight: 600; }
.tc-role { font-size: 11px; color: var(--fg-soft); }

/* ── TEAM ── */
.team-section { background: var(--bg); }
.team-header  { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 28px; }
.founder-card {
  padding: 32px; border-radius: var(--radius-xl);
  background: var(--gradient-card); border: 1px solid var(--border);
  transition: all .25s; position: relative; overflow: hidden;
}
.founder-card::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, hsl(172 70% 45% / 0.07) 0%, transparent 70%);
}
.founder-card:hover { border-color: hsl(172 70% 45% / 0.4); box-shadow: var(--shadow-glow); }
.founder-ava {
  width: 72px; height: 72px; border-radius: 50%; margin-bottom: 18px;
  object-fit: cover; object-position: center top;
  display: block; overflow: hidden;
  box-shadow: 0 0 0 2px hsl(172 70% 45% / 0.5);
}
.founder-card h3 { font-size: 20px; margin-bottom: 3px; }
.founder-role { font-size: 12px; color: var(--accent); font-weight: 600; margin-bottom: 2px; }
.founder-role + .founder-role { margin-bottom: 14px; }
.founder-card p { font-size: 12px; line-height: 1.755; }
.founder-contact { margin-top: 16px; }
.faculty-strip {
  padding: 24px 28px; border-radius: var(--radius-xl);
  background: var(--gradient-card); border: 1px solid var(--border);
}
.faculty-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--fg-soft); margin-bottom: 18px; }
.faculty-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.faculty-chip {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 14px; border-radius: var(--radius);
  background: var(--muted); border: 1px solid var(--border);
  transition: all .15s;
}
.faculty-chip:hover { border-color: hsl(172 70% 45% / 0.35); background: var(--secondary); }
.fc-ava {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700;
}
.faculty-chip strong { font-size: 12px; display: block; }
.faculty-chip span   { font-size: 10px; color: var(--fg-soft); }

/* ── DOWNLOADS ── */
.downloads-section { background: var(--bg-2); }
.downloads-header  { text-align: center; max-width: 500px; margin: 0 auto 40px; }
.downloads-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dl-card {
  padding: 28px; border-radius: var(--radius-xl);
  background: var(--gradient-card); border: 1px solid var(--border);
  transition: all .25s;
}
.dl-card:hover { border-color: hsl(172 70% 45% / 0.45); box-shadow: var(--shadow-glow); transform: translateY(-2px); }
.dl-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: var(--accent-soft); border: 1px solid hsl(172 70% 45% / 0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 16px;
}
.dl-card h3 { font-size: 17px; margin-bottom: 8px; }
.dl-card p  { font-size: 12px; color: var(--fg-muted); margin-bottom: 20px; }

/* ── FAQ ── */
.faq-section { background: var(--bg); }
/* .faq-layout removed – replaced by .faq-grid */
.faq-list { display: flex; flex-direction: column; gap: 5px; }
.faq-item {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--gradient-card); border: 1px solid var(--border);
  transition: border-color .2s;
}
.faq-item.open { border-color: hsl(172 70% 45% / 0.45); }
.faq-toggle {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px; cursor: pointer; gap: 12px;
  background: none; border: none; width: 100%; text-align: left; color: var(--fg);
  font-family: 'Raleway', sans-serif;
}
.faq-q    { font-size: 14px; font-weight: 600; line-height: 1.4; }
.faq-icon {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: var(--secondary); color: var(--fg-muted);
  display: flex; align-items: center; justify-content: center; font-size: 15px; transition: all .2s;
}
.faq-item.open .faq-icon { background: var(--accent); color: hsl(222 47% 6%); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-answer { max-height: 800px; }
.faq-a { padding: 0 18px 16px; font-size: 14px; color: var(--fg-muted); line-height: 1.75; border-top: 1px solid var(--border-soft); padding-top: 12px; font-family: 'Raleway', sans-serif; }
.faq-contact {
  padding: 32px; border-radius: var(--radius-xl);
  background: var(--gradient-card); border: 1px solid hsl(172 70% 45% / 0.35);
  box-shadow: 0 0 40px hsl(172 70% 45% / 0.1);
}
.faq-contact h3 { font-size: 22px; margin-bottom: 10px; }
.faq-contact p  { font-size: 14px; color: var(--fg-muted); margin-bottom: 24px; }
.contact-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.contact-item { display: flex; align-items: center; gap: 12px; }
.ci-icon {
  width: 36px; height: 36px; border-radius: var(--radius); flex-shrink: 0;
  background: var(--accent-soft); border: 1px solid hsl(172 70% 45% / 0.2);
  display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.ci-icon svg { width: 14px; height: 14px; flex-shrink: 0; }
.ci-text { font-size: 13px; }
.ci-text span    { color: var(--fg-soft); display: block; font-size: 10px; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; margin-bottom: 1px; }
.ci-text strong  { color: var(--fg); }

/* ── FINAL CTA ── */
.cta-section { background: var(--bg-2); }
.cta-inner {
  max-width: 700px; margin: 0 auto; text-align: center;
  padding: 64px 40px; border-radius: var(--radius-xl);
  background: var(--gradient-card); border: 1px solid hsl(172 70% 45% / 0.3);
  box-shadow: var(--shadow-glow-lg); position: relative; overflow: hidden;
}
.cta-inner::before {
  content: ''; position: absolute; inset: -1px;
  background: var(--gradient); border-radius: var(--radius-xl);
  opacity: .08; pointer-events: none;
}
.cta-inner h2 { margin-bottom: 16px; }
.cta-inner p  { max-width: 480px; margin: 0 auto 36px; font-size: 15px; }
.cta-inner .cta-buttons { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-warning {
  margin-top: 20px; font-size: 12px; color: var(--accent); font-weight: 500;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}




.btn-ghost-white {
  background: hsl(210 40% 98% / 0.1);
  color: var(--fg);
  border: 1px solid hsl(210 40% 98% / 0.35);
  backdrop-filter: blur(8px);
}
.btn-ghost-white:hover {
  background: hsl(210 40% 98% / 0.18);
  border-color: hsl(210 40% 98% / 0.6);
  transform: translateY(-1px);
}


.hero-explainer {
  font-size: clamp(13px, 1.4vw, 15px);
  color: var(--fg-soft);
  max-width: 560px;
  margin: 20px auto 0;
  line-height: 1.8;
  font-weight: 400;
}


/* ── HERO CANVAS ── */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
}


/* ── VALUE CARD ENHANCEMENTS ── */
.value-card-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: 14px;
}
.value-card h3 {
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: 14px;
  color: var(--fg);
}
/* Warum-Kachel: slightly more prominent */
.value-card-why {
  border-color: hsl(172 70% 45% / 0.3);
  box-shadow: 0 0 40px hsl(172 70% 45% / 0.08);
}


/* ── FEATURE HERO ── */
.feature-hero {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 48px;
  border-radius: var(--radius-xl);
  background: var(--gradient-card);
  border: 1px solid hsl(172 70% 45% / 0.35);
  box-shadow: 0 0 60px hsl(172 70% 45% / 0.12);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.feature-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, hsl(172 70% 45% / 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.feature-hero-icon {
  font-size: 48px;
  line-height: 1;
  margin-top: 4px;
}
.feature-hero-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: 10px;
}
.feature-hero-body h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}
.feature-hero-body p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--fg-muted);
  margin-bottom: 24px;
  max-width: 680px;
}
.feature-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.feature-hero-pills .feature-pill {
  color: var(--fg); background: var(--secondary);
  border-color: var(--border);
}
.feature-hero-pills .feature-pill span { color: var(--accent); }

/* ── 3-COLUMN GRID for smaller cards ── */
.features-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 900px) {
  .feature-hero { grid-template-columns: 1fr; }
  .feature-hero-icon { font-size: 36px; }
}
@media (max-width: 768px) {
  .features-grid-3 { grid-template-columns: 1fr; }
}


/* ── TARGET SECTION ── */
.target-section {
  background: radial-gradient(ellipse 90% 70% at 50% 50%, hsl(172 70% 42% / 0.10) 0%, transparent 65%),
              var(--bg-2);
}
.target-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}
.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.target-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: var(--gradient-card);
  border: 1px solid var(--border);
  transition: all .25s;
}
.target-card:hover {
  border-color: hsl(172 95% 52% / 0.4);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}
.target-icon {
  font-size: 28px;
  margin-bottom: 14px;
}
.target-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--fg);
}
.target-card p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--fg-muted);
}
.target-note {
  text-align: center;
  padding: 20px 32px;
  border-radius: var(--radius-xl);
  background: hsl(172 95% 52% / 0.08);
  border: 1px solid hsl(172 95% 52% / 0.25);
  color: var(--accent);
  font-size: 15px;
  font-weight: 600;
  max-width: 560px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .target-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .target-grid { grid-template-columns: 1fr; }
}


/* ── HANDLUNGSKOMPETENZEN MODAL ── */
.hk-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: hsl(222 47% 4% / 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: flex-start;
  justify-content: center;
  padding: 32px 16px;
  overflow-y: auto;
}
.hk-modal-overlay.open { display: flex; }
.hk-modal {
  background: hsl(222 35% 11%);
  border: 1px solid hsl(172 95% 52% / 0.25);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 720px;
  box-shadow: 0 0 80px hsl(172 95% 52% / 0.12);
  overflow: hidden;
}
.hk-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--border);
}
.hk-modal-tag {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--accent); margin-bottom: 6px;
}
.hk-modal-close {
  background: var(--secondary); border: 1px solid var(--border);
  color: var(--fg-muted); width: 30px; height: 30px;
  border-radius: 50%; cursor: pointer; font-size: 13px;
  flex-shrink: 0; transition: all .2s; display: flex;
  align-items: center; justify-content: center;
}
.hk-modal-close:hover { background: var(--accent); color: hsl(222 47% 6%); border-color: var(--accent); }
.hk-modal-body { padding: 16px 20px; display: flex; flex-direction: column; gap: 6px; }
/* Accordion */
.hk-acc { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); background: var(--gradient-card); }
.hk-acc-toggle {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  padding: 14px 16px; cursor: pointer;
  background: none; border: none; color: var(--fg); text-align: left;
  transition: background .15s;
}
.hk-acc-toggle:hover { background: hsl(172 95% 52% / 0.05); }
.hk-acc.open .hk-acc-toggle { background: hsl(172 95% 52% / 0.07); }
.hk-acc-left { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; }
.hk-acc-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.hk-acc-chevron { font-size: 18px; color: var(--fg-soft); transition: transform .25s; }
.hk-acc.open .hk-acc-chevron { transform: rotate(90deg); color: var(--accent); }
.hk-acc-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.hk-acc.open .hk-acc-body { max-height: 600px; }
.hk-area-badge {
  width: 26px; height: 26px; border-radius: 6px;
  background: var(--accent); color: hsl(222 47% 6%);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900; flex-shrink: 0;
}
.hk-pt-tag {
  font-size: 9px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; padding: 3px 8px; border-radius: 100px;
  background: var(--muted); color: var(--fg-soft); white-space: nowrap;
}
.hk-item {
  display: flex; align-items: baseline; gap: 12px;
  padding: 9px 16px; font-size: 12px; color: var(--fg-muted);
  border-top: 1px solid var(--border-soft);
}
.hk-item:hover { background: hsl(172 95% 52% / 0.04); color: var(--fg); }
.hk-pflicht { color: var(--fg); }
.hk-code { font-size: 10px; font-weight: 700; color: var(--accent); min-width: 22px; flex-shrink: 0; }
.hk-badge-pflicht {
  display: inline-flex; font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
  padding: 2px 6px; border-radius: 100px;
  background: hsl(172 95% 52% / 0.15); color: var(--accent);
  border: 1px solid hsl(172 95% 52% / 0.3); margin-left: 6px; vertical-align: middle;
}
.hk-modal-footer {
  display: flex; gap: 12px; padding: 16px 20px 24px;
  border-top: 1px solid var(--border);
}
@media (max-width: 480px) {
  .hk-modal-footer { flex-direction: column; }
  .hk-modal-footer .btn { justify-content: center; }
}


/* ── CURRICULUM REDESIGN ── */
.curr-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 48px;
  max-width: 680px;
}
.curr-phase {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
}
.curr-phase-bubble {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.curr-phase-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(172 95% 52% / 0.2), hsl(172 95% 52% / 0.08));
  border: 2px solid hsl(172 95% 52% / 0.6);
  box-shadow: 0 0 20px hsl(172 95% 52% / 0.25), inset 0 0 12px hsl(172 95% 52% / 0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: var(--accent);
  position: relative; z-index: 1;
  transition: all .3s;
}
.curr-phase:hover .curr-phase-num {
  box-shadow: 0 0 32px hsl(172 95% 52% / 0.45), inset 0 0 16px hsl(172 95% 52% / 0.15);
  border-color: hsl(172 95% 52% / 0.9);
}
.curr-phase-line {
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom,
    hsl(172 95% 52% / 0.6) 0%,
    hsl(172 95% 52% / 0.15) 100%);
  border-radius: 2px;
  margin-top: 2px;
}
.curr-phase-last .curr-phase-num {
  background: linear-gradient(135deg, hsl(172 95% 52% / 0.3), hsl(172 95% 52% / 0.12));
  border-color: var(--accent);
  box-shadow: 0 0 28px hsl(172 95% 52% / 0.35), inset 0 0 16px hsl(172 95% 52% / 0.15);
}
.curr-phase-body { padding: 12px 0 24px; }
.curr-phase-body h3 { font-size: 17px; margin-bottom: 8px; font-weight: 700; }
.curr-phase-body p  { font-size: 13px; line-height: 1.8; }
.curr-formats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.curr-format-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: var(--gradient-card);
  border: 1px solid var(--border);
  transition: all .25s;
}
.curr-format-card:hover {
  border-color: hsl(172 95% 52% / 0.4);
  box-shadow: var(--shadow-glow);
}
.curr-format-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.curr-format-card h3 { font-size: 16px; margin-bottom: 4px; }
.curr-format-sub {
  font-size: 11px; color: var(--accent); font-weight: 600;
  text-transform: uppercase; letter-spacing: .07em; margin-bottom: 10px;
}
.curr-campus-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  border-radius: var(--radius-xl);
  background: var(--gradient-card);
  border: 1px solid hsl(172 95% 52% / 0.3);
  box-shadow: 0 0 40px hsl(172 95% 52% / 0.08);
}
.curr-campus-text h3 { font-size: 16px; margin-bottom: 6px; }
.curr-campus-text p  { font-size: 13px; margin: 0; }
@media (max-width: 768px) {
  .curr-formats { grid-template-columns: 1fr; }
  .curr-campus-cta { flex-direction: column; align-items: flex-start; }
}

/* ── STICKY BAR ── */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 99;
  background: hsl(222 47% 6% / 0.95); border-top: 1px solid var(--border);
  backdrop-filter: blur(20px); padding: 10px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transform: translateY(100%); transition: transform .3s ease;
  box-shadow: 0 -8px 32px hsl(222 47% 3% / 0.5);
}
.sticky-bar.visible { transform: translateY(0); }
.sb-left h4 { font-size: 12px; font-weight: 600; }
.sb-left p  { font-size: 11px; color: var(--fg-muted); margin: 0; }
.sb-right   { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.sb-price   { font-size: 18px; font-weight: 800; }
.sb-price s { font-size: 11px; font-weight: 400; color: var(--fg-soft); margin-left: 4px; }
.sb-price .text-gradient { font-size: 18px; }

/* ── RESPONSIVE ── */

/* ── HAMBURGER ── */
.hamburger {
  display: none; flex-direction: column; justify-content: space-between;
  width: 24px; height: 18px; background: none; border: none; cursor: pointer; padding: 0;
}
.hamburger span { display: block; height: 2px; background: var(--fg-muted); border-radius: 2px; transition: all .25s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 99;
  background: hsl(222 47% 5% / 0.98); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); padding: 16px 24px 24px;
  flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 16px; border-radius: var(--radius); font-size: 15px; font-weight: 500; color: var(--fg-muted); transition: all .15s; }
.mobile-menu a:hover { color: var(--fg); background: var(--secondary); }
.mobile-menu .btn { margin-top: 12px; justify-content: center; width: 100%; }

/* ── COMPARISON TABLE ── */
.compare-label { text-align: center; font-size: 12px; color: var(--fg-muted); margin-bottom: 28px; font-weight: 500; }
.compare-table { width: 100%; border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border); background: var(--gradient-card); border-collapse: separate; border-spacing: 0; }
.compare-table th { padding: 16px 20px; font-size: 12px; font-weight: 700; text-align: center; text-transform: uppercase; letter-spacing: .08em; background: var(--muted); border-bottom: 1px solid var(--border); color: var(--fg-muted); }
.compare-table th.th-gat { background: var(--accent-soft); color: var(--accent); border-left: 2px solid hsl(172 70% 45% / 0.5); border-right: 2px solid hsl(172 70% 45% / 0.5); }
.compare-table th:first-child { text-align: left; }
.compare-table td { padding: 13px 20px; font-size: 12px; color: var(--fg-muted); border-bottom: 1px solid var(--border-soft); text-align: center; }
.compare-table td:first-child { text-align: left; font-weight: 500; color: var(--fg); }
.compare-table td.td-gat { background: hsl(172 70% 45% / 0.04); border-left: 2px solid hsl(172 70% 45% / 0.3); border-right: 2px solid hsl(172 70% 45% / 0.3); font-weight: 600; color: var(--fg); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:last-child td.td-gat { border-bottom: 2px solid hsl(172 70% 45% / 0.3); }
.check-yes { color: hsl(145 70% 55%); font-size: 16px; font-weight: 700; }
.check-no  { color: var(--fg-soft); font-size: 14px; }
.check-part { color: hsl(45 90% 55%); font-size: 13px; }
.price-cell { font-size: 14px; font-weight: 800; }
.price-cell.best { color: var(--accent); }
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .navbar-nav, .navbar-chip { display: none; }
  .compare-table { font-size: 11px; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
}

@media (max-width: 1024px) {
  .about-grid, .target-grid { grid-template-columns: 1fr; gap: 40px; }
  .curriculum-layout { grid-template-columns: 1fr; }
  .curr-sidebar { position: static; }
}
@media (max-width: 768px) {
  section { padding: 56px 0; }
  .hero { padding: 110px 0 72px; }
  .value-grid, .features-grid, .format-grid, .founders-grid, .downloads-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .navbar-nav, .navbar-chip { display: none; }
  .includes { grid-template-columns: 1fr; }
  .pricing-steps { flex-direction: column; align-items: center; gap: 8px; }
  .ps-arrow { transform: rotate(90deg); }
}
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; }
  .sticky-bar { flex-direction: column; align-items: stretch; text-align: center; }
}

/* ── AMBIENT BACKGROUND ── */
/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}
/* All content above canvas + noise */
section, .logo-strip, footer {
  position: relative;
  z-index: 1;
}
.mobile-menu {
  position: fixed;
  z-index: 98;
}



/* ── SECTION TRANSITIONS ── */
/* Soft fade at top and bottom of alternating bg sections */
.about-section,
.format-section,
.test-section,
.compare-section,
.faq-section,
.cta-section,
.site-footer {
  position: relative;
}
.about-section::before,
.format-section::before,
.test-section::before,
.compare-section::before,
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to bottom, var(--bg), transparent);
  pointer-events: none;
  z-index: 2;
}
.about-section::after,
.format-section::after,
.test-section::after,
.compare-section::after,
.cta-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
  z-index: 2;
}
/* bg-2 sections fade from/to bg-2 */
.value-section::before,
.features-section::before,
.curriculum-section::before,
.team-section::before,
.pricing-section::before,
.downloads-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to bottom, var(--bg-2), transparent);
  pointer-events: none;
  z-index: 2;
}
.value-section::after,
.features-section::after,
.curriculum-section::after,
.team-section::after,
.pricing-section::after,
.downloads-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to top, var(--bg-2), transparent);
  pointer-events: none;
  z-index: 2;
}
.value-section,
.features-section,
.curriculum-section,
.team-section,
.pricing-section,
.downloads-section { position: relative; }

/* All section containers above fade overlays */
section > .container { position: relative; z-index: 3; }


/* ── PER-SECTION AMBIENT LIGHT ── */

/* Value Props: warm teal from top-right */
.value-section {
  background: radial-gradient(ellipse 80% 60% at 85% 20%, hsl(172 65% 40% / 0.12) 0%, transparent 60%),
              radial-gradient(ellipse 60% 50% at 15% 80%, hsl(210 60% 45% / 0.08) 0%, transparent 60%),
              var(--bg);
}

/* About: indigo from left */
.about-section {
  background: radial-gradient(ellipse 70% 60% at 10% 50%, hsl(225 60% 45% / 0.13) 0%, transparent 60%),
              radial-gradient(ellipse 50% 40% at 90% 20%, hsl(172 65% 40% / 0.09) 0%, transparent 60%),
              var(--bg-2);
}

/* Features: teal centre glow */
.features-section {
  background: radial-gradient(ellipse 70% 50% at 50% 30%, hsl(172 65% 40% / 0.11) 0%, transparent 55%),
              radial-gradient(ellipse 50% 40% at 80% 80%, hsl(240 55% 50% / 0.08) 0%, transparent 55%),
              var(--bg);
}

/* Target: purple from right */
.target-section {
  background: radial-gradient(ellipse 65% 55% at 90% 40%, hsl(255 55% 50% / 0.12) 0%, transparent 60%),
              radial-gradient(ellipse 55% 40% at 20% 70%, hsl(172 65% 40% / 0.09) 0%, transparent 55%),
              var(--bg-2);
}

/* Curriculum: subtle teal top-left */
.curriculum-section {
  background: radial-gradient(ellipse 60% 50% at 15% 25%, hsl(172 65% 40% / 0.10) 0%, transparent 55%),
              radial-gradient(ellipse 50% 40% at 85% 75%, hsl(210 60% 45% / 0.08) 0%, transparent 55%),
              var(--bg);
}

/* Format: warm centre */
.format-section {
  background: radial-gradient(ellipse 75% 55% at 50% 50%, hsl(172 65% 42% / 0.12) 0%, transparent 60%),
              var(--bg-2);
}

/* Testimonials: indigo sweep */
.test-section {
  background: radial-gradient(ellipse 80% 60% at 20% 50%, hsl(225 60% 48% / 0.13) 0%, transparent 60%),
              radial-gradient(ellipse 60% 50% at 80% 30%, hsl(172 65% 40% / 0.10) 0%, transparent 55%),
              var(--bg-2);
}

/* Team: teal from top */
.team-section {
  background: radial-gradient(ellipse 70% 50% at 70% 10%, hsl(172 65% 40% / 0.11) 0%, transparent 55%),
              radial-gradient(ellipse 50% 40% at 20% 80%, hsl(240 55% 50% / 0.08) 0%, transparent 55%),
              var(--bg);
}

/* Pricing: strong teal centre – this is the money section */
.pricing-section {
  background: radial-gradient(ellipse 80% 60% at 50% 40%, hsl(172 70% 42% / 0.15) 0%, transparent 60%),
              radial-gradient(ellipse 55% 45% at 85% 80%, hsl(255 55% 50% / 0.10) 0%, transparent 55%),
              var(--bg);
}

/* Compare: subtle indigo */
.compare-section {
  background: radial-gradient(ellipse 65% 50% at 30% 30%, hsl(210 60% 45% / 0.10) 0%, transparent 55%),
              var(--bg-2);
}

/* FAQ: warm teal top-right */
.faq-section {
  background: radial-gradient(ellipse 65% 50% at 80% 20%, hsl(172 65% 40% / 0.11) 0%, transparent 55%),
              radial-gradient(ellipse 55% 45% at 15% 70%, hsl(225 60% 45% / 0.09) 0%, transparent 55%),
              var(--bg-2);
}

/* CTA: richest light – final push */
.cta-section {
  background: radial-gradient(ellipse 85% 70% at 50% 50%, hsl(172 70% 42% / 0.16) 0%, transparent 65%),
              radial-gradient(ellipse 60% 50% at 15% 20%, hsl(210 60% 48% / 0.10) 0%, transparent 55%),
              var(--bg-2);
}
/* ── MOBILE PERFORMANCE ── */
@media (max-width: 768px) {
  .hero-canvas, #heroCanvas, #heroCanvas2 { display: none !important; }
  #bgCanvas { opacity: 0.5; }
  .hero-glow-1, .hero-glow-2 { display: none; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in-section { opacity: 1; transform: none; }
  .partner-track { animation: none !important; }
  .test-track { animation: none !important; }
}

/* ── FAQ CATEGORY TABS ── */
.faq-tabs {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; margin-bottom: 40px; flex-wrap: wrap;
}
.faq-tab {
  padding: 8px 18px; border-radius: 100px;
  font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 600;
  background: var(--secondary); color: var(--fg-muted);
  border: 1px solid var(--border); cursor: pointer;
  transition: all .2s ease;
}
.faq-tab:hover { border-color: var(--accent); color: var(--accent); }
.faq-tab.active {
  background: var(--accent-soft); color: var(--accent);
  border-color: hsl(172 70% 45% / 0.4);
}

/* FAQ full-width grid */
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  max-width: 960px; margin: 0 auto;
}
.faq-item.hidden { display: none; }

@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-tabs { gap: 4px; }
  .faq-tab { padding: 6px 14px; font-size: 12px; }
}

/* ── SITE FOOTER ── */
.site-footer {
  background: var(--bg-2); padding: 80px 0 0;
  border-top: 1px solid var(--border-soft);
  position: relative;
}
.footer-top {
  display: grid; grid-template-columns: 1fr 2fr; gap: 64px;
  padding-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-logo {
  width: 280px; height: auto; opacity: 0.9;
  transition: opacity .2s;
}
.footer-logo:hover { opacity: 1; }
.footer-tagline {
  font-size: 14px; color: var(--fg-muted); line-height: 1.7;
  max-width: 400px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social-link {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: var(--secondary); color: var(--fg-muted);
  border: 1px solid var(--border); transition: all .2s;
}
.footer-social-link:hover {
  border-color: var(--accent); color: var(--accent);
  background: var(--accent-soft);
}
.footer-nav {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.footer-col {
  display: flex; flex-direction: column; gap: 8px;
}
.footer-col-title {
  font-family: 'Nunito', sans-serif; font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--fg); margin-bottom: 4px;
}
.footer-col a {
  font-size: 13px; color: var(--fg-muted); transition: color .15s;
  line-height: 1.5;
}
.footer-col a:hover { color: var(--accent); }
.footer-label {
  font-size: 13px; color: var(--fg); font-weight: 600; line-height: 1.4;
}
a.footer-label:hover { color: var(--accent); }
.footer-sublabel {
  font-size: 11px; color: var(--fg-soft); line-height: 1.4; margin-top: -4px;
}
.footer-cta {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; padding: 32px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; flex-wrap: wrap; gap: 12px;
}
.footer-copy {
  font-size: 11px; color: var(--fg-soft);
}
.footer-legal {
  display: flex; gap: 20px;
}
.footer-legal a {
  font-size: 11px; color: var(--fg-soft); transition: color .15s;
}
.footer-legal a:hover { color: var(--fg-muted); }

/* Footer section transitions */
.site-footer { position: relative; }
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 80px; pointer-events: none; z-index: 1;
  background: linear-gradient(to bottom, var(--bg), transparent);
}
.site-footer > .container { position: relative; z-index: 3; }

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-logo { width: 220px; }
  .footer-cta { flex-direction: column; }
  .footer-cta .btn { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}
@media (max-width: 480px) {
  .footer-nav { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   MOBILE OPTIMIZATION (comprehensive)
   ══════════════════════════════════════════════ */

/* ── HERO MOBILE ── */
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 120px 0 56px; }
  .hero h1 { font-size: clamp(36px, 9vw, 58px); margin-bottom: 20px; }
  .hero-ctas { margin-top: 40px; margin-bottom: 40px; gap: 10px; }
  .hero-ctas .btn-lg { padding: 14px 24px; font-size: 14px; width: 100%; justify-content: center; }
  .hero-eyebrow { gap: 6px; }
  .hero-eyebrow .badge { font-size: 10px; padding: 3px 10px; }
  .hero-content p { font-size: 14px !important; }
}

/* ── PARTNER STRIP MOBILE ── */
@media (max-width: 768px) {
  .logo-strip { padding: 32px 0; }
  .strip-header { padding: 0 16px; }
  .strip-label { font-size: 10px; }
  .partner-logo { height: 24px !important; }
}

/* ── VALUE CARDS MOBILE ── */
@media (max-width: 768px) {
  .value-section { padding-top: 64px; }
  .value-card { padding: 28px 24px; }
  .value-card h3 { font-size: 18px; }
  .value-card-why { grid-column: span 1; }
}

/* ── FEATURES MOBILE ── */
@media (max-width: 768px) {
  .feature-hero { padding: 28px 24px; gap: 20px; }
  .feature-hero-body h3 { font-size: 17px; }
  .feature-hero-pills { flex-wrap: wrap; }
  .feature-card { padding: 24px 20px; }
  .feature-card h3 { font-size: 16px; }
}

/* ── FORMAT CARDS MOBILE ── */
@media (max-width: 768px) {
  .format-header h2 { font-size: clamp(22px, 5vw, 32px); }
  .format-card { padding: 28px 24px; }
  .format-card h3 { font-size: 18px; }
  .format-list { margin-bottom: 20px; }
}

/* ── CURRICULUM MOBILE ── */
@media (max-width: 768px) {
  .curr-phase-body h3 { font-size: 16px; }
  .curr-phase-body p { font-size: 13px; }
}

/* ── TESTIMONIALS MOBILE ── */
@media (max-width: 768px) {
  .test-section { padding: 56px 0; }
  .test-card { min-width: 280px; padding: 28px 24px; }
  .tc-quote { font-size: 14px; }
}

/* ── TEAM MOBILE ── */
@media (max-width: 768px) {
  .founders-grid { gap: 16px; }
  .founder-card { padding: 24px 20px; }
  .founder-card h3 { font-size: 16px; }
}

/* ── PRICING MOBILE ── */
@media (max-width: 768px) {
  .pricing-card { padding: 32px 24px; }
  .pricing-card h3 { font-size: 22px; }
  .pricing-cta { padding: 14px; font-size: 15px; }
  .includes { gap: 8px; }
  .inc-item { font-size: 12px; }
}

/* ── COMPARISON TABLE MOBILE ── */
@media (max-width: 768px) {
  .compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 -2rem; padding: 0 2rem; }
  .compare-table { min-width: 700px; }
  .compare-table th, .compare-table td { padding: 10px 14px; font-size: 11px; white-space: nowrap; }
  .compare-table td:first-child { white-space: normal; min-width: 140px; }
}

/* ── DOWNLOADS MOBILE ── */
@media (max-width: 768px) {
  .dl-card { padding: 24px 20px; }
  .dl-card h3 { font-size: 16px; }
}

/* ── FAQ MOBILE ── */
@media (max-width: 768px) {
  .faq-section h2 { font-size: clamp(22px, 5vw, 32px); }
  .faq-q { font-size: 13px; }
  .faq-a { font-size: 13px; padding: 0 14px 14px; }
  .faq-toggle { padding: 14px; }
}

/* ── CTA SECTION MOBILE ── */
@media (max-width: 768px) {
  .cta-inner { padding: 40px 24px; }
  .cta-inner h2 { font-size: clamp(20px, 5vw, 32px); }
  .cta-inner p { font-size: 14px; }
  .cta-buttons { gap: 10px; }
  .cta-buttons .btn-lg { width: 100%; justify-content: center; }
  .cta-warning { font-size: 11px; flex-direction: column; text-align: center; }
}

/* ── STICKY BAR MOBILE ── */
@media (max-width: 768px) {
  .sticky-bar { padding: 10px 16px; gap: 10px; }
  .sb-left p:first-child { font-size: 11px !important; }
  .sb-left p:last-child { font-size: 10px; display: none; }
  .sb-price { font-size: 16px; }
  .sb-price .text-gradient { font-size: 16px; }
}

/* ── SECTION HEADERS MOBILE ── */
@media (max-width: 768px) {
  h2 { font-size: clamp(22px, 5.5vw, 36px); }
  .section-header p, .target-header p, .format-header p,
  .pricing-header p, .downloads-header p { font-size: 14px; }
  .container { padding: 0 1.25rem; }
}

/* ── GLOBAL TOUCH TARGETS ── */
@media (max-width: 768px) {
  .btn { min-height: 44px; }
  .btn-sm { min-height: 40px; padding: 10px 16px; }
  .faq-toggle { min-height: 48px; }
  .faq-tab { min-height: 40px; }
}

/* ── 320px SAFETY NET ── */
@media (max-width: 360px) {
  .container { padding: 0 1rem; }
  h1 { font-size: 32px; }
  h2 { font-size: 22px; }
  .hero { padding: 100px 0 48px; }
  .hero-ctas { flex-direction: column; }
  .format-header h2 { font-size: 20px; }
  .faq-tabs { gap: 4px; }
  .faq-tab { padding: 6px 10px; font-size: 11px; }
  .footer-nav { grid-template-columns: 1fr; }
  .footer-cta .btn { font-size: 13px; }
}

/* ── NAVBAR CTA HIDE ON MOBILE ── */
@media (max-width: 768px) {
  .navbar-right .btn { display: none; }
}

/* ── FACULTY STRIP ── */
.faculty-strip {
  margin-top: 56px; padding-top: 40px;
  border-top: 1px solid var(--border-soft);
}
.faculty-label {
  text-align: center; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--fg-soft); margin-bottom: 24px;
}
.faculty-track-wrap {
  overflow: hidden; mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.faculty-track {
  display: flex; gap: 24px; width: max-content;
  animation: scrolll 40s linear infinite;
}
.faculty-chip {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0; padding: 6px 16px 6px 6px;
  border-radius: 100px; background: var(--card);
  border: 1px solid var(--border-soft);
  transition: border-color .2s;
}
.faculty-chip:hover { border-color: hsl(172 70% 45% / 0.3); }
.faculty-ava {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: hsl(172 95% 80%);
  font-family: 'Nunito', sans-serif;
}
.faculty-info { display: flex; flex-direction: column; gap: 1px; }
.faculty-info strong { font-size: 12px; font-weight: 700; color: var(--fg); white-space: nowrap; }
.faculty-info span { font-size: 10px; color: var(--fg-soft); white-space: nowrap; }

@media (max-width: 768px) {
  .faculty-strip { margin-top: 40px; padding-top: 28px; }
  .faculty-chip { padding: 4px 12px 4px 4px; gap: 8px; }
  .faculty-ava { width: 32px; height: 32px; font-size: 11px; }
}

/* Faculty photo avatars */
.faculty-ava-img {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  object-fit: cover; object-position: center;
  border: 1.5px solid hsl(172 70% 45% / 0.3);
}
@media (max-width: 768px) {
  .faculty-ava-img { width: 32px; height: 32px; }
}


/* ── TARGET CARDS EQUAL HEIGHT ── */
.target-grid { align-items: stretch; }
.target-card { display: flex; flex-direction: column; }
.target-card p { flex: 1; }

/* ── TARGET NOTE TOOLTIP ── */
.target-tooltip {
  display: none; margin-top: 16px; padding: 20px 24px;
  background: var(--card); border: 1px solid hsl(172 70% 45% / 0.2);
  border-radius: var(--radius-lg); text-align: left;
}
.target-tooltip.open { display: block; }
.target-note:hover { border-color: hsl(172 95% 52% / 0.5); }

/* ── MOBILE FIXES (comprehensive pass 2) ── */

/* Value grid: 3-col → 1-col on mobile */
@media (max-width: 768px) {
  .value-grid { grid-template-columns: 1fr !important; }
  .value-card-why { grid-column: span 1 !important; }
}

/* Format grid: 2-col → 1-col on mobile */
@media (max-width: 768px) {
  .format-grid { grid-template-columns: 1fr !important; }
}

/* Format dual buttons: stack on very small screens */
@media (max-width: 480px) {
  .format-card div[style*="display:flex;gap:8px"] { flex-direction: column; }
}

/* Founders grid */
@media (max-width: 768px) {
  .founders-grid { grid-template-columns: 1fr !important; }
}

/* Downloads grid */
@media (max-width: 768px) {
  .downloads-grid { grid-template-columns: 1fr !important; }
}

/* Includes grid (pricing) */
@media (max-width: 768px) {
  .includes { grid-template-columns: 1fr !important; }
}

/* Hero 3 badges: ensure clean wrap */
@media (max-width: 480px) {
  .hero-eyebrow { justify-content: center; }
  .hero-eyebrow .badge { font-size: 9px; padding: 3px 8px; }
}

/* Curriculum phase: shrink bubble column */
@media (max-width: 480px) {
  .curr-phase { grid-template-columns: 48px 1fr; gap: 12px; }
  .curr-phase-num { font-size: 12px; width: 32px; height: 32px; }
}

/* ── MOBILE WHITESPACE & FLOW ── */
@media (max-width: 768px) {
  section { padding: 56px 0; }
  
  /* More breathing room between major sections */
  .value-section { padding-top: 80px; }
  .hero { padding-bottom: 48px; }
  
  /* Section headers: more top space, tighter bottom */
  .value-section h2,
  .about-section h2,
  .target-header h2,
  .features-section h2,
  .curriculum-section h2,
  .format-header h2,
  .test-header h2,
  .pricing-header h2,
  .faq-header h2 {
    margin-bottom: 24px;
  }
  
  /* Value cards: gap between stacked cards */
  .value-grid { gap: 24px; }
  .value-card { padding: 28px 24px; }
  
  /* Feature cards */
  .feature-hero { gap: 20px; margin-bottom: 32px; }
  .feature-hero-body { padding: 0; }
  
  /* Target cards */
  .target-grid { gap: 16px; }
  .target-card { padding: 24px 20px; }
  .target-note { margin-top: 24px; }
  
  /* Curriculum: reduce clutter */
  .curr-phase { margin-bottom: 32px; }
  
  /* Format cards */
  .format-grid { gap: 24px; }
  .format-card { padding: 28px 24px; }
  
  /* Testimonials */
  .test-grid { gap: 20px; }
  
  /* Team / Founders */
  .founders-grid { gap: 32px; }
  .faculty-strip { margin-top: 32px; padding-top: 24px; }
  
  /* Pricing */
  .pricing-card { padding: 32px 20px; }
  
  /* FAQ */
  .faq-toggle { padding: 16px 18px; }
  
  /* CTA */
  .cta-inner { padding: 40px 24px; }
  
  /* Footer */
  .footer { padding: 48px 0 24px; }
  
  /* Container side padding */
  .container { padding: 0 20px; }
}

@media (max-width: 480px) {
  section { padding: 44px 0; }
  .container { padding: 0 16px; }
  
  /* Tighter but still breathable */
  .value-card { padding: 24px 20px; }
  .format-card { padding: 24px 18px; }
  .cta-inner { padding: 32px 18px; }
  .pricing-card { padding: 28px 16px; }
}

/* ── MOBILE FIX: Buttons less bulky ── */
@media (max-width: 768px) {
  .hero-ctas .btn-lg {
    width: auto !important; padding: 14px 28px; font-size: 14px;
  }
  .hero-ctas { flex-direction: column; align-items: center; }
  
  .cta-buttons .btn-lg { width: auto !important; padding: 14px 28px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  
  .footer-cta .btn { width: auto !important; }
  
  .mobile-menu .btn { width: auto !important; align-self: center; min-width: 200px; }
  .mobile-menu { align-items: center; }
  
  /* Format dual buttons: still side by side but smaller */
  .format-card .btn { font-size: 13px; padding: 10px 16px; }
}

@media (max-width: 480px) {
  .hero-ctas .btn-lg { padding: 13px 24px; font-size: 13px; }
  .cta-buttons .btn-lg { padding: 13px 24px; font-size: 13px; }
}

/* ── MOBILE FIX: FAQ answers fully hidden when closed ── */
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
  padding: 0 !important;
}
.faq-item.open .faq-answer {
  max-height: 800px;
}
.faq-a {
  padding: 12px 18px 16px;
}

/* ── MOBILE FIX: Footer elegant ── */
@media (max-width: 768px) {
  .footer-top { text-align: center; }
  .footer-logo { margin: 0 auto; }
  .footer-tagline { text-align: center; }
  .footer-linkedin { justify-content: center; display: flex; }
  
  .footer-nav { text-align: center; gap: 32px; }
  .footer-nav h4 { font-size: 11px; }
  .footer-nav a { font-size: 13px; }
  
  .footer-cta { flex-direction: column; align-items: center; gap: 10px; }
  
  .footer-bottom { flex-direction: column; align-items: center; gap: 12px; text-align: center; }
  .footer-legal { justify-content: center; }
}

/* ── MOBILE OVERHAUL v3 ── */

/* Hero: space between badges and heading */
@media (max-width: 768px) {
  .hero-eyebrow { margin-bottom: 28px; }
}

/* ALL buttons: never full-width on mobile */
@media (max-width: 768px) {
  .btn { width: fit-content; }
  
  /* Hero buttons */
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn-lg {
    width: auto !important; max-width: 280px;
    padding: 13px 28px; font-size: 14px;
  }
  
  /* 28 HK button */
  .hk-open-btn { 
    width: auto !important; max-width: none !important;
    padding: 10px 18px !important; font-size: 11px !important;
    text-align: center !important; display: inline-block !important;
    white-space: nowrap;
  }
  .feature-hero-body { display: flex; flex-direction: column; align-items: flex-start; }
  
  /* Format card dual buttons */
  .format-card div[style*="display:flex;gap:8px"] {
    flex-direction: column; align-items: center;
  }
  .format-card div[style*="display:flex;gap:8px"] .btn {
    width: auto !important; min-width: 180px; max-width: 240px;
    padding: 11px 22px; font-size: 13px; flex: none !important;
  }
  
  /* CTA button */
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn-lg {
    width: auto !important; max-width: 260px;
    padding: 13px 28px; font-size: 14px;
  }
  
  /* Pricing CTA */
  .pricing-cta {
    width: auto !important; max-width: 280px;
    margin-left: auto; margin-right: auto;
    display: block; text-align: center;
  }
  
  /* Footer CTA buttons */
  .footer-cta .btn {
    width: auto !important; max-width: 240px;
    padding: 10px 20px; font-size: 13px;
  }
  
  /* Mobile menu buttons */
  .mobile-menu .btn {
    width: auto !important; max-width: 240px; min-width: 200px;
  }
}

/* Footer: two-column nav on mobile */
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  
  /* Logo area centered */
  .footer-top > div:first-child { text-align: center; }
  .footer-logo { margin: 0 auto; }
  .footer-linkedin { justify-content: center; display: flex; }
  
  /* Nav columns: always 2-col grid, left-aligned */
  .footer-nav {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px 32px; text-align: left;
  }
  .footer-nav > div { text-align: left; }
  
  /* CTA row */
  .footer-cta { 
    flex-wrap: wrap; justify-content: center; gap: 10px;
  }
  
  /* Bottom bar */
  .footer-bottom {
    flex-direction: column; align-items: center;
    gap: 10px; text-align: center;
  }
  .footer-legal { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .footer-nav {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px 24px;
  }
  .footer-nav h4 { font-size: 10px; margin-bottom: 8px; }
  .footer-nav a { font-size: 12px; }
}

/* ── MOBILE HERO REFINEMENT (mobile only) ── */
@media (max-width: 768px) {
  /* More space between pills and heading */
  .hero-eyebrow { margin-bottom: 32px; }
  
  /* AI on line 1, Business Specialist on line 2 */
  .hero h1 { font-size: clamp(42px, 11vw, 56px); line-height: 1.05; }
  .hero h1 .text-gradient {
    display: block;
  }
  .hero h1 .text-gradient::after {
    content: none;
  }
  
  /* Subline: bigger and bolder */
  .hero .anim-delay-2 {
    font-size: 18px !important; font-weight: 500 !important;
    color: var(--fg) !important; letter-spacing: 0 !important;
    margin-bottom: 20px !important;
  }
  
  /* Body text: smaller, lighter, whisper */
  .hero .anim-delay-3:not(.hero-ctas) {
    font-size: 12px !important; color: var(--fg-soft) !important;
    font-weight: 400 !important; line-height: 1.7 !important;
    max-width: 320px !important; margin: 0 auto !important;
  }
  
  /* Tighten hero CTA spacing */
  .hero-ctas { margin-top: 32px !important; margin-bottom: 48px !important; }
}

/* Mobile-only line break */
.mobile-br { display: none; }
@media (max-width: 768px) { .mobile-br { display: block; } }

/* ── HAMBURGER FIX: ensure clickable on mobile ── */
@media (max-width: 768px) {
  .navbar { z-index: 200; }
  .hamburger { 
    display: flex; position: relative; z-index: 201;
    min-width: 44px; min-height: 44px;
    align-items: center; justify-content: center;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-menu { z-index: 199; }
}

/* ── MOBILE HERO: bigger heading + more whitespace ── */
@media (max-width: 768px) {
  .hero-eyebrow { margin-bottom: 36px; }
  
  .hero h1 {
    font-size: clamp(48px, 13vw, 64px) !important;
    line-height: 1.0 !important;
    margin-bottom: 20px !important;
  }
  
  /* Space after heading before subline */
  .hero .anim-delay-2 {
    margin-top: 8px !important;
  }
}

/* Deliverables teal text smaller on mobile */
@media (max-width: 768px) {
  .feature-hero-body p[style*="color:var(--accent)"] {
    font-size: 12px !important; line-height: 1.6 !important;
  }
}

/* Hide FAQ section on mobile */
@media (max-width: 768px) {
  .faq-section { display: none !important; }
}

/* Target note much smaller on mobile */
@media (max-width: 768px) {
  .target-note {
    font-size: 11px !important; padding: 12px 16px !important;
  }
}


/* ── MOBILE: Hide heavy sections ── */
@media (max-width: 768px) {
  .compare-section { display: none !important; }
  .value-section { display: none !important; }
  .test-section { display: none !important; }
}

/* ── MOBILE: Minimum 10px font ── */
@media (max-width: 768px) {
  .hero-eyebrow .badge { font-size: 10px !important; }
  .footer-nav h4 { font-size: 10px !important; }
  .footer-nav a { font-size: 13px !important; }
}

/* ── MOBILE: Curriculum phase short text ── */
@media (max-width: 768px) {
  .curr-phase-body .phase-full { display: none; }
  .curr-phase-body .phase-short { display: block; font-size: 12px; color: var(--fg-muted); line-height: 1.5; }
}
@media (min-width: 769px) {
  .curr-phase-body .phase-short { display: none; }
}

/* ── MOBILE: Hide pricing includes bullets ── */
@media (max-width: 768px) {
  .includes { display: none !important; }
}

/* ── MOBILE: Hide 28 HK button ── */
@media (max-width: 768px) {
  .hk-open-btn { display: none !important; }
}

/* ── MOBILE: Hide team subtitle line break ── */
@media (max-width: 768px) {
  .team-section .faculty-intro-br { display: none; }
}

/* Desktop-only inline text */
@media (max-width: 768px) {
  .desktop-only { display: none; }
}

/* ── MOBILE: Footer contact names white ── */
@media (max-width: 768px) {
  .footer-col .footer-label { color: var(--fg) !important; }
}

/* ── MOBILE: Hero 3 buttons side by side ── */
@media (max-width: 768px) {
  .hero-ctas {
    flex-direction: row !important; flex-wrap: nowrap !important;
    gap: 8px !important; justify-content: center;
  }
  .hero-ctas .btn-lg {
    padding: 10px 14px !important; font-size: 11px !important;
    width: auto !important; max-width: none !important;
    white-space: nowrap;
  }
  
  /* CTA box buttons side by side */
  .cta-buttons {
    flex-direction: row !important; flex-wrap: nowrap !important;
    gap: 8px !important; justify-content: center;
  }
  .cta-buttons .btn-lg {
    padding: 10px 14px !important; font-size: 11px !important;
    width: auto !important; max-width: none !important;
    white-space: nowrap;
  }
}

@media (max-width: 380px) {
  .hero-ctas .btn-lg, .cta-buttons .btn-lg {
    padding: 9px 10px !important; font-size: 10px !important;
  }
}

/* ── MOBILE: Early Infosession CTA ── */
.mobile-infosession-cta {
  display: none;
}
@media (max-width: 768px) {
  .mobile-infosession-cta {
    display: flex; justify-content: center; padding: 20px 0;
    background: var(--bg-2); border-bottom: 1px solid var(--border-soft);
  }
  .mobile-infosession-cta .btn {
    font-size: 12px; padding: 10px 20px;
  }
}

/* ── MOBILE: CTA box only 2 buttons, centered ── */
@media (max-width: 768px) {
  .cta-buttons {
    justify-content: center !important;
    gap: 10px !important;
  }
  .cta-buttons .btn-lg {
    padding: 12px 22px !important; font-size: 13px !important;
  }
}
