/* ===============================================================
   UNLOCK INTELLIGENCE - STYLESHEET
   Clean, minimal, high-contrast dark design
   =============================================================== */

:root {
  --bg-base:        #09090B;
  --bg-card:        rgba(255, 255, 255, 0.03);
  --bg-card-hover:  rgba(255, 255, 255, 0.05);
  --border:         rgba(255, 255, 255, 0.06);
  --border-hover:   rgba(255, 255, 255, 0.12);

  --indigo:         #818CF8;
  --violet:         #A78BFA;
  --emerald:        #34D399;

  --grad-primary:   linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
  --grad-text:      linear-gradient(135deg, #818CF8 0%, #C4B5FD 100%);

  --text-primary:   #FAFAFA;
  --text-secondary: #A1A1AA;
  --text-muted:     #71717A;

  /* Light theme */
  --bg-light:             #FAFAF9;
  --text-light-primary:   #18181B;
  --text-light-secondary: #52525B;
  --text-light-muted:     #A1A1AA;
  --border-light:         rgba(0, 0, 0, 0.08);
  --bg-card-light:        rgba(0, 0, 0, 0.03);
  --bg-card-light-hover:  rgba(0, 0, 0, 0.05);

  --nav-h:          64px;
  --radius:         12px;
  --ease-out:       cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul, ol { list-style: none; }

/* --- UTILITY -------------------------------------------------- */
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 64px;
}

.section-header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.label {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 16px;
}

.label-mono {
  display: none;
  font-family: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

/* --- SCROLL REVEAL -------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- BUTTONS -------------------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 10px;
  background: var(--grad-primary);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 2px 16px rgba(99, 102, 241, 0.25);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(99, 102, 241, 0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 10px;
  border: 1px solid var(--border-hover);
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 10px;
  border: 1px solid var(--border-hover);
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
}

.btn-lg { padding: 15px 36px; font-size: 16px; }
.btn-xl { padding: 18px 48px; font-size: 17px; }
.btn-full { width: 100%; }

/* --- CARD ----------------------------------------------------- */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: background 0.2s, border-color 0.2s;
}
.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
}

/* --- NAVIGATION ----------------------------------------------- */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.25s, border-color 0.25s;
}
#nav.scrolled {
  background: rgba(9, 9, 11, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 100px;
  max-width: 860px;
  margin: 12px auto 0;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  height: 52px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}
#nav.scrolled .nav-inner {
  max-width: none;
  padding: 0 28px;
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 6px;
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text-primary); }

.nav-cta {
  margin-left: 12px;
  padding: 9px 20px !important;
  font-size: 14px !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(9, 9, 11, 0.98);
  backdrop-filter: blur(16px);
  padding: 40px 24px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 32px;
}
.mobile-menu a {
  display: block;
  padding: 12px 24px;
  font-size: 18px;
  color: var(--text-secondary);
}

/* --- HERO ----------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black 0%, transparent 100%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.2;
  will-change: transform;
  animation: float 30s ease-in-out infinite alternate;
}
.orb-1 {
  width: 600px;
  height: 600px;
  background: #6366F1;
  top: -20%;
  left: -10%;
}
.orb-2 {
  width: 500px;
  height: 500px;
  background: #8B5CF6;
  bottom: -15%;
  right: -10%;
  animation-delay: -15s;
}
.orb-bright { opacity: 0.3; }

@keyframes float {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(30px, 20px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 780px;
}

.cohort-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald);
  animation: pulse 2.5s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5); }
  70%  { box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.hero-h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}

.word { display: inline-block; }

.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}

/* Hero animations */
.animate-in {
  opacity: 0;
  transform: translateY(16px);
  animation: animateIn 0.65s var(--ease-out) forwards;
  animation-delay: var(--delay, 0ms);
}
@keyframes animateIn {
  to { opacity: 1; transform: translateY(0); }
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-dot {
  width: 3px;
  height: 6px;
  background: var(--text-muted);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 0.8; }
  60%      { transform: translateY(10px); opacity: 0.15; }
}

.br-desktop { display: none; }

/* --- PROOF BAR ----------------------------------------------- */
.proof-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.proof-bar-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.proof-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.proof-roles {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.proof-roles span { font-size: 13px; color: var(--text-muted); }
.proof-roles .divider { opacity: 0.3; }

/* --- PROBLEM -------------------------------------------------- */
.section-problem { padding: 120px 0; }

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

.problem-copy h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.problem-copy p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 16px;
}

.pull-quote {
  margin-top: 32px;
  padding: 24px 28px;
  border-left: 2px solid var(--indigo);
  background: rgba(99, 102, 241, 0.04);
  border-radius: 0 8px 8px 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  font-style: normal;
}
.pull-quote em { font-style: normal; }

.problem-card { padding: 32px; }

.card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.check-list { display: flex; flex-direction: column; gap: 14px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-secondary);
}
.check-list li svg { flex-shrink: 0; margin-top: 3px; }
.check-list.positive li { color: var(--text-primary); }
.check-list.negative-muted li { color: var(--text-muted); }

/* --- HOW IT WORKS -------------------------------------------- */
.section-how { padding: 120px 0; }

.how-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.how-card {
  padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.how-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.how-card-outcome {
  border-color: rgba(99, 102, 241, 0.15);
}

.card-number {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.card-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.how-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.how-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.card-deliverable {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.deliverable-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--indigo);
}
.card-deliverable span:last-child {
  font-size: 14px;
  color: var(--text-secondary);
}

/* --- CURRICULUM ----------------------------------------------- */
.section-curriculum { padding: 120px 0; }

.curriculum-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.curriculum-session-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.session-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--indigo);
}
.session-dot-2 { background: var(--violet); }

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

.acc-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.acc-item:first-child { border-top: 1px solid var(--border); }

.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  transition: color 0.15s;
}
.acc-trigger:hover { color: var(--indigo); }
.acc-trigger[aria-expanded="true"] { color: var(--indigo); }

.acc-icon {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.25s ease;
}
.acc-trigger[aria-expanded="true"] .acc-icon {
  transform: rotate(180deg);
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out);
}
.acc-body p {
  padding: 0 0 16px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-secondary);
}
.acc-body .link-accent {
  color: var(--indigo);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* --- STATS ---------------------------------------------------- */
.section-stats {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-glow { display: none; }

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

.stat-item { text-align: center; }

.stat-number {
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
  display: block;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 160px;
  margin: 0 auto;
}

/* --- TESTIMONIALS --------------------------------------------- */
.section-testimonials { padding: 120px 0; }

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

.testimonial-card {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stars {
  color: #FBBF24;
  font-size: 12px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
  flex: 1;
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.author-name { font-size: 14px; font-weight: 600; }
.author-role { font-size: 12px; color: var(--text-muted); line-height: 1.4; }
.author-role strong { color: var(--emerald); font-weight: 500; }

/* --- TEAM ----------------------------------------------------- */
.section-team { padding: 120px 0; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.team-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.team-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-card);
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.4s ease;
}

.team-card:hover .team-card-img img {
  transform: scale(1.03);
}
.team-card-img-zoom img {
  transform: scale(1.65) !important;
  transform-origin: center 0% !important;
  object-position: center 95% !important;
}
.team-card:hover .team-card-img-zoom img {
  transform: scale(1.68) !important;
}

.team-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.team-card-body h3 {
  font-size: 18px;
  font-weight: 600;
}

.team-role {
  font-size: 14px;
  color: var(--indigo);
  font-weight: 500;
}

.team-bio {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-top: 4px;
}

.team-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 8px;
  transition: color 0.15s;
}
.team-link:hover { color: var(--text-primary); }

/* Placeholder slots */
.team-card-placeholder {
  border: 1px dashed rgba(255, 255, 255, 0.1);
  background: transparent;
  min-height: 360px;
}
.team-card-placeholder:hover {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.15);
}

.placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 12px;
  color: var(--text-muted);
  opacity: 0.4;
}

.placeholder-inner span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* --- WHO IT'S FOR --------------------------------------------- */
.section-who { padding: 120px 0; }

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}

.who-card { padding: 36px; }

.who-card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.who-card-title-muted { color: var(--text-muted); }

.who-yes { border-color: rgba(52, 211, 153, 0.15); }

/* --- CONTACT -------------------------------------------------- */
.section-contact { padding: 120px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto 48px;
}

.contact-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card-featured {
  border-color: rgba(99, 102, 241, 0.2);
}

.contact-card-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--indigo);
}

.contact-card h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.contact-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.includes-list { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.includes-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}
.includes-list li svg { flex-shrink: 0; }

.guarantee {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 540px;
  margin: 0 auto;
  padding: 20px 24px;
  border-radius: 10px;
  border: 1px solid var(--border);
}
.guarantee svg { flex-shrink: 0; margin-top: 2px; }
.guarantee p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* --- FAQ ------------------------------------------------------ */
.section-faq { padding: 120px 0; }
.faq-container { max-width: 680px; }

.faq-accordion .acc-item {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--border);
}
.faq-accordion .acc-item:first-child { border-top: 1px solid var(--border); }
.faq-accordion .acc-trigger { padding: 20px 0; font-size: 16px; }
.faq-accordion .acc-body p { padding: 0 0 20px; font-size: 15px; }

/* --- FINAL CTA ------------------------------------------------ */
.section-final-cta {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.final-cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta-h2 {
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.final-cta-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 520px;
}

.final-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.final-meta span { font-size: 13px; color: var(--text-muted); }
.meta-divider { opacity: 0.3; }

/* --- FOOTER --------------------------------------------------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 40px;
}

.footer-inner { display: flex; flex-direction: column; gap: 32px; }

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo .logo-text { font-size: 15px; }

.footer-links { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.footer-links a {
  padding: 4px 10px;
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--text-primary); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}
.footer-tagline { font-style: italic; opacity: 0.5; }
.footer-email { color: var(--indigo); }
.footer-email:hover { color: var(--violet); }

/* --- LIGHT SECTIONS ------------------------------------------ */
.section-light {
  background: var(--bg-light);
  color: var(--text-light-primary);
}
.section-light h2, .section-light h3 { color: var(--text-light-primary); }
.section-light p,
.section-light .section-sub,
.section-light .check-list li,
.section-light blockquote,
.section-light .how-card p,
.section-light .card-deliverable span:last-child { color: var(--text-light-secondary); }
.section-light .label-mono,
.section-light .card-tag,
.section-light .card-label,
.section-light .who-card-title-muted,
.section-light .check-list.negative-muted li { color: var(--text-light-muted); }
.section-light .label { color: #6366F1; }
.section-light .glass-card {
  background: var(--bg-card-light);
  border-color: var(--border-light);
}
.section-light .glass-card:hover {
  background: var(--bg-card-light-hover);
  border-color: rgba(0, 0, 0, 0.12);
}
.section-light .pull-quote {
  background: rgba(99, 102, 241, 0.06);
  color: var(--text-light-primary);
}
.section-light .how-card-outcome {
  border-color: rgba(99, 102, 241, 0.2);
  background: rgba(99, 102, 241, 0.04);
}
.section-light .who-yes {
  border-color: rgba(16, 185, 129, 0.2);
  background: rgba(16, 185, 129, 0.04);
}
.section-light .acc-item { border-color: var(--border-light); }
.section-light .acc-trigger { color: var(--text-light-primary); }
.section-light .acc-trigger:hover { color: #6366F1; }
.section-light .acc-icon { color: var(--text-light-muted); }
.section-light .card-deliverable { border-color: var(--border-light); }

/* --- GRADIENT DIVIDERS --------------------------------------- */
.divider-dark-to-light {
  height: 10px;
  background: linear-gradient(to bottom, #09090B, #FAFAF9);
}
.divider-light-to-dark {
  height: 10px;
  background: linear-gradient(to bottom, #FAFAF9, #09090B);
}

/* --- WHY THIS PROGRAM (credibility) -------------------------- */
.section-why { padding: 120px 0; }

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.why-card {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s, transform 0.2s;
}
.why-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-card h3 { font-size: 18px; font-weight: 600; }
.why-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* --- CONTACT PAGE -------------------------------------------- */
.contact-page {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 80px) 0 120px;
}

.contact-page-header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 64px;
}
.contact-page-header h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.contact-page-header p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  max-width: 920px;
  margin: 0 auto;
}

.contact-form-card {
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--indigo);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2371717A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-group select option {
  background: #18181B;
  color: var(--text-primary);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Form states */
.form-success, .form-error {
  text-align: center;
  padding: 48px 32px;
}
.form-result-icon { margin-bottom: 16px; }
.form-success h3, .form-error h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}
.form-success p, .form-error p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.link-accent {
  color: var(--indigo);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Contact info sidebar */
.contact-info { display: flex; flex-direction: column; gap: 0; }

.process-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
}
.process-steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 20px;
  font-weight: 500;
  color: var(--indigo);
  opacity: 0.5;
  min-width: 36px;
  line-height: 1.4;
}
.process-steps strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}
.process-steps p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.direct-email {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.direct-email p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.direct-email a {
  color: var(--indigo);
  font-size: 15px;
  font-weight: 500;
}
.direct-email a:hover { color: var(--violet); }

/* Active nav link */
.nav-link-active { color: var(--text-primary) !important; }

/* --- RESPONSIVE ---------------------------------------------- */
@media (min-width: 768px) { .br-desktop { display: block; } }

@media (max-width: 1024px) {
  .how-cards { grid-template-columns: 1fr 1fr; }
  .how-card-outcome { grid-column: span 2; max-width: 480px; margin: 0 auto; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-card-placeholder:last-child { display: none; }
  .why-cards { grid-template-columns: 1fr 1fr; }
  .why-cards > :last-child { grid-column: span 2; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none !important; }
  .hamburger { display: flex; }

  /* Disable floating pill on mobile */
  #nav.scrolled {
    border-radius: 0;
    max-width: none;
    margin: 0;
    left: 0;
    right: 0;
    transform: none;
    height: var(--nav-h);
  }

  .problem-grid,
  .how-cards,
  .curriculum-grid,
  .who-grid,
  .contact-grid,
  .team-grid,
  .why-cards,
  .contact-page-grid { grid-template-columns: 1fr; }

  .team-card-placeholder:last-child { display: flex; }
  .team-card-placeholder { min-height: 200px; }
  .how-card-outcome { grid-column: span 1; max-width: none; }
  .why-cards > :last-child { grid-column: span 1; max-width: none; }

  .hero-trust { flex-direction: column; align-items: center; gap: 10px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .proof-roles { display: none; }
  .footer-top, .footer-bottom { flex-direction: column; align-items: flex-start; }

  .section-problem, .section-how, .section-curriculum,
  .section-who, .section-why,
  .section-team, .section-contact, .section-faq { padding: 80px 0; }

  .section-header { margin-bottom: 48px; }
  .contact-page { padding-top: calc(var(--nav-h) + 48px); }
  .contact-form-card { padding: 28px 22px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .who-card, .contact-card, .how-card, .why-card { padding: 28px 22px; }
}
