:root {
  --ink: #05093e;
  --blue: #22225f;
  --orange: #ff6700;
  --pink: #f12a88;
  --violet: #5534d7;
  --glass: rgba(255, 255, 255, 0.66);
  --mx: 0px;
  --my: 0px;
}

* { box-sizing: border-box; }

html { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; }

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #dce6ff;
  font-family: Inter, Montserrat, Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

@supports (overflow: clip) {
  html, body { overflow-x: clip; }
}

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

/* Keep intrinsic HTML dimensions from stretching responsive image layers. */
img { height: auto; }

.hero {
  position: relative;
  z-index: 2;
  display: flow-root;
  min-height: 100svh;
  height: min(1000px, 100svh);
  overflow: visible;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 4;
  height: 24%;
  pointer-events: none;
  background: linear-gradient(to top, rgba(213, 217, 255, 0.36), transparent);
}

.hero__scene, .scene-layer {
  position: absolute;
  inset: 0;
}

.hero__scene { z-index: -2; overflow: hidden; background: #b8cfff; }

.scene-layer {
  left: -2%;
  top: -2%;
  width: 104%;
  height: 104%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  will-change: transform, opacity;
}

.scene-layer--base {
  background-image: url("./assets/media/1520283e2aff3b51.webp?v=20260826-1");
  transform: scale(1.035) translate(calc(var(--mx) * -0.15), calc(var(--my) * -0.15));
}

.scene-layer--stars {
  background-image: url("./assets/media/dced62a1b5886825.webp?v=20260826-1");
  animation: stars 5.5s ease-in-out infinite alternate;
  transform: translate(calc(var(--mx) * 0.35), calc(var(--my) * 0.35));
}

.scene-layer--portal-glow {
  background-image: url("./assets/media/e546f79a921f1534.webp?v=20260826-1");
  transform-origin: 70% 51%;
  animation: glowPulse 5.8s ease-in-out infinite;
}

.scene-layer--portal-core {
  background-image: url("./assets/media/b6fcd6b9d3e93ba6.webp?v=20260826-1");
  transform-origin: calc(50% + 43vh) 50%;
  animation: sphereSpin 560s linear infinite;
}

.scene-layer--portal-rings {
  inset: -8% -5% -4% 3%;
  width: 102%;
  height: 112%;
  background-image: url("./assets/media/0f1619898b9aa87c.webp?v=20260826-1");
  background-size: cover;
  background-position: center;
  transform-origin: 70% 51%;
  animation: ringsFloat 16s ease-in-out infinite alternate;
  mix-blend-mode: screen;
}

.scene-layer--clouds {
  background-image: url("./assets/media/28c8a4748f3ebdfd.webp?v=20260826-1");
  animation: cloudsDrift 18s ease-in-out infinite alternate;
  transform: scale(1.06);
}

.shooting-star {
  position: absolute;
  z-index: 2;
  width: 120px;
  height: 2px;
  opacity: 0;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent, #fff);
  filter: drop-shadow(0 0 5px #fff);
  transform: rotate(-25deg);
}

.shooting-star--one { top: 24%; left: 18%; animation: shoot 8s 1.5s linear infinite; }
.shooting-star--two { top: 39%; left: 65%; animation: shoot 11s 6s linear infinite; }

.site-header {
  position: relative;
  z-index: 20;
  width: calc(100% - 76px);
  max-width: 1598px;
  min-height: 104px;
  margin: 24px auto 0;
  padding: 15px 44px;
  display: grid;
  grid-template-columns: 280px 1fr auto;
  align-items: center;
  gap: 36px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.57);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75), 0 14px 50px rgba(60, 73, 176, 0.1);
  backdrop-filter: blur(18px) saturate(130%);
}

.logo { display: inline-flex; flex-direction: column; width: fit-content; line-height: 1; }
.logo__image { display:block; width:220px; height:74px; object-fit:contain; object-position:left center; }
.logo__name { color: #090912; font-size: 29px; font-weight: 900; letter-spacing: -1.1px; }
.logo__name b { color: var(--orange); }
.logo__tagline { margin-top: 8px; padding-left: 4px; color: #555366; font-size: 12px; letter-spacing: 5px; }

.main-nav { display: flex; align-items: center; justify-content: center; gap: clamp(24px, 3.5vw, 56px); font-size: 15px; font-weight: 600; }
.main-nav a { position: relative; white-space: nowrap; transition: color .25s ease; }
.main-nav a::after { content: ""; position: absolute; left: 50%; right: 50%; bottom: -8px; height: 2px; border-radius: 3px; background: var(--orange); transition: left .25s, right .25s; }
.main-nav a:hover { color: var(--orange); }
.main-nav a:hover::after { left: 0; right: 0; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 30px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.button:hover { transform: translateY(-3px); }
.button--header, .button--primary { color: #fff; background: linear-gradient(135deg, #ff8a00, #ff5700); box-shadow: 0 14px 30px rgba(255, 92, 0, .2); }
.button--header { min-height: 60px; min-width: 280px; font-size: 17px; }
.button--primary:hover { box-shadow: 0 18px 34px rgba(255, 92, 0, .32); }
.button--secondary { gap: 16px; color: #11112c; background: rgba(255,255,255,.76); border: 1px solid rgba(255,255,255,.9); box-shadow: 0 12px 35px rgba(86, 54, 180, .08); }
.button--secondary:hover { background: #fff; box-shadow: 0 16px 38px rgba(86, 54, 180, .15); }

.play-icon { width: 0; height: 0; border-top: 9px solid transparent; border-bottom: 9px solid transparent; border-left: 14px solid #1737c7; filter: drop-shadow(0 3px 5px rgba(40,61,210,.25)); }
.menu-toggle { display: none; }

.hero__content {
  position: relative;
  z-index: 5;
  width: min(1470px, calc(100% - 120px));
  height: calc(100% - 140px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: center;
}

.hero__copy { position: relative; z-index: 8; padding: 0 0 14px 30px; }

h1 { margin: 0; font-size: clamp(54px, 5.05vw, 82px); line-height: .96; letter-spacing: -3.8px; font-weight: 950; }
.line { display: block; width: fit-content; filter: drop-shadow(0 5px 6px rgba(64,72,153,.1)); }
.line--dark { color: var(--blue); }
.line--orange { color: #ff7112; }
.line--pink { color: #ed387f; }
.line--violet { color: #5234dc; }

.hero__lead { max-width: 555px; margin: 21px 0 0 2px; font-size: clamp(17px, 1.22vw, 21px); line-height: 1.34; font-weight: 500; letter-spacing: -.35px; }
.hero__actions { display: flex; gap: 20px; margin: 30px 0 22px; }
.hero__actions .button { min-width: 300px; }

.hero__stats {
  width: fit-content;
  min-width: 720px;
  min-height: 82px;
  padding: 8px 17px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  align-items: center;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 18px;
  background: rgba(255,255,255,.73);
  box-shadow: 0 12px 38px rgba(94,76,190,.11);
  backdrop-filter: blur(14px);
}

.stat { min-height: 56px; padding: 0 20px; display: flex; align-items: center; gap: 14px; border-right: 1px solid rgba(70,44,150,.08); }
.stat:last-child { border: 0; }
.stat__icon { flex: 0 0 51px; height: 51px; display: grid; place-items: center; color: #fff; border-radius: 50%; font-weight: 900; box-shadow: inset 0 2px 6px rgba(255,255,255,.4), 0 7px 16px rgba(91,42,217,.18); }
.stat__icon--star { background: linear-gradient(140deg, #7243f8, #432be7); font-size: 26px; }
.stat__icon--people { background: linear-gradient(140deg, #ec42d8, #a92cda); font-size: 11px; letter-spacing: -2px; }
.stat__icon--film { background: linear-gradient(140deg, #29c9ff, #1b62ea); font-size: 23px; }
.stat strong, .stat small { display: block; }
.stat strong { font-size: 27px; line-height: 1.05; }
.stat small { margin-top: 3px; color: #101027; font-size: 15px; line-height: 1.25; }
.stat--wide small { margin: 0; font-size: 17px; }

.hero__visual {
  position: absolute;
  z-index: 5;
  inset: 0 -5% 0 38%;
  pointer-events: none;
  transform: translate(calc(var(--mx) * .12), calc(var(--my) * .12));
  transition: transform .16s ease-out;
}

.character-rig {
  position: absolute;
  z-index: 7;
  right: 12%;
  bottom: -25%;
  width: clamp(490px, 39vw, 670px);
  aspect-ratio: 1 / 1.5515;
}

.yuskulik {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 13.55%;
  width: 76.9%;
  aspect-ratio: 1086 / 1448;
  transform-origin: 50% 100%;
}

.yuskulik::after {
  display: none;
}

.yuskulik__body { position: absolute; z-index: 2; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.yuskulik__shadow {
  display: block;
  position: absolute;
  z-index: 1;
  left: 10%;
  bottom: -4%;
  width: 80%;
  height: auto;
  opacity: .72;
  mix-blend-mode: multiply;
}
.yuskulik__arm {
  position: absolute;
  z-index: 3;
  width: 58%;
  height: auto;
  left: 60.5%;
  top: calc(22% + 5px);
  transform-origin: 13% 77%;
  animation: wave 2.65s ease-in-out infinite;
  filter: drop-shadow(0 10px 12px rgba(27,17,83,.13));
}

.stage { position: absolute; z-index: 1; left: calc(-9% + 15px); bottom: -3%; width: 118%; animation: stageGlow 3.2s ease-in-out infinite; }
.prop { position: absolute; z-index: 6; height: auto; filter: drop-shadow(0 14px 20px rgba(50,34,130,.18)); }
.prop--clapper { width: clamp(120px, 12vw, 195px); top: 20%; left: 19%; transform: rotate(-10deg); animation: propFloat 5.3s ease-in-out infinite; }
.prop--camera { width: clamp(170px, 16vw, 260px); left: 17%; bottom: 17%; animation: propFloat 6.2s 1s ease-in-out infinite reverse; }
.prop--masks { width: clamp(115px, 11vw, 170px); right: 3%; top: 24%; animation: propFloat 4.8s .5s ease-in-out infinite; }
.prop--mic { width: clamp(90px, 8vw, 125px); right: 2%; bottom: 29%; transform: rotate(6deg); animation: propFloat 5.8s 1.8s ease-in-out infinite reverse; }
.prop--phone { width: clamp(72px, 6.5vw, 108px); right: 0; bottom: 15%; transform: rotate(13deg); animation: phoneFloat 5s ease-in-out infinite; }
.prop--planet { width: clamp(100px, 10vw, 165px); right: 1%; top: 0; animation: planetFloat 12s ease-in-out infinite; }

.directions {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  padding: clamp(70px, 7vw, 112px) 38px clamp(80px, 8vw, 130px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 8% 28%, rgba(157, 207, 255, .38), transparent 16%),
    radial-gradient(circle at 92% 12%, rgba(174, 115, 255, .22), transparent 25%),
    radial-gradient(circle at 50% 78%, rgba(255, 255, 255, .9), transparent 38%),
    linear-gradient(135deg, #eef5ff 0%, #f7f5ff 48%, #eee9ff 100%);
}

.directions::before,
.directions::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.directions::before {
  width: 240px;
  height: 240px;
  top: 9%;
  left: -100px;
  border: 1px solid rgba(126, 151, 255, .25);
  box-shadow: 0 0 80px rgba(116, 162, 255, .24), inset 0 0 50px rgba(255,255,255,.8);
}

.directions::after {
  width: 180px;
  height: 180px;
  top: 4%;
  right: 2%;
  border: 1px solid rgba(192, 147, 255, .25);
  box-shadow: 0 0 80px rgba(180, 118, 255, .18), inset 0 0 45px rgba(255,255,255,.86);
}

.directions__stars {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .74;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.98) 0 1.5px, transparent 2px),
    radial-gradient(circle, rgba(102,91,255,.42) 0 1px, transparent 1.8px);
  background-position: 0 0, 31px 19px;
  background-size: 83px 83px, 117px 117px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
}

.directions__inner {
  width: min(1490px, 100%);
  margin: 0 auto;
}

.directions__intro {
  position: relative;
  min-height: 152px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.directions__heading {
  position: relative;
  z-index: 2;
  text-align: center;
}

.directions__heading h2 {
  margin: 0;
  color: #1721b8;
  font-size: clamp(44px, 4.35vw, 72px);
  line-height: .98;
  letter-spacing: -2.8px;
  font-weight: 950;
  background: linear-gradient(100deg, #1021b8 12%, #4227d3 55%, #b42bd9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 5px 10px rgba(100, 64, 210, .12));
}

.directions__heading p {
  margin: 18px 0 0;
  color: #101867;
  font-size: clamp(17px, 1.45vw, 23px);
  line-height: 1.35;
  font-weight: 600;
}

.directions__mascot {
  position: absolute;
  z-index: 1;
  left: max(0px, calc(50% - 600px));
  bottom: -30px;
  width: 235px;
  height: 205px;
  overflow: hidden;
  pointer-events: none;
}

.directions__mascot img {
  position: absolute;
  top: -12px;
  left: 17px;
  width: 205px;
  height: auto;
  filter: drop-shadow(0 15px 18px rgba(56, 46, 143, .22));
}

.directions__grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.direction-card {
  position: relative;
  min-height: clamp(310px, 22vw, 360px);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.92);
  border-radius: 36px;
  color: #fff;
  box-shadow: 0 17px 35px rgba(45, 43, 154, .16), inset 0 0 0 1px rgba(255,255,255,.22);
  transform: translateZ(0);
}

.direction-card__image,
.direction-card__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.direction-card__image {
  object-fit: cover;
  object-position: center;
  transition: transform .75s cubic-bezier(.2,.75,.2,1), filter .5s ease;
}

.direction-card__shade {
  background: linear-gradient(90deg, rgba(18, 10, 98, .84) 0%, rgba(27, 13, 118, .62) 31%, rgba(25, 13, 96, .08) 64%, transparent 100%);
  transition: opacity .4s ease;
}

.direction-card--cinema .direction-card__shade,
.direction-card--intensive .direction-card__shade {
  background: linear-gradient(90deg, rgba(2, 48, 156, .9) 0%, rgba(5, 68, 183, .62) 32%, rgba(1, 50, 147, .08) 67%, transparent 100%);
}

.direction-card__content {
  position: relative;
  z-index: 2;
  min-height: inherit;
  width: 56%;
  padding: clamp(34px, 3vw, 52px) 0 clamp(28px, 2.6vw, 42px) clamp(32px, 3.2vw, 54px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.direction-card__title {
  display: block;
  font-size: clamp(31px, 2.65vw, 45px);
  line-height: .98;
  letter-spacing: -1.7px;
  font-weight: 950;
  text-shadow: 0 4px 18px rgba(22, 6, 94, .34);
}

.direction-card__text {
  display: block;
  margin-top: 19px;
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.28;
  font-weight: 500;
  text-shadow: 0 3px 12px rgba(16, 6, 77, .48);
}

.direction-card__button {
  min-height: 56px;
  margin-top: auto;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border-radius: 15px;
  color: #4021d0;
  background: rgba(255,255,255,.96);
  box-shadow: 0 11px 22px rgba(13, 5, 101, .2);
  font-size: 17px;
  font-weight: 850;
  transition: transform .3s ease, box-shadow .3s ease;
}

.direction-card--cinema .direction-card__button,
.direction-card--intensive .direction-card__button { color: #075be0; }
.direction-card__button b { font-size: 31px; line-height: 0; font-weight: 400; transform: translateY(-1px); }
.direction-card__button--wide { gap: 14px; }

.direction-card:hover .direction-card__image { transform: scale(1.045); filter: saturate(1.08) brightness(1.04); }
.direction-card:hover .direction-card__button { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(13, 5, 101, .28); }
.direction-card:focus-visible { outline: 4px solid #ff7b17; outline-offset: 4px; }

.growth {
  position: relative;
  z-index: 0;
  min-height: 0;
  padding: clamp(42px, 4.2vw, 62px) 30px clamp(34px, 3.8vw, 52px);
  overflow: hidden;
  isolation: isolate;
  background: #eef0ff;
}

.growth__background,
.growth__clouds {
  position: absolute;
  z-index: -2;
  pointer-events: none;
  user-select: none;
}

.growth__background {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.growth__clouds {
  z-index: -1;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: auto;
  opacity: .92;
}

.growth__inner {
  width: min(1540px, 100%);
  margin: 0 auto;
}

.growth__header {
  position: relative;
  z-index: 5;
  text-align: center;
}

.growth__header h2 {
  margin: 0;
  font-size: clamp(35px, 3.2vw, 52px);
  line-height: 1;
  letter-spacing: -2.7px;
  font-weight: 950;
  background: linear-gradient(96deg, #1327c7 8%, #4a22ce 55%, #a91cca 95%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 5px 10px rgba(72, 45, 180, .1));
}

.growth__header p {
  margin: 14px 0 0;
  color: #111b68;
  font-size: clamp(16px, 1.22vw, 20px);
  line-height: 1.35;
  font-weight: 600;
}

.growth__journey {
  position: relative;
  min-height: 320px;
  margin-top: 17px;
}

.growth__journey::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 94px;
  left: 2.5%;
  right: 2.5%;
  height: 190px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(255,255,255,.58) 0%, rgba(207,190,255,.38) 37%, rgba(148,113,245,.2) 58%, transparent 73%);
  box-shadow: inset 0 14px 34px rgba(255,255,255,.64), 0 12px 30px rgba(104,70,211,.12);
}

.growth__journey::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 184px;
  left: 8%;
  right: 8%;
  height: 2px;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.95) 18%, rgba(166,112,255,.92) 50%, rgba(255,255,255,.95) 82%, transparent);
  box-shadow: 0 0 13px #fff, 0 0 24px rgba(143,87,255,.65);
}

.growth__path {
  position: absolute;
  z-index: 2;
  top: -75px;
  left: 0;
  width: 100%;
  height: 560px;
  object-fit: fill;
  filter: drop-shadow(0 0 12px rgba(181, 99, 255, .58));
  animation: pathGlow 4s ease-in-out infinite;
}

.growth__robot {
  position: absolute;
  z-index: 5;
  top: 13px;
  left: 50%;
  width: clamp(165px, 12.5vw, 198px);
  height: auto;
  transform: translateX(-50%);
  filter: drop-shadow(0 24px 25px rgba(50, 42, 122, .26));
  animation: none;
}

.growth__grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.growth-card {
  position: relative;
  min-width: 0;
  padding-top: 17px;
  text-align: center;
}

.growth-card__number {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255,255,255,.95);
  border-radius: 50%;
  color: #3823bb;
  background: rgba(255,255,255,.9);
  box-shadow: 0 10px 28px rgba(89, 57, 198, .16), inset 0 0 18px rgba(160, 112, 255, .12);
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  transform: translateX(-50%);
}

.growth-card--ideas .growth-card__number { color: #a52ad4; }

.growth-card__bubble {
  display: block;
  width: min(100%, 195px);
  height: auto;
  margin: 14px auto -2px;
  filter: drop-shadow(0 18px 24px rgba(63, 41, 166, .16));
  animation: bubbleHover 6s ease-in-out infinite;
}

.growth-card:nth-child(2) .growth-card__bubble { animation-delay: -1.4s; }
.growth-card:nth-child(3) .growth-card__bubble { animation-delay: -2.8s; }
.growth-card:nth-child(4) .growth-card__bubble { animation-delay: -4.2s; }

.growth-card h3 {
  position: relative;
  z-index: 4;
  width: fit-content;
  max-width: 100%;
  min-height: 39px;
  margin: -1px auto 0;
  padding: 6px 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,.94);
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, #8d43ee, #5a24df);
  box-shadow: 0 8px 18px rgba(74, 35, 190, .24), inset 0 1px 8px rgba(255,255,255,.35);
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.12;
  font-weight: 850;
  white-space: nowrap;
}

.growth-card--camera h3,
.growth-card--team h3 { background: linear-gradient(135deg, #2479ed, #344bda); }
.growth-card--ideas h3 { background: linear-gradient(135deg, #b74fea, #7627df); }

.growth-card p {
  margin: 10px 0 0;
  color: #121865;
  font-size: clamp(13px, .95vw, 15px);
  line-height: 1.35;
  font-weight: 600;
}

.growth__result {
  position: relative;
  z-index: 5;
  width: fit-content;
  margin: 0 auto;
  padding: 7px 27px;
  color: #6f20d2;
  background: radial-gradient(ellipse, rgba(255,255,255,.85), rgba(255,255,255,.2) 70%, transparent);
  font-size: clamp(23px, 2.05vw, 34px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -.8px;
  text-align: center;
  filter: drop-shadow(0 5px 10px rgba(97, 57, 183, .12));
}

.growth__result span { color: #735cff; }

@keyframes pathGlow { 0%,100% { opacity: .76; filter: drop-shadow(0 0 9px rgba(181, 99, 255, .42)); } 50% { opacity: 1; filter: drop-shadow(0 0 21px rgba(248, 158, 255, .76)); } }
@keyframes guideStep { 0%,100% { transform: translateX(-50%) translateY(0) rotate(-1deg); } 50% { transform: translateX(-50%) translateY(-9px) rotate(1deg); } }
@keyframes bubbleHover { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.creativity {
  position: relative;
  min-height: max(880px, 100svh);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #080730;
}

.creativity__background {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.creativity::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: radial-gradient(circle at 68% 51%, transparent 20%, rgba(5, 3, 35, .1) 58%, rgba(5, 3, 31, .36) 100%);
  pointer-events: none;
}

.creativity__copy {
  position: absolute;
  z-index: 5;
  top: 18%;
  left: 4%;
  width: 39%;
}

.creativity__copy h2 {
  margin: 0;
  font-size: clamp(47px, 4.65vw, 76px);
  line-height: .98;
  letter-spacing: -3px;
  font-weight: 950;
}

.creativity__copy h2 span {
  display: block;
  width: fit-content;
  background: linear-gradient(100deg, #f1eeff 5%, #c8a7ff 54%, #ef6ed9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 8px 18px rgba(95, 50, 184, .2));
}

.creativity__copy p {
  margin: 25px 0 0;
  color: rgba(255,255,255,.9);
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.4;
  font-weight: 500;
}

.creativity__robot {
  position: absolute;
  z-index: 6;
  left: 13.5%;
  bottom: 10%;
  width: clamp(150px, 11.5vw, 195px);
  height: auto;
  filter: drop-shadow(0 25px 35px rgba(0,0,0,.38));
}

.creativity__route-note {
  position: absolute;
  z-index: 7;
  left: 30.5%;
  bottom: 12%;
  width: clamp(205px, 20vw, 330px);
  height: auto;
  opacity: .84;
  filter: drop-shadow(0 0 14px rgba(220, 109, 255, .34));
}

.creativity__orbit {
  position: absolute;
  z-index: 3;
  top: 5%;
  right: 1.5%;
  width: 62%;
  height: 90%;
}

.creativity__web {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 52%;
  width: min(96%, 920px);
  height: auto;
  opacity: .74;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 24px rgba(255, 145, 190, .26));
  animation: none;
}

.creative-node {
  position: absolute;
  z-index: 3;
  width: clamp(220px, 18vw, 300px);
  aspect-ratio: 1;
  filter: drop-shadow(0 25px 35px rgba(0,0,0,.25));
  transition: transform .45s ease, filter .45s ease;
}

.creative-node--speech { top: 2%; left: 36%; }
.creative-node--camera { top: 35%; left: 11%; }
.creative-node--ideas { top: 35%; right: 8%; }
.creative-node--team { bottom: 1%; left: 40%; }

.creative-node__planet {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.creative-node__icon {
  position: absolute;
  z-index: 2;
  top: 22%;
  left: 50%;
  width: 15%;
  height: auto;
  max-height: 15%;
  object-fit: contain;
  transform: translateX(-50%);
  filter: drop-shadow(0 0 13px currentColor);
}

.creative-node--camera .creative-node__icon { width: 17%; }
.creative-node--ideas .creative-node__icon { width: 14%; }
.creative-node--team .creative-node__icon { width: 17%; }

.creative-node__copy {
  position: absolute;
  z-index: 2;
  inset: 38% 15% 15%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-shadow: 0 3px 13px rgba(0,0,0,.55);
}

.creative-node__copy h3 {
  margin: 0;
  font-size: clamp(17px, 1.3vw, 22px);
  line-height: 1.05;
  font-weight: 900;
}

.creative-node__copy p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.84);
  font-size: clamp(11px, .78vw, 14px);
  line-height: 1.28;
  font-weight: 500;
}

.creative-node:hover { transform: translateY(-8px) scale(1.025); filter: drop-shadow(0 30px 42px rgba(48, 16, 122, .4)); }

.creative-note {
  position: absolute;
  z-index: 4;
  height: auto;
  opacity: .8;
  filter: drop-shadow(0 0 12px rgba(194, 105, 255, .28));
}

.creative-note--speech { top: 7%; left: -50%; width: 57%; }
.creative-note--camera { top: 39%; left: -55%; width: 63%; }
.creative-note--ideas { top: 19%; right: -48%; width: 55%; }
.creative-note--team { right: -60%; bottom: 7%; width: 66%; }

/* Fifth block: learning through action */
.practice {
  position: relative;
  min-height: 940px;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #251063;
}

.practice__background,
.practice__stars,
.practice__clouds {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.practice__background { z-index: -4; }
.practice__stars { z-index: -3; opacity: .86; animation: practiceStars 7s ease-in-out infinite alternate; }
.practice__clouds { z-index: -2; opacity: .84; object-position: center bottom; }

.practice::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(25, 8, 82, .16), transparent 32%, rgba(22, 7, 68, .28));
  pointer-events: none;
}

.practice__inner {
  position: relative;
  width: min(1680px, 100%);
  min-height: 940px;
  margin: 0 auto;
  padding: 52px 28px 38px;
}

.practice__header { position: relative; z-index: 5; text-align: center; }
.practice__header h2 {
  margin: 0;
  font-size: clamp(44px, 4.45vw, 76px);
  line-height: .94;
  letter-spacing: -3px;
  text-transform: uppercase;
  text-shadow: 0 3px 22px rgba(21, 5, 72, .48);
}
.practice__header h2 span { color: #ff6fc7; }
.practice__header p {
  margin: 17px auto 0;
  font-size: clamp(16px, 1.3vw, 21px);
  line-height: 1.35;
  color: rgba(255,255,255,.94);
}
.practice__header strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(13px, 1.02vw, 17px);
  color: #ffdb83;
}

.practice__journey { position: relative; height: 505px; margin-top: 4px; }
.practice__route {
  position: absolute;
  z-index: 1;
  top: 148px;
  left: -1%;
  width: 102%;
  height: 260px;
  filter: drop-shadow(0 0 13px rgba(255, 123, 213, .72));
}
.practice__steps {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.practice-step { position: relative; min-width: 0; }
.practice-step--one { padding-top: 26px; }
.practice-step--two { padding-top: 63px; }
.practice-step--three { padding-top: 52px; }
.practice-step--four { padding-top: 72px; }
.practice-step__copy {
  position: relative;
  z-index: 4;
  min-height: 112px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
  text-align: left;
  text-shadow: 0 2px 12px rgba(20, 5, 72, .72);
}
.practice-step__copy > img { flex: 0 0 72px; width: 72px; height: 72px; margin-top: -14px; }
.practice-step__copy h3 { margin: 0; font-size: clamp(18px, 1.55vw, 27px); line-height: 1; color: #ffe28d; }
.practice-step__copy p { margin: 7px 0 0; font-size: clamp(11px, .88vw, 15px); line-height: 1.3; color: rgba(255,255,255,.9); }
.practice-step__scene {
  position: relative;
  z-index: 3;
  display: block;
  width: 98%;
  max-width: none;
  margin: -8px 0 0 1%;
  filter: drop-shadow(0 18px 24px rgba(16, 5, 59, .34));
}
.practice-step--two .practice-step__scene { margin-top: -20px; }
.practice-step--three .practice-step__scene { margin-top: -12px; }
.practice-step--four .practice-step__scene { margin-top: -21px; }

.practice__footer { position: relative; z-index: 5; margin-top: -6px; text-align: center; }
.practice__footer p {
  margin: 0;
  font-size: clamp(20px, 1.7vw, 29px);
  line-height: 1.12;
  font-weight: 800;
  color: rgba(255,255,255,.94);
  text-transform: uppercase;
}
.practice__footer p span { color: #ffd66f; }
.practice__footer a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255,255,255,.75);
  color: #fff;
  font-size: 15px;
  text-decoration: none;
}
.practice__footer a span { font-size: 22px; transition: transform .2s ease; }
.practice__footer a:hover span { transform: translateX(5px); }

@keyframes practiceStars { from { opacity: .58; filter: brightness(.88); } to { opacity: 1; filter: brightness(1.22); } }

/* Sixth block: student projects */
.showcase {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  isolation: isolate;
  color: #16132b;
  background: #eee9ff;
}
.showcase__background {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(249,248,255,.72), rgba(255,255,255,.08) 36%, rgba(255,255,255,.3));
}
.showcase__inner {
  position: relative;
  width: min(1600px, calc(100% - 64px));
  min-height: 570px;
  margin: 0 auto;
  padding: 38px 0 34px;
  display: grid;
  grid-template-columns: minmax(330px, 1.12fr) minmax(500px, 1.55fr) minmax(300px, .95fr);
  gap: clamp(18px, 2vw, 34px);
  align-items: center;
}
.showcase__copy { position: relative; z-index: 4; }
.showcase__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(124, 91, 226, .11);
  color: #7152d5;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.showcase__copy h2 {
  margin: 24px 0 0;
  font-size: clamp(27px, 2.15vw, 39px);
  line-height: 1.08;
  letter-spacing: -1.7px;
}
.showcase__copy h2 span { display: block; margin-top: 5px; color: #7651d8; }
.showcase__copy > p { margin: 22px 0 0; font-size: 16px; line-height: 1.45; }
.showcase__actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.showcase-button {
  min-height: 50px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid #7c5de2;
  border-radius: 999px;
  color: #201842;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease;
}
.showcase-button:hover { transform: translateY(-2px); box-shadow: 0 9px 22px rgba(92, 64, 187, .18); }
.showcase-button--primary { border-color: transparent; background: linear-gradient(135deg, #825dec, #6542d2); color: #fff; box-shadow: 0 8px 22px rgba(103, 66, 213, .28); }
.showcase-button--primary > span { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.2); font-size: 9px; }
.showcase__notes { margin: 28px 0 0; padding: 0; list-style: none; font-size: 11px; line-height: 1.5; color: #4a4562; }
.showcase__notes span { color: #8061e1; }

.showcase__stage { position: relative; z-index: 2; min-height: 455px; display: grid; place-items: center; }
.showcase__screen {
  position: relative;
  width: 88%;
  aspect-ratio: 1.68 / 1;
  overflow: visible;
  margin-top: 42px;
  border: 0;
  border-radius: 22px;
  background: #231451;
  box-shadow: 0 24px 50px rgba(29, 15, 73, .38), 0 0 0 2px rgba(255,255,255,.48) inset;
  transform: translateY(-20px);
}
.showcase__screen > img { width: 100%; height: 100%; object-fit: cover; }
.showcase__screen::after { content: ""; position: absolute; inset: 0; z-index: 2; border-radius: 18px; background: linear-gradient(180deg, transparent 55%, rgba(18,8,51,.42)); pointer-events: none; }
.showcase__media { border-radius: 18px; transition: opacity .2s ease; }
.showcase__screen-frame { position: absolute; z-index: 5; inset: -5%; width: 110% !important; height: 110% !important; object-fit: fill !important; pointer-events: none; }
.showcase__screen.is-playing .showcase__media { animation: showcasePlayback 12s ease-in-out infinite alternate; }
.showcase__now-playing { position: absolute; top: 15px; left: 16px; z-index: 10; max-width: 50%; padding: 6px 10px; border-radius: 8px; color: #fff; background: rgba(18,8,48,.64); font-size: 12px; font-weight: 700; }
.showcase__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #744ce0;
  background: transparent;
  box-shadow: none;
  text-decoration: none;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform .2s ease;
}
.showcase__play > img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 10px 20px rgba(36,16,93,.28)); }
.showcase__play > span { display: none; position: absolute; inset: 27px; place-items: center; border-radius: 50%; color: #754fe0; background: rgba(255,255,255,.94); font-size: 17px; font-weight: 900; }
.showcase__play.is-paused > span { display: grid; }
.showcase__play:hover { transform: translate(-50%, -50%) scale(1.06); }
.showcase__duration { position: absolute; right: 18px; bottom: 16px; z-index: 10; padding: 5px 8px; border-radius: 7px; color: #fff; background: rgba(16, 8, 40, .7); font-size: 13px; font-weight: 800; }
.showcase__progress { position: absolute; z-index: 11; right: 0; bottom: 0; left: 0; height: 4px; background: rgba(255,255,255,.28); }
.showcase__progress span { display: block; width: 0; height: 100%; background: #ff74c8; }
.showcase__screen.is-playing .showcase__progress span { animation: showcaseProgress 12s linear infinite; }
.showcase__light-rig { position: absolute; z-index: 7; top: -8px; left: 50%; width: 112%; max-width: none; pointer-events: none; transform: translateX(-50%); filter: drop-shadow(0 8px 12px rgba(25,18,77,.22)); }
.showcase__curtain { position: absolute; z-index: 6; top: 0; height: 100%; width: auto; max-width: none; pointer-events: none; }
.showcase__curtain--left { left: -14px; }
.showcase__curtain--right { right: -14px; }
.showcase__audience { position: absolute; z-index: 8; bottom: -2px; left: 50%; width: 112%; max-width: none; pointer-events: none; transform: translateX(-50%); filter: drop-shadow(0 -5px 10px rgba(16,11,47,.12)); }
.showcase__mascot { position: absolute; z-index: 9; left: -82px; bottom: -6px; width: 155px; filter: drop-shadow(0 13px 15px rgba(49,27,98,.2)); }

.showcase__gallery { position: relative; z-index: 4; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.showcase-card { overflow: hidden; padding: 0; border: 1px solid rgba(103,74,183,.16); border-radius: 17px; color: inherit; background: rgba(255,255,255,.9); box-shadow: 0 12px 28px rgba(75, 48, 151, .14); font: inherit; text-align: left; cursor: pointer; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.showcase-card:hover { transform: translateY(-2px); }
.showcase-card[aria-pressed="true"] { border-color: #7b57e3; box-shadow: 0 0 0 3px rgba(123,87,227,.2), 0 12px 28px rgba(75,48,151,.2); }
.showcase-card[aria-pressed="true"] .showcase-card__image > span { color: #fff; background: #7650df; }
.showcase-card__image { position: relative; aspect-ratio: 1.65 / 1; overflow: hidden; background: #38256c; }
.showcase-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.showcase-card:hover .showcase-card__image img { transform: scale(1.04); }
.showcase-card__image > span { position: absolute; top: 50%; left: 50%; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: #754fde; background: rgba(255,255,255,.92); box-shadow: 0 5px 15px rgba(28,13,72,.28); font-size: 11px; transform: translate(-50%, -50%); }
.showcase-card__copy { padding: 11px 13px 13px; }
.showcase-card__copy h3 { margin: 0; font-size: 13px; line-height: 1.15; }
.showcase-card__copy p { margin: 4px 0 0; color: #665f7b; font-size: 10px; }

@keyframes showcasePlayback { from { transform: scale(1); } to { transform: scale(1.075); } }
@keyframes showcaseProgress { from { width: 0; } to { width: 100%; } }

/* Seventh block: contact form */
.contact {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,106,205,.27), transparent 24%),
    radial-gradient(circle at 83% 72%, rgba(86,175,255,.22), transparent 26%),
    linear-gradient(135deg, #16074a 0%, #321178 48%, #16094e 100%);
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .72;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.95) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(255,210,116,.85) 0 1.5px, transparent 2px);
  background-position: 0 0, 43px 71px;
  background-size: 83px 83px, 137px 137px;
  mask-image: linear-gradient(90deg, #000, rgba(0,0,0,.35) 45%, #000);
}
.contact::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -8%;
  bottom: -37%;
  width: 64%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,178,255,.34), rgba(99,67,214,.12) 48%, transparent 70%);
}
.contact__inner {
  position: relative;
  width: min(1360px, calc(100% - 64px));
  min-height: 790px;
  margin: 0 auto;
  padding: 68px 0 62px;
  display: grid;
  grid-template-columns: minmax(430px, .92fr) minmax(530px, 1.08fr);
  gap: clamp(50px, 6vw, 100px);
  align-items: center;
}
.contact__orbit { position: absolute; z-index: -1; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; pointer-events: none; }
.contact__orbit--one { left: -11%; bottom: -28%; width: 58vw; height: 58vw; transform: rotate(-14deg); }
.contact__orbit--two { left: 7%; bottom: -31%; width: 42vw; height: 50vw; border-color: rgba(255,204,111,.2); transform: rotate(24deg); }
.contact__visual { min-height: 650px; display: flex; flex-direction: column; }
.contact__copy { position: relative; z-index: 5; max-width: 590px; }
.contact__eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: rgba(255,255,255,.1); color: #ffdc82; font-size: 12px; font-weight: 800; letter-spacing: .4px; text-transform: uppercase; backdrop-filter: blur(10px); }
.contact__copy h2 { margin: 25px 0 0; font-size: clamp(45px, 4.25vw, 70px); line-height: .94; letter-spacing: -3.5px; }
.contact__copy h2 span { display: block; color: #ff72cc; text-shadow: 0 0 30px rgba(255,92,200,.33); }
.contact__copy p { max-width: 540px; margin: 23px 0 0; color: rgba(255,255,255,.82); font-size: clamp(16px, 1.15vw, 19px); line-height: 1.48; }
.contact__mascot-wrap { position: relative; flex: 1; min-height: 330px; margin-top: 10px; }
.contact__mascot { position: absolute; z-index: 4; right: 7%; bottom: 4px; width: 285px; filter: drop-shadow(0 24px 28px rgba(8,2,37,.38)); }
.contact__platform { position: absolute; z-index: 2; right: 3%; bottom: 0; width: 330px; height: 72px; border: 2px solid rgba(255,205,104,.88); border-radius: 50%; background: radial-gradient(ellipse, rgba(255,172,76,.36), rgba(190,78,232,.25) 49%, rgba(74,34,155,.16) 70%); box-shadow: 0 0 30px rgba(255,141,97,.34), inset 0 0 24px rgba(255,230,160,.2); }
.contact__message { position: absolute; z-index: 6; right: 43%; top: 13%; padding: 15px 19px; border-radius: 20px 20px 4px 20px; color: #291159; background: #fff; box-shadow: 0 14px 28px rgba(8,2,36,.22); font-size: 15px; font-weight: 800; line-height: 1.25; transform: rotate(-3deg); }
.contact__message span { color: #ff9e30; }

.contact-form { position: relative; z-index: 6; padding: 38px; border: 1px solid rgba(255,255,255,.48); border-radius: 34px; color: #211843; background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(245,238,255,.9)); box-shadow: 0 32px 70px rgba(10,2,45,.38), inset 0 1px 0 #fff; backdrop-filter: blur(22px); }
.contact-form__heading > span { display: inline-block; padding: 7px 12px; border-radius: 999px; color: #7452d8; background: #eee8ff; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.contact-form__heading h3 { margin: 16px 0 0; font-size: clamp(27px, 2.1vw, 35px); line-height: 1.05; letter-spacing: -1.2px; }
.contact-form__heading p { margin: 8px 0 0; color: #746d87; font-size: 14px; }
.contact-form__grid { margin-top: 27px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; }
.contact-field { display: grid; gap: 8px; }
.contact-field > span { padding-left: 3px; color: #4b4362; font-size: 12px; font-weight: 750; }
.contact-field small { color: #9891a9; font-weight: 500; }
.contact-field input,
.contact-field select,
.contact-field textarea { width: 100%; border: 1px solid #ded7ef; border-radius: 15px; outline: 0; color: #221941; background: rgba(255,255,255,.84); font: inherit; font-size: 14px; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.contact-field input,
.contact-field select { height: 52px; padding: 0 15px; }
.contact-field textarea { min-height: 88px; padding: 14px 15px; resize: vertical; }
.contact-field input::placeholder,
.contact-field textarea::placeholder { color: #aaa3b8; }
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus { border-color: #845fe7; background: #fff; box-shadow: 0 0 0 4px rgba(132,95,231,.13); }
.contact-field--wide { grid-column: 1 / -1; }
.contact-form__consent { margin-top: 17px; display: flex; align-items: flex-start; gap: 10px; color: #766f86; font-size: 11px; line-height: 1.35; cursor: pointer; }
.contact-form__consent input { flex: 0 0 auto; width: 17px; height: 17px; margin: 0; accent-color: #7c57df; }
.contact-form__submit { width: 100%; min-height: 58px; margin-top: 20px; padding: 0 25px; display: flex; align-items: center; justify-content: center; gap: 14px; border: 0; border-radius: 18px; color: #fff; background: linear-gradient(135deg, #ff72c8, #7a4ce2 68%, #5532bb); box-shadow: 0 15px 30px rgba(105,63,204,.28); font: inherit; font-size: 14px; font-weight: 850; text-transform: uppercase; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; }
.contact-form__submit:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(105,63,204,.36); }
.contact-form__submit span { font-size: 22px; }
.contact-form__status { min-height: 20px; margin: 11px 0 -7px; color: #4d9a5d; font-size: 13px; font-weight: 700; text-align: center; }

/* Eighth block: teachers */
.team { position: relative; min-height: 940px; overflow: hidden; isolation: isolate; color: #21185b; background: #f1efff; }
.team__background { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; object-fit: cover; }
.team__planet { position: absolute; z-index: -2; right: -7%; top: -23%; width: 350px; opacity: .45; pointer-events: none; }
.team::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.12), transparent 43%, rgba(255,255,255,.18)); pointer-events: none; }
.team__inner { width: min(1520px, calc(100% - 64px)); min-height: 940px; margin: 0 auto; padding: 48px 0 40px; }
.team__header { display: grid; grid-template-columns: minmax(520px, 1.2fr) minmax(360px, .8fr); gap: 60px; align-items: end; }
.team__eyebrow { display: inline-flex; align-items: center; gap: 9px; color: #ff7300; font-size: 14px; font-weight: 850; text-transform: uppercase; }
.team__eyebrow span { font-size: 23px; }
.team__header h2 { max-width: 880px; margin: 16px 0 0; font-size: clamp(39px, 3.55vw, 59px); line-height: .98; letter-spacing: -3px; }
.team__header h2 span { color: #7050d7; }
.team__header > p { max-width: 570px; margin: 0 0 5px; color: #56506f; font-size: clamp(15px, 1.1vw, 18px); line-height: 1.5; }
.team__layout { margin-top: 30px; display: grid; grid-template-columns: 350px minmax(0, 1fr); gap: 24px; }

.team-rail { position: relative; height: 550px; padding: 34px 0; }
.team-rail__viewport { height: 482px; overflow-y: auto; scroll-snap-type: y mandatory; scrollbar-width: none; scroll-behavior: smooth; }
.team-rail__viewport::-webkit-scrollbar { display: none; }
.team-rail__track { display: grid; gap: 11px; padding: 2px 5px; }
.team-rail__arrow { position: absolute; z-index: 5; left: 50%; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(112,80,215,.2); border-radius: 50%; color: #704fd6; background: rgba(255,255,255,.9); box-shadow: 0 7px 18px rgba(73,52,150,.15); font-size: 18px; cursor: pointer; transform: translateX(-50%); }
.team-rail__arrow--up { top: -8px; }
.team-rail__arrow--down { bottom: -8px; }
.teacher-thumb { min-height: 108px; padding: 9px 12px 9px 9px; display: grid; grid-template-columns: 86px 1fr; gap: 13px; align-items: center; scroll-snap-align: start; border: 1px solid rgba(110,81,204,.13); border-radius: 23px; color: #28205e; background: rgba(255,255,255,.78); box-shadow: 0 9px 22px rgba(71,54,145,.09); font: inherit; text-align: left; cursor: pointer; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background .2s ease; }
.teacher-thumb:hover { transform: translateX(3px); }
.teacher-thumb.is-active { border-color: #805bdd; background: #fff; box-shadow: 0 0 0 3px rgba(128,91,221,.13), 0 13px 27px rgba(71,54,145,.15); }
.teacher-thumb__portrait { height: 86px; overflow: hidden; border-radius: 18px; background: linear-gradient(145deg, #eee6ff, #fff5e9); }
.teacher-thumb__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 16%; }
.teacher-thumb__copy { min-width: 0; display: grid; gap: 7px; }
.teacher-thumb__copy strong { font-size: 14px; line-height: 1.15; }
.teacher-thumb__copy small { color: #ff7200; font-size: 11px; font-weight: 750; }

.teacher-profile { position: relative; height: 550px; overflow: visible; display: grid; grid-template-columns: minmax(350px, .9fr) minmax(430px, 1.1fr); border: 1px solid rgba(255,255,255,.85); border-radius: 38px; background: linear-gradient(135deg, rgba(229,220,255,.78), rgba(255,255,255,.93) 55%, rgba(251,245,255,.88)); box-shadow: 0 24px 55px rgba(77,55,153,.18), inset 0 1px 0 #fff; }
.teacher-profile__portrait { position: relative; overflow: visible; border-radius: 38px 0 0 38px; background: radial-gradient(circle at 52% 35%, rgba(255,255,255,.98), rgba(213,192,255,.76) 52%, rgba(160,118,237,.28)); }
.teacher-profile__portrait::before { content: ""; position: absolute; inset: 10% 7%; border: 1px solid rgba(255,255,255,.65); border-radius: 44% 56% 52% 48%; transform: rotate(-7deg); }
.teacher-profile__halo { position: absolute; z-index: 1; left: 50%; top: 47%; width: 80%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.62); border-radius: 50%; box-shadow: 0 0 35px rgba(255,255,255,.45); transform: translate(-50%,-50%); }
.teacher-profile__body-clip { position: absolute; z-index: 2; inset: 0; overflow: hidden; border-radius: 38px 0 0 38px; }
.teacher-profile__person-image { position: absolute; left: 50%; bottom: -8%; width: 112%; height: 125%; object-fit: contain; object-position: center bottom; transform: translateX(-50%); transition: opacity .2s ease, transform .3s ease; }
.teacher-profile__head-pop { z-index: 3; clip-path: inset(0 0 59% 0); pointer-events: none; }
.teacher-profile__badge { position: absolute; z-index: 4; top: 20px; left: 20px; padding: 9px 13px; border-radius: 999px; color: #ff6800; background: rgba(255,255,255,.91); box-shadow: 0 8px 19px rgba(77,48,145,.12); font-size: 11px; font-weight: 850; text-transform: uppercase; }
.teacher-profile__copy { padding: 43px 43px 34px; display: flex; flex-direction: column; }
.teacher-profile__index { align-self: flex-end; color: #998abf; font-size: 12px; font-weight: 800; }
.teacher-profile__copy h3 { margin: 3px 0 0; font-size: clamp(31px, 2.6vw, 43px); line-height: 1; letter-spacing: -1.8px; }
.teacher-profile__role { margin: 10px 0 0; color: #ff7100; font-size: 15px; font-weight: 850; text-transform: uppercase; }
.teacher-profile__lead { margin: 21px 0 0; color: #554f6b; font-size: 15px; line-height: 1.48; }
.teacher-profile__facts { margin-top: 22px; display: grid; gap: 12px; }
.teacher-profile__facts > div { display: grid; grid-template-columns: 52px 1fr; gap: 12px; align-items: center; }
.teacher-profile__facts img { width: 52px; height: 52px; object-fit: contain; }
.teacher-profile__facts p { margin: 0; display: grid; gap: 3px; }
.teacher-profile__facts strong { font-size: 14px; }
.teacher-profile__facts span { color: #6c657c; font-size: 12px; line-height: 1.35; }
.teacher-profile__button { min-height: 52px; margin-top: auto; padding: 0 22px; display: flex; align-items: center; justify-content: center; gap: 12px; border-radius: 17px; color: #fff; background: linear-gradient(135deg,#ff9a18,#ff6813); box-shadow: 0 13px 27px rgba(255,105,18,.23); font-size: 13px; font-weight: 850; text-decoration: none; text-transform: uppercase; }
.teacher-profile__button span { font-size: 22px; }

.team__benefits { width: min(1000px, 100%); min-height: 82px; margin: 27px auto 0; padding: 12px 24px; display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid rgba(255,255,255,.86); border-radius: 28px; background: rgba(255,255,255,.76); box-shadow: 0 15px 35px rgba(75,53,151,.12); }
.team__benefits > div { padding: 0 20px; display: grid; grid-template-columns: 54px 1fr; gap: 12px; align-items: center; }
.team__benefits > div + div { border-left: 1px solid rgba(105,82,176,.15); }
.team__benefits img { width: 54px; height: 54px; object-fit: contain; }
.team__benefits p { margin: 0; display: grid; gap: 4px; }
.team__benefits strong { font-size: 14px; }
.team__benefits span { color: #6d667f; font-size: 11px; }

.trust {
  position: relative;
  min-height: 980px;
  overflow: hidden;
  isolation: isolate;
  color: #21185b;
  background:
    radial-gradient(circle at 49% 66%, rgba(150, 111, 255, .22), transparent 17%),
    radial-gradient(circle at 92% 12%, rgba(255, 171, 224, .28), transparent 24%),
    radial-gradient(circle at 7% 80%, rgba(130, 194, 255, .22), transparent 25%),
    linear-gradient(145deg, #fbfbff 0%, #f1eeff 48%, #e7edff 100%);
}
.trust::before { content: ""; position: absolute; inset: 0; z-index: -2; opacity: .52; background-image: radial-gradient(circle, rgba(105,72,193,.55) 0 1px, transparent 1.7px); background-size: 82px 82px; mask-image: linear-gradient(90deg, #000, transparent 32%, transparent 68%, #000); }
.trust__orbit { position: absolute; z-index: -1; width: 650px; aspect-ratio: 1; border: 1px solid rgba(123, 85, 216, .15); border-radius: 50%; pointer-events: none; }
.trust__orbit::after { content: "✦"; position: absolute; top: 10%; left: 12%; color: rgba(255, 119, 26, .52); font-size: 24px; }
.trust__orbit--one { top: -360px; left: -180px; transform: rotate(18deg); }
.trust__orbit--two { right: -310px; bottom: -250px; width: 760px; }
.trust__orbit--two::after { top: 20%; left: 14%; color: rgba(106, 74, 212, .5); }
.trust__inner { width: min(1500px, calc(100% - 64px)); margin: 0 auto; padding: 65px 0 46px; }
.trust__columns { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(40px, 4vw, 78px); }
.trust-heading__eyebrow { display: inline-flex; align-items: center; gap: 9px; color: #ff7100; font-size: 13px; font-weight: 850; text-transform: uppercase; letter-spacing: .4px; }
.trust-heading__eyebrow span { font-size: 21px; }
.trust-heading h2 { max-width: 680px; margin: 14px 0 0; font-size: clamp(38px, 3.25vw, 54px); line-height: .98; letter-spacing: -2.7px; }
.trust-heading h2 span { color: #6d4bd2; }
.trust-heading > p { margin: 13px 0 0; color: #6b647f; font-size: 16px; }
.reviews-carousel { position: relative; margin-top: 27px; padding: 0 0 31px; }
.reviews-carousel__viewport { height: 497px; overflow-y: auto; scroll-snap-type: y mandatory; scroll-behavior: smooth; scrollbar-width: none; overscroll-behavior: contain; }
.reviews-carousel__viewport::-webkit-scrollbar { display: none; }
.reviews-list { display: grid; gap: 13px; padding: 1px 3px 4px; }
.reviews-carousel__arrow { position: absolute; z-index: 4; left: 50%; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(112,80,215,.2); border-radius: 50%; color: #704fd6; background: rgba(255,255,255,.94); box-shadow: 0 8px 20px rgba(73,52,150,.16); font-size: 17px; cursor: pointer; transform: translateX(-50%); transition: transform .2s ease, box-shadow .2s ease; }
.reviews-carousel__arrow:hover { transform: translateX(-50%) scale(1.08); box-shadow: 0 11px 23px rgba(73,52,150,.23); }
.reviews-carousel__arrow--up { top: -20px; }
.reviews-carousel__arrow--down { bottom: -8px; }
.review-card { min-height: 157px; padding: 17px 20px; display: grid; grid-template-columns: 68px minmax(0,1fr); gap: 15px; align-items: center; scroll-snap-align: start; border: 1px solid rgba(255,255,255,.98); border-radius: 24px; background: rgba(255,255,255,.78); box-shadow: 0 14px 35px rgba(87,61,160,.1), inset 0 1px 0 #fff; backdrop-filter: blur(12px); }
.review-card__avatar { width: 64px; height: 64px; display: grid; place-items: center; border: 5px solid rgba(255,255,255,.82); border-radius: 50%; color: #fff; box-shadow: 0 8px 18px rgba(84,53,157,.18); font-size: 25px; font-weight: 900; }
.review-card__avatar--one { background: linear-gradient(145deg,#ffb45f,#e85a7a); }
.review-card__avatar--two { background: linear-gradient(145deg,#66c5e9,#5846bd); }
.review-card__avatar--three { background: linear-gradient(145deg,#df8df1,#794ad6); }
.review-card__avatar--four { background: linear-gradient(145deg,#ff9bc8,#f0527d); }
.review-card__avatar--five { background: linear-gradient(145deg,#66d6bd,#3088bc); }
.review-card__avatar--six { background: linear-gradient(145deg,#f2b85c,#9a5bd4); }
.review-card__avatar--seven { background: linear-gradient(145deg,#96a9ff,#5b4acb); }
.review-card__avatar--eight { background: linear-gradient(145deg,#ffb86c,#f06a5f); }
.review-card__avatar--nine { background: linear-gradient(145deg,#7ccbe8,#6256d5); }
.review-card__avatar--ten { background: linear-gradient(145deg,#ff91bd,#a64ddd); }
.review-card__avatar--eleven { background: linear-gradient(145deg,#82d7a8,#3e8ac7); }
.review-card__avatar--twelve { background: linear-gradient(145deg,#e6a75c,#e65d90); }
.review-card__stars { color: #ff7900; font-size: 13px; letter-spacing: 2px; }
.review-card blockquote { margin: 6px 0 8px; color: #37304f; font-size: 13px; line-height: 1.38; }
.review-card__body p { margin: 0; display: flex; flex-wrap: wrap; gap: 4px 9px; font-size: 11px; }
.review-card__body strong { color: #302564; }
.review-card__body p span { color: #827b91; }
.reviews-panel__more { display: inline-flex; margin: 18px 0 0 4px; gap: 8px; color: #6847c8; font-size: 13px; font-weight: 800; }
.partners-panel { min-width: 0; }
.trust-heading--partners { text-align: center; }
.trust-heading--partners h2 { margin-inline: auto; }
.partners-grid { margin-top: 27px; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.partner-card { min-height: 153px; padding: 8px; display: grid; place-items: center; overflow: hidden; transition: transform .25s ease; }
.partner-card:hover { transform: translateY(-4px); }
.partner-card img { width: 100%; height: 135px; object-fit: contain; filter: saturate(.95); }
.trust-cta { min-height: 112px; margin-top: 36px; padding: 22px 28px 22px 34px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border: 1px solid rgba(255,255,255,.95); border-radius: 27px; background: rgba(255,255,255,.76); box-shadow: 0 17px 42px rgba(78,54,154,.12); backdrop-filter: blur(14px); }
.trust-cta strong { color: #382c70; font-size: clamp(18px,1.5vw,24px); }
.trust-cta p { margin: 7px 0 0; color: #6f687e; font-size: 13px; }
.trust-cta a { flex: 0 0 auto; min-height: 56px; padding: 0 26px; display: inline-flex; align-items: center; justify-content: center; gap: 13px; border-radius: 15px; color: #fff; background: linear-gradient(135deg,#ff8900,#ff5700); box-shadow: 0 13px 26px rgba(255,91,0,.24); font-size: 13px; font-weight: 850; transition: transform .22s ease, box-shadow .22s ease; }
.trust-cta a:hover { transform: translateY(-3px); box-shadow: 0 17px 32px rgba(255,91,0,.32); }

.faq { position: relative; min-height: 930px; overflow: hidden; isolation: isolate; color: #171a4d; background: #f3f0ff; }
.faq__background { position: absolute; top: 0; left: 0; z-index: -2; width: 100%; height: 930px; object-fit: cover; object-position: center top; }
.faq::after { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; background: linear-gradient(90deg, rgba(255,255,255,.06), rgba(255,255,255,.16) 52%, transparent); }
.faq__inner { width: min(1500px, calc(100% - 64px)); min-height: 930px; margin: 0 auto; padding: 60px 0 38px; }
.faq__layout { display: grid; grid-template-columns: minmax(490px,.87fr) minmax(650px,1.13fr); gap: clamp(44px,5vw,88px); align-items: start; }
.faq__visual { min-width: 0; }
.faq__eyebrow { display: inline-flex; align-items: center; gap: 9px; color: #ff7000; font-size: 13px; font-weight: 850; text-transform: uppercase; }
.faq__eyebrow span { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(145deg,#ff9b15,#ff6200); }
.faq__heading h2 { max-width: 650px; margin: 15px 0 0; font-size: clamp(48px,4.4vw,72px); line-height: .94; letter-spacing: -3.6px; }
.faq__heading h2 span { display: block; color: #ff7100; }
.faq__heading p { margin: 15px 0 0; color: #636079; font-size: 17px; }
.faq-mascot { position: relative; z-index: 0; height: 540px; margin-top: -5px; }
.faq-mascot__person { position: absolute; z-index: 0; bottom: -30px; left: -70px; width: 470px; pointer-events: none; }
.faq-mascot__message { position: absolute; z-index: 3; top: 45px; right: -8px; width: 300px; aspect-ratio: 1; }
.faq-mascot__message > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.faq-mascot__message p { position: absolute; inset: 25% 17% 28% 19%; margin: 0; display: grid; align-content: center; color: #403a59; font-size: 14px; line-height: 1.45; }
.faq-mascot__message p span { color: #8a5ee5; }
.faq-mascot__icons { position: absolute; z-index: 4; right: 45px; bottom: 8px; width: 185px; height: 150px; }
.faq-mascot__icons img { position: absolute; width: 76px; filter: drop-shadow(0 10px 17px rgba(76,52,150,.1)); }
.faq-mascot__icons img:nth-child(1) { top: 0; left: 0; transform: rotate(-7deg); }
.faq-mascot__icons img:nth-child(2) { top: 35px; right: 0; transform: rotate(7deg); }
.faq-mascot__icons img:nth-child(3) { bottom: 0; left: 25px; transform: rotate(-3deg); }
.faq__accordion { position: relative; z-index: 5; padding-top: 70px; display: grid; gap: 13px; }
.faq-item { overflow: hidden; border: 1px solid rgba(255,255,255,.96); border-radius: 27px; background: rgba(255,255,255,.68); box-shadow: 0 13px 34px rgba(88,65,164,.09), inset 0 1px 0 #fff; backdrop-filter: blur(14px); transition: box-shadow .25s ease, background .25s ease; }
.faq-item.is-open { background: rgba(255,255,255,.8); box-shadow: 0 17px 40px rgba(88,65,164,.13), inset 0 1px 0 #fff; }
.faq-question { width: 100%; min-height: 91px; padding: 13px 20px 13px 22px; display: grid; grid-template-columns: 65px minmax(0,1fr) 48px; gap: 15px; align-items: center; border: 0; color: #1b1b4e; background: transparent; text-align: left; cursor: pointer; }
.faq-question:hover .faq-question__text { color: #6e50cd; }
.faq-question:focus-visible { outline: 3px solid rgba(255,112,0,.42); outline-offset: -4px; border-radius: 24px; }
.faq-question__number { width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid rgba(126,93,215,.13); border-radius: 50%; color: #9b88ef; background: rgba(255,255,255,.52); box-shadow: inset 0 0 18px rgba(152,125,229,.08); font-size: 20px; font-weight: 850; }
.faq-question__text { font-size: clamp(16px,1.15vw,20px); font-weight: 800; transition: color .22s ease; }
.faq-question__toggle { width: 43px; height: 43px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.9); border-radius: 50%; color: #25205e; background: rgba(255,255,255,.68); box-shadow: 0 6px 15px rgba(79,55,149,.08); font-size: 24px; line-height: 1; transition: transform .3s ease, color .25s ease, background .25s ease; }
.faq-item.is-open .faq-question__number, .faq-item.is-open .faq-question__text { color: #ff6d00; }
.faq-item.is-open .faq-question__toggle { color: #fff; background: linear-gradient(145deg,#ff9611,#ff6200); transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; opacity: 0; visibility: hidden; transition: max-height .38s ease, opacity .24s ease, visibility 0s linear .38s; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { margin: 0 20px 20px 102px; padding: 20px 24px; border-radius: 19px; color: #4f4963; background: rgba(250,247,250,.74); font-size: 15px; line-height: 1.5; }
.faq-item.is-open .faq-answer { max-height: 340px; opacity: 1; visibility: visible; transition: max-height .38s ease, opacity .24s ease; }
.faq-cta { min-height: 118px; margin-top: 26px; padding: 18px 26px; display: grid; grid-template-columns: 76px minmax(0,1fr) auto; gap: 22px; align-items: center; border: 1px solid rgba(255,255,255,.98); border-radius: 29px; background: rgba(255,255,255,.72); box-shadow: 0 16px 40px rgba(84,59,157,.11), inset 0 1px 0 #fff; backdrop-filter: blur(15px); }
.faq-cta__mark { width: 68px; height: 68px; display: grid; place-items: center; border: 4px solid rgba(255,255,255,.78); border-radius: 50%; color: #fff; background: linear-gradient(145deg,#b6a2f4,#7651d5); box-shadow: 0 8px 18px rgba(82,53,163,.2); font-size: 36px; font-weight: 900; }
.faq-cta strong { font-size: 20px; }
.faq-cta p { margin: 7px 0 0; color: #656074; font-size: 13px; }
.faq-cta a { min-width: 340px; min-height: 60px; padding: 0 25px; display: inline-flex; align-items: center; justify-content: center; gap: 55px; border-radius: 18px; color: #fff; background: linear-gradient(135deg,#ff970e,#ff5b00); box-shadow: 0 14px 28px rgba(255,94,0,.25); font-size: 16px; font-weight: 850; transition: transform .22s ease, box-shadow .22s ease; }
.faq-cta a span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: #ff6700; background: #fff; font-size: 22px; }
.faq-cta a:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(255,94,0,.34); }

.site-footer { --footer-horizon: 464px; position: relative; min-height: 820px; overflow: hidden; isolation: isolate; color: rgba(255,255,255,.84); background: #080b24; }
.site-footer__background { position: absolute; top: 0; left: 0; z-index: -2; width: 100%; height: 760px; object-fit: cover; object-position: center top; }
.site-footer::after { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; background: linear-gradient(180deg, transparent 45%, rgba(5,8,29,.12) 54%, rgba(4,7,26,.28)); }
@media (min-width: 901px) {
  .site-footer__background { clip-path: inset(0 0 calc(760px - var(--footer-horizon)) 0); }
  .site-footer::after { bottom: auto; height: var(--footer-horizon); }
}
.site-footer__inner { width: min(1500px, calc(100% - 64px)); margin: 0 auto; padding: 54px 0 24px; }
.footer-invite { position: relative; height: calc(var(--footer-horizon) - 54px); min-height: 0; display: grid; grid-template-columns: 315px minmax(0,1fr); align-items: center; }
.footer-invite__mascot { position: absolute; z-index: 2; left: 6px; bottom: 0; width: 300px; pointer-events: none; filter: drop-shadow(0 20px 30px rgba(0,0,0,.2)); }
.footer-invite__panel { position: relative; grid-column: 2; min-height: 208px; padding: 34px 44px; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 30px; align-items: center; }
.footer-invite__frame { position: absolute; top: -56px; right: -48px; bottom: -88px; left: -48px; width: calc(100% + 96px); height: calc(100% + 144px); object-fit: fill; pointer-events: none; }
.footer-invite__copy { position: relative; z-index: 2; }
.footer-invite__copy h2 { margin: 0; color: #fff7ef; font-size: clamp(34px,2.8vw,48px); line-height: .98; letter-spacing: -2.2px; }
.footer-invite__copy p { max-width: 640px; margin: 14px 0 0; color: rgba(255,255,255,.72); font-size: clamp(14px,1.05vw,18px); line-height: 1.45; }
.footer-invite__panel > a { position: relative; z-index: 3; min-width: 290px; min-height: 66px; padding: 0 28px; display: inline-flex; align-items: center; justify-content: center; border-radius: 18px; color: #fff; background: linear-gradient(135deg,#ff930d,#ff5600); box-shadow: 0 16px 34px rgba(255,92,0,.28); font-size: 17px; font-weight: 850; transition: transform .22s ease, box-shadow .22s ease; }
.footer-invite__panel > a:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(255,92,0,.38); }
.footer-invite__comet { position: absolute; z-index: 2; right: 8px; bottom: -2px; width: 260px; pointer-events: none; }
.footer-navigation { margin-top: 0; padding: 68px 0 30px; display: grid; grid-template-columns: 1.35fr repeat(4,1fr); gap: clamp(32px,4vw,70px); border-top: 1px solid rgba(255,124,27,.22); }
.footer-brand__logo { display: inline-flex; align-items: center; gap: 14px; }
.footer-brand__logo img { width: 190px; height: 92px; object-fit: contain; object-position: left center; }
.footer-brand__logo span { display: grid; gap: 5px; }
.footer-brand__logo strong { color: #fff; font-size: 25px; letter-spacing: -.7px; }
.footer-brand__logo small { color: #ff7916; font-size: 14px; }
.footer-brand > p { max-width: 285px; margin: 25px 0 0; color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.6; }
.footer-column { display: grid; align-content: start; gap: 12px; }
.footer-column h3 { margin: 0 0 6px; color: #ffd2ad; font-size: 17px; }
.footer-column a { position: relative; width: fit-content; padding-left: 17px; color: rgba(255,255,255,.76); font-size: 14px; transition: color .2s ease, transform .2s ease; }
.footer-column a::before { content: "✦"; position: absolute; left: 0; color: #ff7410; font-size: 10px; }
.footer-column a:hover { color: #fff; transform: translateX(3px); }
.footer-contacts a { display: inline-flex; align-items: center; gap: 9px; padding-left: 0; }
.footer-contacts a::before { display: none; }
.footer-contacts a span { min-width: 18px; color: #ff7410; font-size: 13px; font-style: normal; font-weight: 900; text-align: center; }
.footer-company { padding: 0 0 26px; display: flex; flex-wrap: wrap; gap: 10px 28px; align-items: center; color: rgba(255,255,255,.68); font-size: 13px; font-style: normal; line-height: 1.45; }
.footer-company a { color: #ffd2ad; transition: color .2s ease; }
.footer-company a:hover { color: #fff; }
.footer-company > a,
.footer-company > span:last-child { display: none; }
.footer-company span { position: relative; }
.footer-company span + span::before { content: "·"; position: absolute; left: -16px; color: #ff7410; }
.footer-bottom { min-height: 62px; padding-top: 20px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: start; border-top: 1px solid rgba(255,124,27,.22); color: rgba(255,255,255,.55); font-size: 12px; }
.footer-bottom p { margin: 0; }
.footer-bottom > div { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; font-style: italic; }
.footer-bottom > p:last-child { text-align: right; }
.footer-bottom > p:last-child span { color: #ff7c18; }

@keyframes stars { 0% { opacity: .45; filter: brightness(.9); } 100% { opacity: 1; filter: brightness(1.25); } }
@keyframes glowPulse { 0%,100% { transform: scale(.985); opacity: .68; } 50% { transform: scale(1.045); opacity: 1; } }
@keyframes sphereSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes ringsFloat { 0% { transform: rotate(-1.3deg) scale(1.02); opacity: .72; } 100% { transform: rotate(1.8deg) scale(1.05); opacity: 1; } }
@keyframes cloudsDrift { 0% { transform: scale(1.065) translate(-13px, 3px); } 100% { transform: scale(1.09) translate(17px, -7px); } }
@keyframes shoot { 0%, 72% { opacity: 0; transform: translate(-160px, 80px) rotate(-25deg); } 74% { opacity: 1; } 82%,100% { opacity: 0; transform: translate(300px, -115px) rotate(-25deg); } }
@keyframes wave { 0%, 9%, 85%,100% { transform: rotate(-4deg); } 21% { transform: rotate(7deg); } 34% { transform: rotate(-7deg); } 47% { transform: rotate(7deg); } 60% { transform: rotate(-6deg); } 72% { transform: rotate(3deg); } }
@keyframes stageGlow { 0%,100% { filter: drop-shadow(0 0 14px rgba(56,204,255,.42)); } 50% { filter: drop-shadow(0 0 29px rgba(222,61,255,.66)) brightness(1.08); } }
@keyframes propFloat { 0%,100% { translate: 0 0; rotate: -1deg; } 50% { translate: 0 -13px; rotate: 2deg; } }
@keyframes phoneFloat { 0%,100% { transform: translateY(0) rotate(13deg); } 50% { transform: translateY(-13px) rotate(9deg); } }
@keyframes planetFloat { 0%,100% { transform: translate(0,0) rotate(-3deg); } 50% { transform: translate(-9px,10px) rotate(3deg); } }

@media (max-width: 1280px) {
  .site-header { grid-template-columns: 225px 1fr auto; gap: 20px; padding-inline: 28px; }
  .logo__name { font-size: 24px; }
  .logo__tagline { font-size: 9px; letter-spacing: 4px; }
  .main-nav { gap: 24px; font-size: 13px; }
  .button--header { min-width: 220px; font-size: 14px; }
  .hero__content { width: calc(100% - 70px); grid-template-columns: 50% 50%; }
  .hero__copy { padding-left: 15px; }
  .hero__actions .button { min-width: 0; padding-inline: 18px; font-size: 13px; }
  .hero__stats { min-width: 625px; }
  .stat { padding-inline: 12px; }
  .showcase__inner { width: min(1200px, calc(100% - 40px)); grid-template-columns: 320px minmax(420px, 1.5fr) minmax(280px, 1fr); gap: 18px; }
  .showcase__copy h2 { font-size: clamp(26px, 2.5vw, 34px); }
  .showcase__actions { display: grid; }
  .showcase__mascot { left: -16px; width: 116px; }
  .team__inner { width: min(1200px, calc(100% - 40px)); }
  .team__header { grid-template-columns: 1.15fr .85fr; gap: 34px; }
  .team__layout { grid-template-columns: 310px minmax(0,1fr); }
  .teacher-profile { grid-template-columns: minmax(300px,.9fr) minmax(380px,1.1fr); }
  .teacher-profile__copy { padding: 36px 32px 30px; }
}

@media (max-width: 980px) {
  .hero { height: auto; min-height: 100svh; overflow: visible; }
  .site-header { width: calc(100% - 32px); min-height: 78px; margin-top: 16px; padding: 12px 20px; grid-template-columns: minmax(0,1fr) auto; border-radius: 20px; overflow: visible; isolation: isolate; }
  .button--header { display: none; }
  .menu-toggle { z-index: 3; width: 42px; height: 42px; padding: 10px; display: flex; flex-direction: column; justify-content: center; gap: 5px; border: 0; border-radius: 12px; background: rgba(255,255,255,.65); cursor: pointer; }
  .menu-toggle span { width: 100%; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .25s, opacity .25s; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 100; padding: 22px; display: grid; gap: 18px; justify-items: center; border: 1px solid rgba(255,255,255,.94); border-radius: 20px; background: rgba(255,255,255,.97); box-shadow: 0 15px 40px rgba(40,30,120,.2); -webkit-backdrop-filter: none; backdrop-filter: none; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .25s ease; }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .hero__content { width: calc(100% - 36px); height: auto; min-height: calc(100svh - 110px); padding: 36px 0 30px; display: block; }
  .hero__copy { padding: 0; }
  h1 { font-size: clamp(50px, 10vw, 76px); }
  .hero__lead { max-width: 525px; }
  .hero__visual { inset: 80px -30% 0 32%; opacity: .88; }
  .hero__copy { max-width: 65%; }
  .hero__stats { min-width: 590px; }
  .character-rig { right: 10%; bottom: -22.5%; }
  .directions { padding-inline: 24px; }
  .directions__intro { min-height: 138px; }
  .directions__mascot { left: 0; width: 175px; height: 178px; }
  .directions__mascot img { left: 3px; width: 175px; }
  .direction-card { min-height: 300px; border-radius: 29px; }
  .direction-card__content { width: 61%; padding-left: 30px; }
  .direction-card__title { font-size: clamp(28px, 4vw, 38px); }
  .direction-card__text { font-size: 16px; }
  .direction-card__button { min-height: 50px; padding-inline: 20px; font-size: 15px; }
  .growth { padding: 38px 16px 32px; }
  .growth__header h2 { font-size: clamp(31px, 5vw, 42px); }
  .growth__header p { font-size: 15px; }
  .growth__journey { min-height: 265px; margin-top: 12px; }
  .growth__journey::before { top: 72px; height: 154px; }
  .growth__journey::after { top: 145px; }
  .growth__path { top: -40px; height: 420px; }
  .growth__robot { top: 5px; width: 145px; }
  .growth__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
  .growth-card { padding-top: 14px; }
  .growth-card__number { width: 44px; height: 44px; font-size: 18px; }
  .growth-card__bubble { width: min(100%, 142px); margin-top: 12px; }
  .growth-card h3 { min-height: 42px; padding: 6px 8px; font-size: 11px; white-space: normal; }
  .growth-card p { margin-top: 7px; font-size: 11px; }
  .growth__result { margin-top: 2px; font-size: clamp(21px, 3.5vw, 28px); }
  .creativity { min-height: 1080px; }
  .creativity__copy { position: relative; top: auto; left: auto; width: min(760px, calc(100% - 40px)); margin: 0 auto; padding-top: 112px; text-align: center; }
  .creativity__copy h2 { font-size: clamp(43px, 7vw, 62px); }
  .creativity__copy h2 span { width: auto; }
  .creativity__orbit { top: 38%; right: 3%; width: 94%; height: 54%; }
  .creative-node { width: clamp(165px, 25vw, 230px); }
  .creative-node__copy h3 { margin-top: 0; font-size: clamp(15px, 2vw, 19px); }
  .creative-node__copy p { margin-top: 8px; font-size: 11px; }
  .creativity__web { width: 94%; }
  .creativity__robot { left: 7%; bottom: 2%; width: 175px; opacity: .92; }
  .creativity__route-note { display: none; }
  .creative-note { opacity: .7; }
  .creative-note--speech { left: -35%; width: 48%; }
  .creative-note--camera { left: -37%; width: 51%; }
  .creative-note--ideas { right: -32%; width: 46%; }
  .creative-note--team { right: -39%; width: 52%; }
  .practice { min-height: 1220px; }
  .practice__inner { min-height: 1220px; padding: 64px 24px 46px; }
  .practice__header h2 { font-size: clamp(42px, 7vw, 64px); }
  .practice__journey { height: 850px; margin-top: 20px; }
  .practice__route { display: none; }
  .practice__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 0; }
  .practice__steps::before {
    content: "";
    position: absolute;
    inset: 7% 9% 9%;
    z-index: -1;
    border: 4px solid rgba(255, 132, 218, .72);
    border-radius: 50%;
    filter: drop-shadow(0 0 12px rgba(255, 121, 215, .65));
  }
  .practice-step--one,
  .practice-step--two,
  .practice-step--three,
  .practice-step--four { padding-top: 12px; }
  .practice-step__scene { width: 112%; margin: -30px 0 0 -6%; }
  .practice-step--two .practice-step__scene,
  .practice-step--three .practice-step__scene,
  .practice-step--four .practice-step__scene { margin-top: -30px; }
  .practice-step__copy > img { width: 64px; height: 64px; flex-basis: 64px; }
  .practice-step__copy h3 { font-size: clamp(20px, 3vw, 27px); }
  .practice-step__copy p { font-size: clamp(12px, 1.6vw, 15px); }
  .practice__footer { margin-top: 10px; }
  .showcase { min-height: auto; }
  .showcase__inner { min-height: auto; padding: 70px 0 64px; grid-template-columns: 1fr 1fr; gap: 34px 22px; }
  .showcase__copy { padding-right: 20px; }
  .showcase__copy h2 { font-size: clamp(31px, 4.6vw, 43px); }
  .showcase__stage { min-height: 390px; }
  .showcase__screen { transform: translateY(-20px); }
  .showcase__gallery { grid-column: 1 / -1; grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .showcase__mascot { left: -48px; width: 122px; }
  .contact { min-height: auto; }
  .contact__inner { width: min(820px, calc(100% - 40px)); min-height: auto; padding: 72px 0; grid-template-columns: 1fr; gap: 30px; }
  .contact__visual { min-height: 620px; text-align: center; }
  .contact__copy { margin: 0 auto; }
  .contact__copy p { margin-inline: auto; }
  .contact__mascot { right: 50%; width: 290px; transform: translateX(50%); }
  .contact__platform { right: 50%; transform: translateX(50%); }
  .contact__message { top: 14%; right: calc(50% + 100px); }
  .contact-form { width: min(680px, 100%); margin: 0 auto; }
  .team { min-height: auto; }
  .team__inner { min-height: auto; padding: 65px 0; }
  .team__header { display: block; text-align: center; }
  .team__header h2 { margin-inline: auto; }
  .team__header > p { margin: 18px auto 0; }
  .team__layout { display: flex; flex-direction: column; gap: 20px; }
  .teacher-profile { order: 1; height: 560px; grid-template-columns: .9fr 1.1fr; }
  .team-rail { order: 2; height: 138px; padding: 0 42px; }
  .team-rail__viewport { height: 138px; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; }
  .team-rail__track { display: flex; gap: 11px; padding: 5px; }
  .teacher-thumb { flex: 0 0 280px; min-height: 128px; }
  .team-rail__arrow { top: 50%; bottom: auto; transform: translateY(-50%); }
  .team-rail__arrow--up { left: -2px; }
  .team-rail__arrow--down { right: -2px; left: auto; }
  .team-rail__arrow { font-size: 0; }
  .team-rail__arrow--up::after { content: "←"; font-size: 18px; }
  .team-rail__arrow--down::after { content: "→"; font-size: 18px; }
  .team__benefits { margin-top: 24px; }
  .trust__inner { width: min(820px, calc(100% - 40px)); padding: 66px 0 50px; }
  .trust__columns { grid-template-columns: 1fr; gap: 62px; }
  .trust-heading { text-align: center; }
  .trust-heading h2 { margin-inline: auto; }
  .review-card { min-height: 145px; }
  .partners-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .partner-card { min-height: 125px; }
  .partner-card img { height: 108px; }
  .faq { min-height: auto; }
  .faq__inner { width: min(820px, calc(100% - 40px)); min-height: auto; padding: 66px 0 48px; }
  .faq__layout { grid-template-columns: 1fr; gap: 5px; }
  .faq__heading { text-align: center; }
  .faq__heading h2 { margin-inline: auto; }
  .faq-mascot { width: min(650px,100%); height: 470px; margin-inline: auto; }
  .faq-mascot__person { left: -20px; width: 420px; }
  .faq-mascot__message { right: 18px; width: 285px; }
  .faq__accordion { padding-top: 0; }
  .faq-cta { margin-top: 30px; }
  .faq-cta a { min-width: 260px; gap: 25px; }
  .site-footer { min-height: auto; }
  .site-footer__inner { width: min(820px, calc(100% - 40px)); padding-top: 50px; }
  .footer-invite { height: calc(var(--footer-horizon) - 50px); min-height: 0; grid-template-columns: 230px minmax(0,1fr); }
  .footer-invite__mascot { left: -38px; bottom: 0; width: 300px; }
  .footer-invite__panel { min-height: 320px; padding: 38px 38px 45px; grid-template-columns: 1fr; gap: 24px; }
  .footer-invite__frame { right: 0; left: 0; width: 100%; }
  .footer-invite__panel > a { min-width: 0; width: min(100%,320px); }
  .footer-invite__comet { width: 230px; }
  .footer-navigation { grid-template-columns: repeat(3,1fr); gap: 38px 28px; }
  .footer-brand { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr; gap: 30px; align-items: center; }
  .footer-brand > p { max-width: 430px; margin: 0; }
  .footer-bottom { grid-template-columns: 1fr 1fr; }
  .footer-bottom > div { grid-column: 1 / -1; grid-row: 1; }
}

@media (max-width: 680px) {
  .hero { padding-bottom: 22px; overflow: hidden; }
  .site-header { width: calc(100% - 20px); min-height: 70px; margin-top: 10px; padding: 10px 12px; gap: 12px; background: rgba(255,255,255,.78); -webkit-backdrop-filter: none; backdrop-filter: none; }
  .logo__image { width: 145px; height: 50px; }
  .hero__scene::after { content: ""; position: absolute; inset: 0; z-index: 3; background: linear-gradient(180deg, rgba(237,241,255,.15), rgba(238,230,255,.32)); }
  .logo__name { font-size: 22px; }
  .logo__tagline { margin-top: 6px; font-size: 8px; letter-spacing: 3.3px; }
  .hero__content { width: calc(100% - 28px); padding-top: 32px; }
  .hero__copy { position: relative; z-index: 15; max-width: none; }
  h1 { font-size: clamp(44px, 14vw, 62px); line-height: .94; letter-spacing: -2.5px; }
  .hero__lead { max-width: 92%; margin-top: 18px; font-size: 16px; text-shadow: 0 1px 10px #fff; }
  .desktop-break { display: none; }
  .hero__actions { margin-top: 24px; display: grid; width: min(100%, 390px); gap: 12px; }
  .hero__actions .button { min-height: 54px; width: 100%; font-size: 14px; }
  .hero__stats { width: 100%; min-width: 0; margin-top: 320px; padding: 10px 6px; grid-template-columns: 1fr 1fr; }
  .stat { min-height: 56px; padding-inline: 8px; gap: 8px; }
  .stat__icon { flex-basis: 42px; height: 42px; }
  .stat strong { font-size: 22px; }
  .stat small { font-size: 12px; }
  .stat--wide { grid-column: 1 / -1; min-height: 52px; display: flex; justify-content: center; }
  .stat--wide .stat__icon { flex-basis: 38px; height: 38px; }
  .stat--wide small { font-size: 12px; line-height: 1.15; }
  .hero__visual { inset: auto 0 74px 0; width: 100%; height: 390px; opacity: 1; transform: none; }
  .character-rig { width: min(320px,84vw); right: auto; left: 50%; bottom: -45%; aspect-ratio: 1 / 1.668; transform: translateX(-50%); }
  .stage { left: calc(-7% + 10px); width: 114%; }
  .character-rig .yuskulik { left: 8.1%; width: 83.8%; }
  .prop--clapper { width: 82px; left: 3%; top: 18%; }
  .prop--camera { width: 105px; left: 1%; bottom: 5%; }
  .prop--masks { display: block; width: 64px; right: 2%; top: 18%; }
  .prop--mic { display: block; z-index: 8; width: 46px; right: 1%; bottom: 32%; }
  .prop--phone { display: block; width: 38px; right: 4%; bottom: 12%; }
  .prop--planet { display: block; width: 58px; right: 20%; top: 5%; }
  .scene-layer { width: 130%; left: -15%; background-position: 63% center; }
  .scene-layer--portal-glow,
  .scene-layer--portal-core {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 800px auto;
    background-position: right 0 top 500px;
    transform-origin: 50% 712px;
  }
  .scene-layer--portal-rings {
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: 850px auto;
    background-position: right -18px top 465px;
    transform-origin: 50% 712px;
  }
  .directions { padding: 64px 14px 80px; }
  .directions__intro { min-height: 315px; align-items: flex-start; margin-bottom: 18px; }
  .directions__heading h2 { font-size: clamp(37px, 11vw, 50px); letter-spacing: -2px; }
  .directions__heading p { margin-top: 14px; padding-inline: 8px; font-size: 16px; }
  .directions__desktop-break { display: none; }
  .directions__mascot { left: 50%; bottom: 16px; width: 125px; height: 130px; overflow: visible; transform: translateX(-50%); opacity: .96; }
  .directions__mascot img { top: 0; left: 6px; width: 115px; }
  .directions__grid { grid-template-columns: 1fr; gap: 14px; }
  .direction-card { min-height: 360px; border-radius: 25px; }
  .direction-card__image { object-position: 57% center; }
  .direction-card__shade,
  .direction-card--cinema .direction-card__shade,
  .direction-card--intensive .direction-card__shade { background: linear-gradient(90deg, rgba(13, 8, 92, .9) 0%, rgba(16, 12, 108, .7) 46%, rgba(8, 8, 69, .12) 82%, transparent 100%); }
  .direction-card__content { width: 68%; min-height: 360px; padding: 31px 0 26px 25px; }
  .direction-card__title { font-size: clamp(29px, 9vw, 38px); }
  .direction-card__text { margin-top: 16px; font-size: 16px; }
  .direction-card__button { min-height: 49px; padding: 0 18px; gap: 13px; font-size: 14px; }
  .direction-card__button--wide { max-width: 190px; line-height: 1.15; }
  .growth { padding: 54px 14px 60px; }
  .growth__header h2 { font-size: clamp(35px, 10.5vw, 48px); letter-spacing: -2px; }
  .growth__header p { margin-top: 17px; padding-inline: 5px; font-size: 16px; }
  .growth__desktop-break { display: none; }
  .growth__journey { min-height: auto; padding-top: 260px; }
  .growth__journey::before { top: 88px; left: 10%; right: 10%; height: 150px; border: 0; }
  .growth__journey::after { display: none; }
  .growth__path { display: none; }
  .growth__robot { width: 165px; }
  .growth__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 10px; }
  .growth-card { padding-top: 22px; }
  .growth-card__number { width: 54px; height: 54px; font-size: 22px; }
  .growth-card__bubble { width: min(100%, 175px); margin-top: 15px; }
  .growth-card h3 { min-height: 52px; padding: 8px 12px; border-radius: 19px; font-size: 13px; white-space: normal; }
  .growth-card p { margin-top: 11px; font-size: 13px; }
  .growth__result { margin-top: 35px; padding-inline: 12px; font-size: clamp(24px, 7vw, 33px); }
  .creativity { min-height: 1320px; padding: 0 14px 300px; }
  .creativity__copy { width: 100%; padding-top: 105px; }
  .creativity__copy h2 { font-size: clamp(37px, 10.5vw, 50px); letter-spacing: -2px; }
  .creativity__copy p { margin-top: 18px; padding-inline: 5px; font-size: 16px; }
  .creativity__copy p br { display: none; }
  .creativity__orbit { position: relative; top: auto; right: auto; width: 100%; height: auto; margin-top: 38px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .creativity__web { top: 45%; width: 110%; opacity: .32; }
  .creative-node,
  .creative-node--speech,
  .creative-node--camera,
  .creative-node--ideas,
  .creative-node--team { position: relative; inset: auto; width: 100%; }
  .creative-node__copy { inset: 35% 10% 12%; }
  .creative-node__copy h3 { margin-top: 0; font-size: clamp(14px, 4vw, 18px); }
  .creative-node__copy p { font-size: clamp(9px, 2.5vw, 12px); }
  .creative-note { top: -3%; right: auto; bottom: auto; left: -1%; width: 45%; opacity: .62; }
  .creative-node--ideas .creative-note,
  .creative-node--team .creative-note { right: -1%; left: auto; }
  .creativity__robot { left: 50%; bottom: -2%; width: 195px; transform: translateX(-50%); }
  .practice { min-height: auto; }
  .practice__inner { min-height: auto; padding: 68px 14px 62px; }
  .practice__header h2 { font-size: clamp(38px, 11.2vw, 54px); letter-spacing: -2px; }
  .practice__header p { margin-top: 18px; padding-inline: 6px; font-size: 16px; }
  .practice__desktop-break { display: none; }
  .practice__header strong { margin-top: 11px; padding-inline: 12px; font-size: 13px; line-height: 1.35; }
  .practice__journey { height: auto; margin-top: 40px; }
  .practice__steps { display: grid; grid-template-columns: 1fr; gap: 8px; }
  .practice__steps::before {
    top: 25px;
    bottom: 30px;
    left: 50%;
    right: auto;
    width: 3px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(#ffc46a, #ff7ccf 48%, #b86bff);
  }
  .practice-step { padding-top: 0; }
  .practice-step__copy { min-height: 96px; justify-content: flex-start; padding-left: 9%; }
  .practice-step__copy > img { width: 68px; height: 68px; flex-basis: 68px; }
  .practice-step__copy h3 { font-size: clamp(22px, 6.2vw, 28px); }
  .practice-step__copy p { font-size: 13px; }
  .practice-step__scene,
  .practice-step--two .practice-step__scene,
  .practice-step--three .practice-step__scene,
  .practice-step--four .practice-step__scene { width: 108%; margin: -36px 0 -6px -4%; }
  .practice__footer { margin-top: 32px; }
  .practice__footer p { font-size: clamp(20px, 5.8vw, 27px); }
  .practice__footer a { font-size: 14px; }
  .showcase__inner { width: calc(100% - 28px); padding: 66px 0 72px; display: block; }
  .showcase__copy { padding: 0; text-align: center; }
  .showcase__eyebrow { font-size: 10px; }
  .showcase__copy h2 { margin-top: 20px; font-size: clamp(32px, 9vw, 43px); letter-spacing: -1.5px; }
  .showcase__copy > p { font-size: 15px; }
  .showcase__actions { width: min(100%, 340px); margin: 26px auto 0; }
  .showcase__notes { display: none; }
  .showcase__stage { min-height: 290px; margin-top: 34px; }
  .showcase__screen { width: 78%; border-radius: 20px; transform: translateY(-8px); }
  .showcase__play { width: 62px; height: 62px; border-width: 6px; }
  .showcase__duration { right: 11px; bottom: 10px; }
  .showcase__light-rig { top: 3px; width: 90%; }
  .showcase__curtain { top: 24px; height: 73%; opacity: .94; }
  .showcase__curtain--left { left: 2px; }
  .showcase__curtain--right { right: 2px; }
  .showcase__audience { display: none; }
  .showcase__mascot { left: -4px; bottom: -8px; width: 68px; }
  .showcase__gallery { margin-top: 28px; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; text-align: left; }
  .showcase-card { border-radius: 14px; }
  .showcase-card__copy { min-height: 58px; padding: 9px 10px 11px; }
  .showcase-card__copy h3 { font-size: 12px; }
  .showcase-card__copy p { font-size: 9px; }
  .contact__inner { width: calc(100% - 28px); padding: 64px 0; gap: 22px; }
  .contact__visual { min-height: 550px; }
  .contact__eyebrow { font-size: 10px; }
  .contact__copy h2 { font-size: clamp(40px, 12vw, 54px); letter-spacing: -2.5px; }
  .contact__copy p { font-size: 15px; }
  .contact__mascot-wrap { min-height: 300px; }
  .contact__mascot { width: 235px; }
  .contact__platform { width: 270px; height: 58px; }
  .contact__message { top: 9%; right: calc(50% + 62px); padding: 12px 14px; font-size: 12px; }
  .contact-form { padding: 26px 18px; border-radius: 26px; }
  .contact-form__heading h3 { font-size: clamp(24px,8vw,28px); overflow-wrap: break-word; }
  .contact-form__grid { grid-template-columns: 1fr; gap: 14px; }
  .contact-field--wide { grid-column: auto; }
  .team__inner { width: calc(100% - 28px); padding: 60px 0; }
  .team__header h2 { font-size: clamp(37px,10.5vw,48px); letter-spacing: -2.2px; }
  .team__header > p { font-size: 15px; }
  .teacher-profile { height: auto; display: block; border-radius: 28px; }
  .teacher-profile__portrait { width: min(280px, calc(100% - 74px)); height: 360px; margin: 28px auto 0; border-radius: 24px; }
  .teacher-profile__body-clip { border-radius: 24px; }
  .teacher-profile__person-image { bottom: 0; width: 112%; height: 122%; }
  .teacher-profile__badge { top: 14px; left: 14px; }
  .teacher-profile__head-pop { clip-path: inset(0 0 61% 0); }
  .teacher-profile__copy { padding: 28px 20px 22px; }
  .teacher-profile__index { align-self: flex-start; }
  .teacher-profile__copy h3 { margin-top: 8px; font-size: 34px; }
  .teacher-profile__lead { font-size: 14px; }
  .teacher-profile__button { margin-top: 22px; font-size: 11px; }
  .teacher-thumb { flex-basis: 245px; }
  .team__benefits { padding: 10px; grid-template-columns: 1fr; }
  .team__benefits > div { min-height: 72px; }
  .team__benefits > div + div { border-top: 1px solid rgba(105,82,176,.15); border-left: 0; }
  .trust__inner { width: calc(100% - 28px); padding: 58px 0 38px; }
  .trust-heading h2 { font-size: clamp(37px,10.5vw,48px); letter-spacing: -2.2px; }
  .review-card { min-height: 0; padding: 16px; grid-template-columns: 52px minmax(0,1fr); gap: 12px; border-radius: 20px; }
  .review-card__avatar { width: 50px; height: 50px; border-width: 4px; font-size: 20px; align-self: start; }
  .review-card blockquote { font-size: 12px; }
  .review-card__body p { display: grid; gap: 3px; }
  .reviews-carousel__viewport { height: 520px; }
  .partners-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
  .partner-card { min-height: 120px; padding: 6px; border-radius: 18px; }
  .partner-card img { height: 106px; }
  .trust-cta { margin-top: 26px; padding: 24px 19px; display: grid; text-align: center; }
  .trust-cta a { width: 100%; }
  .faq__inner { width: calc(100% - 28px); padding: 58px 0 38px; }
  .faq__heading h2 { font-size: clamp(42px,12vw,55px); letter-spacing: -2.6px; }
  .faq__heading p { font-size: 15px; }
  .faq-mascot { height: 400px; margin-top: 8px; }
  .faq-mascot__person { left: -62px; bottom: -15px; width: 350px; }
  .faq-mascot__message { top: -18px; right: auto; left: clamp(150px,44vw,165px); width: clamp(165px,47vw,180px); }
  .faq-mascot__message p { inset: 21% 15% 25% 17%; font-size: 10px; line-height: 1.35; }
  .faq-mascot__icons { right: 2px; bottom: 8px; transform: scale(.72); transform-origin: bottom right; }
  .faq__accordion { gap: 10px; }
  .faq-item { border-radius: 22px; }
  .faq-question { min-height: 78px; padding: 10px 13px; grid-template-columns: 48px minmax(0,1fr) 38px; gap: 10px; }
  .faq-question__number { width: 46px; height: 46px; font-size: 16px; }
  .faq-question__text { font-size: 14px; }
  .faq-question__toggle { width: 36px; height: 36px; font-size: 20px; }
  .faq-answer p { margin: 0 12px 13px; padding: 17px; font-size: 13px; }
  .faq-cta { padding: 22px 18px; grid-template-columns: 58px 1fr; gap: 14px; }
  .faq-cta__mark { width: 55px; height: 55px; font-size: 28px; }
  .faq-cta strong { font-size: 17px; }
  .faq-cta a { grid-column: 1 / -1; width: 100%; min-width: 0; }
  .site-footer__inner { width: calc(100% - 28px); padding: 38px 0 20px; }
  .footer-invite { height: 820px; min-height: 0; display: block; }
  .footer-invite__mascot { top: 174px; bottom: auto; left: 50%; width: 245px; transform: translateX(-50%); }
  .footer-invite__panel { position: absolute; z-index: 3; right: 0; bottom: 25px; left: 0; min-height: 350px; padding: 50px 25px 42px; display: grid; text-align: center; }
  .footer-invite__copy h2 { font-size: clamp(36px,10.5vw,48px); }
  .footer-invite__copy p { font-size: 14px; }
  .footer-invite__panel > a { width: 100%; min-height: 62px; font-size: 15px; }
  .footer-invite__comet { right: -25px; bottom: 1px; width: 190px; opacity: .72; }
  .footer-navigation { margin-top: 0; padding-top: 30px; grid-template-columns: repeat(2,1fr); gap: 34px 20px; }
  .footer-brand { display: block; }
  .footer-brand > p { margin-top: 18px; font-size: 13px; }
  .footer-brand__logo img { width: 165px; height: 78px; }
  .footer-column h3 { font-size: 16px; }
  .footer-column a { font-size: 13px; }
  .footer-contacts { grid-column: 1 / -1; grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-contacts h3 { grid-column: 1 / -1; }
  .footer-company { padding-bottom: 22px; display: grid; gap: 8px; text-align: center; }
  .footer-company span + span::before { display: none; }
  .footer-bottom { padding-top: 20px; display: grid; grid-template-columns: 1fr; gap: 14px; text-align: center; }
  .footer-bottom > div { grid-column: auto; grid-row: auto; }
  .footer-bottom > p:last-child { text-align: center; }
}

@media (max-width: 430px) {
  .site-header { border-radius: 18px; }
  .logo__name { font-size: 20px; letter-spacing: -.8px; }
  .logo__tagline { margin-top: 5px; padding-left: 2px; font-size: 7px; letter-spacing: 2.2px; white-space: nowrap; }
  .menu-toggle { width: 40px; height: 40px; }
  .main-nav { top: calc(100% + 6px); padding: 18px; gap: 15px; border-radius: 18px; }
  .scene-layer--portal-glow,
  .scene-layer--portal-core { background-size: 720px auto; background-position: right -4px top 490px; transform-origin: 50% 682px; }
  .scene-layer--portal-rings { background-size: 770px auto; background-position: right -16px top 455px; transform-origin: 50% 682px; }
  .growth__grid { grid-template-columns: 1fr; gap: 34px; }
  .growth-card__bubble { width: min(78vw, 235px); }
  .growth-card h3 { min-height: 46px; padding-inline: 18px; font-size: 15px; }
  .growth-card p { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .yuskulik__arm { transform: rotate(-2deg); }
}
