:root {
  --nova-navy: #0f1f5c;
  --nova-blue: #1b3280;
  --nova-blue-2: #2a4fb0;
  --nova-gold: #d4a017;
  --nova-yellow: #f0c525;
  --nova-ink: #22304c;
  --nova-muted: #62708a;
  --nova-soft: #f8f7f4;
  --nova-white: #ffffff;
  --nova-shadow: 0 16px 38px rgba(15, 31, 92, 0.12);
  --nova-radius: 18px;
  --nova-header-height: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--nova-ink);
  background: #fff;
  font-family: Inter, Arial, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nova-menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.nova-container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.nova-content-narrow { max-width: 860px; }
.nova-site-main { overflow: hidden; }
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute !important; width: 1px; word-wrap: normal !important;
}
.screen-reader-text:focus {
  background: #fff; clip: auto !important; clip-path: none; color: #000; display: block; height: auto; left: 8px; padding: 12px 16px; top: 8px; width: auto; z-index: 100000;
}

.nova-topbar {
  position: absolute;
  inset: 0 0 auto;
  z-index: 1001;
  height: 27px;
  background: rgba(9, 21, 63, 0.95);
  color: rgba(255,255,255,.78);
  font-size: 11px;
}
.nova-topbar__inner { height: 100%; display: flex; align-items: center; justify-content: flex-end; gap: 24px; }
.nova-topbar__item { display: inline-flex; align-items: center; gap: 5px; }
.nova-topbar .dashicons { color: var(--nova-yellow); font-size: 14px; width: 14px; height: 14px; }

.nova-header {
  position: fixed;
  z-index: 1000;
  left: 0; right: 0; top: 27px;
  height: var(--nova-header-height);
  background: transparent;
  transition: background .35s ease, box-shadow .35s ease, top .35s ease;
}
.nova-header.is-scrolled { top: 0; background: rgba(27, 50, 128, .96); box-shadow: 0 10px 32px rgba(0,0,0,.2); backdrop-filter: blur(14px); }
.nova-header__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 22px; }
.nova-brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; color: #fff; }
.nova-brand__mark {
  width: 46px; height: 46px; border-radius: 50%; display: inline-grid; place-items: center;
  background: linear-gradient(135deg, var(--nova-gold), var(--nova-yellow)); box-shadow: 0 8px 24px rgba(212,160,23,.25);
}
.nova-brand__mark .dashicons { width: 24px; height: 24px; font-size: 24px; color: #fff; }
.nova-brand__text { display: grid; line-height: 1.05; }
.nova-brand__text strong { font-family: 'Playfair Display', Georgia, serif; font-size: 15px; letter-spacing: .1px; }
.nova-brand__text small { color: var(--nova-yellow); font-size: 9px; letter-spacing: 2.7px; margin-top: 4px; }
.nova-brand__custom-logo-image { max-height: 58px; width: auto; }
.nova-brand--footer { margin-bottom: 18px; }
.nova-brand--footer .nova-brand__text strong { font-size: 16px; }

.nova-navigation { display: flex; align-items: center; gap: 12px; }
.nova-menu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nova-menu > li { position: relative; }
.nova-menu > li > a { display: block; color: #fff; font-size: 12px; font-weight: 600; padding: 11px 10px; border-radius: 8px; transition: color .2s, background .2s; white-space: nowrap; }
.nova-menu > li > a:hover,
.nova-menu > li.current-menu-item > a,
.nova-menu > li.current_page_item > a { color: var(--nova-yellow); background: rgba(255,255,255,.06); }
.nova-menu .menu-item-has-children > a::after { content: '⌄'; margin-left: 5px; font-size: 12px; }
.nova-menu .sub-menu {
  position: absolute; left: 0; top: calc(100% + 8px); min-width: 280px; list-style: none; margin: 0; padding: 8px;
  background: linear-gradient(135deg, #0f1f5c, #1b3280); border: 1px solid rgba(212,160,23,.32); border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0,0,0,.28); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .22s ease;
}
.nova-menu .menu-item-has-children:hover > .sub-menu,
.nova-menu .menu-item-has-children:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nova-menu .sub-menu a { display: block; padding: 10px 12px; color: #fff; font-size: 12px; border-radius: 8px; }
.nova-menu .sub-menu a:hover { background: rgba(255,255,255,.09); color: var(--nova-yellow); }
.nova-nav-actions { display: flex; align-items: center; gap: 8px; }
.nova-social-menu { position: relative; }
.nova-social-toggle { width: 35px; height: 35px; border-radius: 50%; color: #fff; border: 1px solid rgba(255,255,255,.35); background: transparent; cursor: pointer; font-weight: 800; transition: .2s; }
.nova-social-toggle:hover { color: var(--nova-yellow); border-color: var(--nova-yellow); }
.nova-social-panel {
  position: absolute; right: 0; top: calc(100% + 10px); width: 250px; border-radius: 14px; overflow: hidden; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .2s ease;
  background: linear-gradient(135deg, #0f1f5c, #1b3280); border: 1px solid rgba(212,160,23,.3); box-shadow: 0 18px 45px rgba(0,0,0,.28);
}
.nova-social-menu.is-open .nova-social-panel { opacity: 1; visibility: visible; transform: none; }
.nova-social-panel span { display: block; padding: 11px 14px; color: #abc2ee; text-transform: uppercase; letter-spacing: 1.6px; font-size: 10px; border-bottom: 1px solid rgba(255,255,255,.08); }
.nova-social-panel a { display: block; padding: 11px 14px; color: #fff; font-size: 12px; border-bottom: 1px solid rgba(255,255,255,.08); }
.nova-social-panel a:hover { background: rgba(255,255,255,.08); color: var(--nova-yellow); }
.nova-mobile-toggle { display: none; width: 42px; height: 42px; padding: 8px; border: 0; background: transparent; cursor: pointer; }
.nova-mobile-toggle span:not(.screen-reader-text) { display: block; width: 25px; height: 2px; margin: 5px auto; background: #fff; transition: .25s; }
.nova-mobile-toggle[aria-expanded="true"] span:nth-of-type(1) { transform: translateY(7px) rotate(45deg); }
.nova-mobile-toggle[aria-expanded="true"] span:nth-of-type(2) { opacity: 0; }
.nova-mobile-toggle[aria-expanded="true"] span:nth-of-type(3) { transform: translateY(-7px) rotate(-45deg); }

.nova-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 12px 25px; border-radius: 999px; font-size: 13px; font-weight: 700;
  border: 1px solid transparent; transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}
.nova-btn:hover { transform: translateY(-2px); }
.nova-btn--small { min-height: 38px; padding: 9px 16px; font-size: 11px; }
.nova-btn--gold { color: var(--nova-navy); background: linear-gradient(135deg, var(--nova-gold), var(--nova-yellow)); box-shadow: 0 10px 25px rgba(212,160,23,.18); }
.nova-btn--gold:hover { box-shadow: 0 14px 32px rgba(212,160,23,.3); }
.nova-btn--blue { color: #fff; background: linear-gradient(135deg, var(--nova-blue), var(--nova-blue-2)); box-shadow: 0 10px 25px rgba(27,50,128,.2); }
.nova-btn--outline { color: #fff; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.03); }
.nova-btn--outline:hover { color: var(--nova-yellow); border-color: var(--nova-yellow); }

.nova-hero {
  min-height: 720px; height: 100vh; max-height: 900px; display: grid; align-items: center; position: relative; isolation: isolate; color: #fff;
  background-image: linear-gradient(135deg, rgba(15,31,92,.93), rgba(27,50,128,.81) 55%, rgba(15,31,92,.76)), var(--hero-image);
  background-size: cover; background-position: center; overflow: hidden;
}
.nova-hero::after { content: ''; position: absolute; inset: auto 0 0; height: 150px; z-index: -1; background: linear-gradient(to top, rgba(0,0,0,.32), transparent); }
.nova-hero__content { position: relative; z-index: 2; padding-top: 100px; }
.nova-hero__content > * { max-width: 730px; }
.nova-pill { display: inline-flex; align-items: center; gap: 8px; border-radius: 999px; padding: 8px 16px; font-size: 12px; line-height: 1.2; letter-spacing: .1px; }
.nova-pill--hero { color: #f6d762; background: rgba(212,160,23,.17); border: 1px solid rgba(240,197,37,.46); }
.nova-pill .dashicons { width: 15px; height: 15px; font-size: 15px; }
.nova-hero h1 { margin: 24px 0 16px; max-width: 860px; font-family: 'Playfair Display', Georgia, serif; font-size: clamp(46px, 6.3vw, 78px); line-height: 1.04; letter-spacing: -.035em; font-weight: 900; }
.nova-hero h1 span { color: var(--nova-yellow); }
.nova-hero p { max-width: 650px; color: #dce6ff; font-size: clamp(15px, 1.7vw, 18px); line-height: 1.75; margin: 0 0 30px; }
.nova-hero__buttons { display: flex; flex-wrap: wrap; gap: 13px; }
.nova-scroll-cue { position: absolute; left: 50%; bottom: 28px; width: 25px; height: 42px; border: 2px solid rgba(255,255,255,.45); border-radius: 18px; transform: translateX(-50%); }
.nova-scroll-cue span { position: absolute; left: 50%; top: 8px; width: 4px; height: 10px; border-radius: 4px; background: rgba(255,255,255,.7); transform: translateX(-50%); animation: nova-scroll 1.5s infinite; }
@keyframes nova-scroll { 0%,100% { transform: translate(-50%,0); opacity:.5; } 50% { transform: translate(-50%,10px); opacity:1; } }
.nova-hero__particles i { position: absolute; z-index: 1; width: 4px; height: 4px; background: var(--nova-yellow); border-radius: 50%; opacity: .3; animation: nova-float 4s ease-in-out infinite; }
.nova-hero__particles i:nth-child(1){left:8%;top:22%}.nova-hero__particles i:nth-child(2){left:18%;top:70%;animation-delay:.4s}.nova-hero__particles i:nth-child(3){left:29%;top:33%;animation-delay:.8s}.nova-hero__particles i:nth-child(4){left:42%;top:77%;animation-delay:1.2s}.nova-hero__particles i:nth-child(5){left:55%;top:19%;animation-delay:1.6s}.nova-hero__particles i:nth-child(6){left:69%;top:60%;animation-delay:2s}.nova-hero__particles i:nth-child(7){left:83%;top:26%;animation-delay:2.4s}.nova-hero__particles i:nth-child(8){left:91%;top:71%;animation-delay:2.8s}.nova-hero__particles i:nth-child(9){left:13%;top:46%;animation-delay:1.1s}.nova-hero__particles i:nth-child(10){left:37%;top:13%;animation-delay:1.7s}.nova-hero__particles i:nth-child(11){left:63%;top:82%;animation-delay:2.2s}.nova-hero__particles i:nth-child(12){left:76%;top:42%;animation-delay:3s}
@keyframes nova-float { 0%,100%{transform:translateY(-12px);opacity:.2}50%{transform:translateY(12px);opacity:.65} }

.nova-stats { position: relative; background: linear-gradient(135deg, var(--nova-navy), var(--nova-blue)); color: #fff; padding: 50px 0; overflow: hidden; }
.nova-stats::before,.nova-stats::after { content:''; position:absolute; width:260px; height:260px; background:rgba(212,160,23,.15); filter:blur(90px); border-radius:50%; }
.nova-stats::before{left:-100px;top:-170px}.nova-stats::after{right:-100px;bottom:-170px}
.nova-stats__grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.nova-stat { text-align: center; padding: 12px; }
.nova-stat strong { display: block; color: var(--nova-yellow); font-family: 'Playfair Display', Georgia, serif; font-size: clamp(31px, 3vw, 45px); line-height: 1.1; margin: 10px 0 4px; }
.nova-stat small { color: #bed0f4; font-size: 12px; }
.nova-icon-box { width: 46px; height: 46px; display: inline-grid; place-items: center; border-radius: 13px; color: var(--nova-gold); background: rgba(212,160,23,.1); border: 1px solid rgba(212,160,23,.22); }
.nova-icon-box .dashicons { width: 22px; height: 22px; font-size: 22px; }
.nova-icon-box--gold { color: #fff; background: linear-gradient(135deg, var(--nova-gold), var(--nova-yellow)); }

.nova-section { padding: 95px 0; position: relative; }
.nova-section--soft { background: var(--nova-soft); }
.nova-section--white { background: #fff; }
.nova-section--navy { background: linear-gradient(135deg, var(--nova-navy), var(--nova-blue)); color: #fff; }
.nova-section-tag { display: inline-block; padding: 6px 13px; border-radius: 999px; margin-bottom: 12px; color: var(--nova-gold); background: rgba(212,160,23,.11); border: 1px solid rgba(212,160,23,.25); font-size: 10px; letter-spacing: 1.7px; text-transform: uppercase; font-weight: 700; }
.nova-section h2, .nova-robotics h2, .nova-cta h2 { margin: 0; font-family: 'Playfair Display', Georgia, serif; color: var(--nova-navy); font-size: clamp(34px, 4vw, 50px); line-height: 1.13; letter-spacing: -.025em; }
.nova-section h2 span, .nova-robotics h2 span, .nova-cta h2 span { color: var(--nova-blue); }
.nova-section-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.nova-section-head p { margin: 15px auto 0; max-width: 660px; color: var(--nova-muted); font-size: 14px; }
.nova-section-head--light h2 { color: #fff; }
.nova-section-head--light h2 span { color: var(--nova-yellow); }
.nova-section-head--light p { color: #c7d5f1; }

.nova-about { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.nova-about__media { position: relative; }
.nova-image-frame { aspect-ratio: 4/3; border-radius: var(--nova-radius); overflow: hidden; box-shadow: var(--nova-shadow); position: relative; }
.nova-image-frame::after { content:''; position:absolute; inset:0; background:linear-gradient(to top,rgba(15,31,92,.35),transparent 55%); }
.nova-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.nova-about__media::before { content:''; position:absolute; z-index:-1; width:90px; height:90px; left:-16px; top:-16px; border-radius:18px; background:rgba(212,160,23,.12); border:2px solid rgba(212,160,23,.22); }
.nova-year-badge { position:absolute; right:-25px; bottom:-25px; width:112px; padding:18px 12px; border-radius:17px; text-align:center; color:#fff; background:linear-gradient(135deg,var(--nova-gold),var(--nova-yellow)); box-shadow:0 14px 32px rgba(212,160,23,.25); }
.nova-year-badge strong { display:block; font-family:'Playfair Display',Georgia,serif; font-size:28px; line-height:1; }
.nova-year-badge span { display:block; font-size:10px; margin-top:5px; }
.nova-about__content p { color: #5f6877; font-size: 14px; margin: 16px 0; }
.nova-chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 25px 0 28px; }
.nova-chip-row > span { display: inline-flex; align-items: center; gap: 7px; padding: 8px 12px; border-radius: 999px; background: #fff; box-shadow: 0 7px 20px rgba(15,31,92,.08); font-size: 11px; color: #4e5b72; }
.nova-chip-row .dashicons { color: var(--nova-blue); width: 15px; height: 15px; font-size: 15px; }

.nova-card-grid { display: grid; gap: 20px; }
.nova-card-grid--four { grid-template-columns: repeat(4, 1fr); }
.nova-glass-card { padding: 26px; border-radius: 16px; background: rgba(255,255,255,.055); border: 1px solid rgba(212,160,23,.18); transition: transform .25s, background .25s; }
.nova-glass-card:hover { transform: translateY(-8px); background: rgba(255,255,255,.08); }
.nova-glass-card h3 { margin: 18px 0 9px; color: #fff; font-family: 'Playfair Display', Georgia, serif; font-size: 17px; }
.nova-glass-card p { color: #c7d5f1; font-size: 12px; line-height: 1.75; margin: 0; }

.nova-robotics { color: #fff; background-image: linear-gradient(135deg,rgba(15,31,92,.94),rgba(27,50,128,.88)), var(--robotics-image); background-size: cover; background-position: center; }
.nova-robotics__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.nova-robotics h2 { color: #fff; }
.nova-robotics h2 span { color: var(--nova-yellow); }
.nova-robotics p { color: #d4e0f7; font-size: 14px; }
.nova-robotics strong { color: #fff; }
.nova-feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.nova-feature-list > div { display: flex; align-items: flex-start; gap: 10px; padding: 14px; border-radius: 12px; color: #dce6fa; background: rgba(255,255,255,.07); border: 1px solid rgba(212,160,23,.22); font-size: 12px; line-height: 1.55; }
.nova-feature-list .dashicons { flex: 0 0 auto; display: grid; place-items: center; width: 23px; height: 23px; border-radius: 50%; color: #fff; background: linear-gradient(135deg,var(--nova-gold),var(--nova-yellow)); font-size: 13px; }

.nova-timeline { position: relative; max-width: 940px; margin: 0 auto; }
.nova-timeline::before { content:''; position:absolute; left:50%; top:0; bottom:0; width:2px; background:linear-gradient(to bottom,var(--nova-blue),var(--nova-gold),var(--nova-blue)); transform:translateX(-50%); }
.nova-timeline__row { display: grid; grid-template-columns: 1fr 46px 1fr; gap: 24px; align-items: center; margin: 0 0 22px; }
.nova-timeline__row.is-right .nova-timeline__card { grid-column: 3; text-align: left; }
.nova-timeline__row.is-right .nova-timeline__dot { grid-column: 2; grid-row: 1; }
.nova-timeline__row.is-right .nova-timeline__spacer { grid-column: 1; grid-row: 1; }
.nova-timeline__row.is-left .nova-timeline__card { text-align: right; }
.nova-timeline__card { padding: 20px 24px; border-radius: 15px; background: #fff; box-shadow: 0 9px 25px rgba(15,31,92,.09); transition: transform .2s; }
.nova-timeline__card:hover { transform: scale(1.015); }
.nova-timeline__card span { color: var(--nova-gold); font-size: 9px; text-transform: uppercase; letter-spacing: 1.3px; }
.nova-timeline__card h3 { margin: 5px 0; font-family: 'Playfair Display', Georgia, serif; color: var(--nova-navy); font-size: 15px; }
.nova-timeline__card p { margin: 0; color: var(--nova-muted); font-size: 11px; }
.nova-timeline__dot { position:relative; z-index:2; width:38px; height:38px; margin:auto; display:grid; place-items:center; border-radius:50%; color:#fff; background:linear-gradient(135deg,var(--nova-blue),var(--nova-blue-2)); box-shadow:0 7px 18px rgba(27,50,128,.25); }
.nova-timeline__row:nth-child(odd) .nova-timeline__dot { background:linear-gradient(135deg,var(--nova-gold),var(--nova-yellow)); }
.nova-timeline__dot .dashicons { font-size:18px; width:18px; height:18px; }

.nova-campus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.nova-campus-card { min-height: 410px; position:relative; overflow:hidden; display:flex; flex-direction:column; justify-content:space-between; padding:25px; border-radius:17px; border:1px solid rgba(212,160,23,.2); color:#fff; background-image:linear-gradient(to top,rgba(15,31,92,.98) 22%,rgba(15,31,92,.32) 100%),var(--campus-image); background-size:cover; background-position:center; transition:transform .3s,box-shadow .3s; }
.nova-campus-card:hover { transform:translateY(-8px); box-shadow:0 20px 45px rgba(0,0,0,.22); }
.nova-campus-card__tag { align-self:flex-start; padding:6px 11px; border-radius:999px; color:var(--nova-yellow); background:rgba(212,160,23,.2); border:1px solid rgba(212,160,23,.4); font-size:9px; }
.nova-campus-card h3 { margin:0 0 2px; font-family:'Playfair Display',Georgia,serif; font-size:19px; }
.nova-campus-card strong { color:var(--nova-yellow); font-size:11px; }
.nova-campus-card p { color:#cbd8f3; font-size:12px; line-height:1.65; margin:10px 0 18px; }

.nova-vision-grid { display:grid; grid-template-columns:1fr 1fr; gap:28px; }
.nova-vision-card { padding:32px; border-radius:18px; transition:transform .25s; }
.nova-vision-card:hover { transform:translateY(-4px); }
.nova-vision-card--gold { background:linear-gradient(135deg,rgba(212,160,23,.09),rgba(212,160,23,.02)); border:1px solid rgba(212,160,23,.26); }
.nova-vision-card--blue { background:linear-gradient(135deg,rgba(27,50,128,.08),rgba(27,50,128,.02)); border:1px solid rgba(27,50,128,.18); }
.nova-vision-card h3 { margin:18px 0 10px; color:var(--nova-navy); font-family:'Playfair Display',Georgia,serif; font-size:23px; }
.nova-vision-card p { color:#5e687b; font-size:13px; }
.nova-tag-row { display:flex; flex-wrap:wrap; gap:7px; margin-top:18px; }
.nova-tag-row span { padding:5px 9px; border-radius:999px; font-size:9px; background:rgba(27,50,128,.07); color:var(--nova-blue); border:1px solid rgba(27,50,128,.14); }
.nova-vision-card--gold .nova-tag-row span { color:#a77a00; background:rgba(212,160,23,.08); border-color:rgba(212,160,23,.18); }

.nova-leader-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:25px; }
.nova-leader-card { overflow:hidden; border-radius:17px; background:#fff; box-shadow:0 10px 28px rgba(15,31,92,.1); border:1px solid rgba(27,50,128,.08); transition:transform .25s; }
.nova-leader-card:hover { transform:translateY(-6px); }
.nova-leader-card__image { height:190px; display:grid; place-items:center; position:relative; overflow:hidden; background:linear-gradient(180deg,#f2f3f7,#8090bd); }
.nova-leader-card__image::after { content:''; position:absolute; inset:0; background:linear-gradient(to top,rgba(15,31,92,.68),transparent); }
.nova-leader-card__image img { width:100%; height:100%; object-fit:cover; }
.nova-leader-card__image > .dashicons { color:rgba(255,255,255,.45); width:40px; height:40px; font-size:40px; }
.nova-leader-card__body { padding:23px; }
.nova-leader-card__body i { display:block; width:42px; height:3px; border-radius:3px; background:linear-gradient(90deg,var(--nova-gold),var(--nova-yellow)); margin-bottom:14px; }
.nova-leader-card h3 { margin:0; color:var(--nova-navy); font-family:'Playfair Display',Georgia,serif; font-size:16px; }
.nova-leader-card strong { display:block; color:var(--nova-gold); font-size:10px; margin:2px 0 12px; }
.nova-leader-card p { color:#657087; font-size:11px; line-height:1.7; margin:0; font-style:italic; }

.nova-cta { padding:80px 0; text-align:center; color:#fff; background-image:linear-gradient(135deg,rgba(15,31,92,.95),rgba(212,160,23,.27)),var(--cta-image); background-size:cover; background-position:center; }
.nova-cta .nova-container { max-width:850px; }
.nova-cta h2 { color:#fff; }
.nova-cta h2 span { color:var(--nova-yellow); }
.nova-cta p { max-width:610px; margin:15px auto 28px; color:#d7e2f7; font-size:14px; }
.nova-cta .nova-btn + .nova-btn { margin-left:10px; }

.nova-footer { color:#fff; background:linear-gradient(135deg,#09143e,#1b3280 58%,#09143e); }
.nova-footer__line { height:3px; background:linear-gradient(90deg,transparent,var(--nova-gold),transparent); }
.nova-footer__grid { display:grid; grid-template-columns:1.35fr .75fr .95fr 1fr; gap:44px; padding-top:62px; padding-bottom:55px; }
.nova-footer p { color:#bdccec; font-size:11px; line-height:1.75; }
.nova-footer h4 { font-family:'Playfair Display',Georgia,serif; font-size:13px; margin:20px 0 10px; }
.nova-footer__heading { color:var(--nova-gold); font-family:'Playfair Display',Georgia,serif; font-size:15px; padding-bottom:10px; margin:0 0 18px; border-bottom:1px solid rgba(212,160,23,.28); }
.footer-links,.nova-campus-links,.nova-contact-list { list-style:none; padding:0; margin:0; }
.footer-links li { margin-bottom:8px; }
.footer-links a { display:flex; align-items:center; gap:8px; color:#c4d2ef; font-size:11px; transition:.2s; }
.footer-links a::before { content:''; width:5px; height:5px; border-radius:50%; background:var(--nova-gold); opacity:.7; }
.footer-links a:hover,.nova-campus-links a:hover,.nova-contact-list a:hover { color:var(--nova-yellow); transform:translateX(3px); }
.nova-campus-links li { margin-bottom:15px; }
.nova-campus-links a { display:flex; align-items:flex-start; gap:8px; color:#c4d2ef; font-size:11px; line-height:1.5; transition:.2s; }
.nova-campus-links .dashicons,.nova-contact-list .dashicons { color:var(--nova-gold); width:15px; height:15px; font-size:15px; flex:0 0 auto; margin-top:2px; }
.nova-contact-list li { display:flex; align-items:flex-start; gap:9px; color:#c4d2ef; font-size:11px; margin-bottom:14px; }
.nova-contact-list a { transition:.2s; }
.nova-footer-socials { display:grid; gap:8px; }
.nova-footer-socials a { display:flex; align-items:center; gap:8px; color:#c4d2ef; font-size:10px; transition:.2s; }
.nova-footer-socials a:hover { color:var(--nova-yellow); transform:translateX(3px); }
.nova-footer-socials a span { width:24px;height:24px;border-radius:50%;display:grid;place-items:center;border:1px solid rgba(255,255,255,.2);font-weight:800; }
.nova-footer__bottom { border-top:1px solid rgba(255,255,255,.09); }
.nova-footer__bottom .nova-container { display:flex; justify-content:space-between; align-items:center; gap:20px; padding-top:17px; padding-bottom:17px; }
.nova-footer__bottom p { margin:0; font-size:10px; color:#93a9d5; }

.nova-content-area { min-height:70vh; padding-top:160px; }
.nova-page-header { text-align:center; margin-bottom:42px; }
.nova-page-header h1 { margin:0; color:var(--nova-navy); font-family:'Playfair Display',Georgia,serif; font-size:clamp(38px,5vw,62px); line-height:1.1; }
.nova-entry { background:#fff; border-radius:18px; padding:36px; box-shadow:var(--nova-shadow); }
.nova-entry__featured { border-radius:14px; overflow:hidden; margin-bottom:28px; }
.nova-entry__content { color:#4f5a70; }
.nova-entry__content h2,.nova-entry__content h3 { color:var(--nova-navy); }
.nova-post-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.nova-post-card { overflow:hidden; border-radius:16px; background:#fff; box-shadow:0 9px 24px rgba(15,31,92,.09); }
.nova-post-card__image { display:block; aspect-ratio:16/10; overflow:hidden; }
.nova-post-card__image img { width:100%;height:100%;object-fit:cover;transition:transform .4s; }
.nova-post-card:hover .nova-post-card__image img { transform:scale(1.05); }
.nova-post-card__body { padding:24px; }
.nova-post-card__body small { color:var(--nova-gold); font-size:10px; }
.nova-post-card__body h2 { margin:8px 0; font-size:21px; line-height:1.25; }
.nova-post-card__body h2 a { color:var(--nova-navy); }
.nova-post-card__body p { color:var(--nova-muted); font-size:12px; }
.nova-text-link { color:var(--nova-blue); font-size:12px; font-weight:700; }
.nova-error-page { min-height:75vh; display:grid; place-items:center; padding:160px 0 90px; text-align:center; background:var(--nova-soft); }
.nova-error-page h1 { color:var(--nova-navy); font-family:'Playfair Display',Georgia,serif; font-size:56px; margin:0; }
.nova-error-page p { color:var(--nova-muted); margin:10px 0 24px; }

.reveal { opacity:0; transform:translateY(35px); transition:opacity .7s ease,transform .7s ease; }
.reveal-left { transform:translateX(-40px); }
.reveal-right { transform:translateX(40px); }
.reveal.is-visible { opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *,*::before,*::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
  .reveal { opacity:1; transform:none; }
}

@media (max-width: 1120px) {
  .nova-mobile-toggle { display:block; }
  .nova-navigation {
    position:fixed; inset:0 0 0 auto; width:min(390px,88vw); height:100vh; padding:115px 25px 35px; display:block; overflow-y:auto;
    background:linear-gradient(160deg,#0c194c,#1b3280); box-shadow:-16px 0 40px rgba(0,0,0,.25); transform:translateX(105%); transition:transform .3s ease;
  }
  .nova-navigation.is-open { transform:none; }
  .nova-menu { display:block; }
  .nova-menu > li > a { padding:12px 13px; font-size:14px; }
  .nova-menu .sub-menu { position:static; min-width:0; display:none; margin:4px 0 8px 14px; opacity:1; visibility:visible; transform:none; box-shadow:none; background:rgba(255,255,255,.05); }
  .nova-menu .menu-item-has-children.submenu-open > .sub-menu { display:block; }
  .nova-nav-actions { display:grid; grid-template-columns:1fr 1fr; margin-top:18px; }
  .nova-social-menu { grid-column:1/-1; }
  .nova-social-panel { position:static; width:100%; display:none; margin-top:8px; opacity:1; visibility:visible; transform:none; }
  .nova-social-menu.is-open .nova-social-panel { display:block; }
  .nova-social-toggle { width:100%; border-radius:999px; }
  .nova-card-grid--four { grid-template-columns:repeat(2,1fr); }
  .nova-footer__grid { grid-template-columns:1.2fr 1fr 1fr; }
  .nova-footer__grid > div:last-child { grid-column:2/4; }
}

@media (max-width: 840px) {
  .nova-topbar { display:none; }
  .nova-header { top:0; background:rgba(27,50,128,.92); }
  .nova-hero { min-height:680px; height:auto; padding:130px 0 85px; }
  .nova-hero__content { padding-top:0; }
  .nova-hero h1 { font-size:clamp(42px,11vw,64px); }
  .nova-stats__grid { grid-template-columns:repeat(2,1fr); }
  .nova-about,.nova-robotics__grid { grid-template-columns:1fr; gap:55px; }
  .nova-about__media { max-width:620px; }
  .nova-card-grid--four,.nova-campus-grid,.nova-leader-grid { grid-template-columns:1fr 1fr; }
  .nova-vision-grid { grid-template-columns:1fr; }
  .nova-feature-list { grid-template-columns:1fr; }
  .nova-post-grid { grid-template-columns:1fr 1fr; }
  .nova-footer__grid { grid-template-columns:1fr 1fr; }
  .nova-footer__grid > div:last-child { grid-column:auto; }
}

@media (max-width: 620px) {
  :root { --nova-header-height:70px; }
  .nova-container { width:min(100% - 28px,1180px); }
  .nova-brand__mark { width:40px;height:40px; }
  .nova-brand__text strong { font-size:13px; }
  .nova-brand__text small { font-size:8px;letter-spacing:2px; }
  .nova-section { padding:72px 0; }
  .nova-hero { min-height:650px; padding-top:120px; }
  .nova-hero h1 { font-size:43px; }
  .nova-pill { font-size:10px; }
  .nova-hero__buttons,.nova-hero__buttons .nova-btn { width:100%; }
  .nova-stats__grid { gap:6px; }
  .nova-stat { padding:10px 4px; }
  .nova-stat strong { font-size:31px; }
  .nova-about { gap:50px; }
  .nova-year-badge { right:10px;bottom:-30px; }
  .nova-card-grid--four,.nova-campus-grid,.nova-leader-grid,.nova-post-grid { grid-template-columns:1fr; }
  .nova-timeline::before { left:18px; }
  .nova-timeline__row { grid-template-columns:38px 1fr; gap:12px; margin-bottom:17px; }
  .nova-timeline__row.is-left .nova-timeline__card,.nova-timeline__row.is-right .nova-timeline__card { grid-column:2; grid-row:1; text-align:left; }
  .nova-timeline__row.is-left .nova-timeline__dot,.nova-timeline__row.is-right .nova-timeline__dot { grid-column:1;grid-row:1; }
  .nova-timeline__spacer { display:none; }
  .nova-timeline__card { padding:17px; }
  .nova-campus-card { min-height:390px; }
  .nova-cta .nova-btn { width:100%; }
  .nova-cta .nova-btn + .nova-btn { margin:10px 0 0; }
  .nova-footer__grid { grid-template-columns:1fr; gap:34px; }
  .nova-footer__bottom .nova-container { display:block;text-align:center; }
  .nova-footer__bottom p + p { margin-top:5px; }
  .nova-entry { padding:22px; }
  .nova-page-header h1 { font-size:40px; }
}
