:root {
  --navy-950: #061126;
  --navy-900: #071831;
  --navy-800: #0c2447;
  --blue: #2167f3;
  --blue-light: #e8f0ff;
  --green: #16b98a;
  --green-bright: #42e8b4;
  --orange: #ffb84d;
  --cream: #f7f5ef;
  --paper: #ffffff;
  --ink: #12213d;
  --muted: #66738a;
  --line: #e5e9f0;
  --shadow: 0 24px 70px rgba(6, 17, 38, .12);
  --radius: 28px;
  --button-radius: 15px;
  --container-width: 1180px;
  --section-space: 115px;
  --hero-title-size: 78px;
  --section-title-size: 53px;
}

* { box-sizing: border-box; }
html { max-width: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Vazirmatn", Tahoma, sans-serif;
  line-height: 1.75;
  overflow-x: clip;
  position: relative;
}
main, section, header, footer { max-width: 100vw; overflow-x: clip; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(var(--container-width), calc(100% - 40px)); margin-inline: auto; }
main { display: flex; flex-direction: column; }
.skip-link { position: fixed; z-index: 9999; top: 12px; right: 12px; transform: translateY(-150%); background: white; padding: 10px 16px; border-radius: 12px; }
.skip-link:focus { transform: none; }

.site-header { position: absolute; z-index: 100; top: 0; right: 0; left: 0; color: var(--ink); }
.site-header.scrolled { position: fixed; background: rgba(246, 250, 247, .9); backdrop-filter: blur(18px); box-shadow: 0 10px 40px rgba(6,17,38,.1); }
.site-header.scrolled .announcement { display: none; }
.site-header.scrolled .nav-shell { height: 68px; margin-top: 7px; margin-bottom: 7px; }
.announcement { border-bottom: 1px solid rgba(255,255,255,.1); color: white; background: rgba(7,22,47,.88); font-size: 12px; }
.announcement-inner { height: 36px; display: flex; align-items: center; justify-content: space-between; }
.announcement p { margin: 0; display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.84); }
.announcement a { color: var(--green-bright); font-weight: 700; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 0 5px rgba(66,232,180,.12); }
.nav-shell { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 26px; margin-top: 13px; padding: 7px 18px; border: 1px solid rgba(255,255,255,.75); border-radius: 21px; background: rgba(255,255,255,.94); backdrop-filter: blur(18px); box-shadow: 0 18px 55px rgba(6,17,38,.13); transition: .25s; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-logo { width: 124px; height: 62px; display: block; object-fit: contain; }
.brand-mark { width: 43px; height: 43px; display: grid; place-items: center; color: var(--green-bright); }
.brand-mark svg { width: 100%; height: 100%; }
.brand-copy { display: grid; line-height: 1.2; }
.brand-copy strong { font-size: 18px; font-weight: 900; letter-spacing: -.4px; }
.brand-copy small { margin-top: 5px; font-size: 9px; letter-spacing: 1.5px; color: rgba(255,255,255,.57); }
.desktop-nav { display: flex; align-items: center; gap: 24px; font-size: 12px; font-weight: 700; color: #5d6879; }
.desktop-nav a { position: relative; transition: color .25s; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--navy-900); }
.desktop-nav a.active::after { content: ""; position: absolute; right: 0; left: 0; bottom: -13px; height: 2px; background: var(--green-bright); border-radius: 9px; }
.nav-actions { display: flex; align-items: center; gap: 17px; }
.text-action { display: flex; align-items: center; gap: 7px; font-size: 11px; color: #5d6879; }
.text-action svg { width: 16px; height: 16px; }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 25px; border: 1px solid transparent; border-radius: var(--button-radius); font-weight: 800; font-size: 14px; transition: transform .25s, box-shadow .25s, background .25s; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; height: 18px; }
.button-small { min-height: 43px; padding-inline: 19px; border-radius: 12px; font-size: 12px; }
.button-primary { color: var(--navy-950); background: var(--green-bright); box-shadow: 0 10px 30px rgba(66,232,180,.2); }
.button-primary:hover { box-shadow: 0 14px 35px rgba(66,232,180,.34); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 11px; background: #f6f8fb; padding: 10px; }
.menu-toggle span { display: block; height: 2px; margin: 4px 0; background: var(--navy-900); border-radius: 4px; transition: .25s; }
.mobile-menu { display: none; width: min(1180px,calc(100% - 28px)); margin: 7px auto 0; padding: 10px 20px 24px; border-radius: 18px; color: white; background: var(--navy-950); box-shadow: var(--shadow); }
.mobile-menu a { display: block; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); }

.hero { min-height: 780px; height: min(860px, 100vh); position: relative; display: flex; align-items: center; color: white; overflow: hidden; background: var(--navy-950); }
.hero-media { position: absolute; inset: 0; background: url("assets/images/school-innovation-lab.png") center/cover no-repeat; transform: scale(1.01); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,17,38,.18) 0%, rgba(6,17,38,.45) 42%, rgba(6,17,38,.97) 76%, var(--navy-950) 100%); }
.hero-grid-pattern { position: absolute; inset: 0; opacity: .15; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 70px 70px; mask-image: linear-gradient(to left, black, transparent 68%); }
.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .55fr; align-items: center; gap: 80px; padding-top: 100px; }
.hero-copy { max-width: 650px; }
.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 18px; color: var(--green-bright); font-size: 12px; font-weight: 800; letter-spacing: .2px; }
.eyebrow-icon { width: 26px; height: 26px; display: grid; place-items: center; border: 1px solid rgba(66,232,180,.32); border-radius: 8px; background: rgba(66,232,180,.1); }
.hero h1 { max-width: 650px; margin: 0 0 25px; font-size: clamp(48px, 5.8vw, var(--hero-title-size)); font-weight: 900; line-height: 1.2; letter-spacing: -3px; }
.hero h1 span { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.75); }
.hero-copy > p { max-width: 570px; margin: 0 0 31px; color: rgba(255,255,255,.7); font-size: 16px; line-height: 2; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button-ghost { color: white; border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.06); backdrop-filter: blur(10px); }
.play-icon { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: white; color: var(--navy-950); }
.play-icon svg { width: 14px; height: 14px; fill: currentColor; stroke: none; }
.hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 32px; }
.avatar-stack { display: flex; direction: ltr; }
.avatar-stack span { width: 31px; height: 31px; display: grid; place-items: center; margin-left: -8px; border: 2px solid var(--navy-900); border-radius: 50%; background: linear-gradient(135deg,#6d83ad,#273d65); color: white; font-size: 10px; }
.stars { color: var(--orange); font-size: 11px; letter-spacing: 2px; }
.hero-trust p { margin: 2px 0 0; color: rgba(255,255,255,.58); font-size: 10px; }
.hero-trust strong { color: white; }
.hero-card { align-self: end; width: 310px; margin-bottom: 70px; padding: 22px; border: 1px solid rgba(255,255,255,.18); border-radius: 22px; background: rgba(8,28,57,.74); backdrop-filter: blur(18px); box-shadow: 0 24px 70px rgba(0,0,0,.22); }
.hero-card-head { display: flex; align-items: start; justify-content: space-between; }
.hero-card-head div { display: grid; }
.hero-card-head span { color: rgba(255,255,255,.58); font-size: 10px; }
.hero-card-head strong { margin-top: 2px; font-size: 13px; }
.mini-badge { padding: 4px 8px; border-radius: 6px; color: var(--green-bright)!important; background: rgba(66,232,180,.1); }
.growth-chart { height: 112px; margin: 12px -3px 3px; }
.growth-chart svg { width: 100%; height: 100%; overflow: visible; }
.chart-area { fill: url(#chart-fill); stroke: none; }
.chart-line { fill: none; stroke: var(--green-bright); stroke-width: 2.5; }
.growth-chart circle { fill: var(--green-bright); stroke: rgba(66,232,180,.25); stroke-width: 10; }
.skill-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; }
.skill-list > div { display: flex; align-items: center; gap: 6px; padding: 8px 5px; border-radius: 9px; background: rgba(255,255,255,.05); }
.skill-icon { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 7px; font-size: 11px; }
.skill-icon.blue { color: #77a5ff; background: rgba(33,103,243,.18); }
.skill-icon.green { color: var(--green-bright); background: rgba(66,232,180,.12); }
.skill-icon.orange { color: var(--orange); background: rgba(255,184,77,.12); }
.skill-list p { display: grid; margin: 0; line-height: 1.25; }
.skill-list strong { font-size: 8px; }
.skill-list small { margin-top: 3px; color: rgba(255,255,255,.45); font-size: 7px; }
.scroll-hint { position: absolute; z-index: 3; bottom: 30px; left: 50%; display: flex; align-items: center; gap: 12px; transform: translateX(-50%); color: rgba(255,255,255,.47); font-size: 9px; }
.scroll-hint i { width: 22px; height: 34px; position: relative; border: 1px solid rgba(255,255,255,.3); border-radius: 20px; }
.scroll-hint i::before { content: ""; position: absolute; top: 7px; left: 50%; width: 3px; height: 7px; transform: translateX(-50%); border-radius: 4px; background: var(--green-bright); animation: scroll-down 1.8s infinite; }
@keyframes scroll-down { 0% { opacity: 0; transform: translate(-50%,0); } 50% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%,10px); } }

.quick-access { position: relative; z-index: 4; margin-top: -1px; background: white; border-bottom: 1px solid var(--line); }
.quick-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.quick-item { min-height: 125px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 17px; padding: 24px 34px; border-left: 1px solid var(--line); transition: background .25s; }
.quick-item:first-child { border-right: 1px solid var(--line); }
.quick-item:hover { background: #fafbfd; }
.quick-icon { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 14px; }
.quick-icon svg { width: 21px; height: 21px; }
.quick-icon.blue { color: var(--blue); background: var(--blue-light); }
.quick-icon.green { color: var(--green); background: #e5f9f3; }
.quick-icon.orange { color: #e79518; background: #fff4df; }
.quick-item > span:nth-child(2) { display: grid; line-height: 1.5; }
.quick-item strong { font-size: 13px; }
.quick-item small { margin-top: 4px; color: var(--muted); font-size: 10px; }
.quick-item b { color: #a9b2c1; transition: transform .25s; }
.quick-item:hover b { transform: translateX(-5px); color: var(--blue); }

.section { padding: var(--section-space) 0; }
.approach { background: var(--cream); }
.section-heading { margin-bottom: 55px; }
.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 80px; }
.section-kicker { color: var(--blue); margin-bottom: 13px; }
.section-heading h2, .experience h2, .admission h2 { margin: 0; color: var(--navy-900); font-size: clamp(34px, 4vw, var(--section-title-size)); line-height: 1.35; letter-spacing: -2px; }
.section-heading h2 em { color: var(--blue); font-style: normal; }
.split-heading > p { max-width: 510px; margin: 0 0 5px; color: var(--muted); font-size: 14px; line-height: 2; }
.approach-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feature-card { min-height: 330px; position: relative; padding: 30px; overflow: hidden; border: 1px solid rgba(15,32,61,.08); border-radius: var(--radius); background: white; box-shadow: 0 15px 45px rgba(30,42,67,.05); }
.feature-card.featured { min-height: 400px; grid-column: span 2; display: grid; grid-template-columns: 1fr .9fr; align-items: center; padding: 44px; color: white; background: var(--navy-900); }
.feature-number { color: #aab4c4; font-size: 11px; font-weight: 800; }
.feature-card h3 { margin: 28px 0 12px; font-size: 22px; }
.feature-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 2; }
.feature-card.featured p { color: rgba(255,255,255,.62); }
.feature-content { position: relative; z-index: 2; }
.feature-content h3 { font-size: 29px; margin-top: 18px; }
.feature-content a { display: inline-flex; gap: 8px; margin-top: 25px; color: var(--green-bright); font-size: 11px; font-weight: 800; }
.feature-art { min-height: 270px; position: relative; display: grid; place-items: center; direction: ltr; }
.art-core { width: 100px; height: 100px; display: grid; place-items: center; border-radius: 32px; color: var(--navy-950); background: var(--green-bright); box-shadow: 0 0 70px rgba(66,232,180,.22); font-size: 29px; font-weight: 900; transform: rotate(-8deg); }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.orbit-one { width: 220px; height: 130px; transform: rotate(25deg); }
.orbit-two { width: 160px; height: 240px; transform: rotate(-42deg); }
.art-node { position: absolute; width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.15); border-radius: 11px; background: #173057; }
.node-one { top: 28px; left: 35px; color: var(--orange); }
.node-two { right: 24px; bottom: 42px; color: #78a5ff; }
.node-three { bottom: 12px; left: 90px; color: var(--green-bright); }
.feature-icon { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 45px; border-radius: 16px; }
.feature-icon svg { width: 25px; height: 25px; }
.gradient-blue { color: var(--blue); background: var(--blue-light); }
.gradient-green { color: var(--green-bright); background: rgba(66,232,180,.11); }
.dark-card { color: white; background: linear-gradient(145deg,#122b51,#071831); }
.dark-card p { color: rgba(255,255,255,.58); }
.dark-card .feature-number { color: rgba(255,255,255,.35); }
.quote-card { display: flex; grid-column: span 2; align-items: center; justify-content: space-between; gap: 30px; min-height: 170px; padding: 33px 42px; background: #e8efff; }
.quote-card blockquote { max-width: 580px; margin: 0; color: var(--navy-900); font-size: 23px; font-weight: 800; line-height: 1.7; }
.quote-person { display: flex; align-items: center; gap: 12px; }
.quote-person > span, .author-avatar { width: 43px; height: 43px; display: grid; place-items: center; flex-shrink: 0; border-radius: 50%; color: white; background: var(--navy-800); font-size: 10px; }
.quote-person p, .story-author p { display: grid; margin: 0; line-height: 1.5; }
.quote-person strong, .story-author strong { font-size: 10px; }
.quote-person small, .story-author small { color: var(--muted); font-size: 8px; }

.worlds { position: relative; overflow: hidden; color: white; background: linear-gradient(145deg,var(--navy-950),var(--navy-900) 55%,#122853); }
.worlds::before { content: ""; position: absolute; inset: 0; opacity: .5; background: radial-gradient(circle at 12% 20%,color-mix(in srgb,var(--blue) 28%,transparent),transparent 22%), radial-gradient(circle at 88% 72%,color-mix(in srgb,var(--green-bright) 18%,transparent),transparent 24%); }
.worlds-stars { position: absolute; inset: 0; opacity: .23; background-image: radial-gradient(circle,#fff 1px,transparent 1.5px); background-size: 58px 58px; mask-image: linear-gradient(to bottom,black,transparent 92%); }
.worlds .container { position: relative; }
.worlds-heading .section-kicker { color: var(--green-bright); }
.worlds-heading h2 { color: white; }
.worlds-heading p { color: rgba(255,255,255,.58); }
.worlds-grid { display: grid; grid-template-columns: repeat(10,1fr); gap: 17px; }
.world-card { min-height: 390px; position: relative; display: flex; flex-direction: column; grid-column: span 2; overflow: hidden; border: 1px solid rgba(255,255,255,.11); border-radius: var(--radius); background: rgba(255,255,255,.055); backdrop-filter: blur(12px); transition: transform .35s,border-color .35s,background .35s; }
.world-card:hover { transform: translateY(-9px); border-color: color-mix(in srgb,var(--world-color) 60%,transparent); background: rgba(255,255,255,.085); }
.world-card::before { content: ""; position: absolute; top: -70px; left: 50%; width: 230px; height: 230px; transform: translateX(-50%); border-radius: 50%; background: color-mix(in srgb,var(--world-color) 16%,transparent); filter: blur(25px); }
.world-science { --world-color: var(--blue); }
.world-language { --world-color: #8b7cf6; }
.world-skill { --world-color: var(--warm); }
.world-nature { --world-color: var(--green-bright); }
.world-sport { --world-color: #ff6f61; }
.world-index { position: absolute; z-index: 3; top: 17px; left: 18px; color: rgba(255,255,255,.23); font-size: 10px; font-weight: 900; }
.world-visual { height: 215px; position: relative; display: grid; place-items: end center; padding: 12px 10px 0; }
.world-visual img,
.world-video { width: 100%; height: 205px; display: block; object-fit: cover; object-position: center; transition: transform .4s; }
.world-video { background: rgba(4,13,31,.55); }
.world-card:hover .world-visual img,
.world-card:hover .world-video { transform: translateY(-5px) scale(1.035); }
.world-copy { position: relative; z-index: 2; flex: 1; padding: 22px 20px 24px; border-top: 1px solid rgba(255,255,255,.08); background: linear-gradient(to bottom,rgba(7,22,47,.15),rgba(7,22,47,.55)); }
.world-copy > span { color: var(--world-color); font-size: 8px; font-weight: 800; }
.world-copy h3 { min-height: 52px; margin: 8px 0 9px; font-size: 17px; line-height: 1.55; }
.world-copy p { margin: 0; color: rgba(255,255,255,.58); font-size: 10px; line-height: 1.95; }

.numbers { padding: 55px 0; color: white; background: var(--blue); }
.numbers-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.number-item { text-align: center; border-left: 1px solid rgba(255,255,255,.18); }
.number-item:last-child { border-left: 0; }
.number-item strong { display: block; font-size: 37px; font-weight: 900; }
.number-item span { color: rgba(255,255,255,.68); font-size: 10px; }

.programs { background: white; }
.center-heading { text-align: center; }
.center-heading p { margin: 14px auto 0; color: var(--muted); font-size: 13px; }
.program-tabs { width: fit-content; display: flex; gap: 4px; margin: -25px auto 45px; padding: 5px; border: 1px solid var(--line); border-radius: 13px; background: #f7f8fa; }
.program-tab { min-width: 120px; padding: 10px 18px; border: 0; border-radius: 9px; color: var(--muted); background: transparent; font-size: 11px; font-weight: 800; }
.program-tab.active { color: white; background: var(--navy-900); box-shadow: 0 8px 20px rgba(7,24,49,.16); }
.program-panel { display: grid; grid-template-columns: 1fr 1.05fr; align-items: center; gap: 85px; padding: 55px 65px; border-radius: 34px; background: #f7f8fb; }
.program-visual { height: 390px; position: relative; display: grid; place-items: center; direction: ltr; }
.visual-ring { position: absolute; width: 300px; height: 300px; border: 1px dashed #aebbd1; border-radius: 50%; animation: rotate 28s linear infinite; }
@keyframes rotate { to { transform: rotate(360deg); } }
.visual-center { width: 150px; height: 150px; display: grid; place-content: center; text-align: center; border-radius: 48px; color: white; background: linear-gradient(145deg,var(--blue),#1749ac); box-shadow: 0 25px 60px rgba(33,103,243,.28); transform: rotate(-6deg); }
.visual-center strong { font-size: 37px; line-height: 1; }
.visual-center span { margin-top: 8px; font-size: 11px; }
.visual-card { width: 96px; height: 96px; position: absolute; display: grid; place-content: center; text-align: center; border: 1px solid white; border-radius: 27px; background: white; box-shadow: var(--shadow); }
.visual-card span { color: var(--muted); font-size: 9px; }
.visual-card strong { margin-top: 3px; font-size: 16px; }
.visual-card-one { top: 20px; right: 45px; color: var(--blue); transform: rotate(6deg); }
.visual-card-two { left: 22px; top: 145px; color: #d57a21; transform: rotate(-7deg); }
.visual-card-three { right: 55px; bottom: 5px; color: var(--green); transform: rotate(5deg); }
.program-label { color: var(--blue); font-size: 11px; font-weight: 800; }
.program-copy h3 { margin: 12px 0 17px; color: var(--navy-900); font-size: 30px; line-height: 1.55; }
.program-copy > p { color: var(--muted); font-size: 13px; line-height: 2; }
.program-copy ul { display: grid; gap: 12px; margin: 25px 0 30px; padding: 0; list-style: none; }
.program-copy li { display: flex; align-items: center; gap: 11px; font-size: 12px; font-weight: 600; }
.program-copy li span { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 7px; color: var(--green); background: #dff7ef; font-size: 9px; }
.button-outline { min-height: 48px; color: var(--navy-900); border-color: #ccd3df; background: transparent; }

.experience { position: relative; overflow: hidden; color: white; background: var(--navy-900); }
.experience::before { content: ""; position: absolute; top: -250px; left: -150px; width: 600px; height: 600px; border-radius: 50%; background: rgba(33,103,243,.16); filter: blur(4px); }
.experience-grid { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 85px; }
.section-kicker.light { color: var(--green-bright); }
.experience h2, .admission h2 { color: white; }
.experience-copy > p, .admission-copy > p { color: rgba(255,255,255,.62); font-size: 13px; line-height: 2; }
.experience-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 25px 0 31px; }
.experience-tags span { padding: 7px 12px; border: 1px solid rgba(255,255,255,.13); border-radius: 9px; color: rgba(255,255,255,.72); background: rgba(255,255,255,.05); font-size: 9px; }
.button-light { color: var(--navy-900); background: white; }
.experience-mosaic { min-height: 500px; position: relative; }
.mosaic-main { width: 82%; height: 450px; position: absolute; top: 0; left: 0; margin: 0; overflow: hidden; border-radius: 30px; }
.mosaic-main img { width: 100%; height: 100%; object-fit: cover; }
.mosaic-main::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 55%,rgba(6,17,38,.8)); }
.mosaic-main figcaption { position: absolute; z-index: 2; right: 26px; bottom: 24px; display: grid; }
.mosaic-main figcaption span { color: var(--green-bright); font-size: 9px; }
.mosaic-main figcaption strong { margin-top: 3px; font-size: 17px; }
.mosaic-stat { position: absolute; z-index: 3; right: 0; top: 57px; width: 155px; padding: 25px; border-radius: 22px; color: var(--navy-950); background: var(--green-bright); box-shadow: 0 20px 50px rgba(0,0,0,.25); }
.mosaic-stat strong { display: block; font-size: 29px; }
.mosaic-stat span { font-size: 9px; line-height: 1.7; }
.mosaic-quote { position: absolute; z-index: 3; right: 40px; bottom: 0; width: 220px; padding: 22px; border: 1px solid rgba(255,255,255,.13); border-radius: 19px; background: rgba(12,36,71,.9); backdrop-filter: blur(10px); font-size: 12px; font-weight: 800; }

.stories { background: var(--cream); }
.split-heading.compact { align-items: center; }
.simple-link { color: var(--blue); font-size: 11px; font-weight: 800; }
.stories-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr; gap: 20px; }
.story-card { min-height: 310px; padding: 35px; border: 1px solid rgba(15,32,61,.08); border-radius: var(--radius); background: white; }
.main-story { position: relative; }
.story-symbol { position: absolute; top: 8px; left: 28px; color: #dce6fa; font-size: 100px; font-family: Georgia, serif; line-height: 1; }
.main-story blockquote { position: relative; margin: 20px 0 42px; font-size: 19px; font-weight: 700; line-height: 2; }
.story-author { display: flex; align-items: center; gap: 12px; }
.metric-story { display: grid; place-items: center; align-content: center; text-align: center; color: white; background: var(--blue); }
.metric-ring { width: 120px; height: 120px; display: grid; place-items: center; border: 8px solid rgba(255,255,255,.2); border-top-color: var(--green-bright); border-radius: 50%; }
.metric-ring strong { font-size: 25px; }
.metric-story h3 { margin: 23px 0 5px; font-size: 15px; }
.metric-story p { margin: 0; color: rgba(255,255,255,.65); font-size: 9px; }
.student-story { display: flex; flex-direction: column; justify-content: end; color: white; background: linear-gradient(155deg,#1c365c,#071831); }
.student-badge { width: fit-content; margin-bottom: auto; padding: 6px 10px; border-radius: 8px; color: var(--green-bright); background: rgba(66,232,180,.1); font-size: 9px; }
.student-story p { font-size: 18px; font-weight: 800; line-height: 1.9; }
.student-story strong { color: rgba(255,255,255,.55); font-size: 10px; }

.faq { background: linear-gradient(180deg,var(--paper),var(--cream)); }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: 75px; }
.faq-intro { position: sticky; top: 110px; }
.faq-intro h2 { margin: 0; color: var(--navy-900); font-size: clamp(35px,4vw,var(--section-title-size)); line-height: 1.4; letter-spacing: -2px; }
.faq-intro h2 em { color: var(--blue); font-style: normal; }
.faq-intro > p { margin: 19px 0 28px; color: var(--muted); font-size: 12px; line-height: 2; }
.faq-intro .button { position: relative; z-index: 2; }
.faq-decoration { position: absolute; z-index: -1; right: 130px; top: 170px; color: color-mix(in srgb,var(--blue) 7%,transparent); font-size: 250px; font-weight: 900; line-height: 1; transform: rotate(-10deg); }
.faq-list { display: grid; gap: 10px; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: white; transition: border-color .25s,box-shadow .25s; }
.faq-item.open { border-color: color-mix(in srgb,var(--blue) 35%,var(--line)); box-shadow: 0 12px 35px rgba(18,41,67,.06); }
.faq-question { width: 100%; min-height: 65px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 20px; border: 0; color: var(--ink); background: transparent; text-align: right; font-size: 12px; font-weight: 800; }
.faq-question i { width: 28px; height: 28px; display: grid; place-items: center; flex-shrink: 0; border-radius: 9px; color: var(--blue); background: color-mix(in srgb,var(--blue) 9%,white); font-style: normal; font-size: 17px; font-weight: 500; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .32s ease; }
.faq-answer > p { min-height: 0; overflow: hidden; margin: 0; padding: 0 20px; color: var(--muted); font-size: 10px; line-height: 2; transition: padding .32s; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer > p { padding: 0 20px 20px; }

.admission { color: white; background: linear-gradient(105deg,color-mix(in srgb,var(--blue) 72%,var(--navy-900)),var(--blue)); }
.admission-shell { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 75px; }
.admission-copy h2 { font-size: 43px; }
.admission-meta { display: flex; gap: 20px; margin-top: 25px; font-size: 10px; }
.admission-meta span { display: flex; align-items: center; gap: 7px; }
.admission-meta i { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; color: var(--navy-950); background: var(--green-bright); font-style: normal; }
.admission-form { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; padding: 30px; border: 1px solid rgba(255,255,255,.16); border-radius: 25px; background: rgba(255,255,255,.1); backdrop-filter: blur(12px); }
.admission-form label { display: grid; gap: 7px; color: rgba(255,255,255,.75); font-size: 9px; }
.admission-form input, .admission-form select { width: 100%; height: 48px; padding: 0 14px; outline: none; border: 1px solid rgba(255,255,255,.2); border-radius: 11px; color: white; background: rgba(7,24,49,.25); font-size: 11px; }
.admission-form input::placeholder { color: rgba(255,255,255,.42); }
.admission-form select option { color: var(--ink); }
.admission-form input:focus, .admission-form select:focus { border-color: var(--green-bright); box-shadow: 0 0 0 3px rgba(66,232,180,.12); }
.button-accent { align-self: end; color: var(--navy-950); background: var(--green-bright); }
.form-status { grid-column: 1/-1; min-height: 18px; margin: 0; color: white; font-size: 10px; }

.site-footer { padding: 75px 0 22px; color: rgba(255,255,255,.65); background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .7fr 1fr; gap: 55px; padding-bottom: 55px; }
.footer-description { max-width: 280px; font-size: 11px; line-height: 2; }
.footer-brand { width: fit-content; padding: 8px 12px; border-radius: 14px; background: white; }
.footer-logo { width: 135px; height: 70px; }
.footer-links, .footer-contact { display: grid; align-content: start; gap: 10px; font-size: 10px; }
.footer-links strong, .footer-contact strong { margin-bottom: 8px; color: white; font-size: 12px; }
.footer-links a:hover, .footer-contact a:hover { color: var(--green-bright); }
.footer-contact p { margin: 0; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: 9px; }
.footer-bottom div { display: flex; gap: 20px; }

.video-modal { position: fixed; z-index: 1000; inset: 0; display: grid; place-items: center; padding: 20px; visibility: hidden; opacity: 0; background: rgba(2,8,19,.88); backdrop-filter: blur(12px); transition: .25s; }
.video-modal.open { visibility: visible; opacity: 1; }
.modal-content { width: min(850px,100%); }
.video-placeholder { aspect-ratio: 16/9; display: grid; place-content: center; text-align: center; border: 1px solid rgba(255,255,255,.15); border-radius: 28px; color: white; background: linear-gradient(145deg,#0d2e59,#07152f); }
.play-large { width: 70px; height: 70px; display: grid; place-items: center; margin: 0 auto 18px; border-radius: 50%; color: var(--navy-950); background: var(--green-bright); }
.video-placeholder strong { font-size: 25px; }
.video-placeholder p { color: rgba(255,255,255,.5); font-size: 11px; }
.modal-close { position: absolute; top: 28px; left: 28px; width: 45px; height: 45px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: white; background: transparent; font-size: 26px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

body[data-card-style="bordered"] .feature-card,
body[data-card-style="bordered"] .story-card,
body[data-card-style="bordered"] .world-card,
body[data-card-style="bordered"] .faq-item,
body[data-card-style="bordered"] .program-panel,
body[data-card-style="bordered"] .quick-item {
  border: 2px solid color-mix(in srgb, var(--blue) 22%, var(--line));
  box-shadow: none;
}
body[data-card-style="minimal"] .feature-card,
body[data-card-style="minimal"] .story-card,
body[data-card-style="minimal"] .world-card,
body[data-card-style="minimal"] .faq-item,
body[data-card-style="minimal"] .program-panel {
  border-color: transparent;
  box-shadow: none;
}
body[data-card-style="glass"] .feature-card:not(.featured):not(.dark-card),
body[data-card-style="glass"] .story-card:not(.metric-story):not(.student-story),
body[data-card-style="glass"] .faq-item {
  border-color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.68);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
body.solid-hero-title .hero h1 span {
  color: var(--green-bright);
  -webkit-text-stroke: 0;
}
body.no-card-motion .feature-card:hover,
body.no-card-motion .story-card:hover,
body.no-card-motion .quick-item:hover,
body.no-card-motion .button:hover {
  transform: none;
}
body[data-motion-speed="slow"] .reveal { transition-duration: 1.15s; }
body[data-motion-speed="slow"] .floating { animation-duration: 9s; }
body[data-motion-speed="slow"] .visual-ring { animation-duration: 42s; }
body[data-motion-speed="fast"] .reveal { transition-duration: .4s; }
body[data-motion-speed="fast"] .floating { animation-duration: 3.8s; }
body[data-motion-speed="fast"] .visual-ring { animation-duration: 16s; }
body.no-motion *,
body.no-motion *::before,
body.no-motion *::after {
  animation: none!important;
  transition: none!important;
  scroll-behavior: auto!important;
}

@media (max-width: 1020px) {
  .desktop-nav, .text-action { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu.open { display: block; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .approach-grid { grid-template-columns: 1fr 1fr; }
  .feature-card.featured, .quote-card { grid-column: span 2; }
  .worlds-grid { grid-template-columns: repeat(6,1fr); }
  .world-card { grid-column: span 2; }
  .world-card:nth-child(4), .world-card:nth-child(5) { grid-column: span 3; }
  .program-panel { gap: 35px; padding: 45px 35px; }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-copy { max-width: 620px; }
  .stories-grid { grid-template-columns: 1.2fr .8fr; }
  .student-story { grid-column: 1/-1; min-height: 220px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-contact { grid-column: 1/-1; }
}

@media (max-width: 760px) {
  body * { min-width: 0; }
  .container { width: calc(100% - 28px); max-width: 100%; }
  .announcement-inner { justify-content: center; }
  .announcement p { display: none; }
  .nav-shell { height: 69px; margin-top: 9px; padding: 5px 11px; border-radius: 16px; }
  .brand { min-width: 0; }
  .brand-logo { width: 100px; height: 55px; }
  .brand-copy strong { font-size: 16px; }
  .nav-actions .button-small { display: none; }
  .hero { min-height: 760px; height: auto; padding: 160px 0 110px; }
  .hero-media { background-position: 38% center; }
  .hero-overlay { background: linear-gradient(90deg,rgba(6,17,38,.55),rgba(6,17,38,.92)); }
  .hero-content { display: block; padding-top: 0; }
  .hero-copy { width: 100%; min-width: 0; }
  .hero h1 { width: 100%; max-width: 100%; font-size: 43px; letter-spacing: -2px; overflow-wrap: anywhere; }
  .hero h1 span { display: block; font-size: .9em; }
  .hero-copy > p { font-size: 14px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .scroll-hint { display: none; }
  .quick-grid { grid-template-columns: 1fr; }
  .quick-item { width: 100%; min-width: 0; min-height: 95px; border: 0; border-bottom: 1px solid var(--line); padding: 19px 12px; }
  .quick-item > span:nth-child(2) { min-width: 0; }
  .quick-item:first-child { border-right: 0; }
  .section { padding: 80px 0; }
  .split-heading { display: block; }
  .split-heading > p { margin-top: 20px; }
  .approach-grid { grid-template-columns: 1fr; }
  .feature-card.featured, .quote-card { grid-column: auto; }
  .feature-card.featured { grid-template-columns: 1fr; }
  .feature-art { min-height: 230px; order: -1; }
  .quote-card { display: block; }
  .quote-card blockquote { margin-bottom: 24px; font-size: 18px; }
  .worlds-grid { grid-template-columns: 1fr 1fr; }
  .world-card, .world-card:nth-child(4), .world-card:nth-child(5) { grid-column: auto; min-height: 360px; }
  .world-card:last-child { grid-column: 1/-1; width: calc(50% - 9px); justify-self: center; }
  .world-visual { height: 200px; }
  .world-visual img, .world-video { height: 190px; }
  .numbers-grid { grid-template-columns: 1fr 1fr; gap: 30px 0; }
  .number-item:nth-child(2) { border-left: 0; }
  .program-tabs { width: 100%; overflow-x: auto; justify-content: start; }
  .program-tab { min-width: 105px; }
  .program-panel { grid-template-columns: 1fr; padding: 28px 20px; }
  .program-visual { height: 330px; }
  .experience-mosaic { min-height: 430px; }
  .mosaic-main { width: 95%; height: 390px; }
  .mosaic-stat { top: 25px; }
  .stories-grid { grid-template-columns: 1fr; }
  .student-story { grid-column: auto; }
  .faq-layout { grid-template-columns: 1fr; gap: 35px; }
  .faq-intro { position: relative; top: auto; }
  .faq-decoration { display: none; }
  .admission-shell { grid-template-columns: 1fr; gap: 35px; }
  .admission-form { grid-template-columns: 1fr; padding: 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1/-1; }
  .footer-contact { grid-column: 1/-1; }
  .footer-bottom { display: block; }
}

@media (max-width: 430px) {
  .hero h1 { font-size: 40px; }
  .hero-trust { align-items: flex-start; }
  .feature-card, .feature-card.featured { padding: 25px; }
  .worlds-grid { grid-template-columns: 1fr; }
  .world-card, .world-card:last-child { width: 100%; grid-column: auto; min-height: 380px; }
  .section-heading h2, .experience h2, .admission h2 { font-size: 34px; }
  .program-visual { transform: scale(.85); margin-inline: -20px; }
  .mosaic-stat { width: 135px; padding: 18px; }
  .mosaic-quote { right: 10px; width: 190px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto!important; animation-duration: .01ms!important; animation-iteration-count: 1!important; transition-duration: .01ms!important; }
  .reveal { opacity: 1; transform: none; }
}
