/* ═══════════════════════════════════════════════
   ICET — v4 "Luminous" Design System
   Palette: Navy #1B3A6B · Blue #2A5298 · Gold #E8960A
   Base: Light/warm, premium, student+parent friendly
   ═══════════════════════════════════════════════ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root {
  /* ── Light base ── */
  --bg:         #F7F8FC;
  --bg1:        #EEF1F8;
  --bg2:        #FFFFFF;
  --surface:    rgba(255,255,255,0.85);
  --surface2:   rgba(255,255,255,0.95);
  --surface-d:  rgba(27,58,107,0.04);

  /* ── Brand ── */
  --navy:       #1B3A6B;
  --navy-lt:    #2A5298;
  --blue:       #2A5298;
  --gold:       #E8960A;
  --gold-lt:    #F5B832;
  --gold-pale:  #FFF3D4;

  /* ── Text ── */
  --text:       #0F1C33;
  --text2:      #364769;
  --muted:      #6B7A9C;
  --muted2:     #9AA5C0;
  --white:      #FFFFFF;

  /* ── Borders ── */
  --border:     rgba(27,58,107,0.1);
  --border-g:   rgba(232,150,10,0.3);
  --border-lg:  rgba(27,58,107,0.06);

  /* ── Gradients ── */
  --grad:       linear-gradient(135deg,#E8960A,#F5B832);
  --grad-blue:  linear-gradient(135deg,#1B3A6B,#3B6CC5);
  --grad-hero:  linear-gradient(135deg,#0F1C33 0%,#1B3A6B 50%,#2A5298 100%);
  --grad-warm:  linear-gradient(135deg,#FFF8EC 0%,#EEF1F8 100%);

  /* ── Glows & shadows ── */
  --shadow-sm:  0 2px 8px rgba(27,58,107,0.08);
  --shadow-md:  0 8px 32px rgba(27,58,107,0.12);
  --shadow-lg:  0 20px 60px rgba(27,58,107,0.16);
  --shadow-xl:  0 32px 80px rgba(27,58,107,0.2);
  --glow-gold:  0 0 40px rgba(232,150,10,0.3);
  --glow-blue:  0 0 40px rgba(42,82,152,0.2);

  /* ── Radii ── */
  --r:          10px;
  --r-lg:       18px;
  --r-xl:       24px;
  --r-2xl:      32px;

  /* ── Typography ── */
  --font:       'Inter','Geist',system-ui,sans-serif;
  --font-mono:  'JetBrains Mono','Geist Mono',monospace;

  --ease:       cubic-bezier(0.4,0,0.2,1);
  --ease-spring:cubic-bezier(0.34,1.56,0.64,1);
}

/* ─── RESET + BASE ─────────────────────────────── */
html { scroll-behavior: smooth; overflow-x: hidden; overscroll-behavior: none; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img   { max-width:100%; height:auto; display:block; }
a     { text-decoration:none; color:var(--navy); transition:color .2s; }
a:hover { color:var(--gold); }
address { font-style:normal; }
button  { font:inherit; border:none; cursor:pointer; background:none; }

.container  { max-width:1160px; margin:0 auto; padding:0 24px; }
.section    { padding:108px 0; position:relative; }
.section-alt { background:var(--bg1); }
.section-white { background:var(--bg2); }
.center     { text-align:center; }
.mt24 { margin-top:24px; }
.mt48 { margin-top:48px; }

/* ─── SPLASH LOADER ──────────────────────────── */
.splash {
  position:fixed; inset:0; z-index:9999;
  display:flex; align-items:center; justify-content:center;
  pointer-events:all;
  transition:transform .7s cubic-bezier(0.4,0,0.2,1),
             opacity .7s cubic-bezier(0.4,0,0.2,1) .05s;
}
.splash.done {
  opacity:0;
  transform:scale(1.05);
  pointer-events:none;
}
.splash-bg {
  position:absolute; inset:0;
  background:radial-gradient(ellipse at 50% 42%,
    #ffffff 0%,
    #f0f4fb 45%,
    #e4eaf6 100%);
  animation:splashBgIn .6s cubic-bezier(0.4,0,0.2,1) both;
}
@keyframes splashBgIn {
  from { opacity:0; }
  to   { opacity:1; }
}
/* subtle navy radial glow behind the logo */
.splash-bg::after {
  content:"";
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%,-58%);
  width:440px; height:440px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(27,58,107,0.07) 0%, transparent 70%);
  pointer-events:none;
}
.splash-inner {
  position:relative; z-index:1;
  display:flex; flex-direction:column; align-items:center;
  gap:18px;
}
.splash-logo {
  width:130px; height:auto;
  filter:drop-shadow(0 6px 20px rgba(27,58,107,0.12))
         drop-shadow(0 2px 6px rgba(27,58,107,0.08));
  animation:splashLogoIn .7s cubic-bezier(0.34,1.46,0.64,1) .1s both;
}
@keyframes splashLogoIn {
  from { opacity:0; transform:scale(.72) translateY(12px); }
  to   { opacity:1; transform:scale(1)   translateY(0); }
}
.splash-name {
  font-family:var(--font);
  font-size:.72rem; font-weight:600;
  letter-spacing:.18em; text-transform:uppercase;
  color:rgba(27,58,107,0.45);
  animation:splashTextIn .55s cubic-bezier(0.4,0,0.2,1) .45s both;
}
@keyframes splashTextIn {
  from { opacity:0; letter-spacing:.32em; }
  to   { opacity:1; letter-spacing:.18em; }
}
.splash-bar-wrap {
  width:160px; height:2px;
  background:rgba(27,58,107,0.1);
  border-radius:2px;
  overflow:hidden;
  margin-top:6px;
  animation:splashBarWrapIn .4s cubic-bezier(0.4,0,0.2,1) .6s both;
}
@keyframes splashBarWrapIn {
  from { opacity:0; transform:scaleX(.4); }
  to   { opacity:1; transform:scaleX(1); }
}
.splash-bar {
  height:100%; width:0%;
  background:linear-gradient(90deg, #1B3A6B, #E8960A);
  border-radius:2px;
  transition:width .08s linear;
  box-shadow:0 0 8px rgba(232,150,10,0.4);
}

/* ─── CURSOR GLOW ─────────────────────────────── */
.cursor-glow {
  position:fixed;
  width:500px; height:500px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(232,150,10,0.06) 0%,transparent 70%);
  top:0; left:0;
  pointer-events:none;
  z-index:1;
  transition:opacity .3s;
  will-change:transform;
}

/* ─── HEADER ─────────────────────────────────── */
.site-header {
  position:fixed; top:0; left:0; right:0; z-index:100;
  height:88px;
  transition:height .4s var(--ease);
}
.site-header.scrolled {
  height:66px;
}

/* ── Expanded hero bar (default / top of page) ── */
.hdr-expanded {
  display:flex; align-items:center;
  justify-content:space-between;
  padding-inline:max(44px, calc((100% - 1160px) / 2));
  height:88px;
  position:relative;
  opacity:1; pointer-events:auto;
  transform:translateY(0);
  transition:opacity .38s var(--ease), transform .38s var(--ease), height .4s var(--ease);
  width:100%;
}
/* Faded glass backdrop — extends BELOW the bar to fully cover the overflowing
   logo (badge + text), fading smoothly to transparent into the hero. */
.hdr-expanded::before {
  content:"";
  position:absolute; left:0; right:0; top:0;
  height:185px;
  background:linear-gradient(to bottom,
    rgba(255,255,255,0.92) 0%,
    rgba(255,255,255,0.85) 42%,
    rgba(255,255,255,0.62) 66%,
    rgba(255,255,255,0.28) 84%,
    rgba(255,255,255,0) 100%);
  -webkit-mask-image:linear-gradient(to bottom, #000 66%, transparent 100%);
  mask-image:linear-gradient(to bottom, #000 66%, transparent 100%);
  z-index:0;
  pointer-events:none;
}
.hdr-expanded > .nav,
.hdr-expanded > .hamburger { position:relative; z-index:1; }
.hdr-expanded .hamburger { display:none; }

/* ── Sticky collapsed bar — same centred layout, full-width ── */
.hdr-sticky {
  display:flex; align-items:center;
  justify-content:space-between;
  padding-inline:max(44px, calc((100% - 1160px) / 2));
  height:66px;
  background:rgba(255,255,255,0.97);
  backdrop-filter:blur(24px);
  -webkit-backdrop-filter:blur(24px);
  border-bottom:1px solid var(--border);
  box-shadow:0 2px 16px rgba(0,0,0,0.08);
  opacity:0; pointer-events:none;
  transform:translateY(-100%);
  transition:opacity .32s var(--ease), transform .32s var(--ease);
  position:absolute; top:0; left:0; right:0; width:100%; height:66px;
}

/* When scrolled — collapse expanded, reveal sticky */
.site-header.scrolled {
  box-shadow:0 2px 16px rgba(0,0,0,0.08);
}
.site-header.scrolled .hdr-expanded {
  opacity:0; pointer-events:none;
  transform:translateY(-100%);
}
.site-header.scrolled .hdr-sticky {
  opacity:1; pointer-events:auto;
  transform:translateY(0);
}

/* ── Logo — enlarged & overflowing into hero ── */
.brand { display:flex; align-items:center; }
.brand-center {
  position:absolute; left:50%; top:10px;
  transform:translateX(-50%);
  display:flex; align-items:flex-start; justify-content:center;
  transition:transform .4s var(--ease), top .4s var(--ease);
  z-index:2;
}
/* Expanded: oversized logo anchored to top, overflowing down into the hero */
.hdr-expanded .logo-img {
  height:124px; width:auto; object-fit:contain;
  transition:height .4s var(--ease), filter .3s;
  filter:drop-shadow(0 10px 26px rgba(15,28,51,0.28));
}
/* Sticky: compact centred logo, fully inside the bar (re-center vertically) */
.hdr-sticky .brand-center {
  top:50%;
  transform:translate(-50%,-50%);
  align-items:center;
}
.logo-sticky {
  height:50px !important;
  filter:drop-shadow(0 2px 8px rgba(27,58,107,0.18)) !important;
}
/* ── Split nav ── */
.nav-left, .nav-right {
  display:flex; align-items:center; gap:4px;
  flex:1;
}
.nav-right { justify-content:flex-end; }

/* Shared nav link styles */
.nav { display:flex; gap:6px; margin-left:auto; }
.nav-link {
  font-size:.88rem; font-weight:600; padding:8px 14px;
  color:var(--navy); border-radius:8px;
  transition:all .2s; white-space:nowrap;
}
.nav-link:hover { background:rgba(27,58,107,0.08); color:var(--navy); }

.hamburger { display:none; flex-direction:column; gap:5px; padding:8px; cursor:pointer; }
.hamburger span { display:block; width:22px; height:2px; background:var(--navy); border-radius:2px; transition:.3s; }

/* Mobile nav overlay — always hidden, slides down when .open */
.mobile-nav {
  display:none;
  position:fixed; top:72px; left:0; right:0; z-index:98;
  background:rgba(255,255,255,0.98);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  flex-direction:column; padding:16px;
  border-bottom:1px solid var(--border);
  box-shadow:var(--shadow-lg);
  transform:translateY(-120%); opacity:0;
  transition:transform .32s var(--ease), opacity .28s var(--ease);
}
.mobile-nav.open {
  transform:translateY(0); opacity:1;
}

/* ─── BUTTONS ────────────────────────────────── */
.btn-primary {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--navy);
  color:var(--white) !important;
  padding:13px 26px;
  border-radius:10px;
  font-size:.93rem; font-weight:600;
  letter-spacing:.01em;
  transition:all .25s var(--ease);
  position:relative; overflow:hidden;
  box-shadow:0 4px 20px rgba(27,58,107,0.25);
}
.btn-primary::before {
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,0.12),transparent);
  opacity:0; transition:opacity .25s;
}
.btn-primary:hover {
  transform:translateY(-2px);
  box-shadow:0 8px 32px rgba(27,58,107,0.35);
  background:var(--blue);
}
.btn-primary:hover::before { opacity:1; }
.btn-primary:active { transform:translateY(0); }

.btn-ghost {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,255,255,0.12);
  color:var(--white) !important;
  padding:13px 26px;
  border-radius:10px;
  font-size:.93rem; font-weight:600;
  border:1.5px solid rgba(255,255,255,0.25);
  transition:all .25s var(--ease);
}
.btn-ghost:hover {
  background:rgba(255,255,255,0.2);
  border-color:rgba(255,255,255,0.5);
  transform:translateY(-2px);
}

.btn-gold {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--grad);
  color:var(--navy) !important;
  padding:13px 26px;
  border-radius:10px;
  font-size:.93rem; font-weight:700;
  transition:all .25s var(--ease);
  box-shadow:0 4px 20px rgba(232,150,10,0.3);
}
.btn-gold:hover {
  transform:translateY(-2px);
  box-shadow:0 8px 32px rgba(232,150,10,0.45);
}

.btn-navy {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--navy);
  color:var(--white) !important;
  padding:13px 26px;
  border-radius:10px;
  font-size:.93rem; font-weight:600;
  transition:all .25s var(--ease);
  box-shadow:0 4px 20px rgba(27,58,107,0.25);
}
.btn-navy:hover {
  background:var(--blue);
  transform:translateY(-2px);
  box-shadow:0 8px 32px rgba(27,58,107,0.35);
}

.btn-sm  { padding:9px 18px; font-size:.85rem; }
.btn-lg  { padding:17px 36px; font-size:1rem; }
.btn-block { width:100%; justify-content:center; }
.btn-icon { transition:transform .2s; }
.btn-primary:hover .btn-icon,
.btn-ghost:hover .btn-icon,
.btn-navy:hover .btn-icon { transform:translateX(3px); }

/* ─── TYPOGRAPHY ─────────────────────────────── */
.section-tag {
  display:inline-flex; align-items:center; gap:8px;
  font-size:.78rem; font-weight:700; letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--blue);
  background:rgba(59,108,197,0.08);
  border:1px solid rgba(59,108,197,0.2);
  padding:6px 14px; border-radius:100px;
  margin-bottom:20px;
}
.section-tag::before {
  content:"";
  width:6px; height:6px;
  border-radius:50%;
  background:var(--gold);
  flex-shrink:0;
}

.section-h2 {
  font-size:clamp(2.2rem,4vw,3.4rem);
  font-weight:800; line-height:1.15;
  color:var(--text); letter-spacing:-.03em;
}
.section-lead, .section-p {
  font-size:1.05rem; color:var(--text2); line-height:1.75;
  max-width:600px;
}
.section-head { margin-bottom:60px; }
.section-head.center { display:flex; flex-direction:column; align-items:center; }
.section-head.center .section-lead,
.section-head.center .section-p { text-align:center; }

.text-gradient {
  background:var(--grad-blue);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.text-gold {
  background:var(--grad);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

/* ─── SCROLL REVEAL ──────────────────────────── */
[data-reveal] {
  will-change:transform,opacity;
}

/* ─── HERO ───────────────────────────────────── */
.hero {
  min-height:100svh;
  background:var(--grad-hero);
  position:relative;
  overflow:hidden;
  display:flex; flex-direction:column;
}

/* Background video + image fallback */
.hero-media { position:absolute; inset:0; z-index:0; overflow:hidden; will-change:transform; }
.hero-video {
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  transform:translateZ(0);
}
.hero-overlay {
  position:absolute; inset:0;
  background:
    linear-gradient(110deg, rgba(15,28,51,0.94) 0%, rgba(27,58,107,0.82) 42%, rgba(42,82,152,0.5) 100%),
    linear-gradient(to top, rgba(15,28,51,0.85) 0%, transparent 45%);
}

#heroCanvas {
  position:absolute; inset:0;
  pointer-events:none; z-index:1;
  opacity:.4;
}
.hero-orbs { position:absolute; inset:0; pointer-events:none; z-index:1; mix-blend-mode:screen; }
.hero-orb {
  /* blur lives on a non-animated layer so it never repaints during animation */
  position:absolute; border-radius:50%;
  animation:orbFloat 8s ease-in-out infinite;
  will-change:transform;
}
.hero-orb::after {
  content:""; position:absolute; inset:0;
  border-radius:50%;
  background:inherit;
  filter:blur(80px);
}
.hero-orb-1 {
  width:600px; height:600px;
  background:radial-gradient(circle,rgba(232,150,10,0.25),transparent 70%);
  top:-200px; right:-100px;
  animation-delay:0s;
}
.hero-orb-2 {
  width:400px; height:400px;
  background:radial-gradient(circle,rgba(59,108,197,0.35),transparent 70%);
  bottom:-100px; left:-100px;
  animation-delay:-4s;
}
.hero-orb-3 {
  width:300px; height:300px;
  background:radial-gradient(circle,rgba(245,184,50,0.15),transparent 70%);
  top:30%; left:25%;
  animation-delay:-2s;
}
@keyframes orbFloat {
  0%,100% { transform:translateY(0) scale(1); }
  50%      { transform:translateY(-30px) scale(1.05); }
}
@media (prefers-reduced-motion:reduce) {
  .hero-orb { animation:none; }
}

.hero-layout {
  display:grid;
  grid-template-columns:1fr 420px;
  gap:60px;
  align-items:center;
  min-height:100svh;
  padding-top:160px;
  padding-bottom:60px;
  position:relative; z-index:2;
}

.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,255,255,0.14);
  border:1px solid rgba(255,255,255,0.22);
  padding:8px 16px; border-radius:100px;
  font-size:.8rem; font-weight:600; letter-spacing:.08em;
  text-transform:uppercase; color:rgba(255,255,255,0.9);
  margin-bottom:28px;
}
.badge-dot {
  width:7px; height:7px; border-radius:50%;
  background:var(--gold);
  animation:pulse 2s ease-in-out infinite;
  flex-shrink:0;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); box-shadow:0 0 0 0 rgba(232,150,10,0.4); }
  50%      { opacity:.7; transform:scale(.85); box-shadow:0 0 0 4px rgba(232,150,10,0); }
}

.hero-h1 {
  font-size:clamp(2.8rem,5.5vw,5rem);
  font-weight:900; line-height:1.05;
  color:#FFFFFF;
  letter-spacing:-.04em;
  margin-bottom:24px;
}
.hero-h1 em {
  font-style:normal;
  background:var(--grad);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

.hero-subhead {
  font-size:1.1rem; color:rgba(255,255,255,0.7);
  line-height:1.75; max-width:520px;
  margin-bottom:36px;
}

.hero-actions {
  display:flex; flex-wrap:wrap; gap:14px;
  margin-bottom:48px;
}

.hero-trust {
  display:flex; align-items:center; gap:16px;
  flex-wrap:wrap; padding-top:8px;
}
.trust-item {
  display:flex; align-items:center; gap:7px;
  font-size:.82rem; color:rgba(255,255,255,0.55);
  font-weight:500;
}
.trust-icon {
  width:16px; height:16px;
  background:var(--gold);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.trust-icon::after {
  content:"✓";
  font-size:.6rem; color:var(--navy); font-weight:900;
}
.trust-sep { width:1px; height:16px; background:rgba(255,255,255,0.12); }

/* HERO form */
.hero-form-col { position:relative; }
.form-shell {
  background:#ffffff;
  border-radius:24px;
  border:1px solid rgba(255,255,255,0.7);
  box-shadow:0 24px 80px rgba(0,0,0,0.3),0 0 0 1px rgba(255,255,255,0.1);
  overflow:hidden;
}
.form-shell-header {
  padding:24px 28px 20px;
  background:linear-gradient(135deg,var(--navy),var(--blue));
  display:flex; align-items:flex-start;
  justify-content:space-between;
}
.fsh-title {
  display:block;
  font-size:1.05rem; font-weight:700;
  color:#FFFFFF; line-height:1.3; margin-bottom:3px;
}
.fsh-sub {
  display:block;
  font-size:.8rem; color:rgba(255,255,255,0.7);
}
.fsh-badge {
  background:var(--grad);
  color:var(--navy);
  font-size:.72rem; font-weight:800;
  letter-spacing:.08em; text-transform:uppercase;
  padding:5px 10px; border-radius:100px;
  white-space:nowrap; flex-shrink:0;
}

/* ─── FORMS ──────────────────────────────────── */
.app-form { padding:28px; display:flex; flex-direction:column; gap:16px; }
.field-wrap { position:relative; }
.field-row  { display:grid; grid-template-columns:1fr 1fr; gap:12px; }

.app-form input,
.app-form select {
  width:100%;
  background:#F7F8FC;
  border:1.5px solid var(--border);
  border-radius:10px;
  padding:16px 14px 6px;
  font-family:var(--font); font-size:.9rem;
  color:var(--text);
  outline:none;
  transition:border-color .2s, box-shadow .2s;
  appearance:none; -webkit-appearance:none;
}
.app-form input:focus,
.app-form select:focus {
  border-color:var(--blue);
  box-shadow:0 0 0 3px rgba(59,108,197,0.12);
  background:#FFF;
}
.fl {
  position:absolute; top:50%; left:14px;
  transform:translateY(-50%);
  font-size:.85rem; color:var(--muted);
  pointer-events:none;
  transition:all .18s var(--ease);
  white-space:nowrap;
}
.app-form input:focus ~ .fl,
.app-form input:not(:placeholder-shown) ~ .fl,
.app-form select:focus ~ .fl,
.app-form select:valid ~ .fl {
  top:10px; transform:none;
  font-size:.68rem; font-weight:700;
  color:var(--blue); letter-spacing:.04em;
  text-transform:uppercase;
}
.form-msg { font-size:.83rem; min-height:1.2em; margin-top:-4px; }
.form-msg.ok  { color:#059669; }
.form-msg.err { color:#DC2626; }

/* ─── TICKER ─────────────────────────────────── */
.ticker-wrap {
  background:linear-gradient(135deg,var(--navy),var(--blue));
  padding:14px 0;
  overflow:hidden;
  position:relative; z-index:3;
  contain:layout style;
}
.ticker-inner { overflow:hidden; }
.ticker-row {
  display:flex; align-items:center;
  animation:ticker 40s linear infinite;
  width:max-content;
  will-change:transform;
  transform:translateZ(0);
}
.ticker-row span {
  font-size:.83rem; font-weight:600; color:rgba(255,255,255,0.9);
  white-space:nowrap; padding:0 24px;
  letter-spacing:.04em;
}
.tk-sep { color:var(--gold) !important; padding:0 4px !important; font-size:.65rem !important; }
@keyframes ticker {
  from { transform:translateX(0); }
  to   { transform:translateX(-50%); }
}

/* ─── ABOUT SECTION ──────────────────────────── */
.about-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}
.about-pills {
  display:flex; flex-wrap:wrap; gap:10px;
  margin:28px 0;
}
.pill {
  background:rgba(59,108,197,0.06);
  color:var(--navy);
  border:1px solid rgba(59,108,197,0.15);
  padding:8px 18px; border-radius:100px;
  font-size:.82rem; font-weight:600;
  transition:all .22s var(--ease-spring);
  cursor:default;
}
.pill:hover {
  background:var(--navy); color:#FFF;
  transform:translateY(-2px) scale(1.03);
  box-shadow:0 6px 20px rgba(27,58,107,0.2);
}

.img-stack { position:relative; border-radius:var(--r-xl); overflow:visible; }
.img-glow {
  position:absolute; inset:-20px;
  background:radial-gradient(ellipse at 50% 50%,rgba(232,150,10,0.12),transparent 70%);
  border-radius:50%; pointer-events:none; z-index:0;
}
.about-img {
  border-radius:var(--r-xl);
  box-shadow:var(--shadow-xl);
  position:relative; z-index:1;
  transform:translateZ(0);
}
.float-stat {
  position:absolute; z-index:2;
  background:#ffffff;
  border:1px solid rgba(27,58,107,0.08);
  border-radius:16px;
  padding:14px 22px;
  box-shadow:var(--shadow-md);
  display:flex; flex-direction:column; align-items:center;
  animation:floatBadge 5s ease-in-out infinite;
  animation-play-state:paused;
  will-change:transform;
}
/* resume only while about section is on-screen (JS toggles .in-view) */
.about-vis .fs-badge { animation-play-state:running; }
.fs-a { bottom:-20px; left:-24px; animation-delay:0s; }
.fs-b { top:24px; right:-24px; animation-delay:-2.5s; }
.fs-n { font-size:1.3rem; font-weight:800; color:var(--navy); line-height:1; }
.fs-l { font-size:.72rem; font-weight:600; color:var(--muted); margin-top:4px; }
@keyframes floatBadge {
  0%,100% { transform:translateY(0); }
  50%      { transform:translateY(-8px); }
}
@media (prefers-reduced-motion:reduce) {
  .fs-badge { animation:none; }
}

/* ─── STATS BAND ─────────────────────────────── */
.stats-band {
  background:var(--grad-hero);
  padding:80px 0;
}
.stats-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
}
.stat-item {
  text-align:center; padding:40px 24px;
  transition:background .25s;
  position:relative;
}
.stat-item::after {
  content:"";
  position:absolute; right:0; top:20%; bottom:20%;
  width:1px; background:rgba(255,255,255,0.1);
}
.stat-item:last-child::after { display:none; }
.stat-item:hover { background:rgba(255,255,255,0.05); }
.stat-n {
  display:block;
  font-size:clamp(2.4rem,4vw,3.5rem);
  font-weight:900; line-height:1;
  color:#FFFFFF; letter-spacing:-.04em;
  margin-bottom:8px;
}
.stat-accent { color:var(--gold-lt); }
.stat-l { font-size:.88rem; color:rgba(255,255,255,0.6); font-weight:500; }

/* ─── ICET DIFFERENCE — split + card-swap ─────── */
.why-layout {
  display:grid;
  grid-template-columns:1fr 1.05fr;
  gap:56px;
  align-items:center;
  min-height:520px;
}
.why-intro .section-head { text-align:left; margin-bottom:0; }

.why-list {
  list-style:none;
  margin-top:36px;
  display:flex; flex-direction:column; gap:4px;
}
.why-list li {
  display:flex; align-items:center; gap:14px;
  padding:13px 16px;
  font-size:1rem; font-weight:600; color:var(--text2);
  border-radius:12px;
  cursor:pointer;
  transition:background .25s var(--ease), color .25s, transform .25s var(--ease);
}
.why-list li:hover { background:var(--surface-d); color:var(--navy); transform:translateX(4px); }
.why-list li.active {
  background:linear-gradient(135deg,rgba(27,58,107,0.07),rgba(232,150,10,0.06));
  color:var(--navy);
}
.wl-dot {
  width:9px; height:9px; flex-shrink:0;
  border-radius:50%;
  background:rgba(27,58,107,0.25);
  transition:all .25s var(--ease-spring);
}
.why-list li:hover .wl-dot,
.why-list li.active .wl-dot {
  background:var(--gold);
  box-shadow:0 0 0 4px rgba(232,150,10,0.18);
  transform:scale(1.15);
}

/* ── Card-swap stage ── */
.why-stage {
  position:relative;
  height:470px;
  perspective:1100px;
  overflow:hidden;            /* contain the stack — no bleed into neighbours */
}
.card-swap {
  position:absolute;
  top:0; left:0;
  width:360px; height:300px;
  /* front card sits near the bottom-left so the fan grows up-and-right
     and the whole stack stays inside the stage box */
  transform:translate(36px, 150px);
  transform-style:preserve-3d;
}
.swap-card {
  position:absolute;
  top:0; left:0;
  width:360px; height:300px;
  background:var(--bg2);
  border:1px solid var(--border-lg);
  border-radius:var(--r-lg);
  padding:32px 30px;
  box-shadow:0 20px 50px rgba(15,28,51,0.16);
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
  display:flex; flex-direction:column;
  overflow:hidden;
}
/* gold accent strip + ambient glow */
.swap-card::before {
  content:"";
  position:absolute; top:0; left:0; right:0;
  height:4px;
  background:var(--grad-blue);
}
.swap-card::after {
  content:"";
  position:absolute; top:-50px; right:-50px;
  width:200px; height:200px; border-radius:50%;
  background:radial-gradient(circle,rgba(232,150,10,0.12),transparent 70%);
  pointer-events:none;
}
.sc-icon {
  width:56px; height:56px;
  background:var(--grad-hero);
  border-radius:16px;
  display:flex; align-items:center; justify-content:center;
  color:#FFF;
  margin-bottom:24px;
  box-shadow:0 10px 28px rgba(27,58,107,0.28);
  position:relative; z-index:1;
}
.sc-icon svg { width:26px; height:26px; }
.swap-card h3 {
  font-size:1.25rem; font-weight:800;
  color:var(--navy); line-height:1.3; margin-bottom:14px;
  position:relative; z-index:1;
}
.swap-card p {
  font-size:.94rem; color:var(--text2); line-height:1.72;
  position:relative; z-index:1;
}

/* ─── PROGRAMS ───────────────────────────────── */
.prog-explorer {
  margin-top:48px;
  background:var(--bg2);
  border:1px solid var(--border);
  border-radius:var(--r-2xl);
  overflow:hidden;
  box-shadow:var(--shadow-md);
}
.prog-tabs {
  display:flex; position:relative;
  background:var(--bg1);
  border-bottom:1px solid var(--border);
  overflow-x:auto; scrollbar-width:none;
}
.prog-tabs::-webkit-scrollbar { display:none; }
.ptab {
  display:flex; align-items:center; gap:8px;
  padding:18px 24px;
  font-size:.88rem; font-weight:600;
  color:var(--muted);
  border-radius:0;
  white-space:nowrap;
  flex-shrink:0;
  transition:color .2s;
  position:relative; z-index:1;
}
.ptab.active { color:var(--navy); }
.ptab:hover:not(.active) { color:var(--text); }
.ptab-icon { display:inline-flex; align-items:center; color:var(--muted); transition:color .2s; }
.ptab-icon svg { width:20px; height:20px; }
.ptab.active .ptab-icon { color:var(--gold); }
.ptab:hover:not(.active) .ptab-icon { color:var(--blue); }
.ptab-indicator {
  position:absolute; bottom:0; height:2px;
  background:var(--grad-blue);
  transition:left .28s var(--ease), width .28s var(--ease);
  border-radius:2px 2px 0 0;
}

.prog-panel { display:none; padding:52px 48px; }
.prog-panel.active { display:block; }

.pp-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:start;
}
.pp-copy h3 {
  font-size:1.75rem; font-weight:800;
  color:var(--text); line-height:1.2;
  letter-spacing:-.025em; margin-bottom:16px;
}
.pp-copy > p {
  font-size:.98rem; color:var(--text2);
  line-height:1.78; margin-bottom:28px;
}
.pp-tags {
  display:flex; flex-wrap:wrap; gap:8px;
  margin-bottom:28px;
}
.pp-tags span {
  background:rgba(59,108,197,0.06);
  color:var(--blue);
  border:1px solid rgba(59,108,197,0.15);
  padding:6px 14px; border-radius:100px;
  font-size:.8rem; font-weight:600;
  transition:all .2s;
}
.pp-tags span:hover {
  background:var(--blue); color:#FFF;
}
.pp-careers {
  display:flex; align-items:center; flex-wrap:wrap; gap:8px;
  margin-bottom:28px;
}
.pc-label {
  font-size:.72rem; font-weight:700;
  color:var(--muted); letter-spacing:.06em;
  text-transform:uppercase;
}
.pc-role {
  background:var(--gold-pale);
  color:var(--navy);
  border:1px solid rgba(232,150,10,0.25);
  padding:6px 14px; border-radius:100px;
  font-size:.8rem; font-weight:600;
  transition:all .2s;
}
.pc-role:hover { background:var(--gold); color:var(--navy); }

/* Code block */
.pp-code-block {
  background:#0F1C33;
  border-radius:var(--r-lg);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  border:1px solid rgba(255,255,255,0.05);
}
.pcb-header {
  display:flex; align-items:center; gap:8px;
  padding:14px 18px;
  background:rgba(255,255,255,0.03);
  border-bottom:1px solid rgba(255,255,255,0.05);
}
.pcb-dot { width:12px; height:12px; border-radius:50%; display:inline-block; }
.pcb-file {
  margin-left:auto;
  font-size:.75rem; font-family:var(--font-mono);
  color:rgba(255,255,255,0.35);
}
.pcb-code {
  font-family:var(--font-mono);
  font-size:.82rem; line-height:1.8;
  color:rgba(255,255,255,0.85);
  padding:24px 20px;
  overflow-x:auto;
  tab-size:2;
}
.c-kw  { color:#7DD3FC; }
.c-fn  { color:#86EFAC; }
.c-str { color:#FCA5A5; }
.c-num { color:#FCD34D; }
.c-cm  { color:rgba(255,255,255,0.28); font-style:italic; }

/* Programs glance */
.glance-row {
  display:flex; align-items:center;
  background:linear-gradient(135deg,rgba(27,58,107,0.04),rgba(59,108,197,0.03));
  border:1px solid var(--border);
  border-radius:var(--r-xl);
  padding:28px 36px;
  margin-top:48px;
  flex-wrap:wrap; gap:8px;
}
.gr-item { display:flex; flex-direction:column; gap:4px; flex:1; min-width:130px; }
.gr-sep  { width:1px; height:40px; background:var(--border); flex-shrink:0; }
.gr-l    { font-size:.7rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--muted2); }
.gr-v    { font-size:.93rem; font-weight:600; color:var(--text); }

/* ─── JOURNEY TIMELINE ────────────────────────── */
.journey-track { position:relative; padding:0 40px; margin-top:60px; }
.jt-line {
  position:absolute; left:50%; top:0; bottom:0;
  width:2px; transform:translateX(-50%);
  background:var(--border);
  z-index:0; border-radius:2px;
}
#jtFill {
  position:absolute; top:0; left:0; width:100%;
  height:0;
  background:var(--grad-blue);
  border-radius:2px;
}
.jt-steps { display:flex; flex-direction:column; }
.jt-step {
  display:grid;
  grid-template-columns:1fr 80px 1fr;
  gap:24px;
  align-items:center;
  padding:20px 0;
  position:relative; z-index:1;
}
.jt-step:nth-child(odd) .jts-card    { grid-column:3; grid-row:1; }
.jt-step:nth-child(odd) .jts-marker  { grid-column:2; grid-row:1; }
.jt-step:nth-child(even) .jts-card   { grid-column:1; grid-row:1; }
.jt-step:nth-child(even) .jts-marker { grid-column:2; grid-row:1; }

.jts-marker {
  display:flex; align-items:center; justify-content:center;
  width:60px; height:60px;
  background:var(--bg2);
  border:2px solid var(--border);
  border-radius:50%;
  font-size:.78rem; font-weight:800;
  color:var(--navy);
  position:relative; z-index:2;
  box-shadow:var(--shadow-sm);
  transition:all .3s var(--ease-spring);
  will-change:transform;
  margin:0 auto;
}
.jt-step:hover .jts-marker {
  background:var(--navy);
  color:#FFF;
  border-color:var(--navy);
  box-shadow:0 0 0 8px rgba(27,58,107,0.08);
  transform:scale(1.1);
}
.jts-yr { font-size:.76rem; font-weight:800; letter-spacing:.04em; }

.jts-card {
  background:var(--bg2);
  border:1px solid var(--border-lg);
  border-radius:var(--r-lg);
  padding:30px 32px;
  box-shadow:var(--shadow-sm);
  transition:all .3s var(--ease);
  transform:translateZ(0);
}
.jt-step:hover .jts-card {
  box-shadow:var(--shadow-md);
  border-color:rgba(59,108,197,0.18);
  transform:translateY(-2px) translateZ(0);
}
.jts-num {
  font-size:.7rem; font-weight:800; letter-spacing:.14em;
  color:var(--gold); margin-bottom:10px; text-transform:uppercase;
}
.jts-card h3 {
  font-size:1.05rem; font-weight:700;
  color:var(--text); margin-bottom:10px;
}
.jts-card p {
  font-size:.9rem; color:var(--text2); line-height:1.68;
}

/* ─── CAREERS CLOUD ──────────────────────────── */
.careers-layout {
  display:grid;
  grid-template-columns:380px 1fr;
  gap:80px;
  align-items:center;
}
.careers-cloud {
  display:flex; flex-wrap:wrap;
  gap:12px; align-content:center;
}
.role-pill {
  background:var(--bg2);
  color:var(--text);
  border:1.5px solid var(--border);
  border-radius:100px;
  font-weight:600;
  cursor:default;
  transition:all .25s var(--ease-spring);
  box-shadow:var(--shadow-sm);
  transform:translateZ(0);
  will-change:transform;
}
.role-pill:hover {
  background:var(--navy);
  color:#FFF;
  border-color:var(--navy);
  transform:translateY(-4px) scale(1.04) translateZ(0);
  box-shadow:0 10px 28px rgba(27,58,107,0.28);
}
.rp-lg  { padding:14px 26px; font-size:.96rem; }
.rp-md  { padding:11px 22px; font-size:.88rem; }
.rp-sm  { padding:9px 18px;  font-size:.82rem; }

/* ─── ADMISSIONS ─────────────────────────────── */
.adm-flow {
  display:grid;
  grid-template-columns:1fr auto 1fr;
  gap:24px;
  align-items:center;
  margin-top:16px;
}
.adm-card {
  background:var(--bg2);
  border:1px solid var(--border-lg);
  border-radius:var(--r-xl);
  padding:36px 32px;
  box-shadow:var(--shadow-md);
  position:relative; overflow:hidden;
  will-change:transform;
  transition:all .3s var(--ease);
  transform:translateZ(0);
}
.adm-card:hover {
  transform:translateY(-4px) translateZ(0);
  box-shadow:var(--shadow-lg);
}
.adm-card-a { border-top:3px solid var(--navy); }
.adm-card-b { border-top:3px solid var(--gold); }
.adc-step {
  font-size:3.5rem; font-weight:900;
  line-height:1; letter-spacing:-.04em;
  color:rgba(27,58,107,0.06);
  position:absolute; top:20px; right:24px;
}
.adc-period {
  display:inline-flex;
  background:var(--gold-pale);
  color:var(--navy);
  border:1px solid rgba(232,150,10,0.28);
  padding:5px 14px; border-radius:100px;
  font-size:.78rem; font-weight:700;
  margin-bottom:16px;
}
.adm-card h3 {
  font-size:1.2rem; font-weight:700;
  color:var(--text); margin-bottom:12px;
}
.adm-card p { font-size:.9rem; color:var(--text2); line-height:1.72; }
.adc-line {
  position:absolute; bottom:0; left:0; right:0;
  height:3px;
  background:var(--grad-blue);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .38s var(--ease);
}
.adm-card:hover .adc-line { transform:scaleX(1); }
.adm-arrow {
  display:flex; align-items:center; justify-content:center;
  color:var(--muted2); flex-shrink:0;
}
.adm-arrow svg { width:48px; }

/* ─── CAMPUS GRID ────────────────────────────── */
.campus-grid {
  display:grid;
  grid-template-columns:repeat(6,1fr);
  grid-template-rows:240px 240px;
  gap:16px;
  margin-top:48px;
}
.cg-card { position:relative; overflow:hidden; border-radius:var(--r-lg); }
.cg-card img {
  width:100%; height:100%;
  object-fit:cover;
  transition:transform .5s var(--ease);
}
.cg-card:hover img { transform:scale(1.07); }
.cg-card figcaption {
  position:absolute; bottom:0; left:0; right:0;
  padding:24px 20px 16px;
  background:linear-gradient(to top,rgba(15,28,51,0.75),transparent);
  color:#FFF;
  font-size:.85rem; font-weight:600;
  opacity:0; transition:opacity .3s;
}
.cg-card:hover figcaption { opacity:1; }
.cg-tall  { grid-column:span 2; grid-row:span 2; }
.cg-wide  { grid-column:span 2; }
.cg-card:not(.cg-tall):not(.cg-wide) { grid-column:span 2; }

/* ─── LEAD / FINAL CTA ───────────────────────── */
.lead-section {
  background:var(--grad-hero);
  position:relative; overflow:hidden;
}
.lead-bg-glow {
  position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(ellipse at 15% 50%,rgba(232,150,10,0.18) 0%,transparent 55%),
    radial-gradient(ellipse at 85% 50%,rgba(59,108,197,0.25) 0%,transparent 55%);
}
.lead-layout {
  display:grid;
  grid-template-columns:1fr 540px;
  gap:56px;
  align-items:start;
  position:relative; z-index:1;
}
.lead-h2 {
  font-size:clamp(2rem,4vw,3.2rem);
  font-weight:900; line-height:1.1;
  color:#FFFFFF; letter-spacing:-.03em;
  margin-bottom:20px;
}
.lead-copy .section-tag {
  background:rgba(255,255,255,0.1);
  border-color:rgba(255,255,255,0.2);
  color:#FFF;
}
.lead-copy .section-tag::before { background:rgba(255,255,255,0.6); }
.lead-copy .section-p { color:rgba(255,255,255,0.7); max-width:480px; }

.lead-checks {
  list-style:none;
  display:flex; flex-direction:column; gap:8px;
  margin:20px 0;
}
.lead-checks li {
  display:flex; align-items:center; gap:10px;
  font-size:.92rem; font-weight:500; color:rgba(255,255,255,0.82);
}
.lead-check-icon {
  width:22px; height:22px; flex-shrink:0;
  background:var(--gold);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}
.lead-check-icon svg { width:12px; height:12px; color:var(--navy); stroke:var(--navy); }

.lead-contact {
  display:flex; flex-direction:column; gap:8px;
  margin-top:20px;
}
.lc-item {
  display:inline-flex; align-items:center; gap:10px;
  font-size:.9rem; font-weight:500;
  color:rgba(255,255,255,0.65) !important;
  transition:color .2s;
}
.lc-item:hover { color:rgba(255,255,255,1) !important; }
.lc-item svg { width:18px; height:18px; opacity:.6; flex-shrink:0; }

.lead-form-wrap {
  background:rgba(255,255,255,0.98);
  border-radius:var(--r-xl);
  box-shadow:0 32px 80px rgba(0,0,0,0.35);
  overflow:hidden;
}
.lead-form-wrap .hs-form-frame { display:block; width:100%; }
.lead-form-wrap iframe { display:block; width:100% !important; border:none; min-height:0 !important; }

/* ─── FOOTER (light theme + circuit overlay) ───── */
.footer {
  background:linear-gradient(180deg,#FFFFFF 0%,#F4F7FC 100%);
  color:var(--text2);
  padding-top:72px;
  position:relative;
  overflow:hidden;
  border-top:1px solid rgba(27,58,107,0.08);
}
/* Faint animated circuit overlay */
.ftr-circuit {
  position:absolute; inset:0;
  pointer-events:none; z-index:0;
}
.ftr-circuit-svg {
  width:100%; height:100%;
  opacity:.10;
}
.ftr-circuit-svg path {
  stroke-linecap:round; stroke-linejoin:round;
}
.ftr-node { opacity:.7; }
.ftr-pulse { filter:drop-shadow(0 0 4px currentColor); }

.ftr-grid {
  position:relative; z-index:1;
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.5fr;
  gap:48px;
  padding-bottom:60px;
  border-bottom:1px solid rgba(27,58,107,0.10);
}
.ftr-brand img {
  height:88px; width:auto; margin-bottom:20px;
  filter:drop-shadow(0 4px 14px rgba(27,58,107,0.14));
  opacity:1;
}
.ftr-brand p   { font-size:.88rem; line-height:1.75; max-width:300px; color:var(--text2); }
.ftr-col h4 {
  font-size:.75rem; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase;
  color:var(--navy); margin-bottom:18px;
}
.ftr-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.ftr-col a { font-size:.88rem; color:var(--text2); transition:color .2s; }
.ftr-col a:hover { color:var(--navy); }

.ftr-contact address {
  display:flex; flex-direction:column; gap:10px;
}
.ftr-contact a,
.ftr-contact span { font-size:.88rem; color:var(--text2); line-height:1.65; }
.ftr-contact a:hover { color:var(--navy); }

.social-row { display:flex; gap:10px; margin-top:20px; }
.soc {
  width:36px; height:36px;
  background:rgba(27,58,107,0.06);
  border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  color:var(--navy);
  transition:all .2s var(--ease-spring);
}
.soc svg { width:16px; height:16px; }
.soc:hover { background:var(--navy); color:#FFF; transform:translateY(-3px) scale(1.05); }

.ftr-bottom { position:relative; z-index:1; padding:24px 0; }
.ftr-btm-inner {
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:12px;
  font-size:.8rem; color:var(--text3, rgba(27,58,107,0.5));
}
.ftr-legal-links { display:flex; gap:20px; }
.ftr-legal-links a { color:rgba(27,58,107,0.5); font-size:.8rem; transition:color .2s; }
.ftr-legal-links a:hover { color:var(--navy); }

/* ─── STICKY ELEMENTS ────────────────────────── */
.sticky-cta {
  position:fixed; bottom:24px; right:24px; z-index:90;
  background:var(--grad);
  color:var(--navy) !important;
  font-size:.85rem; font-weight:700;
  padding:14px 24px; border-radius:100px;
  box-shadow:0 8px 32px rgba(232,150,10,0.5);
  transform:translateY(80px);
  transition:transform .35s var(--ease), opacity .35s;
  opacity:0; pointer-events:none;
}
.sticky-cta.show {
  transform:translateY(0);
  opacity:1; pointer-events:auto;
}
.sticky-cta:hover { transform:translateY(-3px) !important; }

.scroll-up {
  position:fixed; bottom:82px; right:24px; z-index:90;
  width:44px; height:44px; border-radius:12px;
  background:var(--bg2);
  border:1px solid var(--border);
  color:var(--text); font-size:1.1rem;
  box-shadow:var(--shadow-md);
  display:flex; align-items:center; justify-content:center;
  transform:translateY(80px); opacity:0; pointer-events:none;
  transition:all .3s var(--ease);
}
.scroll-up.show { transform:translateY(0); opacity:1; pointer-events:auto; }
.scroll-up:hover {
  background:var(--navy); color:#FFF;
  transform:translateY(-2px);
}

/* ─── SCROLL HINT ────────────────────────────── */
.scroll-hint {
  position:absolute; bottom:32px; left:50%;
  transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:8px;
  font-size:.7rem; color:rgba(255,255,255,0.4);
  letter-spacing:.1em; text-transform:uppercase;
  z-index:2; pointer-events:none;
}
.scroll-mouse {
  width:22px; height:36px;
  border:1.5px solid rgba(255,255,255,0.2);
  border-radius:12px;
  display:flex; justify-content:center; padding-top:6px;
}
.scroll-mouse span {
  width:3px; height:8px;
  background:rgba(255,255,255,0.45);
  border-radius:2px;
  animation:scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { opacity:1; transform:translateY(0); }
  100% { opacity:0; transform:translateY(10px); }
}

/* ─── HERO STATS ─────────────────────────────── */
.hero-stats {
  display:flex; align-items:center; gap:24px;
  margin-top:0; flex-wrap:wrap;
  padding-top:8px;
}
.hstat { display:flex; flex-direction:column; gap:3px; }
.hstat-n {
  font-size:1.7rem; font-weight:900;
  color:#FFFFFF; line-height:1;
  letter-spacing:-.03em;
}
.hstat-l { font-size:.74rem; color:rgba(255,255,255,0.5); font-weight:500; }
.hstat-div { width:1px; height:36px; background:rgba(255,255,255,0.12); }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width:1024px) {
  .hero-layout          { grid-template-columns:1fr; gap:40px; padding-top:100px; }
  .hero-form-col        { max-width:480px; }
  .about-grid           { grid-template-columns:1fr; gap:48px; }
  .campus-grid          { grid-template-rows:200px 200px; }
  .stats-grid           { grid-template-columns:repeat(2,1fr); }
  .stat-item:nth-child(even)::after { display:none; }
  .why-layout           { grid-template-columns:1fr; gap:8px; min-height:0; }
  .why-intro .section-head { text-align:center; }
  .why-list             { max-width:460px; margin-inline:auto; }
  .why-stage            { height:480px; margin-top:24px; overflow:hidden; }
  .lead-layout          { grid-template-columns:1fr 460px; gap:40px; }
}
@media (max-width:860px) {
  .pp-grid              { grid-template-columns:1fr; gap:32px; }
  .careers-layout       { grid-template-columns:1fr; gap:40px; }
  .lead-layout          { grid-template-columns:1fr; gap:32px; }
  .lead-form-wrap       { max-width:560px; margin-inline:auto; width:100%; }
  .ftr-grid             { grid-template-columns:1fr 1fr; gap:32px; }
  .adm-flow             { grid-template-columns:1fr; }
  .adm-arrow            { transform:rotate(90deg); }
  .journey-track        { padding:0; }
  .jt-line              { display:none; }
  .jt-step              { grid-template-columns:64px 1fr; grid-template-rows:auto; gap:16px; }
  .jt-step:nth-child(odd)  .jts-card    { grid-column:2; grid-row:1; }
  .jt-step:nth-child(odd)  .jts-marker  { grid-column:1; grid-row:1; }
  .jt-step:nth-child(even) .jts-card    { grid-column:2; grid-row:1; }
  .jt-step:nth-child(even) .jts-marker  { grid-column:1; grid-row:1; }
}
@media (max-width:640px) {
  .section              { padding:72px 0; }
  /* ICET Difference — shrink swap stack to fit + contain it */
  .why-stage            { height:450px; overflow:hidden; }
  /* front card near bottom; up-right fan (5 steps * 26 = 130px) rises into the
     space above. Front top at 140 keeps the deepest card top at y>=10. */
  .card-swap            {
    width:240px; height:290px;
    transform:translate(24px, 140px);
  }
  .swap-card            { width:240px; height:290px; padding:24px 20px; }
  .swap-card h3         { font-size:1.05rem; margin-bottom:10px; }
  .swap-card p          { font-size:.84rem; line-height:1.6; }
  .sc-icon              { width:48px; height:48px; margin-bottom:16px; }
  .ftr-grid             { grid-template-columns:1fr; }
  .hero-actions         { flex-direction:column; }
  .btn-primary,
  .btn-ghost            { width:100%; justify-content:center; }
  .prog-panel           { padding:28px 20px; }
  .campus-grid          { grid-template-columns:1fr 1fr; grid-template-rows:160px 160px 160px; }
  .cg-tall              { grid-column:span 1; grid-row:span 2; }
  .cg-wide              { grid-column:span 2; }
  /* Mobile header — logo stays centred, hamburger on the right */
  .site-header            { height:74px; }
  .site-header.scrolled   { height:60px; }
  .hamburger              { display:flex !important; margin-left:auto; }
  .hamburger-sticky       { margin-left:auto; }
  .nav-left, .nav-right   { display:none; }
  .hdr-expanded           { height:74px; padding:0 18px; justify-content:flex-end; }
  .hdr-sticky             { height:60px; padding:0 18px; justify-content:flex-end; }
  .brand-center           { position:absolute; left:50%; top:8px; transform:translateX(-50%); align-items:flex-start; }
  .hdr-sticky .brand-center { top:50%; transform:translate(-50%,-50%); align-items:center; }
  .hdr-expanded .logo-img { height:88px; }
  .hero-layout            { padding-top:148px; }
  .logo-sticky            { height:46px !important; }
  .hdr-expanded::before   { height:150px; }
  .hdr-sticky .nav        { display:none; }
  .mobile-nav             { display:flex; }

  .nav-link               { padding:12px 16px; font-size:1rem; color:var(--text2); display:block; }
  .lead-layout          { grid-template-columns:1fr; gap:28px; }
  .lead-form-wrap       { max-width:100%; margin-inline:0; }
  .stats-grid           { grid-template-columns:1fr 1fr; }
  .stat-item::after     { display:none; }
  .glance-row           { flex-direction:column; gap:16px; padding:24px; }
  .gr-sep               { width:100%; height:1px; }
}

/* ─── ENGINEERING LIFE AT ISBR ───────────────── */
.isbr-life {
  background:linear-gradient(155deg,#EAF0FD 0%,#F7F8FC 55%,#EEF1FA 100%);
  position:relative; overflow:hidden;
}
.circuit-bg {
  position:absolute; inset:0;
  pointer-events:none; z-index:0;
}
.circuit-svg {
  width:100%; height:100%;
  opacity:.14;
}
.life-canvas {
  position:absolute; inset:0; width:100%; height:100%;
  pointer-events:none; z-index:0; opacity:.55;
}
.life-container { position:relative; z-index:1; }
.life-layout {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:start;
  margin-top:56px;
}
.life-block-hd { margin-bottom:28px; }
.life-block-hd h3 {
  font-size:1.45rem; font-weight:800;
  color:var(--text); letter-spacing:-.025em; line-height:1.25;
  margin-bottom:10px;
}
.life-block-hd p {
  font-size:.93rem; color:var(--text2); line-height:1.72;
  max-width:420px;
}

/* Cert grid */
.cert-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.cert-card {
  background:#FFFFFF;
  border:1.5px solid rgba(27,58,107,0.09);
  border-radius:16px;
  padding:22px 12px 18px;
  text-align:center;
  cursor:default;
  position:relative; overflow:hidden;
  display:flex; flex-direction:column; align-items:center; gap:4px;
  box-shadow:0 2px 14px rgba(27,58,107,0.06);
  transition:transform .3s var(--ease-spring), box-shadow .3s, border-color .3s;
  will-change:transform;
}
.cert-card:hover {
  transform:translateY(-6px) scale(1.025);
  box-shadow:0 14px 40px rgba(27,58,107,0.14);
  border-color:rgba(232,150,10,0.45);
}
.cert-shine {
  position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,0.65) 0%,transparent 60%);
  pointer-events:none; opacity:0; transition:opacity .25s;
}
.cert-card:hover .cert-shine { opacity:1; }
.cert-icon-wrap {
  width:58px; height:58px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:6px;
  transition:transform .3s var(--ease-spring);
}
.cert-icon-wrap svg { width:100%; height:100%; }
.cert-card:hover .cert-icon-wrap { transform:scale(1.08) rotate(-3deg); }
.cert-num {
  font-size:.7rem; font-weight:700;
  color:var(--gold); letter-spacing:.04em;
}
.cert-name {
  font-size:.87rem; font-weight:700;
  color:var(--navy); line-height:1.3; text-align:center;
  display:block;
}
.cert-sub {
  font-size:.72rem; color:var(--muted);
  min-height:1em;
}

/* Experience items */
.exp-items { display:flex; flex-direction:column; gap:0; margin-top:4px; }
.exp-item {
  display:flex; align-items:flex-start; gap:22px;
  padding:32px 0;
  border-bottom:1px solid rgba(27,58,107,0.08);
}
.exp-item:first-child { padding-top:0; }
.exp-item:last-child  { border-bottom:none; }
.exp-icon-wrap {
  width:84px; height:84px; flex-shrink:0;
  background:linear-gradient(135deg,#0F1C33 0%,#1B3A6B 60%,#2A5298 100%);
  border-radius:20px;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 28px rgba(27,58,107,0.22);
  transition:transform .3s var(--ease-spring), box-shadow .3s;
}
.exp-item:hover .exp-icon-wrap {
  transform:translateY(-4px) scale(1.06);
  box-shadow:0 16px 36px rgba(27,58,107,0.32);
}
.exp-icon-wrap svg { width:50px; height:50px; }
.exp-copy h4 {
  font-size:1.08rem; font-weight:700;
  color:var(--text); margin-bottom:8px; line-height:1.3;
}
.exp-copy p {
  font-size:.88rem; color:var(--text2); line-height:1.72;
}

/* Circuit path animation — paths start invisible via JS dashoffset */
.circuit-svg path[id^="cp"] { will-change:stroke-dashoffset; }

/* Circuit pulse dot base state (JS takes over) */
.circuit-pulse { will-change:opacity; }

@media (max-width:860px) {
  .life-layout { grid-template-columns:1fr; gap:48px; }
}
@media (max-width:640px) {
  .cert-grid   { grid-template-columns:repeat(3,1fr); gap:9px; }
  .cert-card   { padding:14px 8px 12px; border-radius:12px; }
  .cert-icon-wrap { width:44px; height:44px; }
  .cert-name   { font-size:.76rem; }
  .exp-icon-wrap { width:66px; height:66px; }
  .exp-icon-wrap svg { width:38px; height:38px; }
}
