/* ============ DESIGN TOKENS ============ */
:root {
  --emerald: #2f7d4f;
  --emerald-deep: #1f5a38;
  --emerald-dark: #133b26;
  --teal-deep: #0e3a3a;
  --gold: #e8b84a;
  --gold-deep: #cfa033;
  --gold-ink: #8c6a0a; /* readable gold for text on light backgrounds */
  --ink: #20302a;
  --muted: #5c6b63;
  --white: #ffffff;
  --offwhite: #f7f9f6;
  --line: #e4eae6;
  --shadow: 0 10px 30px rgba(19, 59, 38, 0.10);
  --shadow-lg: 0 20px 50px rgba(19, 59, 38, 0.16);
  --radius: 16px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
}

/* ============ BASE ============ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.container { width: min(1140px, 92%); margin: 0 auto; }
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.15; letter-spacing: .2px; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; font-family: var(--sans); font-weight: 600; font-size: 1rem;
  padding: .85rem 1.5rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn--gold { background: var(--gold); color: #3a2c06; box-shadow: 0 8px 20px rgba(232,184,74,.35); }
.btn--gold:hover { background: var(--gold-deep); transform: translateY(-2px); }
.btn--emerald { background: var(--emerald); color: #fff; box-shadow: 0 8px 20px rgba(47,125,79,.30); }
.btn--emerald:hover { background: var(--emerald-deep); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--emerald-deep); border-color: var(--emerald); }
.btn--outline:hover { background: rgba(47,125,79,.08); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--disabled, .btn[disabled] { background: #e7ebe8; color: #9aa6a0; cursor: not-allowed; box-shadow: none; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.88); backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line); transition: box-shadow .25s ease;
}
.nav.is-scrolled { box-shadow: var(--shadow); }
.nav__inner { display: flex; align-items: center; gap: 1.2rem; height: 70px; }
.brand { display: flex; align-items: center; gap: .55rem; color: var(--emerald-deep); }
.brand__mark { color: var(--emerald); display: inline-flex; }
.brand__word { font-family: var(--serif); font-weight: 700; font-size: 1.5rem; color: var(--emerald-deep); }
.brand__word--light { color: #fff; }
.nav__links { display: flex; gap: 1.6rem; margin-left: auto; font-weight: 500; }
.nav__links a { color: var(--ink); position: relative; padding: .2rem 0; }
.nav__links a:hover { color: var(--emerald); }
.nav__actions { display: flex; align-items: center; gap: 1rem; margin-left: 1.4rem; }
.nav__login { font-weight: 600; color: var(--emerald-deep); }
.nav__login:hover { color: var(--emerald); text-decoration: underline; }
.nav__cta { padding: .6rem 1.15rem; font-size: .95rem; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; margin-left: auto; }
.nav__burger span { width: 26px; height: 2.5px; background: var(--emerald-deep); border-radius: 2px; transition: .25s; }

/* ============ HERO ============ */
.hero {
  text-align: center; padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(232,184,74,.10), transparent 70%),
    linear-gradient(180deg, var(--offwhite), #fff);
}
.hero__logo { color: var(--emerald); display: flex; justify-content: center; margin-bottom: .8rem; }
.hero__name { font-size: clamp(2.6rem, 7vw, 4.4rem); font-weight: 700; color: var(--emerald-deep); }
.hero__tagline { font-family: var(--serif); font-size: clamp(1.3rem, 3.4vw, 1.9rem); color: var(--emerald); margin-top: .3rem; font-weight: 700; }
.hero__sub { max-width: 640px; margin: 1rem auto 0; color: var(--muted); font-size: 1.12rem; }
.hero__buttons { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: 2rem; }
.trust-strip {
  list-style: none; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: center;
  margin-top: 2.4rem; font-size: .9rem; color: var(--muted);
}
.trust-strip li { position: relative; padding-left: 1.2rem; }
.trust-strip li::before { content: "\2713"; position: absolute; left: 0; color: var(--emerald); font-weight: 700; }

/* ============ SECTIONS ============ */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section[id] { scroll-margin-top: 96px; }
.section__head { max-width: 760px; margin: 0 auto 2.6rem; text-align: center; }
.eyebrow {
  display: inline-block; font-family: var(--sans); font-weight: 700; font-size: .8rem;
  letter-spacing: 2px; text-transform: uppercase; color: var(--emerald);
  background: rgba(47,125,79,.10); padding: .35rem .85rem; border-radius: 999px; margin-bottom: 1rem;
}
.eyebrow--light { color: var(--gold); background: rgba(232,184,74,.16); }
.section__head h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); color: var(--emerald-deep); }
.lead { margin-top: 1rem; color: var(--muted); font-size: 1.1rem; }
.lead--light { color: rgba(255,255,255,.82); }

/* ============ GRIDS / FEATURES ============ */
.grid { display: grid; gap: 1.2rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.feature {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature__ico {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-deep)); color: #fff;
  font-weight: 700; font-size: 1.05rem; margin-bottom: 1rem;
}
.feature h3 { font-size: 1.25rem; color: var(--emerald-deep); margin-bottom: .4rem; }
.feature p { color: var(--muted); font-size: .98rem; }
.feature--dark { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); box-shadow: none; }
.feature--dark h3 { color: #fff; }
.feature--dark p { color: rgba(255,255,255,.74); }
.feature--dark .feature__ico { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: #3a2c06; }

/* ============ MENTORS ============ */
.mentors { margin-top: 3rem; scroll-margin-top: 96px; }
.mentors__title, .plans__title { text-align: center; font-size: 1.6rem; color: var(--emerald-deep); margin-bottom: 1.6rem; }
.mentors__sub { max-width: 760px; text-align: center; color: var(--muted); font-size: 1rem; margin: 0 auto 1.4rem; }

/* ----- Founder / centre figure ----- */
.founder {
  display: grid; grid-template-columns: 260px 1fr; gap: 1.8rem; align-items: stretch;
  background: linear-gradient(135deg, #ffffff, var(--offwhite));
  border: 2px solid var(--emerald); border-radius: 22px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.founder__photo {
  position: relative; min-height: 280px; overflow: hidden;
  background: linear-gradient(160deg, #cfe3d6, #aecdb9);
}
.founder__photo img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 26%; display: block;
}
.founder__body { padding: 1.8rem 1.8rem 1.8rem 0; }
.founder__tag {
  display: inline-block; font-weight: 700; font-size: .72rem; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--emerald); background: rgba(47,125,79,.12);
  padding: .3rem .75rem; border-radius: 999px; margin-bottom: .7rem;
}
.founder__body h4 { font-size: 2rem; color: var(--emerald-deep); line-height: 1; }
.founder__role { font-family: var(--serif); font-size: 1.2rem; color: var(--emerald); font-weight: 700; margin-top: .2rem; }
.founder__bio { color: var(--muted); margin-top: .8rem; font-size: 1rem; }
/* ============ MENTEE PLACEMENTS (social proof band) ============ */
.placements { padding: clamp(2.6rem, 5vw, 4rem) 0; background: var(--offwhite); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.placements__proof { text-align: center; margin-top: clamp(2rem, 4vw, 3rem); }
.placements__label { font-family: var(--serif); font-size: clamp(1.15rem, 2.6vw, 1.55rem); color: var(--muted); margin-bottom: 1.6rem; }
.placements__label strong { color: var(--emerald-deep); }

.logo-flash { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.1rem; }
.logo-pill {
  flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  height: 104px; padding: 0 2.2rem; background: #fff; border: 1px solid var(--line);
  border-radius: 18px; box-shadow: 0 8px 22px rgba(19,59,38,.07);
  transition: transform .2s ease, box-shadow .2s ease;
}
.logo-pill img { display: block; height: 48px; width: auto; max-width: 230px; object-fit: contain; }
.logo-pill img.is-icon { height: 64px; border-radius: 8px; }

/* All visible at once, full colour; each pulses one by one in sequence */
.logo-flash .logo-pill { animation: logoFlash 8s ease-in-out infinite; }
.logo-flash .logo-pill:nth-child(1) { animation-delay: 0s; }
.logo-flash .logo-pill:nth-child(2) { animation-delay: 1s; }
.logo-flash .logo-pill:nth-child(3) { animation-delay: 2s; }
.logo-flash .logo-pill:nth-child(4) { animation-delay: 3s; }
.logo-flash .logo-pill:nth-child(5) { animation-delay: 4s; }
.logo-flash .logo-pill:nth-child(6) { animation-delay: 5s; }
.logo-flash .logo-pill:nth-child(7) { animation-delay: 6s; }
.logo-flash .logo-pill:nth-child(8) { animation-delay: 7s; }
.logo-flash .logo-pill:hover { animation-play-state: paused; transform: translateY(-6px); box-shadow: var(--shadow-lg); }
@keyframes logoFlash {
  0%, 100% { transform: translateY(0) scale(1); box-shadow: 0 8px 22px rgba(19,59,38,.07); border-color: var(--line); }
  6%       { transform: translateY(-8px) scale(1.08); box-shadow: 0 18px 42px rgba(232,184,74,.45); border-color: var(--gold); }
  13%      { transform: translateY(0) scale(1); box-shadow: 0 8px 22px rgba(19,59,38,.07); border-color: var(--line); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-flash .logo-pill { animation: none; }
}
@media (max-width: 560px) {
  .logo-pill { height: 80px; padding: 0 1.4rem; border-radius: 14px; }
  .logo-pill img { height: 34px; max-width: 150px; }
  .logo-pill img.is-icon { height: 46px; }
}

.mentor { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .2s ease; }
.mentor:hover { transform: translateY(-4px); }
.mentor__photo {
  aspect-ratio: 4/5; width: 100%;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(232,184,74,.25), transparent 60%),
    linear-gradient(160deg, #d7e6dc, #b9d3c2);
  position: relative;
}
.mentor__photo::after {
  content: "Photo"; position: absolute; inset: 0; display: grid; place-items: center;
  color: rgba(31,90,56,.45); font-weight: 600; letter-spacing: 1px; font-size: .8rem;
}
.mentor figcaption { padding: 1rem; }
.mentor figcaption strong { display: block; color: var(--emerald-deep); font-size: 1rem; }
.mentor figcaption span { display: block; color: var(--muted); font-size: .85rem; margin-top: .2rem; }

/* ----- Premium stacked mentor features (alternating) ----- */
.mentor-stack { display: grid; gap: clamp(2rem, 5vw, 3.6rem); margin-top: 2.4rem; }
.mentor-feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.4rem, 4vw, 3.2rem);
  align-items: center;
  background: var(--offwhite); border: 1px solid var(--line); border-radius: 26px;
  box-shadow: var(--shadow); padding: clamp(1.4rem, 3vw, 2.6rem);
}
.mentor-media {
  justify-self: center; width: 100%; overflow: hidden; border-radius: 20px;
  background: #fff; border: 1px solid var(--line); box-shadow: 0 12px 28px rgba(19,59,38,.12);
}
.mentor-media--wide { aspect-ratio: 16 / 9; max-width: 560px; }
.mentor-media--portrait { aspect-ratio: 4 / 5; max-width: 400px; }
.mentor-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.mentor-badge {
  display: inline-block; font-weight: 700; font-size: .72rem; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--emerald); background: rgba(47,125,79,.12);
  padding: .38rem .9rem; border-radius: 999px;
}
.mentor-name { font-size: clamp(1.5rem, 3vw, 1.95rem); color: var(--emerald-deep); margin-top: .9rem; }
.mentor-name::after {
  content: ""; display: block; width: 52px; height: 3px; margin-top: .6rem; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
}
.mentor-role { font-family: var(--serif); font-size: 1.18rem; color: var(--emerald); font-weight: 600; margin-top: .55rem; }
.mentor-copy { color: var(--muted); margin-top: .8rem; font-size: 1.02rem; }
.mentor-creds { list-style: none; display: grid; grid-template-columns: 1fr; gap: .5rem; margin-top: 1.3rem; }
.mentor-creds--two { grid-template-columns: 1fr 1fr; gap: .5rem 1.6rem; }
.mentor-creds li { position: relative; padding-left: 1.7rem; color: var(--ink); font-size: .95rem; line-height: 1.4; }
.mentor-creds li::before {
  content: "\2713"; position: absolute; left: 0; top: .12rem;
  width: 1.1rem; height: 1.1rem; border-radius: 50%; background: var(--emerald); color: #fff;
  font-size: .62rem; font-weight: 700; display: grid; place-items: center;
}
.mentor-highlight {
  display: inline-flex; align-items: center; gap: .7rem; margin-top: 1.2rem;
  padding: .75rem .95rem; border: 1px solid rgba(47,125,79,.24); border-radius: 14px;
  background: #fff; color: var(--emerald-deep); font-weight: 700;
  box-shadow: 0 8px 20px rgba(19,59,38,.07);
}
.mentor-highlight__icon {
  flex: 0 0 auto; width: 1.15rem; height: 1.15rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  box-shadow: 0 0 0 4px rgba(232,184,74,.18);
}
.mentor-awards {
  margin-top: 1rem; padding: 1.05rem; border-radius: 18px;
  border: 1px solid rgba(47,125,79,.22);
  background: linear-gradient(135deg, rgba(47,125,79,.10), rgba(255,255,255,.92));
}
.mentor-awards h5 {
  display: flex; align-items: center; gap: .7rem; font-family: var(--serif);
  font-size: 1.15rem; color: var(--emerald-deep); line-height: 1.2; margin-bottom: .85rem;
}
.mentor-awards h5::before,
.mentor-awards h5::after {
  content: ""; display: block; width: 24px; height: 2px; border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
}
.mentor-awards h5::after { flex: 1; min-width: 18px; opacity: .7; }
.mentor-awards__chips { display: flex; flex-wrap: wrap; gap: .55rem; }
.mentor-awards__chips span {
  display: inline-flex; align-items: center; justify-content: center;
  height: 4.08rem; min-width: 6.95rem; padding: .55rem 1rem; border-radius: 999px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(207,160,51,.34);
  color: var(--ink);
  box-shadow: 0 6px 14px rgba(19,59,38,.06);
}
.mentor-awards__chips img {
  display: block; width: auto; height: 2.82rem; max-width: 10.65rem; object-fit: contain;
}

/* Desktop: alternate image/text for rhythm */
@media (min-width: 821px) {
  .mentor-stack .mentor-feature:nth-child(even) .mentor-media { order: 2; }
}
/* Mobile: single column, image always first */
@media (max-width: 820px) {
  .mentors__title,
  .mentors__sub {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
  .mentor-feature { grid-template-columns: 1fr; gap: 1.5rem; }
  .mentor-media--wide, .mentor-media--portrait { max-width: 460px; }
  .mentor-creds--two { grid-template-columns: 1fr; }
  .mentor-awards h5 {
    justify-content: flex-start;
  }
  .mentor-awards h5::before {
    width: 18px;
  }
  .mentor-awards h5::after {
    flex: 0 0 34px;
  }
}

/* ============ PLANS / PRICING ============ */
.plans { margin-top: 3.2rem; }
.plans__cards { display: grid; grid-template-columns: 1.15fr 1fr; gap: 1.4rem; align-items: stretch; }
.plans__cards--single { grid-template-columns: minmax(0, 480px); justify-content: center; }
.pcard {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: 20px; padding: 2.2rem 1.8rem 1.8rem; box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.pcard--primary { border: 2px solid var(--emerald); box-shadow: var(--shadow-lg); }
.pcard--ai { border: 2px solid var(--gold); }
.pcard--soon { background: #f4f6f4; opacity: .85; }
.ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%); white-space: nowrap;
  background: var(--gold); color: #3a2c06; font-weight: 700; font-size: .78rem;
  padding: .45rem 1rem; border-radius: 999px; box-shadow: 0 6px 16px rgba(232,184,74,.4);
}
.ribbon--ai { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); }
.pcard__badge {
  align-self: flex-start; background: #dfe5e1; color: #6b7a72; font-weight: 700; font-size: .72rem;
  letter-spacing: 1px; text-transform: uppercase; padding: .3rem .7rem; border-radius: 999px; margin-bottom: .6rem;
}
.pcard h4 { font-size: 1.5rem; color: var(--emerald-deep); margin-bottom: .4rem; }
.pcard__price { display: flex; align-items: baseline; gap: .4rem; margin-bottom: 1.2rem; }
.pcard__price .amt { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; color: var(--ink); }
.pcard__price .amt--muted { font-size: 1.15rem; color: var(--muted); }
.pcard__price .per { color: var(--muted); font-weight: 500; }
.pcard__list { list-style: none; display: grid; gap: .55rem; margin-bottom: 1.6rem; }
.pcard__list li { position: relative; padding-left: 1.5rem; color: var(--ink); font-size: .98rem; }
.pcard__list li::before { content: "\2713"; position: absolute; left: 0; color: var(--emerald); font-weight: 700; }
.pcard__list--muted li { color: var(--muted); }
.pcard__list--muted li::before { color: #9aa6a0; }
.pcard__cta { margin-top: auto; }
.soft-cta { text-align: center; margin-top: 1.8rem; color: var(--muted); font-size: 1.05rem; }
.soft-cta a { color: var(--emerald); font-weight: 600; }

/* ----- Value card (no-pricing, mission-first) ----- */
.value-card {
  max-width: 900px; margin: 0 auto; background: #fff; border: 1px solid var(--line);
  border-radius: 22px; box-shadow: var(--shadow-lg); padding: clamp(1.6rem, 4vw, 2.6rem);
}
.value-card--narrow { max-width: 620px; }
.value-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .85rem 1.8rem; }
.value-card--narrow .value-list { grid-template-columns: 1fr; }
.value-list li { position: relative; padding-left: 2rem; color: var(--ink); line-height: 1.45; }
.value-list li::before {
  content: "\2713"; position: absolute; left: 0; top: .12rem;
  width: 1.25rem; height: 1.25rem; border-radius: 50%; background: var(--emerald); color: #fff;
  font-size: .72rem; font-weight: 700; display: grid; place-items: center;
}
.value-note {
  margin-top: 1.8rem; background: rgba(47,125,79,.07); border: 1px solid rgba(47,125,79,.18);
  border-radius: 16px; padding: 1.5rem 1.6rem; text-align: center;
}
.value-note p { color: var(--ink); margin-bottom: 1.2rem; font-size: 1.02rem; }
.value-note strong { color: var(--emerald-deep); }
@media (max-width: 600px) { .value-list { grid-template-columns: 1fr; } }

/* ============ TWO DISTINCT PROGRAMS ============ */
.tracks { background: var(--white); }
.tracks__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.track {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: 20px; padding: 2rem; box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease;
}
.track:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.track--jee { border-top: 5px solid var(--emerald); }
.track--ai { border-top: 5px solid var(--gold); background: linear-gradient(160deg, #fff, #f4f8f5); }
.track__badge {
  align-self: flex-start; font-weight: 700; font-size: .72rem; letter-spacing: 1px; text-transform: uppercase;
  color: var(--emerald); background: rgba(47,125,79,.12); padding: .38rem .85rem; border-radius: 999px; margin-bottom: 1rem;
}
.track__badge--ai { color: var(--gold-ink); background: rgba(232,184,74,.22); }
.track h3 { font-size: 1.55rem; color: var(--emerald-deep); margin-bottom: .55rem; }
.track p { color: var(--muted); margin-bottom: 1.6rem; }
.track .btn { margin-top: auto; align-self: flex-start; }
@media (max-width: 820px) { .tracks__grid { grid-template-columns: 1fr; } }

/* ============ AI SECTION (distinct band) ============ */
.ai {
  background: linear-gradient(135deg, var(--emerald-dark), var(--teal-deep));
  color: #fff;
}
.ai .section__head h2 { color: #fff; }
.ai .plans__title { color: #fff; }

/* ----- AI page: dark hero ----- */
.hero--ai { background: linear-gradient(135deg, var(--emerald-dark), var(--teal-deep)); color: #fff; }
.hero--ai .hero__logo { color: var(--gold); }
.hero--ai .hero__name { color: #fff; }
.hero--ai .hero__tagline { color: var(--gold); }
.hero--ai .hero__sub { color: rgba(255,255,255,.82); }
.hero--ai .trust-strip { color: rgba(255,255,255,.82); }
.hero--ai .trust-strip li::before { color: var(--gold); }
.hero--ai .btn--outline { color: #fff; border-color: rgba(255,255,255,.55); }
.hero--ai .btn--outline:hover { background: rgba(255,255,255,.12); }
.page-eyebrow { display: inline-block; font-weight: 700; font-size: .78rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); background: rgba(232,184,74,.16); padding: .35rem .9rem; border-radius: 999px; margin-bottom: 1rem; }

/* ============ WHY / BANYAN STORY ============ */
.why { background: var(--offwhite); }
.why__inner { display: flex; align-items: center; gap: clamp(1.5rem, 5vw, 4rem); flex-wrap: wrap; }
.why__mark { color: var(--emerald); flex: 0 0 auto; margin: 0 auto; }
.why__text { flex: 1 1 360px; }
.why__text h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); color: var(--emerald-deep); margin-top: .4rem; }
.why__text p { margin-top: 1rem; color: var(--muted); font-size: 1.1rem; }

/* ============ CONTACT / FORM ============ */
.contact { background: linear-gradient(180deg, #fff, var(--offwhite)); }
.caption { font-size: 1rem; }
.form {
  max-width: 720px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem;
  background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 2rem; box-shadow: var(--shadow);
}
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: .92rem; color: var(--ink); }
.field label .opt { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; padding: .75rem .9rem; border: 1.5px solid var(--line);
  border-radius: 10px; background: #fff; color: var(--ink); transition: border .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(47,125,79,.15);
}
.field textarea { resize: vertical; }
.form__success {
  grid-column: 1 / -1; background: rgba(47,125,79,.10); border: 1px solid rgba(47,125,79,.3);
  color: var(--emerald-deep); padding: 1rem 1.1rem; border-radius: 12px; font-weight: 500;
}

/* ============ FOOTER ============ */
.footer { background: var(--emerald-dark); color: rgba(255,255,255,.82); }
.footer__inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 1.6rem;
  padding: 3rem 0 2rem;
}
.footer__brand-row { display: flex; align-items: center; gap: .5rem; }
.footer__brand .brand__mark { color: var(--gold); }
.footer__tag { font-family: var(--serif); font-size: 1.05rem; color: #fff; margin-top: .7rem; }
.footer__tag--muted { font-family: var(--sans); font-size: .88rem; color: rgba(255,255,255,.7); margin-top: .35rem; max-width: 280px; }
.footer__copy { font-size: .8rem; color: rgba(255,255,255,.5); text-align: center; margin-top: .6rem; }
.footer__col h4 { color: #fff; font-size: 1.1rem; margin-bottom: .6rem; }
.footer__col p { font-size: .95rem; }
.footer__col a { color: rgba(255,255,255,.85); }
.footer__col a:hover { color: var(--gold); text-decoration: underline; }
.footer__scholarship { color: var(--gold); font-weight: 600; }
.footer__fine { border-top: 1px solid rgba(255,255,255,.14); padding: 1.2rem 0; }
.footer__fine p { font-size: .82rem; color: rgba(255,255,255,.6); text-align: center; max-width: 760px; margin: 0 auto; }

/* ============ SCROLL REVEAL ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 920px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .nav__links, .nav__actions { display: none; }
  .nav__burger { display: flex; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0;
    background: #fff; padding: 1rem 6%; gap: 1rem; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .nav.is-open .nav__actions {
    display: flex; flex-direction: column; align-items: stretch; position: absolute; top: calc(70px + 150px);
    left: 0; right: 0; background: #fff; padding: 0 6% 1.2rem; gap: .8rem; margin-left: 0; box-shadow: var(--shadow);
  }
  .grid--3 { grid-template-columns: 1fr; }
  .jee .section__head {
    text-align: left;
    margin-bottom: 1.8rem;
  }
  .jee .section__head .eyebrow {
    margin-bottom: .8rem;
  }
  .jee .section__head h2 {
    font-size: clamp(1.45rem, 6.4vw, 1.85rem);
    line-height: 1.18;
  }
  .jee .lead {
    font-size: 1rem;
    line-height: 1.65;
  }
  .jee .grid--3 {
    counter-reset: offer-step;
    gap: .9rem;
  }
  .jee .feature {
    counter-increment: offer-step;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    grid-template-areas:
      "icon title"
      "icon copy";
    column-gap: .95rem;
    align-items: start;
    padding: 1.05rem;
    border-radius: 18px;
    background:
      linear-gradient(135deg, rgba(47,125,79,.06), rgba(255,255,255,.96)),
      #fff;
    box-shadow: 0 10px 24px rgba(19,59,38,.08);
    position: relative;
    overflow: hidden;
  }
  .jee .feature::after {
    content: "0" counter(offer-step);
    position: absolute;
    top: .75rem;
    right: .9rem;
    color: rgba(47,125,79,.20);
    font-family: var(--serif);
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1;
  }
  .jee .feature__ico {
    grid-area: icon;
    width: 46px;
    height: 46px;
    margin: .1rem 0 0;
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(47,125,79,.20);
  }
  .jee .feature h3 {
    grid-area: title;
    max-width: calc(100% - 2.2rem);
    margin: 0 0 .25rem;
    font-size: 1.08rem;
    line-height: 1.25;
  }
  .jee .feature p {
    grid-area: copy;
    font-size: .94rem;
    line-height: 1.55;
  }
  .plans__cards { grid-template-columns: 1fr; }
  .jee .plans {
    margin-top: 2.4rem;
  }
  .jee .plans__title {
    text-align: left;
    font-size: 1.45rem;
    margin-bottom: 1rem;
  }
  .jee .value-card {
    padding: 1rem;
    border-radius: 20px;
    box-shadow: 0 14px 30px rgba(19,59,38,.11);
  }
  .jee .value-list {
    grid-template-columns: 1fr;
    gap: .65rem;
  }
  .jee .value-list li {
    min-height: 3rem;
    padding: .82rem .9rem .82rem 2.75rem;
    border: 1px solid rgba(47,125,79,.13);
    border-radius: 14px;
    background: rgba(247,249,246,.86);
    font-size: .95rem;
    text-align: left;
  }
  .jee .value-list li::before {
    left: .85rem;
    top: .9rem;
    width: 1.15rem;
    height: 1.15rem;
  }
  .jee .value-note {
    text-align: left;
    padding: 1.1rem;
  }
  .jee .soft-cta {
    text-align: left;
    margin-top: 1.2rem;
    font-size: 1rem;
  }
  .form { grid-template-columns: 1fr; }
  .founder { grid-template-columns: 1fr; }
  .founder__body { padding: 0 1.6rem 1.6rem; }
  .founder__photo { min-height: 220px; }
}
@media (max-width: 560px) {
  .grid--4 { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .hero__buttons .btn { width: 100%; }
}
