/* ===== Hotchkiss Future Entrepreneurs & Leadership – standalone styles ===== */

:root {
  --hero-blue: #0f2b5b;
  --hero-blue-hover: #0a1f44;
  --navy-soft: #3a5891;
  --slate: #5a6a85;
  --crimson: #0f2b5b; /* legacy alias */
  --gold: #5a6a85;    /* legacy alias */
  --ivory: #F5F2EC;
  --ink: #1A1A1A;
  --display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --body: 'Source Sans 3', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4 { font-family: var(--display); margin: 0; line-height: 1.15; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-md { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 760px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 640px) { .container, .container-md, .container-sm { padding: 0 32px; } }

.uppercase { text-transform: uppercase; letter-spacing: 0.18em; font-weight: 700; }
.eyebrow {
  font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase;
  font-weight: 700; color: var(--hero-blue); margin: 0 0 20px;
}
.eyebrow.gold { color: var(--gold); }
.section-heading {
  font-family: var(--display);
  font-weight: 600;
  color: var(--hero-blue);
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.section-heading .accent { color: var(--hero-blue); }
.text-white { color: #fff; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  border-radius: 9999px; padding: 0 24px; height: 44px;
  font-weight: 600; font-size: 14px; transition: background-color .2s, color .2s;
  white-space: nowrap;
}
.btn-primary { background: var(--hero-blue); color: #fff; }
.btn-primary:hover { background: var(--hero-blue-hover); }
.btn-lg { height: 48px; padding: 0 32px; font-size: 16px; box-shadow: 0 10px 25px -10px rgba(15,43,91,.55); }
.btn-xl { height: 56px; padding: 0 40px; font-size: 16px; }
.btn-white { background: #fff; color: var(--hero-blue); }
.btn-white:hover { background: rgba(255,255,255,.9); }
.icon { width: 18px; height: 18px; flex: 0 0 auto; }
.icon-sm { width: 16px; height: 16px; }

/* ===== TopNav ===== */
.topnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(242, 238, 230, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.topnav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 20px;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
@media (min-width: 640px) { .topnav-inner { padding: 0 32px; } }
.topnav-logo { display: flex; align-items: center; gap: 12px; }
.topnav-logo img { height: 28px; width: auto; object-fit: contain; }
.topnav-logo .seal { height: 40px; }
.topnav-divider { display: inline-block; height: 32px; width: 1px; background: rgba(0,0,0,.15); }
.topnav-links { display: none; align-items: center; gap: 32px; }
@media (min-width: 768px) { .topnav-links { display: flex; } }
.topnav-links a { font-size: 14px; font-weight: 500; color: var(--ink); transition: opacity .15s; }
.topnav-links a:hover { opacity: .7; }
.topnav-burger {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px; background: none; color: var(--ink);
}
@media (min-width: 768px) { .topnav-burger { display: none; } }
.mobile-menu {
  display: none;
  border-top: 1px solid rgba(0,0,0,.06); background: var(--ivory);
}
.mobile-menu.open { display: block; }
.mobile-menu-inner { padding: 16px 20px; display: flex; flex-direction: column; gap: 12px; }
.mobile-menu a { font-size: 14px; font-weight: 500; padding: 8px 0; color: var(--ink); }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding-top: 64px;
  min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.35) 100%);
}
.hero-dots {
  position: absolute; inset: 0; opacity: .15;
  background-image: radial-gradient(rgba(255,255,255,.6) 1px, transparent 1px);
  background-size: 22px 22px;
}
.hero-content { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; padding: 80px 24px; text-align: center; color: #fff; }
.hero-eyebrow { display: flex; flex-direction: column; align-items: center; margin-bottom: 12px; }
.hero-eyebrow span {
  color: rgba(255,255,255,.8); font-size: 11px; letter-spacing: .32em;
  text-transform: uppercase; font-weight: 600; margin-bottom: 4px;
}
.hero-eyebrow img { height: 80px; width: auto; filter: drop-shadow(0 4px 20px rgba(0,0,0,.5)); }
@media (min-width: 640px) { .hero-eyebrow img { height: 96px; } }

.hero-title {
  color: #fff; font-family: var(--display); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.05;
  text-shadow: 0 2px 30px rgba(0,0,0,.45);
  font-size: clamp(40px, 8vw, 96px);
}
.hero-title .line-mid {
  display: block;
  font-size: clamp(28px, 6vw, 88px);
  white-space: nowrap;
}
.hero-title .line { display: block; }

.hero-card {
  margin: 40px auto 0; max-width: 720px;
  border-radius: 16px; padding: 24px 28px;
  background: rgba(255,255,255,0.10); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
}
.hero-card p { color: #fff; font-size: 18px; font-weight: 500; line-height: 1.6; }
.hero-card .meta {
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.2);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 8px 20px; color: #fff; font-size: 15px; font-weight: 600;
}
.hero-card .meta .item { display: inline-flex; align-items: center; gap: 8px; }
.hero-card .meta .dot { opacity: .6; }
.hero-actions { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ===== Partnership banner ===== */
.partner-banner {
  background: var(--ivory);
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.partner-banner-inner {
  max-width: 1280px; margin: 0 auto; padding: 28px 20px;
  display: flex; align-items: center; justify-content: center; gap: 20px;
}
@media (min-width: 640px) { .partner-banner-inner { padding: 28px 32px; gap: 28px; } }
.partner-line { display: none; height: 1px; width: 80px; background: rgba(0,0,0,.25); }
@media (min-width: 640px) { .partner-line { display: block; } }
@media (min-width: 768px) { .partner-line { width: 130px; } }
.partner-banner-inner .label {
  font-size: 11px; letter-spacing: .32em; text-transform: uppercase;
  font-weight: 700; white-space: nowrap; color: var(--ink);
}
.partner-banner-inner img { height: 36px; width: auto; object-fit: contain; }
@media (min-width: 768px) { .partner-banner-inner img { height: 48px; } }

/* ===== Generic sections ===== */
section { position: relative; }
.section-pad { padding: 56px 20px; }
.section-pad-lg { padding: 80px 20px; }
@media (min-width: 768px) { .section-pad-lg { padding: 110px 20px; } }
@media (min-width: 640px) { .section-pad, .section-pad-lg { padding-left: 32px; padding-right: 32px; } }

/* ===== About ===== */
.about-grid {
  display: grid; gap: 64px; align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-grid p { color: #4b5563; font-size: 17px; line-height: 1.65; margin-bottom: 16px; }
.about-image-wrap { position: relative; }
.about-image-wrap img { width: 100%; aspect-ratio: 4/5; object-fit: cover; box-shadow: 0 25px 50px -12px rgba(0,0,0,.25); border-radius: 2px; }
.about-image-card {
  position: absolute; bottom: -24px; left: -24px;
  background: #fff; padding: 20px;
  max-width: 220px;
  border-top: 4px solid var(--gold);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,.1);
  display: none;
}
@media (min-width: 768px) { .about-image-card { display: block; } }
.about-image-card .label { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: #6b7280; font-weight: 600; margin-bottom: 4px; }
.about-image-card .name { font-size: 14px; font-weight: 600; line-height: 1.25; }

/* ===== Outcomes (dark section + carousel) ===== */
.outcomes-section { background: #0f2b5b; padding: 56px 20px; }
@media (min-width: 640px) { .outcomes-section { padding: 56px 32px; } }
.outcomes-header { max-width: 640px; margin-bottom: 56px; }
.outcomes-header .eyebrow { color: var(--gold); }
.outcomes-header h2 { color: #fff; font-family: var(--display); font-weight: 600; font-size: clamp(28px, 4vw, 48px); }

.carousel { position: relative; }
.carousel-viewport { overflow: hidden; }
.carousel-track {
  display: flex;
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}
.carousel-page {
  min-width: 100%;
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
  padding: 0 4px;
}
@media (min-width: 768px) { .carousel-page { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.outcome-card {
  padding: 40px 24px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
}
.outcome-card .img-wrap { height: 96px; width: 96px; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; }
@media (min-width: 640px) { .outcome-card .img-wrap { height: 112px; width: 112px; } }
.outcome-card img { width: 100%; height: 100%; object-fit: contain; }
.outcome-card h3 { font-size: 22px; font-weight: 600; color: #fff; margin-bottom: 10px; font-family: var(--display); }
.outcome-card p { font-size: 16px; color: rgba(255,255,255,.75); line-height: 1.6; max-width: 360px; }

.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 40px; }
.carousel-arrow {
  height: 40px; width: 40px; border-radius: 9999px;
  border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.1);
  color: #fff; display: inline-flex; align-items: center; justify-content: center;
  transition: background-color .2s, color .2s;
}
.carousel-arrow:hover { background: #fff; color: #000; }
.carousel-dots { display: flex; align-items: center; gap: 8px; }
.carousel-dot {
  height: 6px; width: 10px; border-radius: 9999px;
  background: rgba(255,255,255,.3); transition: width .25s, background-color .25s;
}
.carousel-dot.active { width: 28px; background: #D4A937; }

/* ===== Program details ===== */
.details-grid {
  display: grid; gap: 32px; align-items: stretch;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .details-grid { grid-template-columns: 4fr 8fr; gap: 40px; } }
.details-image {
  position: relative; overflow: hidden; border-radius: 2px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
  min-height: 380px;
}
.details-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.details-image .grad {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.65) 100%);
}
.details-image .caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px; color: #fff; }
.details-image .caption .label { font-size: 10px; letter-spacing: .28em; text-transform: uppercase; font-weight: 600; color: var(--gold); margin-bottom: 4px; }
.details-image .caption .name { font-family: var(--display); font-size: 18px; font-weight: 600; line-height: 1.3; }

.details-list { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .details-list { grid-template-columns: 1fr 1fr; } }
.detail-row {
  display: flex; align-items: center; gap: 16px;
  padding: 20px;
  border-radius: 6px; border: 1px solid rgba(0,0,0,.1);
  background: #fff; transition: box-shadow .2s;
}
.detail-row:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,.08); }
.detail-row .ico { height: 80px; width: 80px; flex: 0 0 auto; display: flex; align-items: center; justify-content: center; }
.detail-row .ico img { width: 100%; height: 100%; object-fit: contain; }
.detail-row .label { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; font-weight: 600; color: #6b7280; margin-bottom: 6px; }
.detail-row .value { font-size: 17px; font-weight: 600; color: #111827; line-height: 1.35; white-space: pre-line; }
.detail-row .value .hl { color: var(--crimson); }

/* ===== Schedule ===== */
.schedule-banner {
  position: relative; overflow: hidden; border-radius: 2px;
  margin-bottom: 56px; box-shadow: 0 20px 25px -5px rgba(0,0,0,.1);
}
.schedule-banner img { width: 100%; height: 224px; object-fit: cover; }
@media (min-width: 768px) { .schedule-banner img { height: 320px; } }
@media (min-width: 1024px) { .schedule-banner img { height: 420px; } }
.schedule-banner .grad {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,43,91,0) 40%, rgba(15,43,91,.55) 100%);
}
.schedule-banner .caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px; color: #fff; }
@media (min-width: 768px) { .schedule-banner .caption { padding: 40px; } }
.schedule-banner .caption .label { font-size: 12px; letter-spacing: .28em; text-transform: uppercase; font-weight: 700; opacity: .9; margin-bottom: 8px; }
.schedule-banner .caption .name { font-family: var(--display); font-size: 24px; font-weight: 600; line-height: 1.2; }
@media (min-width: 768px) { .schedule-banner .caption .name { font-size: 30px; } }

.schedule-grid {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .schedule-grid { grid-template-columns: 280px 1fr; gap: 48px; } }

.day-rail { display: flex; flex-direction: row; gap: 8px; overflow-x: auto; padding-bottom: 8px; }
@media (min-width: 1024px) {
  .day-rail { flex-direction: column; overflow: visible; padding-bottom: 0; position: sticky; top: 96px; align-self: start; }
}
.day-tab {
  flex: 0 0 auto; text-align: left;
  padding: 16px 20px; border: 1px solid rgba(0,0,0,.08);
  background: #fff; color: var(--ink);
  transition: background-color .2s, color .2s, border-color .2s;
}
@media (min-width: 1024px) { .day-tab { width: 100%; } }
.day-tab.active { background: var(--hero-blue); color: #fff; border-color: var(--hero-blue); }
.day-tab .row { display: flex; align-items: center; gap: 12px; }
.day-tab .num {
  font-family: var(--display); font-size: 24px; font-weight: 600; line-height: 1;
  color: var(--hero-blue); opacity: .55;
}
.day-tab.active .num { color: #fff; opacity: 1; }
.day-tab .name { font-family: var(--display); font-size: 14px; font-weight: 600; white-space: nowrap; }
.day-tab .date {
  font-size: 12px; text-transform: uppercase; letter-spacing: .15em; margin-top: 2px;
  opacity: .55;
}
.day-tab.active .date { opacity: .8; }

.day-card { background: #fff; border: 1px solid rgba(0,0,0,.08); box-shadow: 0 1px 2px rgba(0,0,0,.04); }
.day-head { padding: 28px 28px; border-bottom: 1px solid rgba(0,0,0,.08); }
@media (min-width: 640px) { .day-head { padding: 28px 40px; } }
.day-head .label { font-size: 12px; letter-spacing: .28em; text-transform: uppercase; font-weight: 600; color: var(--slate); margin-bottom: 12px; }
.day-head h3 { font-family: var(--display); font-size: 24px; font-weight: 600; line-height: 1.25; color: var(--hero-blue); }
@media (min-width: 768px) { .day-head h3 { font-size: 30px; } }

.day-body { padding: 32px 28px; display: flex; flex-direction: column; gap: 40px; }
@media (min-width: 640px) { .day-body { padding: 32px 40px; } }
.section-block .section-label-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.section-block .section-label-row .bullet { width: 6px; height: 6px; border-radius: 9999px; background: var(--hero-blue); }
.section-block .section-label-row .label { font-size: 12px; letter-spacing: .28em; text-transform: uppercase; font-weight: 700; color: var(--hero-blue); }
.section-block .section-label-row .line { flex: 1; height: 1px; background: rgba(0,0,0,.08); }

.timeline { position: relative; padding-left: 24px; border-left: 1px solid rgba(15,43,91,.15); }
.timeline-item { position: relative; padding-bottom: 24px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item .dot {
  position: absolute; left: -29px; top: 6px;
  width: 10px; height: 10px; border-radius: 9999px;
  background: #fff; border: 2px solid var(--hero-blue);
}
.timeline-row { display: grid; grid-template-columns: 1fr; gap: 4px 24px; }
@media (min-width: 768px) { .timeline-row { grid-template-columns: 120px 1fr; } }
.timeline-time { font-size: 15px; font-weight: 600; color: var(--hero-blue); letter-spacing: .02em; }
.timeline-title { font-family: var(--display); font-size: 17px; font-weight: 600; color: #111827; line-height: 1.35; display: flex; align-items: flex-start; gap: 8px; }
.timeline-title .star { color: var(--hero-blue); font-size: 11px; margin-top: 6px; }
.timeline-desc { font-size: 15px; color: #6b7280; line-height: 1.6; margin-top: 6px; }

.day-foot {
  padding: 14px 28px; border-top: 1px solid rgba(0,0,0,.08);
  font-size: 12px; color: #6b7280;
  display: flex; align-items: center; gap: 8px;
}
@media (min-width: 640px) { .day-foot { padding: 14px 40px; } }
.day-foot .star { color: var(--hero-blue); }

/* ===== Hotchkiss + HPAIR cards ===== */
.venue-card { background: #fff; border-radius: 2px; box-shadow: 0 1px 3px rgba(0,0,0,.06); overflow: hidden; display: grid; grid-template-columns: 1fr; }
@media (min-width: 768px) { .venue-card { grid-template-columns: 1fr 1fr; } }
.venue-card .image { position: relative; min-height: 320px; }
@media (min-width: 768px) { .venue-card .image { min-height: 420px; } }
.venue-card .image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.venue-card .body { padding: 32px; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 768px) { .venue-card .body { padding: 48px; } }
.venue-card .head { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; }
.venue-card .head img { height: 96px; width: 96px; object-fit: contain; }
@media (min-width: 768px) { .venue-card .head img { height: 112px; width: 112px; } }
.venue-card .label { font-size: 13px; letter-spacing: .25em; text-transform: uppercase; color: #374151; font-weight: 700; margin-bottom: 4px; }
.venue-card h3 { font-family: var(--display); font-weight: 700; color: var(--hero-blue); font-size: 30px; line-height: 1.2; }
@media (min-width: 768px) { .venue-card h3 { font-size: 36px; } }
.venue-card p { font-size: 17px; color: #4b5563; line-height: 1.65; margin-bottom: 20px; }
.venue-card p:last-child { margin-bottom: 0; }
.venue-card .motto { font-style: italic; color: var(--crimson); }

.hpair-card { background: #fff; border-radius: 2px; box-shadow: 0 1px 3px rgba(0,0,0,.06); overflow: hidden; }
.hpair-card .top { padding: 32px; display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) { .hpair-card .top { padding: 48px; grid-template-columns: 1fr 1fr; gap: 56px; } }
.hpair-card h3 { font-family: var(--display); font-weight: 700; color: var(--crimson); font-size: 30px; line-height: 1.15; margin-bottom: 32px; }
@media (min-width: 768px) { .hpair-card h3 { font-size: 36px; } }
.hpair-card .logo-box {
  border: 1px solid #e5e7eb; padding: 24px; background: #fff; max-width: 360px;
  display: inline-flex; align-items: center; justify-content: center;
}
.hpair-card .logo-box img { height: 96px; width: auto; object-fit: contain; }
@media (min-width: 768px) { .hpair-card .logo-box img { height: 112px; } }
.hpair-card p { font-size: 15px; color: #4b5563; line-height: 1.7; margin-bottom: 20px; }
.hpair-card p:last-child { margin-bottom: 0; }
.hpair-card .strong { font-weight: 600; color: var(--crimson); }
.hpair-card .harvard-img { position: relative; width: 100%; height: 256px; }
@media (min-width: 768px) { .hpair-card .harvard-img { height: 384px; } }
.hpair-card .harvard-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ===== Mentors ===== */
.mentors-stack { display: flex; flex-direction: column; gap: 56px; }
@media (min-width: 768px) { .mentors-stack { gap: 80px; } }
.mentor-grid { display: grid; gap: 40px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .mentor-grid.left { grid-template-columns: 340px 1fr; gap: 56px; }
  .mentor-grid.right { grid-template-columns: 1fr 340px; gap: 56px; }
}
@media (min-width: 1024px) {
  .mentor-grid.left { grid-template-columns: 380px 1fr; }
  .mentor-grid.right { grid-template-columns: 1fr 380px; }
}
.mentor-image { position: relative; width: 100%; max-width: 320px; margin: 0 auto; }
@media (min-width: 1024px) { .mentor-image { max-width: 360px; } }
.mentor-grid.left .mentor-image { margin-left: 0; }
.mentor-grid.right .mentor-image { margin-right: 0; margin-left: auto; }
.mentor-image .frame { position: absolute; inset: 0; transform: translate(-16px, -16px); width: 100%; height: 100%; background: var(--crimson); }
.mentor-image .photo-wrap { position: relative; aspect-ratio: 1/1; overflow: hidden; background: #e5e7eb; }
.mentor-image .photo-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.mentor-text h3 { font-family: var(--display); font-weight: 700; color: var(--crimson); font-size: 30px; line-height: 1.2; margin-bottom: 12px; }
@media (min-width: 768px) { .mentor-text h3 { font-size: 36px; } }
.mentor-text .role { font-size: 13px; text-transform: uppercase; letter-spacing: .15em; font-weight: 600; color: #6b7280; margin-bottom: 20px; }
.mentor-text p { font-size: 17px; color: #4b5563; line-height: 1.7; }

/* ===== Testimonials (simple slider) ===== */
.testimonials { background: #0f2b5b; padding: 84px 20px; }
@media (min-width: 640px) { .testimonials { padding: 88px 32px; } }
.testimonials .testimonials-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 992px) {
  .testimonials .testimonials-layout { grid-template-columns: minmax(360px, 460px) minmax(0, 1fr); gap: 48px; }
}
.testimonials .header { max-width: 460px; }
.testimonials .badge {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,.95);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .22em;
}
.testimonials h2 { font-family: var(--display); color: #fff; font-weight: 600; font-size: clamp(46px, 5vw, 68px); line-height: 1.04; letter-spacing: -0.015em; }
.testimonials .subtitle { color: rgba(255,255,255,.82); margin-top: 20px; font-size: 18px; line-height: 1.62; max-width: 440px; }
@media (max-width: 991px) { .testimonials .subtitle { font-size: 18px; max-width: none; } }
.testimonials .stage { position: relative; }
.t-card {
  background: #F4F2EE;
  border-radius: 7px;
  padding: 36px 34px;
  box-shadow: 0 20px 45px -16px rgba(0,0,0,.4);
  display: none;
}
.t-card.active { display: block; }
@media (min-width: 640px) { .t-card { padding: 42px 38px; } }
.t-card .stars { color: #0f2b5b; letter-spacing: 3px; margin-bottom: 18px; font-size: 15px; }
.t-card blockquote {
  margin: 0;
  color: #2d3340;
  font-size: 17px;
  line-height: 1.65;
  font-style: italic;
}
.t-card .quote-mark {
  color: #d8d3cb;
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
  margin-right: 8px;
  vertical-align: top;
}
.t-card .meta {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(15,43,91,.08);
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-card .avatar {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: #0f2b5b;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}
.t-card .who { font-weight: 600; color: #111827; font-size: 1rem; line-height: 1.2; }
.t-card .where { font-size: 15px; color: #4b5563; margin-top: 2px; }
.testimonials .nav { display: flex; align-items: center; gap: 10px; margin-top: 30px; }
.testimonials .header .nav { justify-content: flex-start; }
@media (max-width: 991px) { .testimonials .header .nav { justify-content: center; } .testimonials .header { max-width: 720px; margin: 0 auto; text-align: center; } }
.testimonials .dot {
  width: 9px; height: 9px; border-radius: 9999px;
  background: #0a1f44; transition: background-color .2s, width .2s;
}
.testimonials .dot.active { width: 32px; background: #fff; }

/* ===== Investment ===== */
.invest-card {
  display: grid; grid-template-columns: 1fr;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
  border-radius: 2px; overflow: hidden;
  border: 1px solid rgba(0,0,0,.05);
}
.invest-section { padding-top: 62px; padding-bottom: 62px; }
@media (min-width: 768px) { .invest-section { padding-top: 78px; padding-bottom: 78px; } }
@media (min-width: 1024px) { .invest-card { grid-template-columns: 2fr 3fr; } }
.invest-price {
  position: relative; overflow: hidden;
  background: var(--hero-blue); color: #fff;
  padding: 40px;
  display: flex; flex-direction: column; justify-content: space-between;
}
@media (min-width: 768px) { .invest-price { padding: 56px; } }
.invest-price .bg-img {
  position: absolute; inset: 0; opacity: .2;
  background-size: cover; background-position: center;
}
.invest-price .top, .invest-price .bot { position: relative; }
.invest-price .label-sm {
  font-size: 13px; text-transform: uppercase; letter-spacing: .25em; font-weight: 700;
  color: rgba(255,255,255,.7); margin-bottom: 24px;
}
.invest-price .price { font-family: var(--display); font-weight: 700; font-size: clamp(42px, 7vw, 72px); line-height: 1; margin-bottom: 12px; white-space: nowrap; }
.invest-price .per { font-size: 14px; text-transform: uppercase; letter-spacing: .15em; color: rgba(255,255,255,.8); margin-bottom: 40px; }
.invest-price .bot { padding-top: 32px; border-top: 1px solid rgba(255,255,255,.2); }
.invest-price .bot p { color: rgba(255,255,255,.95); font-size: 17px; line-height: 1.65; }
.invest-list { background: #fff; padding: 40px; }
@media (min-width: 768px) { .invest-list { padding: 56px; } }
.invest-list .label-sm { font-size: 13px; text-transform: uppercase; letter-spacing: .25em; font-weight: 700; color: var(--crimson); margin-bottom: 24px; }
.invest-list .grid { display: grid; grid-template-columns: 1fr; gap: 20px 40px; }
@media (min-width: 640px) { .invest-list .grid { grid-template-columns: 1fr 1fr; } }
.invest-item { display: flex; align-items: flex-start; gap: 12px; font-size: 17px; color: #1f2937; line-height: 1.4; }
.invest-item .ico {
  width: 36px; height: 36px; border-radius: 6px;
  background: rgba(15,43,91,.08); color: var(--crimson);
  display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
}
.invest-item .ico .icon { width: 20px; height: 20px; }
.invest-item .label { padding-top: 6px; }

/* ===== FAQ Accordion ===== */
.faq-list { width: 100%; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,.1); }
.faq-trigger {
  width: 100%; text-align: left;
  padding: 20px 0;
  font-size: 17px; font-weight: 500;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--body);
  transition: color .2s;
}
.faq-trigger .chev { width: 18px; height: 18px; transition: transform .25s; flex: 0 0 auto; color: var(--hero-blue); }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-content { max-height: 0; overflow: hidden; transition: max-height .35s ease; color: #374151; font-size: 16px; line-height: 1.7; }
.faq-item.open .faq-content { padding-bottom: 20px; }

/* ===== Final CTA ===== */
.cta-image { position: relative; height: 320px; background-position: center; background-size: cover; }
@media (min-width: 768px) { .cta-image { height: 520px; } }
.cta-wrap { position: relative; z-index: 2; padding: 0 20px; margin-top: -176px; }
@media (min-width: 768px) { .cta-wrap { margin-top: -224px; } .cta-wrap { padding: 0 32px; } }
.cta-card {
  max-width: 880px; margin: 0 auto;
  padding: 48px 32px;
  background: var(--hero-blue);
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.4);
}
@media (min-width: 768px) { .cta-card { padding: 64px; } }
.cta-card h2 { color: #fff; font-family: var(--display); font-weight: 600; font-size: clamp(28px, 4vw, 44px); margin-bottom: 24px; }
.cta-card p { color: rgba(255,255,255,.85); font-size: 17px; max-width: 540px; margin: 0 auto 40px; }

/* ===== Footer ===== */
.site-foot { background: var(--ivory); padding: 56px 20px; }
@media (min-width: 640px) { .site-foot { padding: 56px 32px; } }
.foot-inner { max-width: 1100px; margin: 0 auto; }
.foot-logos { display: flex; align-items: center; justify-content: center; gap: 40px; }
@media (min-width: 768px) { .foot-logos { gap: 56px; } }
.foot-logos img { height: 80px; width: auto; object-fit: contain; }
@media (min-width: 768px) { .foot-logos img { height: 96px; } }
.foot-divider-vert { width: 1px; height: 64px; background: rgba(0,0,0,.18); }
@media (min-width: 768px) { .foot-divider-vert { height: 80px; } }
.foot-tag { text-align: center; margin-top: 24px; color: #374151; font-family: var(--display); font-size: 17px; }
@media (min-width: 768px) { .foot-tag { font-size: 18px; } }
.foot-rule { height: 1px; background: rgba(0,0,0,.12); margin-top: 40px; }
.foot-bottom {
  margin-top: 24px;
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  gap: 12px; font-size: 14px; color: #374151;
}
@media (min-width: 640px) { .foot-bottom { flex-direction: row; } }
.foot-bottom a { transition: color .2s; }
.foot-bottom a:hover { color: #000; }
.foot-bottom .right { display: inline-flex; align-items: center; gap: 6px; }

/* ===== Reveal animations (only when JS enabled) ===== */
.js-reveal .reveal { opacity: 0; transform: translateY(16px); transition: opacity .8s ease, transform .8s ease; }
.js-reveal .reveal.in { opacity: 1; transform: none; }

/* Helpers */
.hidden-mobile { display: none; }
@media (min-width: 768px) { .hidden-mobile { display: initial; } }

/* ===================== APPLY PAGE ===================== */
.apply-body { background: #e5e7eb; color: var(--ink); font-family: var(--body); min-height: 100vh; }

.apply-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: var(--hero-blue);
  border-bottom: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
}
.apply-nav-inner { max-width: 1100px; margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; }
.apply-back {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.8); transition: color .2s;
  font-size: 14px; font-weight: 500;
}
.apply-back:hover { color: #fff; }

.apply-hero { padding-top: 64px; background: var(--hero-blue); position: relative; }
.apply-hero-img { position: relative; height: 224px; overflow: hidden; }
@media (min-width: 640px) { .apply-hero-img { height: 288px; } }
@media (min-width: 768px) { .apply-hero-img { height: 360px; } }
.apply-hero-img > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 80%; }
.apply-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,43,91,0.55) 0%, rgba(15,43,91,0.35) 45%, rgba(15,43,91,0.85) 100%);
}
.apply-hero-content {
  position: relative; z-index: 2; height: 100%;
  max-width: 720px; margin: 0 auto; padding: 0 24px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: #fff;
}
.apply-hero-eyebrow {
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  font-weight: 700; color: rgba(255,255,255,.85); margin-bottom: 12px;
}
.apply-hero-content h1 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(28px, 5vw, 48px); line-height: 1.1; letter-spacing: -0.01em;
}
.apply-hero-sub { margin-top: 16px; font-size: 15px; color: rgba(255,255,255,.85); }

.apply-form-section { background: var(--hero-blue); padding: 0 24px 96px; margin-top: -40px; position: relative; z-index: 2; }
@media (min-width: 768px) { .apply-form-section { margin-top: -64px; } }
.apply-form-wrap { max-width: 640px; margin: 0 auto; }

.apply-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
  padding: 32px;
  border-radius: 2px;
}
@media (min-width: 768px) { .apply-card { padding: 40px; } }

.apply-form-head { margin-bottom: 28px; }
.apply-form-head h3 { font-family: var(--display); font-weight: 600; color: var(--hero-blue); font-size: 24px; margin-bottom: 6px; }
.apply-form-head p { font-size: 14px; color: #6b7280; }

.apply-group { margin-bottom: 28px; }
.apply-group-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .22em;
  color: #6b7280; margin-bottom: 12px;
}
.apply-fields { display: flex; flex-direction: column; gap: 12px; }
.apply-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.apply-field { display: flex; flex-direction: column; gap: 6px; }
.apply-field label { font-size: 14px; font-weight: 500; color: var(--ink); }
.apply-field input, .apply-field textarea {
  width: 100%;
  padding: 10px 12px;
  font: inherit; color: var(--ink);
  background: #fff;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 6px;
  transition: border-color .15s, box-shadow .15s;
}
.apply-field input:focus, .apply-field textarea:focus {
  outline: none;
  border-color: var(--hero-blue);
  box-shadow: 0 0 0 3px rgba(15,43,91,.12);
}
.apply-field textarea { resize: vertical; min-height: 110px; line-height: 1.5; }

.apply-submit {
  width: 100%; padding: 16px 24px;
  background: var(--hero-blue); color: #fff;
  font-weight: 600; font-size: 16px; letter-spacing: .02em;
  border-radius: 9999px;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  transition: opacity .15s;
  margin-top: 8px;
}
.apply-submit:hover { opacity: .95; }
.apply-submit:disabled { opacity: .6; cursor: not-allowed; }

.apply-partner {
  margin-top: 24px; padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,.08);
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.apply-partner .label { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; font-weight: 700; color: #6b7280; }
.apply-partner img { height: 32px; width: auto; object-fit: contain; }

.apply-foot { text-align: center; font-size: 12px; color: #9ca3af; margin-top: 24px; }

.apply-success { text-align: center; padding: 40px 0; }
.apply-success .ico {
  width: 64px; height: 64px; border-radius: 9999px;
  background: rgba(15,43,91,.08); color: var(--hero-blue);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.apply-success h3 { font-family: var(--display); font-weight: 600; color: var(--hero-blue); font-size: 24px; margin-bottom: 12px; }
.apply-success p { font-size: 14px; color: #6b7280; max-width: 420px; margin: 0 auto; line-height: 1.6; }
.apply-success .hl { font-weight: 600; color: #000; }
