/* ============================================================
   Pave Academy — shared styles for / and /bridge/
   ============================================================ */

/* Brand tokens sampled directly from pavehq.com — do not eyeball replacements.
   dark purple #010170 · purple #6665FE · light purple #9B99FF · border #CDCCFF
   surfaces #FAFAFF / #F5F5FF / #FDFDFD · muted text #6C6685
   Pave's only gradient is a single-hue accent wash (see --pave-wash). */
:root {
  --ink: #010170;          /* dark purple — primary text and dark surfaces */
  --ink-deep: #020198;
  --ink-soft: #6C6685;     /* muted body text */
  --indigo: #6665FE;       /* primary purple — buttons, links, accents */
  --indigo-700: #4F4EE8;   /* hover only */
  --periwinkle: #9B99FF;   /* light purple */
  --lavender: #F5F5FF;
  --lavender-2: #FAFAFF;

  /* tints for icon chips — all inside Pave's purple family */
  --coral: #6665FE;
  --yellow: #9B99FF;
  --mint: #6665FE;
  --pink: #9B99FF;
  --sky: #6665FE;

  --white: #FDFDFD;
  --muted: #6C6685;
  --line: #CDCCFF;

  /* Pave's actual gradient: one hue fading to transparent at 136deg. Nothing else. */
  --pave-wash: linear-gradient(136deg, rgba(102,101,254,.74) -108.26%, rgba(102,101,254,0) 75.25%);

  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 24px;
  --shadow-sm: 0 1px 2px rgba(1, 1, 112, .04);
  --shadow: 0 8px 24px rgba(1, 1, 112, .07);
  --shadow-lg: 0 16px 48px rgba(1, 1, 112, .10);

  --maxw: 1260px;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Nunito Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, .display { font-family: var(--font-display); font-weight: 600; line-height: 1.14; letter-spacing: -.02em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
section { position: relative; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--indigo);
  background: var(--lavender); padding: 8px 16px; border-radius: 999px;
}
.center { text-align: center; }
.section-pad { padding: 96px 0; }
.section-head { max-width: 680px; margin: 0 auto 60px; text-align: center; }
.section-head h2 { font-size: clamp(26px, 3.2vw, 38px); margin: 16px 0 14px; }
.section-head p { color: var(--muted); font-size: 16.5px; }
.grad-text { color: var(--indigo); }
.curric .grad-text { color: var(--periwinkle); }

/* ---------- Buttons ---------- */
/* Buttons match pavehq.com: flat fill, 24px radius, 14px/30px, no shadow. */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 16px;
  padding: 14px 30px; border-radius: var(--radius-pill); border: 0; cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--indigo); color: var(--lavender-2); }
.btn-primary:hover { background: var(--indigo-700); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--indigo); color: var(--indigo); }
.btn-coral { background: var(--indigo); color: var(--lavender-2); }
.btn-coral:hover { background: var(--indigo-700); }
.btn-on-dark { background: var(--lavender-2); color: var(--ink); }
.btn-on-dark:hover { background: #fff; }
.btn-lg { font-size: 17px; padding: 17px 34px; }
.btn-block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
  padding: 18px 0;
}
.nav.scrolled { background: rgba(255,255,255,.85); backdrop-filter: blur(14px); box-shadow: 0 6px 24px rgba(21,18,58,.07); padding: 12px 0; }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-weight: 600; font-size: 15px; color: var(--ink-soft); transition: color .15s; }
.nav-links a.mobile-join { display: none; }
.nav-links a:hover { color: var(--indigo); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .2s; }

/* ---------- Hero ---------- */
/* position:relative is load-bearing — the ::before/::after backgrounds use inset:0, and
   `section{position:relative}` does not apply to this <header>. Without it their containing
   block is the page, so the hero background bleeds into the next section and cuts off at 100vh. */
.hero { padding: 150px 0 80px; overflow: hidden; position: relative; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: var(--lavender-2);
}
.hero::after {   /* Pave's own accent wash — the only gradient the brand uses */
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: var(--pave-wash); opacity: .5;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(34px, 4.4vw, 54px); margin: 20px 0 18px; }
.hero p.lead { font-size: clamp(16px, 1.4vw, 18px); color: var(--ink-soft); max-width: 500px; margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* hero visual */
.hero-visual { position: relative; }
.hero-img-card {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 6px solid #fff; transform: rotate(1.5deg); position: relative; aspect-ratio: 16/11; background: var(--lavender);
}
.hero-img-card img { width: 100%; height: 100%; object-fit: cover; }
.float-card {
  position: absolute; background: #fff; border-radius: 18px; box-shadow: var(--shadow);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 14px;
  animation: floaty 5s ease-in-out infinite;
}
.float-card .ic { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; font-size: 20px; }
.float-a { top: -22px; left: -26px; }
.float-b { bottom: 26px; right: -28px; animation-delay: 1.4s; }
.float-c { bottom: -22px; left: 30px; animation-delay: .7s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* destinations marquee */
.destinations { margin-top: 72px; text-align: center; }
.dest-label { display: block; font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.marquee { overflow: hidden; width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee-track { display: flex; gap: 14px; width: max-content; animation: marquee 36s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.dest { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 11px 20px; font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink); box-shadow: var(--shadow-sm); white-space: nowrap; flex-shrink: 0; }
.dest .flag { font-size: 18px; line-height: 1; }
.dest-types { margin-top: 26px; font-size: 14.5px; color: var(--muted); font-weight: 500; }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; } }

/* ---------- Scholarship banner ---------- */
.scholar {
  background: var(--ink);
  color: var(--lavender); border-radius: var(--radius-lg); padding: 44px; position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 36px; align-items: center;
}
.scholar h2 { color: #fff; font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 12px; }
.scholar p { color: rgba(255,255,255,.88); font-size: 17px; }
.scholar .price-block { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); border-radius: var(--radius); padding: 28px; text-align: center; backdrop-filter: blur(6px); position: relative; z-index: 1; }
.price-was { font-size: 18px; text-decoration: line-through; opacity: .75; }
.price-now { font-family: var(--font-display); font-weight: 800; font-size: 54px; line-height: 1; margin: 6px 0; }
.price-now small { display:block; font-size: 15px; font-weight: 600; opacity: .85; margin-top: 8px; letter-spacing: .02em; }
.seats-label { font-size: 13px; margin-top: 8px; opacity: .9; }

/* ---------- Countdown ---------- */
.countdown { display: flex; gap: 12px; margin-top: 22px; }
.countdown .unit { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22); border-radius: 16px; padding: 12px 6px; min-width: 70px; text-align: center; }
.countdown .unit b { font-family: var(--font-display); font-size: 30px; display: block; line-height: 1; }
.countdown .unit span { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; opacity: .85; }

/* ---------- Who it's for ---------- */
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.who-card { border-radius: var(--radius); border: 1px solid var(--line); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.who-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.who-card .ph { aspect-ratio: 4/3; background: var(--lavender); position: relative; overflow: hidden; }
.who-card .ph img { width: 100%; height: 100%; object-fit: cover; }
.who-card .ph .tag { position: absolute; top: 14px; left: 14px; background: #fff; color: var(--ink); font-weight: 700; font-family: var(--font-display); font-size: 13px; padding: 6px 12px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.who-card .body { padding: 22px 22px 26px; }
.who-card h3 { font-size: 21px; margin-bottom: 8px; }
.who-card p { color: var(--muted); font-size: 15px; }

/* ---------- Outcomes ---------- */
.outcomes { background: var(--lavender-2); }
.out-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.out-card { background: #fff; border-radius: var(--radius); padding: 30px 26px; border: 1px solid var(--line); transition: transform .2s; }
.out-card:hover { transform: translateY(-6px); }
.out-card .ic { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; font-size: 26px; margin-bottom: 18px; }
.out-card h3 { font-size: 19px; margin-bottom: 8px; }
.out-card p { color: var(--muted); font-size: 15px; }

/* ---------- How Pave works ---------- */
.howpave { background: var(--lavender-2); }
.how-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.how-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px 28px; position: relative; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.how-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.how-card .step { font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.how-card h3 { font-size: 21px; margin: 4px 0 20px; color: var(--indigo); }
.how-card .ic { width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center; font-size: 30px; margin: 0 auto 20px; }
.how-card p { color: var(--ink-soft); font-size: 14.5px; font-weight: 600; }
/* connector arrows between steps (desktop only) */
.how-card:not(:last-child)::after {
  content: "→"; position: absolute; top: 50%; right: -18px; transform: translateY(-50%);
  font-size: 18px; color: var(--periwinkle); font-weight: 700; z-index: 2;
}

/* ---------- Next cohort note (scholarship banner) ---------- */
.next-cohort { margin-top: 22px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22); border-radius: 16px; padding: 16px 20px; }
.next-cohort b { font-family: var(--font-display); font-size: 17px; display: block; margin-bottom: 2px; }
.next-cohort span { font-size: 14px; color: rgba(255,255,255,.85); }

/* ---------- Curriculum ---------- */
.curric { background: var(--ink); color: var(--lavender); overflow: hidden; }
.curric .wrap { position: relative; z-index: 1; }
.curric .section-head h2 { color: #fff; }
.curric .section-head p { color: rgba(255,255,255,.7); }
.weeks { display: grid; gap: 16px; }
.week {
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); overflow: hidden;
  background: rgba(255,255,255,.04); transition: border-color .2s;
}
.week.open { border-color: rgba(140,140,255,.5); }
.week-head { display: flex; align-items: center; gap: 18px; padding: 22px 26px; cursor: pointer; }
.week-tag { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .1em; color: var(--lavender-2); background: var(--indigo); padding: 7px 13px; border-radius: var(--radius-pill); white-space: nowrap; }
.week-head h3 { font-size: 20px; flex: 1; }
.week-head .chev { transition: transform .25s; opacity: .7; font-size: 22px; }
.week.open .chev { transform: rotate(180deg); }
.week-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.week.open .week-body { max-height: 700px; }
.modules { padding: 0 26px 26px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.module { display: flex; gap: 14px; align-items: flex-start; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 16px; }
.module .ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; font-size: 22px; flex-shrink: 0; }
.module h4 { font-size: 16px; margin-bottom: 3px; }
.module p { font-size: 13.5px; color: rgba(255,255,255,.66); line-height: 1.5; }

/* ---------- Format / dates ---------- */
.format-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.facts { display: grid; gap: 14px; }
.fact { display: flex; gap: 16px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 18px 22px; box-shadow: var(--shadow-sm); }
.fact .ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 24px; flex-shrink: 0; }
.fact b { font-family: var(--font-display); font-size: 18px; display: block; }
.fact span { color: var(--muted); font-size: 14px; }
.timeline-card { background: var(--lavender-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.timeline-card h3 { font-size: 24px; margin-bottom: 22px; }
.tl { position: relative; padding-left: 30px; }
.tl::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: var(--periwinkle); opacity: .4; }
.tl .ev { position: relative; padding-bottom: 22px; }
.tl .ev:last-child { padding-bottom: 0; }
.tl .ev::before { content: ""; position: absolute; left: -30px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--indigo); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--periwinkle); }
.tl .ev b { font-family: var(--font-display); display: block; font-size: 16px; }
.tl .ev span { color: var(--muted); font-size: 14px; }
.tl-note { margin-top: 22px; font-size: 13.5px; color: var(--muted); font-style: italic; }

/* ---------- Partners ---------- */
.partners { background: var(--lavender-2); }
.partner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.partner-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-sm); }
.partner-card img { height: 34px; width: auto; margin-bottom: 22px; }
.partner-card h3 { font-size: 22px; margin-bottom: 12px; }
.partner-card p { color: var(--muted); font-size: 15.5px; margin-bottom: 16px; }
.partner-card ul { list-style: none; display: grid; gap: 10px; }
.partner-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; }
.partner-card li::before { content: "✓"; color: var(--mint); font-weight: 800; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--line); border-radius: 18px; background: #fff; overflow: hidden; transition: box-shadow .2s; }
.faq-item.open { box-shadow: var(--shadow); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 26px; cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: 17px; }
.faq-q .pm { font-size: 24px; color: var(--indigo); transition: transform .25s; }
.faq-item.open .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; color: var(--muted); }
.faq-a p { padding: 0 26px 24px; font-size: 15.5px; }

/* ---------- Join CTA ---------- */
.apply { overflow: hidden; }
.join-card {
  background: var(--ink);
  border-radius: var(--radius-lg); padding: 64px 48px; color: var(--lavender); position: relative; overflow: hidden;
  text-align: center;
}
.join-card > * { position: relative; z-index: 1; }
.join-card h2 { color: #fff; font-size: clamp(30px, 4vw, 46px); margin: 16px auto 14px; max-width: 720px; }
.join-card p { color: rgba(255,255,255,.92); font-size: 18px; max-width: 600px; margin: 0 auto 28px; }
.join-btn { box-shadow: 0 18px 40px rgba(0,0,0,.22); }
.join-meta { margin-top: 20px; font-size: 14px; color: rgba(255,255,255,.85); font-weight: 600; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 64px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer p { font-size: 14.5px; max-width: 340px; }
.footer h4 { color: #fff; font-family: var(--font-display); font-size: 15px; margin-bottom: 16px; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer a { font-size: 14.5px; transition: color .15s; }
.footer a:hover { color: var(--periwinkle); }
.footer-bottom { padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13.5px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* color helpers — all drawn from Pave's purple family, no third hue */
.bg-indigo, .bg-coral, .bg-mint, .bg-sky { background: #6665FE; }
.bg-yellow, .bg-pink { background: #9B99FF; }
.soft-indigo, .soft-coral, .soft-mint, .soft-sky { background: #F5F5FF; color: #6665FE; }
.soft-yellow, .soft-pink { background: #FAFAFF; color: #6665FE; }

/* ============================================================
   Pave Academy landing page
   ============================================================ */
/* Pave wordmark + "Academy" descriptor, matching how Pave locks up its own logo */
.acad-brand { display: flex; align-items: center; gap: 14px; line-height: 1; }
.acad-brand .acad-mark { height: 26px; width: auto; }
/* Two links, not one: the Pave wordmark leaves for pavehq.com, "Academy" stays in-site. */
.acad-mark-link { display: flex; align-items: center; transition: opacity .18s ease; }
.acad-mark-link:hover { opacity: .65; }
a.acad-label { transition: color .18s ease; }
a.acad-label:hover { color: var(--indigo); }
.acad-divider { width: 1px; height: 22px; background: var(--line); }
.acad-label { font-family: var(--font-display); font-weight: 500; font-size: 19px; letter-spacing: .01em; color: var(--ink); }
.acad-brand-light .acad-divider { background: rgba(245,245,255,.28); }
.acad-brand-light .acad-label { color: var(--lavender); }
.footer .acad-brand { margin-bottom: 18px; }

.hero-academy { padding: 170px 0 90px; }
.hero-centered { max-width: 860px; margin: 0 auto; text-align: center; }
.hero-centered h1 { font-size: clamp(34px, 4.6vw, 56px); margin: 22px 0 20px; }
.hero-centered p.lead { max-width: 680px; margin: 0 auto 34px; }
.hero-cta-center { justify-content: center; }

/* why we exist — three pillars */
.pillar { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; }
.pillar .ic { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; font-size: 26px; margin-bottom: 20px; }
.pillar h3 { font-size: 20px; margin-bottom: 10px; }
.pillar p { color: var(--muted); font-size: 15.5px; }

.mission-card {
  margin-top: 32px; background: var(--ink); color: var(--lavender);
  border-radius: var(--radius-lg); padding: 48px; text-align: center; position: relative; overflow: hidden;
}
.mission-label { font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--periwinkle); }
.mission-card blockquote {
  font-family: var(--font-display); font-weight: 600; line-height: 1.28; letter-spacing: -.02em;
  font-size: clamp(24px, 3.2vw, 36px); max-width: 860px; margin: 18px auto 0;
}
.mission-note { margin-top: 18px; font-size: 15.5px; color: rgba(245,245,255,.72); }

/* programs */
.programs-sec { background: var(--lavender-2); }
.prog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.prog-card {
  display: flex; flex-direction: column; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px 28px;
  color: inherit; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
a.prog-card:hover { border-color: var(--indigo); box-shadow: var(--shadow); transform: translateY(-4px); }
.prog-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.prog-status {
  font-family: var(--font-display); font-weight: 700; font-size: 11.5px; letter-spacing: .12em;
  text-transform: uppercase; padding: 6px 13px; border-radius: var(--radius-pill);
}
.prog-status.live  { background: var(--indigo); color: var(--lavender-2); }
.prog-status.early { background: var(--lavender); color: var(--indigo); border: 1px solid var(--line); }
.prog-status.soon  { background: transparent; color: var(--muted); border: 1px solid var(--line); }
.prog-num { font-family: var(--font-display); font-weight: 700; font-size: 30px; color: var(--line); line-height: 1; }
.prog-card h3 { font-size: 25px; margin-bottom: 12px; }
.prog-lead { color: var(--muted); font-size: 15.5px; margin-bottom: 20px; }
.prog-meta { list-style: none; display: grid; gap: 9px; margin-bottom: 24px; }
.prog-meta li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink); }
.prog-meta li::before { content: "—"; color: var(--periwinkle); flex-shrink: 0; }
.prog-cta { margin-top: auto; font-family: var(--font-display); font-weight: 600; font-size: 15.5px; color: var(--indigo); }
.prog-cta-muted { color: var(--muted); }
.prog-card-soon { background: transparent; border-style: dashed; }

/* inside pave — capability chips */
.chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 940px; margin: 0 auto; }
.chip {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 11px 20px; font-family: var(--font-display); font-weight: 500; font-size: 15px; color: var(--ink);
}
.chips-note { text-align: center; margin-top: 28px; font-size: 14.5px; color: var(--muted); }

/* ---------- Get involved / inquiry form ---------- */
.involve-sec { background: var(--lavender-2); }
.involve-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.involve-card {
  display: flex; flex-direction: column; text-align: left; width: 100%;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 26px 26px; color: inherit; cursor: pointer; font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.involve-card:hover { border-color: var(--indigo); box-shadow: var(--shadow); transform: translateY(-4px); }
.involve-card.selected { border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(102,101,254,.14); }
.involve-card .ic { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; font-size: 26px; margin-bottom: 20px; }
.involve-card h3 { font-size: 21px; margin-bottom: 8px; }
.involve-card p { color: var(--muted); font-size: 15px; margin-bottom: 22px; }
.involve-cta { margin-top: auto; font-family: var(--font-display); font-weight: 600; font-size: 15.5px; color: var(--indigo); }

.inquiry-panel { max-width: 680px; margin: 32px auto 0; }
.inquiry-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; display: grid; gap: 18px; }
.inquiry-form h3 { font-size: 24px; }
.inquiry-sub { color: var(--muted); font-size: 15px; margin-top: -10px; }
.inquiry-form label { display: grid; gap: 8px; font-family: var(--font-display); font-weight: 600; font-size: 14.5px; color: var(--ink); }
.inquiry-form .opt { font-weight: 400; color: var(--muted); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.inquiry-form input, .inquiry-form textarea {
  font-family: var(--font-body); font-size: 15.5px; color: var(--ink);
  background: var(--lavender-2); border: 1px solid var(--line); border-radius: 12px;
  padding: 13px 16px; width: 100%; resize: vertical;
}
.inquiry-form input:focus, .inquiry-form textarea:focus { outline: none; border-color: var(--indigo); background: var(--white); }
.form-status { font-size: 14.5px; text-align: center; min-height: 1em; }
.form-status.ok { color: var(--indigo); font-weight: 600; }
.form-status.err { color: #B4232B; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .scholar, .format-grid, .partner-grid, .apply-card { grid-template-columns: 1fr; }
  .hero-visual { display: none; }   /* hide the hero image when stacked so the headline leads */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer-top > div:first-child { grid-column: 1 / -1; }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .who-grid, .out-grid, .how-grid, .modules, .prog-grid, .involve-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-card { padding: 36px 28px; }
  .hero-academy { padding: 140px 0 70px; }
  .how-card:not(:last-child)::after { display: none; }   /* arrows only make sense in a single row */
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 16px; right: 16px;
    background: #fff; border-radius: 18px; padding: 18px; box-shadow: var(--shadow); gap: 16px; margin-top: 8px;
    z-index: 200;
  }
  .nav-toggle { display: flex; }
  .nav-join-btn { display: none; }            /* remove the Join button from the nav bar on small screens */
  .nav-links.open a.mobile-join { display: block; color: var(--indigo); font-weight: 700; }
  .scholar, .apply-card { padding: 32px; }
}
@media (max-width: 620px) {
  .section-pad { padding: 64px 0; }
  .who-grid, .out-grid, .how-grid, .modules, .form-row, .prog-grid, .involve-grid, .field-row { grid-template-columns: 1fr; }
  .inquiry-form { padding: 26px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .trust { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero { padding: 130px 0 60px; }
  .float-card { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .countdown .unit { min-width: 60px; }
  .apply-card, .scholar { padding: 26px; }
}
