:root {
  /* ===== Palette extracted from the Spectrum Edu logo ===== */
  --ink: #082f63;          /* Primary — Deep Navy Blue */
  --ink-soft: #123a72;     /* primary, lifted panel */
  --ink-line: #3a5b8c;     /* primary, hairlines on dark */
  --paper: #ffffff;        /* primary, inverse surface — pure white */
  --paper-dim: #f2f5fa;    /* light grey */
  --paper-ink: #0b1a2e;    /* text color used on light/paper sections */
  --paper-blue: linear-gradient(160deg, #ffffff 0%, #eef3fb 55%, #e4ecf9 100%); /* soft blue gradient */

  --amber: #f2b705;        /* Accent — Luxury Gold */
  --amber-bright: #ffd43d; /* hottest accent — bright gold highlight */
  --amber-soft: #ffe89a;
  --amber-deep: #c99500;

  --red: #d61f26;          /* Secondary — Premium Red */
  --red-deep: #9c1218;

  --ink-rgb: 8, 47, 99;
  --amber-rgb: 242, 183, 5;
  --red-rgb: 214, 31, 38;

  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Solid, saturated gold "stat band" surfaces — the richness anchor of the page */
.section-amber {
  background: linear-gradient(135deg, var(--amber-deep) 0%, var(--amber) 55%, var(--amber-bright) 100%);
  color: var(--ink);
}

/* Soft blue gradient alternation — breaks up the navy, still on-palette */
.section-light {
  background: var(--paper-blue);
  color: var(--paper-ink);
}
.section-light .eyebrow { color: var(--red); }
.section-light .hairline { background: linear-gradient(90deg, transparent, rgba(8,47,99,0.15) 20%, rgba(8,47,99,0.15) 80%, transparent); }

/* Pure white surface for cards / high-contrast panels */
.section-white {
  background: var(--paper);
  color: var(--paper-ink);
}

.glow-strong {
  box-shadow: 0 30px 80px -20px rgba(var(--amber-rgb), 0.45);
}

.glow-red {
  box-shadow: 0 20px 60px -18px rgba(var(--red-rgb), 0.45);
}

* { box-sizing: border-box; }

html {
  background: var(--paper);
  color-scheme: light;
  overflow-x: hidden;
  max-width: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper-blue);
  color: var(--paper-ink);
  font-family: 'Inter', system-ui, sans-serif;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

.font-display {
  font-family: 'Fraunces', Georgia, serif;
}

.font-mono {
  font-family: 'IBM Plex Mono', monospace;
}

::selection {
  background: var(--amber);
  color: var(--ink);
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--ink-line); border-radius: 4px; }

/* Custom cursor */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--amber);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(var(--amber-rgb), 0.6);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  will-change: transform;
  transition: width .3s var(--ease-soft), height .3s var(--ease-soft), opacity .3s;
}

@media (max-width: 900px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 40;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container-x {
  width: 100%;
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
}

.grad-text {
  background: linear-gradient(90deg, var(--paper) 0%, var(--amber-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn-magnetic {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}

.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--amber-soft);
}

.hairline {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--ink-line) 20%, var(--ink-line) 80%, transparent);
}

.card-glass {
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
}

.card-glass-light {
  background: linear-gradient(160deg, rgba(34,23,8,0.05), rgba(34,23,8,0.02));
  border: 1px solid rgba(34,23,8,0.08);
}

.hero-sweep {
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255,255,255,0.0) 35%,
    rgba(255,207,3,0.14) 50%,
    rgba(255,255,255,0.0) 65%,
    transparent 100%
  );
  transform: skewX(-12deg);
}

.hero-slide img { display: block; will-change: transform; transform-origin: center; }

/* Transparent brand logo — used bare (no card) across header/footer/loader */
.brand-logo {
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.35));
}

/* Cinematic hero — full-bleed backdrop treatment */
.hero-cine-slide img { display: block; will-change: transform; transform-origin: center; }
.hero-vignette {
  background:
    linear-gradient(180deg, rgba(7,26,48,0.35) 0%, rgba(7,26,48,0.3) 30%, rgba(7,26,48,0.55) 65%, rgba(7,26,48,0.88) 100%),
    linear-gradient(100deg, rgba(7,26,48,0.75) 0%, rgba(7,26,48,0.35) 40%, rgba(7,26,48,0.05) 68%, transparent 100%);
}
@keyframes floatParticle {
  0%, 100% { transform: translateY(0) translateX(0); opacity: var(--p-op, 0.5); }
  50% { transform: translateY(-26px) translateX(8px); opacity: calc(var(--p-op, 0.5) * 1.6); }
}
.hero-particle { animation: floatParticle 7s ease-in-out infinite; }
@keyframes pulseRing {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}
.hero-pulse-ring { animation: pulseRing 2.4s ease-out infinite; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(4%, -6%) scale(1.08); }
  66% { transform: translate(-3%, 4%) scale(0.96); }
}
.blob-drift { animation: drift 14s ease-in-out infinite; }
.blob-drift-slow { animation: drift 22s ease-in-out infinite reverse; }

/* ============ Extra layout helpers (replacing Tailwind utility usage) ============ */

img { max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

/* Split-type char animation base state */
.split-char { display: inline-block; will-change: transform, opacity; }

/* Reveal (scroll fade-up) base state */
.reveal { opacity: 0; }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background .5s, backdrop-filter .5s, border-color .5s, box-shadow .5s;
  border-bottom: 1px solid transparent;
  background: transparent;
}
.site-header.scrolled {
  background: rgba(var(--ink-rgb), 0.72);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid rgba(var(--amber-rgb), 0.15);
  box-shadow: 0 10px 30px -14px rgba(0,0,0,0.35);
}
.header-logo {  width: auto; transition: transform .3s; height: 65px;   object-fit: contain; }
.header-logo:hover { transform: scale(1.05); }
@media (min-width: 768px) { .header-logo { height: 80px; } }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2.25rem;
}
.nav-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  transition: color .3s;
  position: relative;
}
.nav-link:hover { color: var(--amber-soft); }
.nav-link::after {
  content: "";
  position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--amber);
  transition: width .3s;
}
.nav-link:hover::after { width: 100%; }

.header-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.625rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--amber-rgb), 0.5);
  color: var(--paper);
  transition: all .3s;
}
.header-cta:hover { background: var(--amber); color: var(--ink); }

.menu-btn {
  background: none;
  border: none;
  color: var(--paper);
  cursor: pointer;
  display: block;
}
.menu-lines { width: 24px; display: flex; flex-direction: column; gap: 6px; }
.menu-lines span { height: 1px; background: currentColor; transition: transform .3s, opacity .3s; }
.menu-btn.open .menu-lines span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open .menu-lines span:nth-child(2) { opacity: 0; }
.menu-btn.open .menu-lines span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(var(--amber-rgb), 0.15);
  background: rgba(var(--ink-rgb), 0.94);
  backdrop-filter: blur(16px);
}
.mobile-menu.open { display: block; }
.mobile-menu-inner { display: flex; flex-direction: column; gap: 1.25rem; padding: 1.5rem 0; }
.mobile-menu-inner a { font-size: 1.125rem; color: rgba(255,255,255,0.8); }

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .header-cta { display: inline-flex; }
  .menu-btn { display: none; }
}

/* Loader */
.loader {
  position: fixed; inset: 0; z-index: 100;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 45%, var(--ink-soft) 0%, var(--ink) 65%, #04101f 100%);
}
.loader-blob {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  filter: blur(64px);
  opacity: .25;
  background: radial-gradient(circle, var(--amber) 0%, transparent 70%);
}
.loader-panel { position: relative; display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.loader-logo { height: 4rem; width: auto; }
.loader-bar-track { width: 46vw; max-width: 420px; height: 1px; background: var(--ink-line); overflow: hidden; }
.loader-bar { height: 100%; transform-origin: left; background: var(--amber); transform: scaleX(0); }
.loader-num { font-family: 'IBM Plex Mono', monospace; font-size: 0.875rem; color: rgba(255,255,255,0.5); }

@media (min-width: 768px) { .loader-logo { height: 5rem; } }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  background: var(--ink);
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-cine-slide { position: absolute; inset: 0; }
.hero-cine-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-particles-layer { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-particle-el { position: absolute; border-radius: 50%; background: var(--amber-soft); }
.hero-blob {
  position: absolute; top: 25%; left: -160px;
  width: 560px; height: 560px; border-radius: 50%;
  filter: blur(64px); opacity: .25; z-index: 1;
  background: radial-gradient(circle, var(--amber) 0%, transparent 70%);
}
.hero-sweep-el { position: absolute; inset-block: 0; width: 35%; pointer-events: none; z-index: 2; }

.hero-content { position: relative; z-index: 10; padding-top: 10rem; padding-bottom: 6rem; }
.hero-inner-max { max-width: 48rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.75rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  border-radius: 999px; padding: .375rem 1rem;
  font-size: .75rem; font-family: 'IBM Plex Mono', monospace; letter-spacing: .02em;
  background: rgba(var(--amber-rgb), .15); color: var(--amber-soft);
  border: 1px solid rgba(var(--amber-rgb), .4);
}
.hero-eyebrow { margin-bottom: 1.5rem; color: var(--amber-soft); }
.hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 13vw;
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin: 0;
}
.hero-headline em { font-style: italic; color: var(--amber-soft); }
@media (min-width: 1024px) { .hero-headline { font-size: 4.4vw; } }
.hero-sub-text { margin-top: 2rem; max-width: 36rem; font-size: 1.125rem; line-height: 1.7; color: rgba(251,243,232,.75); }

.hero-cta-row { margin-top: 2.5rem; display: flex; align-items: center; gap: 1.5rem; }
.hero-cta-primary {
  display: inline-flex; align-items: center; gap: .75rem;
  border-radius: 999px; background: var(--amber); color: var(--ink);
  font-weight: 500; padding: 1rem 1.75rem;
  transition: transform .3s;
}
.hero-cta-primary:hover { transform: scale(1.04); }
.hero-cta-primary .arrow { transition: transform .3s; display: inline-block; }
.hero-cta-primary:hover .arrow { transform: translateX(4px); }
.hero-cta-secondary { font-size: .875rem; font-weight: 500; color: rgba(251,243,232,.6); }

.hero-stats-row { margin-top: 3.5rem; display: flex; flex-wrap: wrap; gap: 2.5rem 2.5rem; font-family: 'IBM Plex Mono', monospace; }
.hero-stat-num { font-size: 1.875rem; color: var(--paper); }
.hero-stat-num .accent { color: var(--amber-soft); }
.hero-stat-label { font-size: .75rem; margin-top: .25rem; letter-spacing: .02em; color: rgba(251,243,232,.5); }

.hero-trust-row { margin-top: 3.5rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-trust-item {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .75rem; font-family: 'IBM Plex Mono', monospace;
  padding: .5rem .75rem; border-radius: .5rem;
  color: rgba(251,243,232,.7); background: rgba(251,243,232,.06);
  border: 1px solid rgba(251,243,232,.12);
}
.hero-trust-item .dot { color: var(--amber-soft); }

.hero-map-svg {
  display: none;
  position: absolute; right: 0; bottom: -1.5rem;
  width: 420px; height: auto; border-radius: 1rem;
  opacity: 0;
  background: rgba(var(--ink-rgb), .55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 70px -18px rgba(0,0,0,.6);
}
@media (min-width: 1024px) { .hero-map-svg { display: block; } }

.hero-caption-row {
  display: none;
  align-items: center; gap: .75rem;
  margin-top: 4rem;
  font-family: 'IBM Plex Mono', monospace; font-size: .75rem; letter-spacing: .02em;
  color: rgba(251,243,232,.5);
}
@media (min-width: 768px) { .hero-caption-row { display: flex; } }
.hero-caption-row .line { width: 2rem; height: 1px; background: var(--amber-soft); }

.hero-scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  z-index: 10; color: rgba(251,243,232,.45);
}
.hero-scroll-indicator span { font-size: .625rem; font-family: 'IBM Plex Mono', monospace; letter-spacing: .15em; }
.hero-scroll-indicator .stem { width: 1px; height: 2.5rem; background: linear-gradient(to bottom, var(--amber-soft), transparent); }

/* Stats band */
.stats-band { position: relative; overflow: hidden; padding-block: 4rem; }
@media (min-width: 768px) { .stats-band { padding-block: 5rem; } }
.stats-band-blob {
  position: absolute; top: -6rem; left: 25%;
  width: 24rem; height: 24rem; border-radius: 50%;
  filter: blur(64px); opacity: .3; background: var(--ink);
}
.stats-grid {
  position: relative;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem;
}
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
.stat-item { text-align: center; }
@media (min-width: 1024px) { .stat-item { text-align: left; } }
.stat-num { font-family: 'Fraunces', Georgia, serif; font-size: 3rem; }
@media (min-width: 768px) { .stat-num { font-size: 3.75rem; } }
.stat-label { margin-top: .5rem; font-size: .875rem; font-weight: 500; letter-spacing: .02em; opacity: .8; }

/* Generic section paddings */
.section-pad { position: relative; padding-block: 8rem; overflow: hidden; }
@media (min-width: 768px) { .section-pad { padding-block: 11rem; } }
.section-pad-sm { position: relative; padding-block: 8rem; overflow: hidden; }
@media (min-width: 768px) { .section-pad-sm { padding-block: 10rem; } }

.bg-blob {
  position: absolute; border-radius: 50%; filter: blur(64px); pointer-events: none;
}

/* About */
.about-header { max-width: 42rem; margin-bottom: 3.5rem; }
.about-title { font-family: 'Fraunces', Georgia, serif; font-size: 2.25rem; line-height: 1.12; color: var(--paper-ink); margin: 0; }
@media (min-width: 768px) { .about-title { font-size: 3rem; } }
.about-grid { display: grid; gap: 3.5rem; align-items: start; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1.1fr 0.9fr; } }
.about-body-col { display: flex; flex-direction: column; gap: 1.75rem; }
.about-body-col p { font-size: 1.125rem; line-height: 1.75; color: rgba(34,23,8,.68); margin: 0; }
.about-side-col { display: flex; flex-direction: column; gap: 1.25rem; }
.quick-facts { display: flex; flex-direction: column; gap: .75rem; }
.quick-fact {
  display: flex; align-items: center; gap: 1rem;
  border-radius: .75rem; padding: 1rem;
  background: rgba(34,23,8,.04); border: 1px solid rgba(34,23,8,.08);
}
.quick-fact-icon {
  width: 2.5rem; height: 2.5rem; flex-shrink: 0; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(var(--amber-rgb), .15); color: var(--amber-deep);
}
.quick-fact-icon svg { width: 17px; height: 17px; }
.quick-fact p { margin: 0; font-size: .875rem; font-weight: 500; color: rgba(34,23,8,.75); }
.vision-card { border-radius: 1rem; padding: 2rem; }
.vision-card p:first-child { margin: 0 0 .75rem; color: var(--amber-deep); }
.vision-card p:last-child { font-family: 'Fraunces', Georgia, serif; font-size: 1.5rem; font-style: italic; line-height: 1.3; color: var(--amber-deep); margin: 0; }

/* Advisors */
.advisors-header { max-width: 36rem; margin-bottom: 4rem; }
.advisors-header h2 { font-family: 'Fraunces', Georgia, serif; font-size: 2.25rem; margin: 0; }
@media (min-width: 768px) { .advisors-header h2 { font-size: 3rem; } }
.advisors-header p.desc { margin-top: 1rem; font-size: 1rem; line-height: 1.7; color: rgba(34,23,8,.6); }
.advisors-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .advisors-grid { grid-template-columns: 1.35fr 0.9fr; } }
.advisors-cards { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .advisors-cards { grid-template-columns: 1fr 1fr; } }
.advisor-card {
  position: relative; border-radius: 1rem; padding: 1.75rem; overflow: hidden;
  transition: transform .4s, box-shadow .4s;
}
.advisor-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -20px rgba(224,90,0,.35); }
.advisor-card.span-2 { grid-column: 1 / -1; }
.advisor-card-topline {
  position: absolute; top: 0; left: 0; height: 4px; width: 0;
  transition: width .5s;
  background: linear-gradient(90deg, var(--amber-deep), var(--amber-bright));
}
.advisor-card:hover .advisor-card-topline { width: 100%; }
.advisor-card-inner { position: relative; display: flex; align-items: flex-start; gap: 1rem; }
.advisor-avatar {
  flex-shrink: 0; width: 3.5rem; height: 3.5rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', Georgia, serif; font-size: 1.125rem;
  border: 1px solid rgba(var(--amber-rgb), .35);
  transition: transform .4s;
}
.advisor-card:hover .advisor-avatar { transform: scale(1.1); }
.advisor-name { font-family: 'Fraunces', Georgia, serif; font-size: 1.125rem; line-height: 1.4; margin: .25rem 0 0; }
.advisor-role { font-size: .875rem; margin-top: .375rem; line-height: 1.6; color: rgba(34,23,8,.55); }
.advisor-index { position: absolute; bottom: 1.25rem; right: 1.5rem; font-family: 'IBM Plex Mono', monospace; font-size: .75rem; color: rgba(34,23,8,.15); }
.events-card { border-radius: 1rem; padding: 2.5rem; height: fit-content; position: relative; overflow: hidden; }
.events-card h3 { font-family: 'Fraunces', Georgia, serif; font-size: 1.5rem; margin: 1rem 0; line-height: 1.4; }
.events-card p.body { line-height: 1.7; color: rgba(34,23,8,.6); margin: 0; }

/* Divisions (pinned horizontal) */
.divisions-section { position: relative; overflow: hidden; background: var(--ink); }
.divisions-track { display: flex; height: 100vh; width: max-content; }
.division-panel { width: 100vw; height: 100vh; flex-shrink: 0; position: relative; display: flex; align-items: center; overflow: hidden; }
.division-bg { position: absolute; inset: 0; }
.division-overlay { position: absolute; inset: 0; background: linear-gradient(200deg, rgba(var(--ink-rgb),.2) 0%, rgba(var(--ink-rgb),.82) 100%); }
.division-content { position: relative; z-index: 10; }
.division-eyebrow { font-family: 'IBM Plex Mono', monospace; font-size: .75rem; letter-spacing: .2em; color: rgba(255,255,255,.6); margin-bottom: 1.5rem; text-transform: uppercase; }
.division-icon-wrap {
  margin-bottom: 2rem; display: inline-flex; width: 4rem; height: 4rem;
  border-radius: 1rem; align-items: center; justify-content: center;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
}
.division-icon-wrap svg { width: 30px; height: 30px; color: #fff; }
.division-title { font-family: 'Fraunces', Georgia, serif; font-size: 2.5rem; color: #fff; max-width: 48rem; line-height: 1.03; margin: 0 0 1.5rem; }
@media (min-width: 768px) { .division-title { font-size: 4rem; } }
@media (min-width: 1024px) { .division-title { font-size: 5rem; } }
.division-body { color: rgba(255,255,255,.75); font-size: 1.125rem; max-width: 36rem; line-height: 1.7; margin-bottom: 2rem; }
.division-more { display: inline-flex; align-items: center; gap: .5rem; color: #fff; font-weight: 500; }
.division-more svg { width: 18px; height: 18px; }
.division-num-bg {
  position: absolute; bottom: -1.5rem; right: 1rem;
  font-family: 'Fraunces', Georgia, serif; font-size: 22vw; line-height: 1;
  color: rgba(255,255,255,.07); user-select: none; pointer-events: none;
}
@media (min-width: 768px) { .division-num-bg { font-size: 16vw; right: 2.5rem; } }
.divisions-caption { position: absolute; top: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 20; text-align: center; }
.divisions-caption .eyebrow { color: rgba(255,255,255,.5); }
.divisions-dots { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; gap: .5rem; z-index: 20; }
.divisions-dots span { height: 3px; border-radius: 999px; transition: all .3s; background: rgba(255,255,255,.25); width: 20px; }
.divisions-dots span.active { background: var(--amber); width: 34px; }

/* Recruitment */
.recruitment-header { max-width: 42rem; margin-bottom: 4rem; }
.recruitment-header h2 { font-family: 'Fraunces', Georgia, serif; font-size: 2.25rem; margin: 0; color: var(--paper-ink); }
@media (min-width: 768px) { .recruitment-header h2 { font-size: 3rem; } }
.recruitment-hub-row { margin-top: 1rem; display: flex; align-items: center; gap: .75rem; }
.recruitment-hub-row .line { width: 2rem; height: 1px; background: var(--amber-deep); }
.recruitment-hub-row p { font-family: 'IBM Plex Mono', monospace; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--amber-deep); margin: 0; }
.recruitment-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .recruitment-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .recruitment-grid { grid-template-columns: 1fr 1fr 1fr; } }
.recruit-card {
  position: relative; border-radius: 1rem; padding: 2rem; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between; min-height: 280px;
  transition: transform .4s, box-shadow .4s;
}
.recruit-card:hover { transform: translateY(-8px); box-shadow: 0 28px 60px -24px rgba(224,90,0,.4); }
.recruit-card-top { display: flex; align-items: center; justify-content: space-between; position: relative; }
.recruit-icon {
  width: 3rem; height: 3rem; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: rgba(var(--amber-rgb), .15); color: var(--amber-deep);
  transition: all .3s;
}
.recruit-icon svg { width: 20px; height: 20px; }
.recruit-card:hover .recruit-icon { background: var(--amber); color: var(--ink); transform: scale(1.1); }
.recruit-num { font-family: 'IBM Plex Mono', monospace; font-size: 2.25rem; color: rgba(34,23,8,.15); }
.recruit-card h3 { font-family: 'Fraunces', Georgia, serif; font-size: 1.5rem; margin: 0 0 .75rem; color: var(--paper-ink); }
.recruit-card p.body { line-height: 1.7; color: rgba(34,23,8,.6); margin: 0; }
.recruit-card.wide { grid-column: span 1; }
@media (min-width: 1024px) { .recruit-card.wide { grid-column: span 2; flex-direction: row; align-items: center; gap: 1.5rem; } }
.recruit-card.wide .recruit-icon { flex-shrink: 0; width: 4rem; height: 4rem; }
.recruit-card.wide .recruit-icon svg { width: 24px; height: 24px; }
.recruit-card.wide .recruit-body-flex { flex: 1; }
.recruit-card.wide .recruit-title-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.recruit-card.accent {
  background: linear-gradient(155deg, var(--amber-deep) 0%, var(--amber) 60%, var(--amber-bright) 130%);
  box-shadow: 0 24px 60px -22px rgba(224,90,0,.55);
  min-height: 220px;
}
@media (min-width: 1024px) { .recruit-card.accent { min-height: 0; } }
.recruit-card.accent .recruit-icon { background: rgba(255,255,255,.2); color: var(--ink); }
.recruit-card.accent .recruit-num { color: rgba(255,255,255,.3); }
.recruit-card.accent h3 { color: var(--ink); }
.recruit-card.accent p.body { color: rgba(7,26,48,.75); font-size: .875rem; }

/* Achievements */
.achievements-header { max-width: 36rem; margin-bottom: 4rem; }
.achievements-header h2 { font-family: 'Fraunces', Georgia, serif; font-size: 2.25rem; margin: 0; color: var(--paper-ink); }
@media (min-width: 768px) { .achievements-header h2 { font-size: 3rem; } }
.achievements-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .achievements-grid { grid-template-columns: 1fr 1fr; } }
.achievement-card {
  border-radius: 1rem; padding: 2rem; display: flex; gap: 1.25rem;
  position: relative; overflow: hidden; transition: transform .3s;
}
.achievement-card:hover { transform: translateY(-4px); }
.achievement-num { font-family: 'Fraunces', Georgia, serif; font-size: 1.875rem; flex-shrink: 0; color: var(--amber-deep); }
.achievement-card p { line-height: 1.7; color: rgba(34,23,8,.68); margin: 0; }

/* Training */
.training-row { display: grid; gap: 3.5rem; margin-bottom: 8rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .training-row { grid-template-columns: .9fr 1.1fr; } }
.training-row h2 { font-family: 'Fraunces', Georgia, serif; font-size: 2.25rem; line-height: 1.2; margin: 0; color: var(--paper-ink); }
@media (min-width: 768px) { .training-row h2 { font-size: 3rem; } }
.training-row .desc { margin-top: 1.5rem; max-width: 24rem; line-height: 1.7; color: rgba(34,23,8,.55); }
.training-points { display: flex; flex-direction: column; gap: 1rem; }
.training-point {
  border-radius: .75rem; padding: 1.5rem 1.5rem 1.5rem 2rem; border-left: 2px solid rgba(var(--amber-rgb), .5);
  background: rgba(255,255,255,.6);
}
.training-point p { margin: 0; line-height: 1.7; color: rgba(34,23,8,.68); }

.training-section-header { max-width: 36rem; margin-bottom: 3.5rem; }
.training-section-header h2 { font-family: 'Fraunces', Georgia, serif; font-size: 2.25rem; margin: 0; color: var(--paper-ink); }
@media (min-width: 768px) { .training-section-header h2 { font-size: 3rem; } }

.lifelong-grid { display: grid; gap: 1.5rem; margin-bottom: 8rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .lifelong-grid { grid-template-columns: repeat(3, 1fr); } }
.lifelong-card { border-radius: 1rem; padding: 2rem; transition: transform .3s; }
.lifelong-card:hover { transform: translateY(-8px); }
.lifelong-icon {
  width: 3rem; height: 3rem; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; background: rgba(var(--amber-rgb), .15); color: var(--amber-deep);
  transition: all .3s;
}
.lifelong-icon svg { width: 20px; height: 20px; }
.lifelong-card:hover .lifelong-icon { background: var(--amber); color: var(--ink); transform: rotate(12deg); }
.lifelong-card h3 { font-family: 'Fraunces', Georgia, serif; font-size: 1.25rem; margin: 0 0 .75rem; color: var(--paper-ink); }
.lifelong-card p { line-height: 1.7; font-size: .875rem; color: rgba(34,23,8,.6); margin: 0; }

.learning-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .learning-grid { grid-template-columns: 1fr 1fr; } }
.learning-card { display: flex; gap: 1.25rem; border-radius: 1rem; padding: 1.75rem; }
.learning-icon {
  width: 2.75rem; height: 2.75rem; flex-shrink: 0; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.7); color: var(--amber-deep); border: 1px solid rgba(34,23,8,.1);
}
.learning-icon svg { width: 18px; height: 18px; }
.learning-card h4 { font-family: 'Fraunces', Georgia, serif; font-size: 1.125rem; margin: 0 0 .5rem; color: var(--paper-ink); }
.learning-card p { font-size: .875rem; line-height: 1.7; color: rgba(34,23,8,.6); margin: 0; }

/* Why us */
.whyus-header { max-width: 42rem; margin-bottom: 4rem; }
.whyus-header h2 { font-family: 'Fraunces', Georgia, serif; font-size: 2.25rem; margin: 0; }
@media (min-width: 768px) { .whyus-header h2 { font-size: 3rem; } }
.whyus-list { display: flex; flex-direction: column; }
.whyus-item {
  border-top: 1px solid rgba(34,23,8,.12);
  display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: start;
  padding: 2rem .5rem; margin-inline: -.5rem; border-radius: .5rem;
  transition: background .3s;
}
.whyus-item:last-child { border-bottom: 1px solid rgba(34,23,8,.12); }
.whyus-item:hover { background: rgba(0,0,0,.03); }
@media (min-width: 768px) { .whyus-item { grid-template-columns: 100px 1fr; } }
.whyus-num { font-family: 'IBM Plex Mono', monospace; font-size: 1.875rem; color: var(--amber-deep); }
.whyus-item p.text { font-size: 1.125rem; line-height: 1.7; max-width: 42rem; color: rgba(34,23,8,.7); margin: 0; }

/* Partners */
.partners-header { max-width: 36rem; margin-bottom: 4rem; }
.partners-header h2 { font-family: 'Fraunces', Georgia, serif; font-size: 2.25rem; margin: 0; }
@media (min-width: 768px) { .partners-header h2 { font-size: 3rem; } }
.marquee-wrap { position: relative; display: flex; flex-direction: column; gap: 1.25rem; }
.marquee-fade { position: absolute; inset-block: 0; width: 6rem; z-index: 10; pointer-events: none; }
.marquee-fade.left { left: 0; background: linear-gradient(to right, var(--paper), transparent); }
.marquee-fade.right { right: 0; background: linear-gradient(to left, var(--paper), transparent); }
.marquee-track { display: flex; gap: 1.25rem; width: max-content; }
.marquee-track-a { animation: marquee-l 42s linear infinite; }
.marquee-track-b { animation: marquee-r 42s linear infinite; }
.marquee-track-a:hover, .marquee-track-b:hover { animation-play-state: paused; }
@keyframes marquee-l { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marquee-r { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.logo-card {
  flex-shrink: 0; width: 13rem; height: 7rem; border-radius: 1rem;
  background: #fff; border: 1px solid rgba(34,23,8,.06);
  box-shadow: 0 4px 16px -8px rgba(34,23,8,.15);
  display: flex; align-items: center; justify-content: center;
  padding: 1.25rem 1.75rem; transition: all .3s;
}
.logo-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px -12px rgba(var(--amber-rgb),.45); }
.logo-card img { max-height: 4rem; max-width: 100%; width: auto; object-fit: contain; }

/* CTA Footer */
.cta-footer {
  position: relative; padding-top: 8rem; padding-bottom: 2.5rem;
  background: linear-gradient(185deg, var(--ink-soft) 0%, var(--ink) 55%, #04101f 100%);
}
.cta-blob {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 700px; height: 300px; border-radius: 50%;
  filter: blur(64px); opacity: .2; pointer-events: none; background: var(--amber);
}
.cta-header { text-align: center; max-width: 48rem; margin-inline: auto; margin-bottom: 6rem; }
.cta-header .eyebrow { margin-bottom: 1.5rem; }
.cta-header h2 { font-family: 'Fraunces', Georgia, serif; font-size: 2.25rem; color: var(--paper); line-height: 1.2; margin: 0 0 2.5rem; }
@media (min-width: 768px) { .cta-header h2 { font-size: 3.75rem; } }
.cta-magnetic-btn {
  display: inline-flex; align-items: center; gap: .75rem;
  border-radius: 999px; background: var(--amber); color: var(--ink);
  font-weight: 500; padding: 1.25rem 2.25rem; font-size: 1.125rem;
}
.cta-magnetic-btn svg { width: 18px; height: 18px; }
.footer-grid { display: grid; gap: 2.5rem; margin-bottom: 4rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-logo { height: 2.75rem; width: auto; margin-bottom: 1rem; }
.footer-col p { font-size: .875rem; color: rgba(255,255,255,.4); line-height: 1.7; margin: 0; }
.footer-col .eyebrow { margin-bottom: 1rem; }
.footer-nav-list { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav-list a { font-size: .875rem; color: rgba(255,255,255,.5); transition: color .3s; width: fit-content; }
.footer-nav-list a:hover { color: var(--amber-soft); }
.footer-address { display: flex; gap: .5rem; font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.7; }
.footer-address svg { flex-shrink: 0; margin-top: 2px; width: 16px; height: 16px; color: var(--amber-soft); }
.footer-bottom { text-align: center; font-size: .75rem; color: rgba(255,255,255,.3); font-family: 'IBM Plex Mono', monospace; margin: 0; }
