:root {
  --ink: #050b13;
  --ink-2: #091320;
  --ink-3: #102238;
  --blue: #0c3f70;
  --blue-light: #62b0ff;
  --orange: #ff651d;
  --orange-light: #ff9a5c;
  --gold: #f5b642;
  --gold-light: #ffe1a0;
  --white: #ffffff;
  --paper: #f7faff;
  --paper-2: #edf3fa;
  --text: #162334;
  --muted: #66768a;
  --line: rgba(11, 46, 80, .12);
  --container: 1220px;
  --shadow-sm: 0 16px 38px rgba(4, 13, 24, .08);
  --shadow-md: 0 26px 66px rgba(4, 13, 24, .14);
  --shadow-lg: 0 42px 110px rgba(4, 13, 24, .28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}
body.loading,
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: rgba(255,101,29,.28); color: var(--ink); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  padding: 10px 15px;
  border-radius: 12px;
  color: #fff;
  background: var(--orange);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.preloader {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 22px;
  color: rgba(255,255,255,.68);
  background:
    radial-gradient(circle at center, rgba(255,101,29,.12), transparent 34%),
    var(--ink);
  transition: opacity .65s ease, visibility .65s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-mark {
  position: relative;
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
}
.preloader-mark img { width: 74px; height: 74px; object-fit: contain; }
.preloader-mark span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  border-top-color: var(--orange);
  animation: spin 1.2s linear infinite;
}
.preloader p {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2200;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--gold), var(--blue-light));
}
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3000;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
}
.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,101,29,.55);
  transition: width .2s ease, height .2s ease, background .2s ease, border-color .2s ease;
}
.cursor-ring.hovered {
  width: 54px;
  height: 54px;
  background: rgba(255,101,29,.1);
  border-color: rgba(255,101,29,.75);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 2000;
  height: 92px;
  transition: height .35s ease, background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.site-header.scrolled {
  height: 74px;
  background: rgba(5,11,19,.82);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 14px 42px rgba(5,11,19,.24);
}
.nav-shell {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  min-width: 238px;
}
.brand img { width: 56px; height: 56px; object-fit: contain; }
.brand span { display: flex; flex-direction: column; line-height: 1.16; }
.brand strong { font: 700 18px/1.1 "Outfit", sans-serif; }
.brand small {
  margin-top: 5px;
  color: rgba(255,255,255,.66);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}
.main-nav a {
  position: relative;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 600;
  transition: color .25s ease;
}
.main-nav a:not(.nav-login)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.main-nav a:hover,
.main-nav a.active { color: #fff; }
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-login {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.07);
}
.nav-login:hover { color: #fff; background: linear-gradient(135deg, var(--orange), #ff8446); border-color: transparent; }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 99px;
  background: #fff;
  transition: transform .28s ease, opacity .28s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 72% 34%, rgba(255,101,29,.2), transparent 25%),
    radial-gradient(circle at 18% 80%, rgba(98,176,255,.13), transparent 27%),
    linear-gradient(135deg, #03070d 0%, #07111e 54%, #0a1c31 100%);
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .16;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, transparent 0, #000 18%, #000 76%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 18%, #000 76%, transparent 100%);
}
.hero-light {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  pointer-events: none;
}
.hero-light-orange {
  width: 520px;
  height: 520px;
  right: -180px;
  top: 60px;
  background: radial-gradient(circle, rgba(255,101,29,.48) 0%, rgba(255,101,29,0) 72%);
  animation: breathe 8s ease-in-out infinite;
}
.hero-light-blue {
  width: 420px;
  height: 420px;
  left: -150px;
  bottom: 40px;
  background: radial-gradient(circle, rgba(98,176,255,.25) 0%, rgba(98,176,255,0) 72%);
  animation: breathe 10s ease-in-out infinite reverse;
}
.formula {
  position: absolute;
  color: rgba(255,255,255,.045);
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  line-height: 1;
  user-select: none;
}
.formula-one { left: 4%; top: 18%; font-size: 92px; transform: rotate(-9deg); }
.formula-two { left: 40%; top: 12%; font-size: 62px; transform: rotate(7deg); }
.formula-three { right: 4%; bottom: 15%; font-size: 74px; transform: rotate(-8deg); }

.hero-content {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 48px;
  padding: 134px 0 108px;
}
.hero-kicker,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-kicker { color: rgba(255,255,255,.72); }
.hero-kicker span,
.section-eyebrow span {
  width: 30px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
}
.hero-overline {
  margin: 28px 0 4px;
  color: rgba(255,255,255,.6);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(58px, 7vw, 106px);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.065em;
}
.hero-line { display: block; }
.hero-line-accent {
  margin-top: 12px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.86);
  text-shadow: 0 0 40px rgba(255,101,29,.08);
}
.hero-description {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.75);
  font-size: 17px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 26px;
}
.ultra-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 800;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease, border-color .24s ease;
}
.ultra-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ultra-btn:hover { transform: translateY(-2px); }
.ultra-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #ff8748);
  box-shadow: 0 18px 46px rgba(255,101,29,.28);
}
.ultra-btn-primary:hover { box-shadow: 0 26px 60px rgba(255,101,29,.38); }
.ultra-btn-ghost {
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
}
.ultra-btn-ghost:hover { background: rgba(255,255,255,.1); }
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255,255,255,.74);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  font-size: 12px;
  font-weight: 650;
}

.hero-stage {
  position: relative;
  min-height: 690px;
  isolation: isolate;
}
.student-deck { position: absolute; inset: 0; }
.student-card {
  position: absolute;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: 0 28px 70px rgba(2,8,15,.38);
  background: rgba(255,255,255,.06);
}
.student-card img { width: 100%; height: 100%; object-fit: cover; }
.student-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,10,18,.04), rgba(4,10,18,.38));
}
.student-card-one {
  width: 270px;
  height: 185px;
  top: 36px;
  right: 18px;
  transform: rotate(8deg);
  opacity: .76;
}
.student-card-two {
  width: 250px;
  height: 190px;
  left: -2px;
  top: 230px;
  transform: rotate(-10deg);
  opacity: .78;
}
.student-card-three {
  width: 250px;
  height: 180px;
  right: 0;
  bottom: 28px;
  transform: rotate(7deg);
  opacity: .76;
}
.student-card-four {
  width: 215px;
  height: 160px;
  left: 52px;
  bottom: 10px;
  transform: rotate(-5deg);
  opacity: .62;
}
.teacher-halo {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 48%;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle, rgba(255,101,29,.36) 0%, rgba(255,101,29,.08) 38%, rgba(255,101,29,0) 70%);
  filter: blur(4px);
}
.teacher-halo::before,
.teacher-halo::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
}
.teacher-halo::before { inset: 26px; }
.teacher-halo::after { inset: 70px; border-color: rgba(255,101,29,.18); }
.teacher-portrait {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 18px;
  width: min(92%, 610px);
  transform: translateX(-50%);
  filter: drop-shadow(0 32px 44px rgba(2,7,13,.38));
}
.teacher-portrait img { width: 100%; height: auto; }
.stage-label {
  position: absolute;
  z-index: 5;
  max-width: 220px;
  padding: 14px 16px;
  border-radius: 18px;
  color: #fff;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(13px);
  box-shadow: 0 18px 38px rgba(2,7,13,.22);
}
.stage-label small {
  display: block;
  margin-bottom: 4px;
  color: rgba(255,255,255,.58);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.stage-label strong { font-size: 13px; line-height: 1.35; }
.stage-label-left { left: -12px; top: 92px; }
.stage-label-right { right: -4px; top: 310px; }
.hero-scroll {
  position: absolute;
  z-index: 2;
  left: 30px;
  bottom: 82px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.5);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: left bottom;
}
.hero-scroll span {
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), transparent);
}
.hero-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 15px 0;
  background: rgba(255,255,255,.045);
  border-top: 1px solid rgba(255,255,255,.075);
  backdrop-filter: blur(10px);
}
.hero-marquee-track {
  display: flex;
  gap: 44px;
  min-width: max-content;
  animation: marquee 28s linear infinite;
}
.hero-marquee-track span {
  position: relative;
  padding-left: 24px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.hero-marquee-track span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--orange), var(--gold));
  transform: translateY(-50%);
}

.section { position: relative; padding: 118px 0; }
.section-eyebrow { color: var(--blue); }
.section-eyebrow.gold { color: var(--gold-light); }
.section-eyebrow.light { color: rgba(255,255,255,.76); }
.manifesto {
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}
.manifesto-word {
  position: absolute;
  left: 50%;
  top: 76px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(9,35,60,.07);
  font: 900 clamp(92px, 14vw, 220px)/1 "Outfit", sans-serif;
  letter-spacing: -.05em;
  transform: translateX(-50%);
  user-select: none;
  white-space: nowrap;
}
.manifesto-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  align-items: end;
}
.manifesto h2 {
  margin: 22px 0 0;
  font: 800 clamp(38px, 5vw, 66px)/1.03 "Outfit", sans-serif;
  letter-spacing: -.045em;
}
.manifesto-copy .lead {
  margin-top: 0;
  color: var(--text);
  font-size: 20px;
  font-weight: 600;
}
.manifesto-copy p { color: var(--muted); }
.method-rail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
  margin-top: 64px;
}
.method-panel {
  position: relative;
  min-height: 300px;
  padding: 28px;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.method-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity .25s ease;
}
.method-panel:hover::before { opacity: 1; }
.method-panel.featured {
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(255,101,29,.24), transparent 38%),
    linear-gradient(160deg, #081827, #0b3154);
  border-color: rgba(255,255,255,.06);
}
.method-panel.featured p { color: rgba(255,255,255,.7); }
.method-index {
  position: absolute;
  right: 22px;
  top: 20px;
  color: rgba(11,46,80,.12);
  font: 900 52px/1 "Outfit", sans-serif;
}
.method-panel.featured .method-index { color: rgba(255,255,255,.1); }
.method-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #ff884a);
  font: 800 24px/1 "Outfit", sans-serif;
  box-shadow: 0 14px 30px rgba(255,101,29,.22);
}
.method-panel h3 {
  margin: 0 0 10px;
  font: 750 24px/1.1 "Outfit", sans-serif;
}
.method-panel p { margin: 0; color: var(--muted); }

.achievers {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 50% 24%, rgba(245,182,66,.15), transparent 28%),
    radial-gradient(circle at 90% 90%, rgba(255,101,29,.1), transparent 25%),
    linear-gradient(180deg, #05080d 0%, #090f17 100%);
}
.achievers::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .15;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 62px 62px;
}
.achievers-glow {
  position: absolute;
  left: 50%;
  top: 120px;
  width: 760px;
  height: 340px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(245,182,66,.2), rgba(245,182,66,0) 70%);
  filter: blur(8px);
}
.achievers-intro {
  position: relative;
  z-index: 1;
  text-align: center;
}
.achievers-number {
  margin: 24px 0 0;
  color: rgba(245,182,66,.35);
  font: 900 72px/1 "Outfit", sans-serif;
}
.achievers-title {
  margin: 6px 0 0;
  font: 900 clamp(68px, 10vw, 150px)/.76 "Outfit", sans-serif;
  letter-spacing: -.07em;
}
.achievers-title span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245,182,66,.9);
  text-shadow: 0 0 70px rgba(245,182,66,.08);
}
.achievers-subtitle {
  max-width: 760px;
  margin: 34px auto 0;
  color: rgba(255,255,255,.68);
  font-size: 17px;
}
.podium-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  align-items: end;
  gap: 22px;
  margin-top: 72px;
}
.podium-card {
  position: relative;
  padding: 15px;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.045));
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 28px 72px rgba(0,0,0,.28);
}
.podium-card.first {
  padding: 17px;
  transform: translateY(-28px);
  border-color: rgba(245,182,66,.42);
  box-shadow: 0 34px 90px rgba(245,182,66,.1), 0 34px 90px rgba(0,0,0,.3);
}
.podium-card.first::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(245,182,66,.14), transparent 44%);
}
.rank-badge {
  position: absolute;
  z-index: 3;
  left: 28px;
  top: 28px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #17100a;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 14px 30px rgba(245,182,66,.25);
  font: 900 18px/1 "Outfit", sans-serif;
}
.crown {
  position: absolute;
  z-index: 4;
  right: 28px;
  top: 18px;
  color: var(--gold);
  font-size: 38px;
  text-shadow: 0 0 26px rgba(245,182,66,.4);
}
.podium-image {
  position: relative;
  height: 320px;
  overflow: hidden;
  border-radius: 22px;
}
.podium-card.first .podium-image { height: 370px; }
.podium-image img { width: 100%; height: 100%; object-fit: cover; }
.podium-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,8,13,0) 35%, rgba(5,8,13,.72) 100%);
}
.podium-copy { padding: 24px 12px 12px; }
.podium-copy small {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.podium-copy h3 {
  margin: 8px 0 8px;
  font: 800 28px/1.05 "Outfit", sans-serif;
}
.podium-copy p { margin: 0; color: rgba(255,255,255,.62); font-size: 14px; }
.excellence-banner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 48px;
  align-items: center;
  margin-top: 76px;
  padding: 22px;
  border-radius: 36px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.085);
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
}
.excellence-image {
  position: relative;
  height: 440px;
  overflow: hidden;
  border-radius: 26px;
}
.excellence-image img { width: 100%; height: 100%; object-fit: cover; }
.excellence-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(5,8,13,.42));
}
.excellence-copy { padding: 18px 26px 18px 0; }
.gold-line {
  display: block;
  width: 68px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 20px;
}
.excellence-copy small {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.excellence-copy h3 {
  margin: 14px 0;
  font: 800 clamp(34px, 4vw, 52px)/1.04 "Outfit", sans-serif;
  letter-spacing: -.04em;
}
.excellence-copy p { color: rgba(255,255,255,.64); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: #fff;
  font-weight: 800;
}
.text-link span { color: var(--gold); font-size: 22px; }

.album {
  overflow: hidden;
  background: linear-gradient(180deg, #f7faff 0%, #fff 100%);
}
.album-title-layer {
  position: absolute;
  left: 50%;
  top: 80px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(11,46,80,.055);
  font: 900 clamp(100px, 17vw, 250px)/1 "Outfit", sans-serif;
  letter-spacing: -.06em;
  transform: translateX(-50%);
  white-space: nowrap;
  user-select: none;
}
.album-header {
  position: relative;
  z-index: 1;
  max-width: 790px;
  text-align: center;
}
.album-header h2 {
  margin: 20px 0 14px;
  font: 850 clamp(42px, 5.5vw, 72px)/.98 "Outfit", sans-serif;
  letter-spacing: -.05em;
}
.album-header p { color: var(--muted); font-size: 17px; }
.album-mosaic {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 300px 250px;
  gap: 18px;
  margin-top: 60px;
}
.album-item {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  padding: 0;
  text-align: left;
}
.album-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
}
.album-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,11,19,0) 32%, rgba(5,11,19,.78) 100%);
}
.album-item span {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 20px;
  color: #fff;
  font: 750 24px/1.1 "Outfit", sans-serif;
}
.album-item span small {
  display: block;
  margin-bottom: 7px;
  color: rgba(255,255,255,.65);
  font: 800 9px/1 "Inter", sans-serif;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.album-item:hover img { transform: scale(1.06); filter: saturate(1.08); }
.album-wide { grid-column: span 7; }
.album-tall { grid-column: span 5; grid-row: span 2; }
.album-item:nth-child(3) { grid-column: span 3; }
.album-item:nth-child(4) { grid-column: span 4; }

.platform {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 12% 20%, rgba(98,176,255,.16), transparent 24%),
    radial-gradient(circle at 88% 42%, rgba(255,101,29,.14), transparent 25%),
    linear-gradient(145deg, #03070d 0%, #08131f 55%, #0b2744 100%);
}
.platform-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: inset 0 0 80px rgba(255,255,255,.02);
}
.orbit-one { width: 560px; height: 560px; right: -170px; top: 30px; }
.orbit-two { width: 280px; height: 280px; left: -100px; bottom: 40px; }
.platform-grid-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 64px;
  align-items: center;
}
.platform-copy h2 {
  margin: 22px 0 14px;
  font: 850 clamp(40px, 5vw, 66px)/1 "Outfit", sans-serif;
  letter-spacing: -.045em;
}
.platform-copy > p { color: rgba(255,255,255,.68); font-size: 17px; }
.platform-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  margin: 28px 0 30px;
}
.platform-features div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.08);
}
.platform-features span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #ff8848);
  font-size: 11px;
  font-weight: 800;
}
.platform-features strong { font-size: 13px; }
.platform-visual {
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--shadow-lg);
}
.browser-top {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.035);
}
.browser-dots { display: flex; gap: 7px; }
.browser-dots span { width: 9px; height: 9px; border-radius: 50%; }
.browser-dots span:nth-child(1) { background: #ff5f56; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #27c93f; }
.browser-address {
  flex: 1;
  padding: 8px 14px;
  border-radius: 10px;
  color: rgba(255,255,255,.52);
  background: rgba(255,255,255,.045);
  font-size: 11px;
  text-align: center;
}
.dashboard-preview {
  min-height: 520px;
  display: grid;
  grid-template-columns: 72px 1fr;
  background: linear-gradient(180deg, rgba(9,26,44,.96), rgba(6,17,30,.98));
}
.preview-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 24px 14px;
  border-right: 1px solid rgba(255,255,255,.06);
}
.preview-sidebar img { width: 42px; height: 42px; object-fit: contain; margin-bottom: 16px; }
.preview-sidebar span {
  width: 32px;
  height: 8px;
  border-radius: 99px;
  background: rgba(255,255,255,.08);
}
.preview-sidebar span.active { background: linear-gradient(90deg, var(--orange), var(--gold)); }
.preview-content { padding: 28px; }
.preview-welcome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border-radius: 20px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.07);
}
.preview-welcome small { display: block; color: rgba(255,255,255,.52); margin-bottom: 5px; }
.preview-welcome strong { font: 750 22px/1.15 "Outfit", sans-serif; }
.preview-avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #ff8848);
  font-weight: 800;
}
.preview-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin: 18px 0;
}
.preview-cards div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.07);
}
.preview-cards span { display: block; color: rgba(255,255,255,.48); font-size: 10px; margin-bottom: 4px; }
.preview-cards strong { font-size: 14px; }
.preview-course {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  align-items: center;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.07);
}
.preview-course-cover {
  height: 150px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: rgba(255,255,255,.94);
  background:
    radial-gradient(circle at 70% 20%, rgba(255,101,29,.32), transparent 34%),
    linear-gradient(150deg, #102c4c, #071522);
  font: 900 68px/1 "Outfit", sans-serif;
}
.preview-course small { display: block; color: rgba(255,255,255,.5); margin-bottom: 5px; }
.preview-course strong { display: block; font: 750 22px/1.12 "Outfit", sans-serif; }
.preview-progress {
  display: block;
  height: 7px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255,255,255,.08);
}
.preview-progress i {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--gold));
}

.final-cta {
  padding: 70px 0;
  background: #fff;
}
.final-cta-box {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 34px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 92% 18%, rgba(255,101,29,.1), transparent 25%),
    linear-gradient(135deg, #fff, #f5f9fe);
  box-shadow: var(--shadow-sm);
}
.final-cta-box > img { width: 76px; height: 76px; object-fit: contain; }
.final-cta-box small {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.final-cta-box h2 {
  margin: 8px 0 0;
  font: 800 clamp(28px, 3.4vw, 48px)/1.05 "Outfit", sans-serif;
  letter-spacing: -.035em;
}
.site-footer {
  padding: 34px 0;
  color: rgba(255,255,255,.68);
  background: #040b12;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 28px;
}
.footer-brand { display: inline-flex; align-items: center; gap: 12px; }
.footer-brand img { width: 48px; height: 48px; object-fit: contain; }
.footer-brand strong { display: block; color: #fff; font: 700 17px/1.1 "Outfit", sans-serif; }
.footer-brand span { display: block; margin-top: 4px; font-size: 12px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a:hover { color: #fff; }
.site-footer p { margin: 0; font-size: 13px; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  background: rgba(2,7,12,.9);
  backdrop-filter: blur(8px);
  transition: opacity .25s ease, visibility .25s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(1220px, calc(100vw - 40px));
  max-height: calc(100vh - 70px);
  border-radius: 26px;
  box-shadow: 0 40px 120px rgba(0,0,0,.44);
}
.lightbox-close {
  position: fixed;
  right: 18px;
  top: 18px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: #fff;
  background: rgba(255,255,255,.1);
  font-size: 34px;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .78s cubic-bezier(.2,.7,.2,1), transform .78s cubic-bezier(.2,.7,.2,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .09s; }
.reveal-delay-2 { transition-delay: .18s; }
.reveal-delay-3 { transition-delay: .27s; }
.magnetic,
.magnetic-card,
.parallax-layer { will-change: transform; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes breathe {
  0%,100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.06) translateY(-18px); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 1180px) {
  .hero-content,
  .manifesto-grid,
  .platform-grid-layout,
  .excellence-banner { grid-template-columns: 1fr; }
  .hero-stage { min-height: 760px; }
  .manifesto-copy { max-width: 760px; }
  .method-rail { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .platform-copy { max-width: 760px; }
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 82px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(5,11,19,.97);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: .25s ease;
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { padding: 10px 12px; }
  .hero-content { padding-top: 120px; }
  .hero h1 { font-size: clamp(52px, 10vw, 88px); }
  .podium-grid { grid-template-columns: 1fr; max-width: 720px; }
  .podium-card.first { transform: none; order: -1; }
  .podium-card.first .podium-image,
  .podium-image { height: 390px; }
  .album-mosaic { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .album-wide,
  .album-tall,
  .album-item:nth-child(3),
  .album-item:nth-child(4) { grid-column: auto; grid-row: auto; min-height: 300px; }
  .final-cta-box { grid-template-columns: auto 1fr; }
  .final-cta-box .ultra-btn { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 92px 0; }
  .brand { min-width: 0; }
  .brand-copy { display: none !important; }
  .hero-content { gap: 22px; padding-bottom: 88px; }
  .hero h1 { font-size: clamp(48px, 15vw, 72px); line-height: .86; }
  .hero-description { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .ultra-btn { width: 100%; }
  .hero-tags { display: grid; }
  .hero-stage { min-height: 610px; }
  .student-card-one { width: 190px; height: 130px; right: 0; top: 24px; }
  .student-card-two { width: 175px; height: 130px; left: 0; top: 190px; }
  .student-card-three { width: 180px; height: 130px; right: 0; bottom: 36px; }
  .student-card-four { width: 150px; height: 110px; left: 28px; bottom: 18px; }
  .teacher-portrait { width: 112%; bottom: 18px; }
  .stage-label { display: none; }
  .hero-scroll,
  .hero-marquee { display: none; }
  .manifesto-word,
  .album-title-layer { opacity: .6; }
  .manifesto h2,
  .album-header h2,
  .platform-copy h2 { font-size: clamp(36px, 10vw, 50px); }
  .method-rail { grid-template-columns: 1fr; }
  .method-panel { min-height: 0; }
  .achievers-title { font-size: clamp(62px, 18vw, 92px); }
  .achievers-number { font-size: 54px; }
  .podium-image,
  .podium-card.first .podium-image { height: 300px; }
  .excellence-banner { padding: 14px; gap: 18px; }
  .excellence-image { height: 310px; }
  .excellence-copy { padding: 10px 10px 18px; }
  .album-mosaic { grid-template-columns: 1fr; }
  .album-item { min-height: 260px !important; }
  .platform-features { grid-template-columns: 1fr; }
  .dashboard-preview { grid-template-columns: 54px 1fr; min-height: 430px; }
  .preview-sidebar { padding: 18px 10px; }
  .preview-sidebar img { width: 34px; height: 34px; }
  .preview-content { padding: 18px; }
  .preview-welcome strong { font-size: 17px; }
  .preview-cards { grid-template-columns: 1fr; }
  .preview-course { grid-template-columns: 1fr; }
  .preview-course-cover { height: 100px; }
  .final-cta-box { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .final-cta-box .ultra-btn { justify-self: stretch; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
  .cursor-dot,
  .cursor-ring { display: 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;
    scroll-behavior: auto !important;
  }
}

/* FINAL REFINEMENTS: clean portrait portal, stronger responsive hero and album navigation */
.hero-copy { min-width: 0; }
.hero-line { white-space: nowrap; }

.hero-stage {
  min-height: 650px;
  overflow: visible;
}

.student-card {
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 30px 80px rgba(2,8,15,.46), 0 0 0 7px rgba(255,255,255,.025);
}
.student-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 17px;
  pointer-events: none;
}
.student-card-one { width: 285px; height: 188px; top: 18px; right: 0; transform: rotate(7deg); opacity: .9; }
.student-card-two { width: 260px; height: 180px; left: -8px; top: 175px; transform: rotate(-8deg); opacity: .88; }
.student-card-three { width: 270px; height: 182px; right: -4px; bottom: 58px; transform: rotate(8deg); opacity: .88; }
.student-card-four { width: 235px; height: 164px; left: 40px; bottom: 18px; transform: rotate(-6deg); opacity: .78; }

.teacher-halo {
  width: 500px;
  height: 500px;
  top: 49%;
  background:
    radial-gradient(circle, rgba(255,101,29,.43) 0%, rgba(255,101,29,.13) 40%, rgba(255,101,29,0) 72%);
}

.teacher-portrait {
  left: 50%;
  bottom: 38px;
  width: min(72%, 440px);
  height: 525px;
  padding: 10px;
  overflow: hidden;
  border-radius: 48% 48% 28px 28px;
  background: linear-gradient(150deg, rgba(255,255,255,.25), rgba(255,101,29,.09));
  border: 1px solid rgba(255,255,255,.2);
  box-shadow:
    0 34px 74px rgba(2,7,13,.48),
    0 0 0 8px rgba(255,255,255,.025),
    0 0 80px rgba(255,101,29,.12);
  filter: none;
  transform: translateX(-50%);
}
.teacher-portrait::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;
  border-radius: 46% 46% 20px 20px;
  border: 1px solid rgba(255,255,255,.14);
  pointer-events: none;
}
.teacher-portrait::after {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 1;
  border-radius: 46% 46% 20px 20px;
  background: linear-gradient(180deg, transparent 50%, rgba(3,8,14,.35) 100%);
  pointer-events: none;
}
.teacher-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 46% 46% 20px 20px;
}

.lightbox { padding: 26px; }
.lightbox-dialog {
  position: relative;
  width: min(1320px, calc(100vw - 42px));
  height: min(860px, calc(100vh - 42px));
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 14px;
}
.lightbox-media {
  min-width: 0;
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(7,14,24,.96);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 40px 120px rgba(0,0,0,.5);
}
.lightbox img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-width: none;
  max-height: none;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  transition: opacity .18s ease, transform .18s ease;
}
.lightbox.changing img { opacity: .25; transform: scale(.985); }
.lightbox-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 66px;
  padding: 14px 18px;
  color: rgba(255,255,255,.84);
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.035);
}
.lightbox-meta p { margin: 0; font-weight: 700; }
.lightbox-meta span {
  flex: 0 0 auto;
  color: rgba(255,255,255,.55);
  font-size: 13px;
  letter-spacing: .12em;
}
.lightbox-nav {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  color: #fff;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}
.lightbox-nav:hover {
  transform: scale(1.06);
  background: rgba(255,101,29,.82);
  border-color: rgba(255,138,73,.8);
}
.lightbox-nav svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lightbox-close {
  position: absolute;
  right: 76px;
  top: 14px;
  z-index: 3;
  background: rgba(3,8,14,.66);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}

@media (max-width: 980px) {
  .hero-content { gap: 12px; }
  .hero-stage { min-height: 660px; }
  .teacher-portrait { width: min(66%, 430px); height: 510px; }
  .student-card-one { right: 4%; }
  .student-card-two { left: 3%; }
  .student-card-three { right: 3%; }
  .student-card-four { left: 8%; }
}

@media (max-width: 720px) {
  .hero-content {
    padding-top: 106px;
    padding-bottom: 58px;
    gap: 30px;
  }
  .hero-kicker {
    max-width: 100%;
    font-size: 8px;
    letter-spacing: .11em;
    line-height: 1.5;
  }
  .hero-kicker span { width: 20px; }
  .hero-overline {
    margin-top: 22px;
    font-size: 10px;
    letter-spacing: .13em;
  }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(40px, 11.7vw, 56px);
    line-height: .91;
    letter-spacing: -.07em;
  }
  .hero-line-accent {
    margin-top: 7px;
    -webkit-text-stroke-width: .8px;
  }
  .hero-description {
    max-width: 100%;
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.72;
  }
  .hero-actions {
    margin: 24px 0 0;
  }
  .hero-actions .ultra-btn-primary {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 16px;
    font-size: 13px;
  }
  .hero-actions .ultra-btn-ghost,
  .hero-tags {
    display: none;
  }
  .hero-stage {
    min-height: 500px;
    margin-top: -2px;
  }
  .teacher-halo {
    width: 330px;
    height: 330px;
  }
  .teacher-portrait {
    width: min(68vw, 300px);
    height: 360px;
    bottom: 40px;
    padding: 7px;
    border-radius: 48% 48% 22px 22px;
  }
  .teacher-portrait::before,
  .teacher-portrait::after {
    inset: 7px;
    border-radius: 46% 46% 16px 16px;
  }
  .teacher-portrait img {
    border-radius: 46% 46% 16px 16px;
  }
  .student-card {
    border-radius: 16px;
    box-shadow: 0 18px 42px rgba(2,8,15,.42);
  }
  .student-card::before { inset: 5px; border-radius: 11px; }
  .student-card-one { width: 150px; height: 102px; right: 0; top: 12px; }
  .student-card-two { width: 142px; height: 100px; left: 0; top: 138px; }
  .student-card-three { width: 148px; height: 102px; right: 0; bottom: 32px; }
  .student-card-four { width: 132px; height: 92px; left: 8px; bottom: 18px; }

  .lightbox { padding: 12px; }
  .lightbox-dialog {
    width: calc(100vw - 24px);
    height: calc(100vh - 24px);
    display: block;
  }
  .lightbox-media {
    height: 100%;
    border-radius: 22px;
  }
  .lightbox-meta {
    min-height: 76px;
    padding: 12px 54px 12px 14px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
  }
  .lightbox-meta p { font-size: 13px; line-height: 1.35; }
  .lightbox-meta span { font-size: 11px; }
  .lightbox-nav {
    position: absolute;
    z-index: 4;
    top: 50%;
    width: 44px;
    height: 52px;
    border-radius: 15px;
    transform: translateY(-50%);
    background: rgba(3,8,14,.62);
  }
  .lightbox-nav:hover { transform: translateY(-50%); }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close {
    top: 8px;
    right: 8px;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 29px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lightbox img,
  .lightbox-nav,
  .teacher-portrait,
  .student-card {
    transition: none !important;
    animation: none !important;
  }
}

/* =========================================================
   ULTRA FINAL HERO REBUILD — responsive title + clean collage
   ========================================================= */
.hero,
.hero-content,
.hero-copy {
  min-width: 0;
}

.hero-copy {
  overflow: visible;
}

.hero h1 {
  width: 100%;
  max-width: 100%;
  overflow: visible;
  font-size: clamp(54px, 6.2vw, 96px);
  line-height: .88;
  letter-spacing: -.058em;
}

.hero-line {
  display: block;
  width: 100%;
  max-width: 100%;
  white-space: nowrap;
}

.hero-actions {
  max-width: 100%;
}

.hero-tags {
  display: none !important;
}

/* Turn the right side into one coherent cinematic collage */
.hero-stage {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  isolation: isolate;
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 46%, rgba(255,101,29,.28), transparent 34%),
    linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.1);
  box-shadow:
    0 40px 110px rgba(1,7,13,.42),
    inset 0 0 0 1px rgba(255,255,255,.03);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 38%, rgba(255,125,62,.18), transparent 30%),
    linear-gradient(180deg, rgba(3,9,16,.1) 0%, rgba(3,9,16,.15) 45%, rgba(3,9,16,.86) 100%);
}

.hero-stage::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -5%;
  z-index: 4;
  height: 26%;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(255,101,29,.34), rgba(255,101,29,0) 68%);
  filter: blur(24px);
}

.student-deck {
  position: absolute;
  inset: 12px;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  grid-template-rows: repeat(2, minmax(0,1fr));
  gap: 10px;
  overflow: hidden;
  border-radius: 32px;
}

.student-card,
.student-card-one,
.student-card-two,
.student-card-three,
.student-card-four {
  position: relative !important;
  inset: auto !important;
  width: auto !important;
  height: auto !important;
  transform: none !important;
  opacity: 1 !important;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  box-shadow: none;
  background: #0b1725;
}

.student-card::before {
  display: none;
}

.student-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(4,10,18,.08), rgba(4,10,18,.36)),
    linear-gradient(135deg, rgba(255,101,29,.11), rgba(7,20,35,.14));
}

.student-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.78) brightness(.76) contrast(1.04);
  transform: scale(1.03);
}

.student-card-one img { object-position: 50% 45%; }
.student-card-two img { object-position: 50% 42%; }
.student-card-three img { object-position: 50% 45%; }
.student-card-four img { object-position: 50% 43%; }

.teacher-halo {
  z-index: 3;
  width: 520px;
  height: 520px;
  top: 51%;
  background:
    radial-gradient(circle, rgba(255,101,29,.5) 0%, rgba(255,101,29,.15) 40%, rgba(255,101,29,0) 72%);
  filter: blur(8px);
}

.teacher-portrait {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: -7%;
  width: min(82%, 555px);
  height: 88%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter:
    drop-shadow(0 34px 32px rgba(1,6,11,.52))
    drop-shadow(0 0 24px rgba(255,101,29,.13));
  transform: translateX(-50%);
}

.teacher-portrait::before,
.teacher-portrait::after {
  display: none;
}

.teacher-portrait img {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 116%;
  height: auto;
  max-width: none;
  border-radius: 0;
  object-fit: contain;
  transform: translateX(-50%);
}

.stage-label {
  z-index: 7;
}

@media (max-width: 1180px) {
  .hero-stage {
    width: min(760px, 100%);
    min-height: 720px;
    margin-inline: auto;
  }
}

@media (max-width: 980px) {
  .hero-content {
    gap: 42px;
  }

  .hero-stage {
    min-height: 700px;
  }

  .teacher-portrait {
    width: min(74%, 520px);
    height: 86%;
    bottom: -5%;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    display: block;
    width: min(calc(100% - 28px), var(--container));
    padding-top: 100px;
    padding-bottom: 52px;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-kicker {
    max-width: 100%;
    font-size: 8px;
    letter-spacing: .09em;
    line-height: 1.45;
  }

  .hero-overline {
    margin-top: 20px;
    font-size: 9px;
    letter-spacing: .12em;
  }

  .hero h1 {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-top: 4px;
    font-size: clamp(32px, 9.7vw, 43px);
    line-height: .94;
    letter-spacing: -.052em;
  }

  .hero-line {
    display: block;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
  }

  .hero-line-accent {
    margin-top: 7px;
    -webkit-text-stroke-width: .7px;
  }

  .hero-description {
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.68;
  }

  .hero-actions {
    width: 100%;
    margin: 22px 0 0;
  }

  .hero-actions .ultra-btn-primary {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding: 0 16px;
    border-radius: 16px;
    font-size: 13px;
  }

  .hero-actions .ultra-btn-ghost {
    display: none;
  }

  .hero-stage {
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 5;
    margin-top: 30px;
    border-radius: 28px;
  }

  .student-deck {
    inset: 7px;
    gap: 6px;
    border-radius: 22px;
  }

  .student-card,
  .student-card-one,
  .student-card-two,
  .student-card-three,
  .student-card-four {
    border-radius: 16px;
  }

  .student-card img {
    filter: saturate(.75) brightness(.72) contrast(1.04);
  }

  .teacher-halo {
    width: 300px;
    height: 300px;
    top: 55%;
  }

  .teacher-portrait {
    width: 88%;
    height: 84%;
    bottom: -8%;
  }

  .teacher-portrait img {
    width: 122%;
  }

  .stage-label,
  .hero-scroll,
  .hero-marquee {
    display: none !important;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: clamp(30px, 9.35vw, 37px);
    letter-spacing: -.048em;
  }

  .hero-description {
    font-size: 13.5px;
  }

  .teacher-portrait {
    width: 92%;
  }
}


/* Mohammed Elattar attribution */
.footer-meta {
  display: grid;
  gap: 5px;
  text-align: right;
}
.powered-credit a {
  color: var(--orange);
  font-weight: 800;
  transition: color .2s ease, text-shadow .2s ease;
}
.powered-credit a:hover {
  color: #fff;
  text-shadow: 0 0 18px rgba(255,101,31,.48);
}
@media (max-width: 760px) {
  .footer-meta { text-align: left; }
}

/* Complete Platform V4 landing enhancements -------------------------------- */
.preloader{transition:opacity .22s ease,visibility .22s ease}.preloader.hidden{pointer-events:none}
.public-announcement{position:relative;z-index:90;color:#fff;background:linear-gradient(90deg,#ff651d,#d94f12);box-shadow:0 10px 30px rgba(255,101,29,.16)}
.public-announcement .container{min-height:48px;display:flex;align-items:center;gap:12px;padding-block:8px}.public-announcement strong{font:800 13px Outfit,sans-serif}.public-announcement span{font-size:12px;opacity:.9}.public-announcement button{margin-left:auto;width:32px;height:32px;border-radius:10px;color:#fff;background:rgba(255,255,255,.14);font-size:20px}
.custom-home-blocks{background:linear-gradient(180deg,#f7faff,#edf3fa)}.custom-block-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px;margin-top:26px}.custom-home-card{overflow:hidden;border:1px solid rgba(11,46,80,.1);border-radius:26px;background:#fff;box-shadow:var(--shadow-sm)}.custom-home-card img{width:100%;height:220px;object-fit:cover}.custom-home-card>div{padding:24px}.custom-home-card small{color:var(--orange);font-size:10px;font-weight:800;letter-spacing:.13em;text-transform:uppercase}.custom-home-card h3{margin:8px 0 9px;font:800 26px/1.08 Outfit,sans-serif}.custom-home-card p{margin:0 0 15px;color:var(--muted)}
.footer-meta{align-items:end}.landing-credit{display:grid;grid-template-columns:34px auto auto 18px;align-items:center;gap:8px;padding:8px 10px;border:1px solid rgba(255,154,92,.25);border-radius:14px;background:linear-gradient(135deg,rgba(255,101,29,.11),rgba(98,176,255,.04));transition:.2s ease}.landing-credit:hover{transform:translateY(-1px);border-color:rgba(255,154,92,.52)}.landing-credit>span{width:34px;height:34px;display:grid;place-items:center;border-radius:10px;color:#fff;background:linear-gradient(135deg,var(--orange),var(--orange-light));font:800 10px Outfit,sans-serif}.landing-credit small{font-size:8px;text-transform:uppercase;letter-spacing:.08em;color:rgba(255,255,255,.55)}.landing-credit strong{font-size:11px;color:#fff}.landing-credit b{color:var(--orange-light)}
[data-content-key] b{font:inherit}
@media(max-width:900px){.custom-block-grid{grid-template-columns:1fr 1fr}}@media(max-width:640px){.custom-block-grid{grid-template-columns:1fr}.public-announcement .container{align-items:flex-start;flex-wrap:wrap}.public-announcement button{position:absolute;right:12px;top:8px}.footer-meta{align-items:start}.landing-credit{grid-template-columns:34px minmax(0,1fr) 18px}.landing-credit small{grid-column:2}.landing-credit strong{grid-column:2}.landing-credit b{grid-column:3;grid-row:1/3}}


/* Platform Complete V4.1 — approved hero and refined footer credit */
.hero-kicker > b,
.section-eyebrow > b {
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  white-space: normal;
}
.hero-kicker > b { display: inline-block; }
.footer-meta { gap: 12px; }
.landing-credit {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  width: max-content;
  margin-left: auto;
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  box-shadow: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.landing-credit:hover {
  transform: translateY(-1px);
  border-color: rgba(255,138,77,.55);
  background: rgba(255,101,29,.09);
}
.landing-credit small {
  color: rgba(255,255,255,.48);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: none;
}
.landing-credit strong { color: #fff; font-size: 11px; font-weight: 750; }
.landing-credit b { color: var(--orange-light); font-size: 12px; }
@media (max-width: 760px) {
  .landing-credit { margin-left: 0; justify-content: flex-start; }
}
