 <style>
/* ─── TOKENS ─── */
:root {
  --ink: #0b1220;
  --ink2: #1e2d45;
  --sky: #0076c0;
  --sky2: #00a2e4;
  --gold: #e8940a;
  --gold2: #f5b83d;
  --cream: #fdf8f2;
  --mid: #5a6a7e;
  --light: #eaf3fb;
  --white: #ffffff;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Roboto', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --shadow: 0 20px 60px rgba(0,118,192,.12);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ─── CANVAS ─── */
#particles-canvas {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0; opacity: .35;
}

/* ─── SCROLL PROGRESS ─── */
#scroll-bar {
  position: fixed; top: 0; left: 0;
  height: 3px; background: linear-gradient(90deg, var(--sky), var(--gold));
  z-index: 9999; width: 0; transition: width .1s;
}

/* ─── SCROLL TOP ─── */
#scrolltop {
  position: fixed; bottom: 30px; right: 22px; z-index: 400;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--sky), var(--sky2));
  border: none; border-radius: 50%; color: #fff; cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,118,192,.4);
  opacity: 0; transform: translateY(10px); pointer-events: none;
  transition: all .3s; display: flex; align-items: center; justify-content: center;
}
#scrolltop.show { opacity: 1; transform: translateY(0); pointer-events: all; }
#scrolltop .material-icons-round { font-size: 22px; }

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.about-hero {
  min-height: 92vh;
  background: linear-gradient(140deg, #04111f 0%, #0b2040 55%, #0d2f5a 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 80px 40px 80px;
}
.about-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 400px at 80% 50%, rgba(0,118,192,.22) 0%, transparent 70%),
    radial-gradient(ellipse 400px 300px at 15% 80%, rgba(232,148,10,.13) 0%, transparent 70%);
}
.about-hero::after {
  content: 'ABOUT';
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-size: clamp(130px,19vw,280px);
  font-weight: 900; letter-spacing: -12px;
  color: rgba(255,255,255,.025);
  pointer-events: none; line-height: 1; white-space: nowrap;
}
.hero-wrap {
  max-width: 1300px; margin: 0 auto;
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,148,10,.14); border: 1px solid rgba(232,148,10,.32);
  color: var(--gold2); font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 8px 16px; border-radius: 100px; margin-bottom: 26px;
}
.hero-badge .material-icons-round { font-size: 15px; }
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.8vw, 66px);
  line-height: 1.08; color: #fff; margin-bottom: 22px;
}
.hero-h1 em { color: var(--gold2); font-style: italic; }
.hero-desc {
  font-size: 15.5px; line-height: 1.85; color: rgba(255,255,255,.68);
  max-width: 520px; margin-bottom: 36px;
}
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--ink); font-weight: 700; font-size: 14px;
  padding: 13px 28px; border-radius: 50px; text-decoration: none;
  box-shadow: 0 8px 28px rgba(232,148,10,.35); transition: all .3s;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(232,148,10,.5); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,.25); color: #fff;
  font-weight: 600; font-size: 14px;
  padding: 11px 26px; border-radius: 50px; text-decoration: none; transition: all .3s;
}
.btn-outline:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.08); }
/* stats */
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card {
  background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px; padding: 26px 22px;
  backdrop-filter: blur(10px); transition: all .3s;
}
.stat-card:hover {
  background: rgba(0,118,192,.18); border-color: rgba(0,162,228,.32); transform: translateY(-4px);
}
.stat-icon {
  width: 42px; height: 42px; background: rgba(0,162,228,.14);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--sky2); margin-bottom: 14px;
}
.stat-icon .material-icons-round { font-size: 22px; }
.stat-num {
  font-family: var(--font-mono); font-size: 38px; font-weight: 700;
  color: var(--sky2); line-height: 1; margin-bottom: 6px;
}
.stat-num sup { color: var(--gold2); font-size: 22px; vertical-align: super; }
.stat-lbl { font-size: 12.5px; color: rgba(255,255,255,.55); line-height: 1.45; }

/* ════════════════════════════════
   MARQUEE
════════════════════════════════ */
.marquee-band {
  background: var(--ink); overflow: hidden;
  padding: 26px 0; border-top: 1px solid rgba(255,255,255,.06);
}
.marquee-track {
  display: flex; gap: 56px;
  animation: mscroll 24s linear infinite; white-space: nowrap;
}
.m-item {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-display); font-size: 21px; font-weight: 700;
  color: rgba(255,255,255,.2); flex-shrink: 0;
}
.m-item.g { color: var(--gold2); }
.m-item .material-icons-round { font-size: 19px; }
@keyframes mscroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ════════════════════════════════
   SECTION BASE
════════════════════════════════ */
.sec { padding: 100px 40px; position: relative; z-index: 1; }
.sec-alt { background: var(--white); }
.wrap { max-width: 1300px; margin: 0 auto; }
.sec-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--sky);
  margin-bottom: 14px;
}
.sec-tag::before { content: ''; width: 26px; height: 2px; background: var(--sky); display: block; }
.sec-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 50px);
  line-height: 1.14; color: var(--ink); margin-bottom: 18px;
}
.sec-h2 em { color: var(--sky); font-style: italic; }
.sec-intro { font-size: 15.5px; line-height: 1.82; color: var(--mid); max-width: 620px; }

/* ════════════════════════════════
   OUR STORY
════════════════════════════════ */
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start; margin-top: 58px;
}
.story-text p { font-size: 15px; line-height: 1.9; color: var(--mid); margin-bottom: 18px; }
.story-text p strong { color: var(--ink); }
.pull-quote {
  background: linear-gradient(135deg, #e4f2fb, #c5e3f6);
  border-left: 4px solid var(--sky); border-radius: 0 14px 14px 0;
  padding: 22px 26px; margin: 26px 0;
  font-family: var(--font-display); font-size: 17px; font-style: italic;
  font-weight: 600; color: var(--ink2); line-height: 1.65;
}
/* timeline */
.tl { position: relative; padding-left: 34px; }
.tl::before {
  content: ''; position: absolute; left: 8px; top: 6px; bottom: 0;
  width: 2px; background: linear-gradient(180deg, var(--sky) 60%, var(--gold));
}
.tl-item { position: relative; padding-bottom: 34px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: -30px; top: 5px;
  width: 18px; height: 18px; border-radius: 50%;
  border: 3px solid var(--sky); background: var(--cream);
}
.tl-dot.g { border-color: var(--gold); }
.tl-yr {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  color: var(--sky); letter-spacing: 1.5px; margin-bottom: 3px;
}
.tl-yr.g { color: var(--gold); }
.tl-ttl { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.tl-desc { font-size: 13.5px; color: var(--mid); line-height: 1.62; }

/* ════════════════════════════════
   MISSION & VISION
════════════════════════════════ */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 54px; }
.mv-card { border-radius: 24px; padding: 44px 40px; position: relative; overflow: hidden; }
.mv-card.miss { background: linear-gradient(135deg, #e6f3fc, #c4e3f6); }
.mv-card.vis  { background: linear-gradient(135deg, #fff8eb, #fde8b8); }
.mv-card::after {
  content: attr(data-bg);
  position: absolute; right: -18px; bottom: -18px;
  font-family: var(--font-display); font-size: 115px; font-weight: 900;
  opacity: .055; color: var(--ink); line-height: 1; pointer-events: none;
}
.mv-ico {
  width: 58px; height: 58px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.mv-card.miss .mv-ico { background: var(--sky); }
.mv-card.vis  .mv-ico { background: var(--gold); }
.mv-ico .material-icons-round { font-size: 30px; color: #fff; }
.mv-lbl {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 700; color: var(--mid); margin-bottom: 8px;
}
.mv-title { font-family: var(--font-display); font-size: 29px; font-weight: 700; color: var(--ink); margin-bottom: 14px; }
.mv-text { font-size: 15px; line-height: 1.82; color: var(--ink2); }

/* ════════════════════════════════
   PILLARS
════════════════════════════════ */
.pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; margin-top: 58px; }
.pillar {
  background: var(--white); border: 1px solid rgba(0,118,192,.1);
  border-radius: 20px; padding: 36px 28px;
  position: relative; overflow: hidden; transition: all .35s;
}
.pillar::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--sky), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(0,118,192,.25); }
.pillar:hover::after { transform: scaleX(1); }
.pillar-ico {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--light), #bee5f7);
  border-radius: 15px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: all .3s;
}
.pillar:hover .pillar-ico { background: linear-gradient(135deg, var(--sky), var(--sky2)); }
.pillar-ico .material-icons-round { font-size: 26px; color: var(--sky); transition: color .3s; }
.pillar:hover .pillar-ico .material-icons-round { color: #fff; }
.pillar-title { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 10px; font-family: var(--font-display); }
.pillar-desc { font-size: 13.5px; color: var(--mid); line-height: 1.78; }

/* ════════════════════════════════
   RECOGNITIONS
════════════════════════════════ */
.recog-sec {
  background: linear-gradient(140deg, #04111f 0%, #0b2040 100%);
  position: relative; overflow: hidden;
}
.recog-sec::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 400px at 90% 50%, rgba(0,118,192,.2), transparent 70%);
}
.recog-sec .sec-tag { color: var(--gold2); }
.recog-sec .sec-tag::before { background: var(--gold2); }
.recog-sec .sec-h2 { color: #fff; }
.recog-sec .sec-h2 em { color: var(--gold2); }
.recog-sec .sec-intro { color: rgba(255,255,255,.6); }
.recog-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 54px; }
.recog-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px; padding: 32px 22px; text-align: center;
  backdrop-filter: blur(10px); transition: all .3s;
}
.recog-card:hover { background: rgba(0,118,192,.2); border-color: rgba(0,162,228,.35); transform: translateY(-5px); }
.recog-card .material-icons-round { font-size: 38px; color: var(--gold2); margin-bottom: 14px; display: block; }
.recog-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.recog-sub { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.5; }

/* ════════════════════════════════
   TEAM
════════════════════════════════ */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; margin-top: 54px; }
.team-card {
  border-radius: 20px; overflow: hidden;
  background: var(--white); border: 1px solid rgba(0,118,192,.1); transition: all .35s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-img {
  height: 220px; background: linear-gradient(135deg, var(--light), #bee5f7);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-avatar {
  width: 90px; height: 90px;
  background: linear-gradient(135deg, var(--sky), var(--sky2));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 34px; font-weight: 700; color: #fff;
}
.team-body { padding: 24px; }
.team-name { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.team-role { font-size: 11.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--sky); margin-bottom: 12px; }
.team-bio { font-size: 13px; color: var(--mid); line-height: 1.7; }

/* ════════════════════════════════
   CAMPUS
════════════════════════════════ */
.campus-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 54px; }
.campus-img { border-radius: 16px; overflow: hidden; height: 220px; position: relative; transition: all .35s; }
.campus-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.campus-img:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.campus-img:hover img { transform: scale(1.06); }
.campus-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(4,17,31,.8), transparent);
  padding: 16px 16px 14px;
  font-size: 13px; font-weight: 600; color: #fff;
}

/* ════════════════════════════════
   AFFILIATIONS
════════════════════════════════ */
.aff-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-top: 50px; }
.aff-card {
  background: var(--white); border: 1px solid rgba(0,118,192,.1);
  border-radius: 16px; padding: 28px 18px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 10px; transition: all .3s;
}
.aff-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: rgba(0,118,192,.3); }
.aff-card .material-icons-round { font-size: 40px; color: var(--sky); }
.aff-name { font-size: 13px; font-weight: 700; color: var(--ink); line-height: 1.4; }
.aff-sub { font-size: 11px; color: var(--mid); }

/* ════════════════════════════════
   CTA BAND
════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--sky) 0%, var(--sky2) 50%, #0050a0 100%);
  padding: 80px 40px; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-band h2 {
  font-family: var(--font-display); font-size: clamp(28px,4vw,48px);
  color: #fff; margin-bottom: 12px; position: relative;
}
.cta-band p { font-size: 16px; color: rgba(255,255,255,.8); margin-bottom: 32px; position: relative; }
.cta-grp { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--sky); font-weight: 700; font-size: 14px;
  padding: 14px 30px; border-radius: 50px; text-decoration: none;
  transition: all .3s; box-shadow: 0 8px 28px rgba(0,0,0,.2);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,0,0,.3); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,.5); color: #fff;
  font-weight: 600; font-size: 14px;
  padding: 12px 28px; border-radius: 50px; text-decoration: none; transition: all .3s;
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* ════════════════════════════════
   REVEAL ANIMATIONS
════════════════════════════════ */
.reveal        { opacity: 0; transform: translateY(30px); transition: all .7s cubic-bezier(.4,0,.2,1); }
.reveal-left   { opacity: 0; transform: translateX(-40px); transition: all .7s cubic-bezier(.4,0,.2,1); }
.reveal-right  { opacity: 0; transform: translateX(40px);  transition: all .7s cubic-bezier(.4,0,.2,1); }
.reveal.visible,.reveal-left.visible,.reveal-right.visible { opacity: 1; transform: none; }
.d1{transition-delay:.1s}.d2{transition-delay:.2s}
.d3{transition-delay:.3s}.d4{transition-delay:.4s}.d5{transition-delay:.5s}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media(max-width:1024px){
  .pillars-grid{grid-template-columns:repeat(2,1fr)}
  .recog-grid{grid-template-columns:repeat(2,1fr)}
  .aff-grid{grid-template-columns:repeat(2,1fr)}
  .campus-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:860px){
  .hero-wrap{grid-template-columns:1fr;gap:50px}
  .story-grid{grid-template-columns:1fr;gap:50px}
  .team-grid{grid-template-columns:repeat(2,1fr)}
  .mv-grid{grid-template-columns:1fr}
}
@media(max-width:600px){
  .sec{padding:70px 20px}
  .about-hero{padding:60px 20px;min-height:auto}
  .stats-grid{grid-template-columns:1fr 1fr}
  .pillars-grid{grid-template-columns:1fr}
  .recog-grid{grid-template-columns:1fr}
  .team-grid{grid-template-columns:1fr}
  .aff-grid{grid-template-columns:1fr 1fr}
  .campus-grid{grid-template-columns:1fr}
}
</style>
