:root {
  --navy-deep: #080b22;
  --navy: #0e1338;
  --navy-soft: #161b4a;
  --blue: #4a3aff;
  --blue-soft: #6c5cff;
  --purple: #7c3aed;
  --cyan: #22d3ee;
  --white: #f8fafc;
  --slate: #9aa3c4;
  --slate-dim: #6b7299;
  --glass-border: rgba(255, 255, 255, 0.09);
  --glass-bg: rgba(255, 255, 255, 0.04);
  --radius-lg: 22px;
  --radius-md: 14px;
  --ease: cubic-bezier(.16, .8, .24, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy-deep);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.55;
}

h1,
h2,
h3,
h4,
.display {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.02em;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

::selection {
  background: var(--blue);
  color: #fff;
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

section {
  position: relative;
  padding: 140px 0;
}

@media(max-width:768px) {
  section {
    padding: 88px 0;
  }

  .wrap {
    padding: 0 20px;
  }
}

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--cyan);
  opacity: 0.7;
}

h2.section-title {
  font-size: clamp(30px, 4.2vw, 50px);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 18px;
}

.section-sub {
  color: var(--slate);
  font-size: 17px;
  max-width: 560px;
}

.section-head {
  margin-bottom: 64px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head.center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- background atmosphere ---------- */
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(1100px 700px at 15% -10%, rgba(74, 58, 255, 0.28), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(124, 58, 237, 0.22), transparent 60%),
    radial-gradient(700px 500px at 50% 100%, rgba(34, 211, 238, 0.08), transparent 60%),
    var(--navy-deep);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.035;
  pointer-events: none;
  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");
}

/* ---------- glass card ---------- */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* ---------- nav ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all .4s var(--ease);
}

header.scrolled {
  padding: 14px 0;
  background: rgba(8, 11, 34, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
}

nav.wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 19px;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 0 24px rgba(74, 58, 255, 0.5);
}

.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}

.nav-links a {
  font-size: 14.5px;
  color: var(--slate);
  padding: 9px 14px;
  border-radius: 100px;
  transition: all .25s var(--ease);
  position: relative;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 600;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  box-shadow: 0 6px 24px rgba(74, 58, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(74, 58, 255, 0.5);
}

.btn-ghost {
  border: 1px solid var(--glass-border);
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 13.5px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 200;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .3s;
}

@media(max-width:980px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-right .btn-ghost {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(8, 11, 34, 0.98);
  backdrop-filter: blur(20px);
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  font-size: 22px;
  font-family: 'Space Grotesk', sans-serif;
}

/* ---------- hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  position: relative;
  overflow: hidden;
}

#constellation {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.9;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--slate);
  margin-bottom: 28px;
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.hero h1 {
  font-size: clamp(38px, 7vw, 84px);
  font-weight: 700;
  line-height: 1.02;
  margin-bottom: 26px;
}

.hero h1 .line {
  display: block;
  overflow: hidden;
}

.hero h1 .line span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}

.hero h1 .grad {
  background: linear-gradient(135deg, var(--blue-soft), var(--purple) 60%, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.sub {
  font-size: 18px;
  color: var(--slate);
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: .08s;
}

.reveal-delay-2 {
  transition-delay: .16s;
}

.reveal-delay-3 {
  transition-delay: .24s;
}

.reveal-delay-4 {
  transition-delay: .32s;
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--slate-dim);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .12em;
  z-index: 2;
}

.scroll-cue .stem {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--slate-dim), transparent);
  animation: stem 2s infinite;
}

@keyframes stem {
  0% {
    opacity: 0.2;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.2;
  }
}

/* ---------- stat counters ---------- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--glass-border);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 64px;
}

.stat {
  background: var(--navy);
  padding: 34px 20px;
  text-align: center;
}

.stat .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  background: linear-gradient(135deg, #fff, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat .label {
  color: var(--slate);
  font-size: 13px;
  margin-top: 6px;
}

@media(max-width:900px) {
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat:nth-child(5) {
    grid-column: 1/-1;
  }
}

/* ---------- about ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: start;
}

@media(max-width:900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

.about-copy p {
  color: var(--slate);
  margin-bottom: 18px;
  font-size: 16px;
}

.msg-card {
  padding: 32px;
}

.msg-card .quote-mark {
  font-family: 'Space Grotesk';
  font-size: 48px;
  color: var(--purple);
  line-height: 0.5;
  display: block;
  margin-bottom: 14px;
}

.msg-card p {
  color: var(--slate);
  font-size: 15.5px;
  margin-bottom: 20px;
}

.msg-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
}

.msg-person .name {
  font-weight: 600;
  font-size: 14.5px;
}

.msg-person .role {
  color: var(--slate-dim);
  font-size: 12.5px;
}

.accred-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.accred-chip {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  padding: 7px 13px;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  color: var(--slate);
}

/* ---------- academics cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media(max-width:900px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:640px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

.prog-card {
  padding: 30px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
  transform-style: preserve-3d;
}

.prog-card:hover {
  transform: translateY(-6px) rotateX(2deg);
  border-color: rgba(124, 58, 237, 0.5);
  box-shadow: 0 24px 60px -20px rgba(74, 58, 255, 0.4);
}

.prog-card .glow {
  position: absolute;
  top: -60%;
  right: -30%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.35), transparent 70%);
  opacity: 0;
  transition: opacity .5s;
}

.prog-card:hover .glow {
  opacity: 1;
}

.prog-icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: linear-gradient(135deg, rgba(74, 58, 255, 0.25), rgba(124, 58, 237, 0.25));
  margin-bottom: 22px;
  transition: transform .4s var(--ease);
}

.prog-card:hover .prog-icon {
  transform: scale(1.1) rotate(-6deg);
}

.prog-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.prog-card p {
  color: var(--slate);
  font-size: 14.5px;
  margin-bottom: 18px;
}

.prog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.prog-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--cyan);
}

.prog-link {
  font-size: 13.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap .3s;
}

.prog-card:hover .prog-link {
  gap: 9px;
}

/* ---------- departments ---------- */
.dept-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

@media(max-width:900px) {
  .dept-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:560px) {
  .dept-grid {
    grid-template-columns: 1fr;
  }
}

.dept-card {
  padding: 26px 22px;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}

.dept-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74, 58, 255, 0.16), rgba(124, 58, 237, 0.16));
  opacity: 0;
  transition: opacity .4s;
}

.dept-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, 0.4);
}

.dept-card:hover::before {
  opacity: 1;
}

.dept-icon {
  font-size: 24px;
  transition: transform .4s var(--ease);
}

.dept-card:hover .dept-icon {
  transform: scale(1.15);
}

.dept-card h4 {
  font-size: 16px;
  margin-top: 14px;
  position: relative;
}

.dept-more {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
  font-size: 12.5px;
  color: var(--slate);
  position: relative;
}

.dept-card:hover .dept-more {
  max-height: 60px;
  margin-top: 8px;
}

/* ---------- campus life carousel ---------- */
.carousel-wrap {
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
  cursor: grab;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track.dragging {
  cursor: grabbing;
}

.cl-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 400px;
  border: 1px solid var(--glass-border);
}

.cl-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.cl-card:hover img {
  transform: scale(1.08);
}

.cl-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 11, 34, 0.92) 10%, rgba(8, 11, 34, 0.1) 55%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.cl-card h4 {
  font-size: 19px;
}

.carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
}

.cc-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  background: var(--glass-bg);
}

.cc-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ---------- experience ---------- */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media(max-width:900px) {
  .exp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:560px) {
  .exp-grid {
    grid-template-columns: 1fr;
  }
}

.exp-card {
  padding: 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform .3s var(--ease), border-color .3s;
}

.exp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 58, 255, 0.4);
}

.exp-emoji {
  font-size: 26px;
  flex-shrink: 0;
}

.exp-card h4 {
  font-size: 15.5px;
  margin-bottom: 6px;
}

.exp-card p {
  font-size: 13px;
  color: var(--slate);
}

/* ---------- placements ---------- */
.place-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

@media(max-width:700px) {
  .place-stats {
    grid-template-columns: 1fr;
  }
}

.place-stat {
  padding: 36px;
  text-align: center;
}

.place-stat .num {
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 700;
  font-family: 'Space Grotesk';
  color: var(--white);
}

.place-stat .num .accent {
  color: var(--cyan);
}

.place-stat .label {
  color: var(--slate);
  margin-top: 6px;
  font-size: 14px;
}

.marquee {
  overflow: hidden;
  position: relative;
  padding: 26px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
}

.marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--navy-deep), transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--navy-deep), transparent);
}

.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee-track span {
  font-family: 'Space Grotesk';
  font-size: 22px;
  font-weight: 600;
  color: var(--slate-dim);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* ---------- events ---------- */
.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media(max-width:900px) {
  .event-grid {
    grid-template-columns: 1fr;
  }
}

.event-card {
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s;
}

.event-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 58, 237, 0.45);
}

.event-img {
  height: 170px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.event-date-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(8, 11, 34, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 8px 12px;
  text-align: center;
  font-family: 'JetBrains Mono';
}

.event-date-badge .d {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: var(--cyan);
}

.event-date-badge .m {
  font-size: 10px;
  color: var(--slate);
  text-transform: uppercase;
}

.event-body {
  padding: 24px;
}

.event-body h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

.event-loc {
  font-size: 12.5px;
  color: var(--slate-dim);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-body p {
  font-size: 13.5px;
  color: var(--slate);
  margin-bottom: 18px;
}

/* ---------- testimonials ---------- */
.test-carousel {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  min-height: 260px;
}

.test-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  pointer-events: none;
}

.test-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.test-quote {
  font-size: clamp(18px, 2.4vw, 24px);
  font-family: 'Space Grotesk';
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 32px;
}

.test-person {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.test-person .name {
  font-weight: 600;
  font-size: 15px;
}

.test-person .role {
  color: var(--slate-dim);
  font-size: 13px;
}

.test-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.test-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--glass-border);
  transition: all .3s;
}

.test-dot.active {
  background: var(--cyan);
  width: 22px;
  border-radius: 4px;
}

/* ---------- news ---------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media(max-width:900px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:560px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.news-card {
  padding: 24px;
  transition: all .35s var(--ease);
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.35);
}

.news-tag {
  font-family: 'JetBrains Mono';
  font-size: 10.5px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.news-card h4 {
  font-size: 15.5px;
  margin: 12px 0 8px;
  line-height: 1.35;
}

.news-date {
  font-size: 12px;
  color: var(--slate-dim);
}

/* ---------- admissions ---------- */
.admit-section {
  border-radius: 32px;
  padding: 80px 50px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(74, 58, 255, 0.18), rgba(124, 58, 237, 0.14));
  border: 1px solid var(--glass-border);
  text-align: center;
}

@media(max-width:700px) {
  .admit-section {
    padding: 56px 24px;
  }
}

.admit-section h2 {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 20px;
}

.admit-steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 50px 0;
  text-align: left;
}

.admit-step {
  max-width: 220px;
}

.admit-step .n {
  font-family: 'JetBrains Mono';
  color: var(--cyan);
  font-size: 13px;
  margin-bottom: 8px;
}

.admit-step h5 {
  font-size: 15.5px;
  margin-bottom: 6px;
}

.admit-step p {
  font-size: 13px;
  color: var(--slate);
}

.admit-dates {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 36px;
  font-family: 'JetBrains Mono';
  font-size: 12.5px;
  color: var(--slate);
}

.admit-dates b {
  color: var(--white);
}

/* faq */
.faq {
  max-width: 760px;
  margin: 70px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--glass-border);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 4px;
  text-align: left;
  font-size: 15.5px;
  font-weight: 500;
}

.faq-q .plus {
  transition: transform .3s var(--ease);
  font-size: 20px;
  color: var(--cyan);
}

.faq-item.open .plus {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}

.faq-a p {
  padding: 0 4px 22px;
  color: var(--slate);
  font-size: 14.5px;
}

/* ---------- contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
}

@media(max-width:900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info-card {
  padding: 34px;
}

.cinfo-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--glass-border);
}

.cinfo-row:last-child {
  border-bottom: none;
}

.cinfo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(74, 58, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cinfo-row .lbl {
  font-size: 12px;
  color: var(--slate-dim);
}

.cinfo-row .val {
  font-size: 14.5px;
  margin-top: 2px;
}

.map-embed {
  margin-top: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 160px;
  border: 1px solid var(--glass-border);
  position: relative;
}

.map-fake {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(rgba(14, 19, 56, 0.75), rgba(14, 19, 56, 0.75)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono';
  font-size: 12px;
  color: var(--cyan);
}

.form-card {
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media(max-width:560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.field label {
  font-size: 12.5px;
  color: var(--slate);
}

.field input,
.field select,
.field textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 11px;
  padding: 13px 15px;
  color: var(--white);
  font-size: 14.5px;
  transition: all .25s var(--ease);
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.14);
}

.field.error input {
  border-color: #f87171;
}

.field .err-msg {
  font-size: 11.5px;
  color: #f87171;
  display: none;
}

.field.error .err-msg {
  display: block;
}

textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.form-status {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--cyan);
  display: none;
}

.form-status.show {
  display: block;
}

/* ---------- footer ---------- */
footer {
  position: relative;
  padding-top: 0;
}

.footer-glow {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--purple), var(--cyan), transparent);
  position: relative;
  overflow: visible;
}

.footer-glow::after {
  content: "";
  position: absolute;
  inset: -8px 0;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.5), transparent);
  filter: blur(10px);
}

.footer-inner {
  padding: 70px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  margin-bottom: 56px;
}

@media(max-width:900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-grid h5 {
  font-size: 13px;
  color: var(--slate-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  font-family: 'JetBrains Mono';
  font-weight: 500;
}

.footer-grid li {
  margin-bottom: 11px;
}

.footer-grid a {
  font-size: 14.5px;
  color: var(--slate);
  transition: color .25s;
}

.footer-grid a:hover {
  color: var(--cyan);
}

.footer-about p {
  color: var(--slate);
  font-size: 14px;
  margin: 16px 0 22px;
  max-width: 280px;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-row a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}

.social-row a:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-3px);
}

.news-sub {
  display: flex;
  gap: 0;
  margin-top: 6px;
}

.news-sub input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-right: none;
  border-radius: 10px 0 0 10px;
  padding: 11px 14px;
  color: #fff;
  font-size: 13.5px;
  outline: none;
}

.news-sub button {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  padding: 0 18px;
  border-radius: 0 10px 10px 0;
  font-size: 13px;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--glass-border);
  font-size: 13px;
  color: var(--slate-dim);
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: 22px;
}

/* ---------- misc ---------- */
.tilt-3d {
  transition: transform .1s ease-out;
}

.magnetic {
  transition: transform .25s var(--ease);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}