:root {
  --edu-blue: #1F57AE;
  --edu-blue-700: #17468F;
  --edu-blue-500: #2E6BC7;
  --edu-blue-300: #7FA8E6;
  --edu-orange: #D07642;
  --edu-orange-400: #E8945F;
  --edu-orange-200: #F5C7A6;
  --gold: #C9A227;
  --vulcan: #002751;
  --navy: #041226;
  --navy-soft: #0A1E3C;
  --ink: #0C1B2E;
  --body: #4C5D74;
  --muted: #7C8CA1;
  --sand: #F7F4EF;
  --paper: #FFFFFF;
  --line: rgba(12, 27, 46, .10);
  --line-strong: rgba(12, 27, 46, .18);
  --radius-s: 10px;
  --radius: 18px;
  --radius-l: 28px;
  --shadow-s: 0 2px 10px rgba(4, 18, 38, .06);
  --shadow: 0 18px 44px -18px rgba(4, 18, 38, .28);
  --shadow-l: 0 40px 90px -40px rgba(4, 18, 38, .45);
  --header-h: 76px;
  --wrap: 1220px;
  --font: "IBM Plex Sans Arabic", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-num: "Rubik", "IBM Plex Sans Arabic", sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.85;
  color: var(--body);
  background: var(--paper);
  overflow-x: hidden;
  font-weight: 400;
}

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
figure { margin: 0; }
button { font: inherit; color: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.01em;
}

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

.wrap {
  width: min(100% - 40px, var(--wrap));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  inset-block-start: -100px;
  inset-inline-start: 20px;
  z-index: 999;
  background: var(--edu-orange);
  color: #fff;
  padding: 12px 22px;
  border-radius: 0 0 var(--radius-s) var(--radius-s);
  transition: inset-block-start .25s var(--ease);
}
.skip-link:focus { inset-block-start: 0; }

:focus-visible {
  outline: 3px solid var(--edu-orange-400);
  outline-offset: 3px;
  border-radius: 4px;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: var(--navy);
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader.is-done .preloader__bar span { animation: none; }
.preloader__inner { display: grid; justify-items: center; gap: 22px; }
.preloader img { width: 210px; }
.preloader__bar {
  width: 160px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, .14);
  overflow: hidden;
}
.preloader__bar span {
  display: block;
  height: 100%;
  width: 40%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--edu-blue-500), var(--edu-orange-400));
  animation: loadbar 1.1s var(--ease) infinite;
}
@keyframes loadbar {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

.topbar {
  background: var(--vulcan);
  color: rgba(255, 255, 255, .82);
  font-size: 13.5px;
  letter-spacing: .01em;
}
.topbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 42px;
  flex-wrap: wrap;
}
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.topbar__item svg { width: 15px; height: 15px; flex: none; opacity: .8; }
.topbar__socials { display: inline-flex; gap: 6px; }
.topbar__socials a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.topbar__socials a:hover { background: var(--edu-orange); transform: translateY(-2px); }
.topbar__socials svg { width: 15px; height: 15px; }

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 90;
  background: rgba(4, 18, 38, .55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-block-end: 1px solid rgba(255, 255, 255, .08);
  transition: background .35s var(--ease), border-color .35s var(--ease);
}
body.nav-open .site-header { z-index: 97; }
.nav-dock { position: static; }

.site-header.is-stuck {
  background: rgba(4, 18, 38, .94);
  box-shadow: 0 14px 40px -22px rgba(0, 0, 0, .8);
}
.site-header__row {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: var(--header-h);
}
.brand { flex: none; }
.brand img { width: 176px; }

.nav { margin-inline-start: auto; }
.nav__list { display: flex; align-items: center; gap: 2px; }
.nav__list a {
  display: block;
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  font-size: 14.5px;
  font-weight: 500;
  transition: color .25s var(--ease), background .25s var(--ease);
}
.nav__list a:hover,
.nav__list a.is-active { color: #fff; background: rgba(255, 255, 255, .1); }

.header__tools { display: flex; align-items: center; gap: 10px; flex: none; }

.lang {
  display: inline-flex;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .12);
}
.lang button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 999px;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.lang button.is-active { background: #fff; color: var(--vulcan); }
.lang--drawer { display: none; }

.btn {
  position: relative;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--edu-orange);
  color: #fff;
  box-shadow: 0 14px 30px -14px rgba(208, 118, 66, .9);
}
.btn--primary:hover { background: #c26833; }
.btn--ghost {
  border-color: rgba(255, 255, 255, .35);
  color: #fff;
  background: rgba(255, 255, 255, .06);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .6); }
.btn--blue { background: var(--edu-blue); color: #fff; }
.btn--blue:hover { background: var(--edu-blue-700); }
.btn--outline { border-color: var(--line-strong); color: var(--ink); background: #fff; }
.btn--outline:hover { border-color: var(--edu-blue); color: var(--edu-blue); }
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--lg { padding: 16px 34px; font-size: 16.5px; }
.btn--lg svg { width: 19px; height: 19px; }
.btn--xl { padding: 20px 46px; font-size: 18px; }
.btn--xl svg { width: 21px; height: 21px; }

.btn--shimmer { overflow: hidden; isolation: isolate; }
.btn--shimmer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, .55) 50%, transparent 62%);
  transform: translateX(-130%);
  animation: shimmer 3.4s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 12% { transform: translateX(-130%); }
  55%, 100% { transform: translateX(130%); }
}
.btn--primary.btn--shimmer {
  box-shadow: 0 14px 30px -14px rgba(208, 118, 66, .95), 0 0 0 3px rgba(232, 148, 95, .22);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  place-items: center;
}
.burger span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  position: relative;
  transition: background .25s var(--ease);
}
.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform .3s var(--ease);
}
.burger span::before { inset-block-start: -6px; }
.burger span::after { inset-block-start: 6px; }
.burger.is-open span { background: transparent; }
.burger.is-open span::before { transform: translateY(6px) rotate(45deg); }
.burger.is-open span::after { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  padding-block: clamp(40px, 6vw, 76px) clamp(50px, 7vw, 88px);
  margin-block-start: calc(var(--header-h) * -1);
  padding-block-start: calc(var(--header-h) + clamp(40px, 6vw, 76px));
}
.hero__media { position: absolute; inset: 0; z-index: -4; }
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s cubic-bezier(.37, 0, .21, 1);
  animation-duration: 9.5s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-play-state: paused;
}
.hero__slide.is-active { opacity: 1; }
.hero__slide.is-active,
.hero__slide.is-leaving { animation-play-state: running; }
.hero__slide:nth-child(3n + 1).is-active,
.hero__slide:nth-child(3n + 1).is-leaving { animation-name: kenBurnsA; }
.hero__slide:nth-child(3n + 2).is-active,
.hero__slide:nth-child(3n + 2).is-leaving { animation-name: kenBurnsB; }
.hero__slide:nth-child(3n + 3).is-active,
.hero__slide:nth-child(3n + 3).is-leaving { animation-name: kenBurnsC; }
.hero.is-frozen .hero__slide,
.hero.is-frozen .hero__beam,
.hero.is-frozen .btn--shimmer::after { animation-play-state: paused; }

@keyframes kenBurnsA {
  from { transform: scale(1.18) translate3d(1.1%, .7%, 0); }
  to   { transform: scale(1.06) translate3d(-.7%, -.4%, 0); }
}
@keyframes kenBurnsB {
  from { transform: scale(1.06) translate3d(-1.1%, -.5%, 0); }
  to   { transform: scale(1.18) translate3d(.7%, .4%, 0); }
}
@keyframes kenBurnsC {
  from { transform: scale(1.17) translate3d(-1.1%, .7%, 0); }
  to   { transform: scale(1.06) translate3d(1.1%, -.7%, 0); }
}

.hero__dots {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-block-start: 4px;
  --hold: 6s;
}
.hero__dot {
  width: auto;
  height: 24px;
  padding: 0;
  border: 0;
  background: none;
  display: grid;
  place-items: center;
}
.hero__dot i {
  position: relative;
  display: block;
  width: 24px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .26);
  overflow: hidden;
  transition: width .55s var(--ease), background .35s var(--ease);
}
.hero__dot:hover i { background: rgba(255, 255, 255, .5); }
.hero__dot i::after {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 0;
  border-radius: 999px;
  background: var(--edu-orange-400);
  box-shadow: 0 0 12px rgba(232, 148, 95, .55);
}
.hero__dot.is-active i { width: 54px; background: rgba(255, 255, 255, .22); }
.hero__dot.is-active i::after { width: 100%; }
.hero__dots.is-timing .hero__dot.is-active i::after {
  animation: dotFill var(--hold) linear forwards;
}
.hero__dots.is-timing.is-frozen .hero__dot.is-active i::after { animation-play-state: paused; }
@keyframes dotFill { from { width: 0; } to { width: 100%; } }
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(4, 18, 38, .93) 0%, rgba(4, 18, 38, .58) 36%, rgba(4, 18, 38, .92) 100%),
    radial-gradient(110% 72% at 50% 106%, rgba(31, 87, 174, .58), transparent 62%),
    radial-gradient(62% 46% at 84% 6%, rgba(208, 118, 66, .24), transparent 70%);
}
.hero__mesh {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .55;
  background-image:
    linear-gradient(rgba(160, 195, 255, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(160, 195, 255, .09) 1px, transparent 1px);
  background-size: 74px 74px;
  -webkit-mask-image: radial-gradient(78% 68% at 50% 58%, #000 28%, transparent 78%);
  mask-image: radial-gradient(78% 68% at 50% 58%, #000 28%, transparent 78%);
}
.hero__arch {
  position: absolute;
  inset-block-end: -2px;
  inset-inline-start: 50%;
  transform: translateX(50%);
  width: min(1100px, 118%);
  z-index: -1;
  opacity: .72;
  pointer-events: none;
}
[dir="ltr"] .hero__arch { transform: translateX(-50%); }
.hero__arch path {
  fill: none;
  stroke: url(#archGrad);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: drawArch 2.6s var(--ease) forwards;
}
.hero__arch path:nth-child(2) { animation-delay: .25s; opacity: .6; }
.hero__arch path:nth-child(3) { animation-delay: .5s; opacity: .35; }
@keyframes drawArch { to { stroke-dashoffset: 0; } }

.hero__beam {
  position: absolute;
  inset-block-start: -30%;
  inset-inline-start: 50%;
  width: 60%;
  height: 150%;
  z-index: -1;
  transform: translateX(50%) rotate(8deg);
  background: linear-gradient(180deg, rgba(232, 148, 95, .16), transparent 70%);
  filter: blur(40px);
  animation: beam 9s ease-in-out infinite alternate;
  pointer-events: none;
}
[dir="ltr"] .hero__beam { transform: translateX(-50%) rotate(-8deg); }
@keyframes beam {
  from { opacity: .5; }
  to { opacity: 1; }
}

.hero__inner {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 18px;
  max-width: 940px;
  margin-inline: auto;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .04em;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .92);
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--edu-orange-400);
  box-shadow: 0 0 0 4px rgba(232, 148, 95, .22);
}
.eyebrow--dark {
  background: rgba(31, 87, 174, .08);
  border-color: rgba(31, 87, 174, .16);
  color: var(--edu-blue);
}

.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.16;
  letter-spacing: -.02em;
  text-shadow: 0 6px 34px rgba(4, 18, 38, .55);
}
.hero h1 .accent {
  text-shadow: none;
  background: linear-gradient(120deg, var(--edu-orange-400), var(--edu-orange-200));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: rgba(255, 255, 255, .85);
  max-width: 700px;
  margin: 0;
  text-shadow: 0 2px 18px rgba(4, 18, 38, .55);
}

.countdown {
  display: flex;
  gap: clamp(8px, 1.6vw, 16px);
  flex-wrap: wrap;
  justify-content: center;
  margin-block: 6px;
}
.countdown__cell {
  min-width: clamp(74px, 11vw, 104px);
  padding: 13px 10px 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.countdown__num {
  display: block;
  font-family: var(--font-num);
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.countdown__lbl {
  display: block;
  margin-block-start: 6px;
  font-size: 12.5px;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .68);
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.hero__organizer {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-block-start: 6px;
  padding: 9px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
}
.hero__organizer span {
  font-size: 13px;
  letter-spacing: .05em;
  color: rgba(255, 255, 255, .6);
}
.hero__organizer img { width: 118px; }

.section { padding-block: clamp(70px, 8vw, 118px); position: relative; }
.section--sand { background: var(--sand); }

.section__head {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-block-end: clamp(36px, 5vw, 58px);
}
.section__head h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); letter-spacing: -.02em; }
.section__head p { margin: 0; font-size: 1.02rem; }

.about__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.about__body p { margin: 0 0 18px; }
.about__body p:last-of-type { margin-block-end: 28px; }
.about__body .h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin-block: 16px 20px; }

.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.stat {
  padding: 20px 14px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-s);
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.stat:hover { transform: translateY(-4px); border-color: rgba(31, 87, 174, .3); box-shadow: var(--shadow); }
.stat__num {
  display: block;
  font-family: var(--font-num);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--edu-blue);
  line-height: 1;
}
.stat__lbl { display: block; margin-block-start: 8px; font-size: 13.5px; color: var(--muted); }

.about__figure { position: relative; }
.about__figure img {
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-l);
  width: 100%;
}

.tier { margin-block-end: 34px; }
.tier:last-child { margin-block-end: 0; }
.tier__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-block-end: 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--muted);
}
.tier__title::before,
.tier__title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.tier__title i { width: 9px; height: 9px; border-radius: 50%; background: var(--edu-orange); flex: none; }
.tier--strategic .tier__title i { background: var(--edu-blue); }
.tier--gold .tier__title i { background: var(--gold); }
.tier--hospitality .tier__title i { background: var(--edu-orange); }

.sponsors {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(22px, 3.4vw, 46px);
  justify-content: center;
}
.sponsor { width: 168px; text-align: center; }
.sponsor__logo {
  width: 148px;
  height: 148px;
  margin-inline: auto;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px -18px rgba(4, 18, 38, .45), 0 0 0 0 rgba(208, 118, 66, 0);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.sponsor__logo img { width: 100%; height: 100%; object-fit: cover; }
.sponsor:hover .sponsor__logo {
  transform: translateY(-6px);
  box-shadow: 0 26px 46px -20px rgba(4, 18, 38, .5), 0 0 0 5px rgba(208, 118, 66, .28);
}
.tier--gold .sponsor:hover .sponsor__logo {
  box-shadow: 0 26px 46px -20px rgba(4, 18, 38, .5), 0 0 0 5px rgba(201, 162, 39, .34);
}
.tier--strategic .sponsor:hover .sponsor__logo {
  box-shadow: 0 26px 46px -20px rgba(4, 18, 38, .5), 0 0 0 5px rgba(31, 87, 174, .28);
}
.sponsor__name {
  margin-block-start: 15px;
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
}

.sectors { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.sector {
  position: relative;
  overflow: hidden;
  padding: 30px 26px;
  border-radius: var(--radius-l);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-s);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.sector::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--edu-blue), var(--edu-orange));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease);
}
[dir="ltr"] .sector::before { transform-origin: left; }
.sector:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(31, 87, 174, .25); }
.sector:hover::before { transform: scaleX(1); }
.sector__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, rgba(31, 87, 174, .12), rgba(208, 118, 66, .12));
  color: var(--edu-blue);
  margin-block-end: 18px;
}
.sector__icon svg { width: 25px; height: 25px; }
.sector h3 { font-size: 1.12rem; margin-block-end: 8px; }
.sector p { margin: 0; font-size: 14.5px; line-height: 1.8; }

.companies { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.company {
  padding: 24px 16px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-s);
  display: grid;
  justify-items: center;
  gap: 15px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.company:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(31, 87, 174, .25); }
.company__logo {
  width: 114px;
  height: 114px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--sand);
  border: 1px solid var(--line);
}
.company__logo img { width: 100%; height: 100%; object-fit: cover; }
.company__name { font-weight: 600; color: var(--ink); font-size: 15px; text-align: center; line-height: 1.5; }

.company--sponsor { border-color: rgba(208, 118, 66, .38); background: linear-gradient(180deg, #fff, #fffaf6); }
.company--sponsor .company__logo { box-shadow: 0 0 0 3px rgba(208, 118, 66, .22); }
.company__badge {
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(208, 118, 66, .12);
  color: #B45F2E;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .03em;
}
.company--gold .company__logo { box-shadow: 0 0 0 3px rgba(201, 162, 39, .3); }
.company--gold { border-color: rgba(201, 162, 39, .38); }
.company--gold .company__badge { background: rgba(201, 162, 39, .14); color: #8A6E12; }
.company--strategic .company__logo { box-shadow: 0 0 0 3px rgba(31, 87, 174, .25); }
.company--strategic { border-color: rgba(31, 87, 174, .34); }
.company--strategic .company__badge { background: rgba(31, 87, 174, .1); color: var(--edu-blue); }
.dir-search {
  position: relative;
  max-width: 560px;
  margin: 0 auto 14px;
}
.dir-search__icon {
  position: absolute;
  inset-inline-start: 20px;
  inset-block-start: 50%;
  transform: translateY(-50%);
  width: 19px;
  height: 19px;
  color: var(--muted);
  pointer-events: none;
}
.dir-search__input {
  width: 100%;
  padding: 15px 54px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: #fff;
  font-family: inherit;
  font-size: 15.5px;
  color: var(--ink);
  box-shadow: var(--shadow-s);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.dir-search__input::placeholder { color: var(--muted); }
.dir-search__input::-webkit-search-cancel-button { display: none; }
.dir-search__input:focus {
  outline: none;
  border-color: var(--edu-blue);
  box-shadow: 0 0 0 4px rgba(31, 87, 174, .12);
}
.dir-search__clear {
  position: absolute;
  inset-inline-end: 14px;
  inset-block-start: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(12, 27, 46, .07);
  color: var(--body);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s var(--ease), visibility .2s var(--ease), background .2s var(--ease);
}
.dir-search__clear.is-visible { opacity: 1; visibility: visible; }
.dir-search__clear:hover { background: rgba(12, 27, 46, .14); }
.dir-search__clear svg { width: 15px; height: 15px; }

.dir-count {
  margin: 0 0 30px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}
.dir-count b { font-family: var(--font-num); color: var(--edu-blue); font-size: 15.5px; }

.dir-empty {
  margin: 34px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}

.company__contact {
  display: grid;
  gap: 7px;
  width: 100%;
  margin-block-start: 2px;
  padding-block-start: 12px;
  border-block-start: 1px solid var(--line);
}
.company__contact li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 8px;
  align-items: start;
  font-size: 12.8px;
  line-height: 1.6;
  color: var(--body);
  text-align: start;
}
.company__contact svg { width: 15px; height: 15px; margin-block-start: 2px; color: var(--edu-blue); opacity: .75; }
.company__contact a { transition: color .2s var(--ease); word-break: break-word; }
.company__contact a[dir="ltr"] { display: inline-block; text-align: start; }
.company__contact a:hover { color: var(--edu-blue); }

.company__contact--empty { justify-items: center; }
.company__contact--empty li {
  grid-template-columns: auto;
  justify-items: center;
  opacity: .28;
}
.company__contact--empty svg { margin-block-start: 0; color: var(--body); }

.companies--dir { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.companies__more { display: flex; justify-content: center; margin-block-start: 38px; }
.companies__more .arrow { transition: transform .3s var(--ease); }
.companies__more .btn:hover .arrow { transform: translateX(-4px); }
[dir="ltr"] .companies__more .arrow { transform: scaleX(-1); }
[dir="ltr"] .companies__more .btn:hover .arrow { transform: scaleX(-1) translateX(-4px); }

.venue__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(26px, 4vw, 48px);
  align-items: stretch;
}
.venue__map {
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 400px;
  background: #e9eef4;
}
.venue__map iframe { width: 100%; height: 100%; min-height: 400px; border: 0; display: block; }
.venue__card {
  padding: clamp(24px, 3vw, 38px);
  border-radius: var(--radius-l);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-s);
  display: grid;
  align-content: start;
  gap: 18px;
}
.venue__list { display: grid; gap: 16px; }
.venue__list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding-block-end: 16px;
  border-block-end: 1px solid var(--line);
}
.venue__list li:last-child { border-block-end: 0; padding-block-end: 0; }
.venue__list i {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(31, 87, 174, .08);
  color: var(--edu-blue);
}
.venue__list svg { width: 20px; height: 20px; }
.venue__list b { display: block; color: var(--ink); font-size: 14px; font-weight: 600; }
.venue__list span { font-size: 15px; line-height: 1.7; }

.register-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(120deg, var(--vulcan) 0%, var(--edu-blue) 58%, #17509E 100%);
  color: #fff;
  padding-block: clamp(54px, 7vw, 92px);
}
.register-band::after {
  content: "";
  position: absolute;
  inset-block-start: -42%;
  inset-inline-end: -8%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 148, 95, .34), transparent 66%);
  z-index: 0;
  pointer-events: none;
}
.register-band__arch {
  position: absolute;
  inset-block-end: 0;
  inset-inline-start: 50%;
  transform: translateX(50%);
  width: min(900px, 100%);
  z-index: 0;
  opacity: .45;
  pointer-events: none;
}
.register-band__arch svg { display: block; width: 100%; height: auto; }
[dir="ltr"] .register-band__arch { transform: translateX(-50%); }
.register-band__arch path {
  fill: none;
  stroke: rgba(255, 255, 255, .5);
  stroke-width: 2.5;
  stroke-linecap: round;
}
.register-band__arch path:nth-child(2) { stroke: rgba(255, 255, 255, .24); }
.register-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 4vw, 60px);
  flex-wrap: wrap;
}
.register-band__text { max-width: 640px; }
.register-band__text h2 { color: #fff; font-size: clamp(1.6rem, 3.2vw, 2.4rem); margin-block: 18px 12px; }
.register-band__text p { margin: 0 0 22px; color: rgba(255, 255, 255, .84); }
.chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  font-size: 14px;
}
.chips svg { width: 17px; height: 17px; flex: none; }
.register-band__cta { display: grid; justify-items: center; gap: 14px; }
.register-band__note { font-size: 13px; color: rgba(255, 255, 255, .65); }

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .62);
  padding-block: clamp(52px, 6vw, 78px) 0;
  font-size: 14.5px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr .85fr 1.15fr .75fr;
  gap: clamp(26px, 3.5vw, 52px);
  padding-block-end: 46px;
}
.footer__brand img { width: 200px; margin-block-end: 18px; }
.footer__brand p { margin: 0 0 22px; max-width: 380px; }
.footer h4 { color: #fff; font-size: 15px; letter-spacing: .04em; margin-block-end: 18px; }
.footer__links { display: grid; gap: 11px; }
.footer__links a { transition: color .25s var(--ease), padding .25s var(--ease); }
.footer__links a:hover { color: var(--edu-orange-400); padding-inline-start: 5px; }
.footer__contact { display: grid; gap: 13px; }
.footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  transition: color .25s var(--ease);
  direction: ltr;
  justify-content: flex-end;
}
[dir="ltr"] .footer__contact a { justify-content: flex-start; }
.footer__contact a:hover { color: #fff; }
.footer__contact svg { width: 17px; height: 17px; flex: none; opacity: .7; }

.footer__org { display: grid; align-content: start; }
.footer__org img { width: 116px; opacity: .92; transition: opacity .25s var(--ease); }
.footer__org a:hover img { opacity: 1; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-block: 22px;
  border-block-start: 1px solid rgba(255, 255, 255, .08);
  font-size: 13.5px;
  color: rgba(255, 255, 255, .45);
}

.to-top {
  position: fixed;
  inset-block-end: 26px;
  inset-inline-end: 26px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 0;
  background: var(--edu-blue);
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all .35s var(--ease);
  z-index: 80;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--edu-orange); }
.to-top svg { width: 19px; height: 19px; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }

.page-head {
  background: var(--navy);
  color: #fff;
  padding-block: calc(var(--header-h) + 46px) 54px;
  margin-block-start: calc(var(--header-h) * -1);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
}
.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(90% 120% at 50% 130%, rgba(46, 107, 199, .5), transparent 62%),
    linear-gradient(180deg, rgba(4, 18, 38, .6), rgba(4, 18, 38, .95));
}
.page-head h1 { color: #fff; font-size: clamp(1.9rem, 4.2vw, 2.9rem); margin-block: 0 12px; }
.page-head p { margin: 0 auto; color: rgba(255, 255, 255, .74); max-width: 620px; }
.page-head__back { margin-block-start: 26px; }
.page-head__back .back-arrow { transition: transform .3s var(--ease); }
.page-head__back:hover .back-arrow { transform: translateX(4px); }
[dir="ltr"] .page-head__back .back-arrow { transform: scaleX(-1); }
[dir="ltr"] .page-head__back:hover .back-arrow { transform: scaleX(-1) translateX(4px); }



.hidden { display: none !important; }
.text-num { font-family: var(--font-num); font-variant-numeric: tabular-nums; }

@media (max-width: 1080px) {
  .site-header,
  .site-header.is-stuck {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(4, 18, 38, .95);
  }
  .countdown__cell {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, .12);
  }
  .nav-backdrop { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(4, 18, 38, .72); }
  .hero__beam { filter: none; opacity: .55; animation: none; }
  .register-band::after { width: 300px; height: 300px; inset-block-start: -26%; }
  .register-band__arch { opacity: .3; }
}

@media (max-width: 1080px) {
  .about__grid { grid-template-columns: 1fr; }
  .venue__grid { grid-template-columns: 1fr; }
  .sectors { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .companies { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .companies--dir { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 1080px) {
  .burger { display: grid; }
  .nav {
    position: fixed;
    inset-block-start: 0;
    inset-inline-end: 0;
    width: min(320px, 86vw);
    height: 100dvh;
    padding: 110px 24px 34px;
    background: var(--navy);
    border-inline-start: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 0 60px rgba(0, 0, 0, .5);
    z-index: 95;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    display: none;
    margin-inline-start: 0;
  }
  .nav.is-open { display: flex; flex-direction: column; gap: 4px; animation: drawerIn .36s var(--ease) both; }
  .nav.is-closing { animation: drawerOut .3s var(--ease) both; }
  [dir="ltr"] .nav.is-open { animation-name: drawerInLtr; }
  [dir="ltr"] .nav.is-closing { animation-name: drawerOutLtr; }
  @keyframes drawerIn { from { transform: translateX(-100%); } to { transform: none; } }
  @keyframes drawerOut { from { transform: none; } to { transform: translateX(-100%); } }
  @keyframes drawerInLtr { from { transform: translateX(100%); } to { transform: none; } }
  @keyframes drawerOutLtr { from { transform: none; } to { transform: translateX(100%); } }
  .nav__list { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav__list a { padding: 15px 16px; border-radius: 12px; font-size: 16px; min-height: 48px; display: flex; align-items: center; }
  .burger { position: relative; z-index: 98; }
  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(4, 18, 38, .6);
    backdrop-filter: blur(3px);
    z-index: 94;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s var(--ease), visibility .35s var(--ease);
  }
  .nav-backdrop.is-open { opacity: 1; visibility: visible; }
  .lang--head { display: none; }
  .lang--drawer { display: inline-flex; align-self: center; margin-block-start: 22px; }
  .brand img { width: 150px; }
  .header__tools .btn { padding: 10px 18px; font-size: 14px; }
}

@media (max-width: 900px) {
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .companies { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .companies--dir { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .register-band__inner { flex-direction: column; align-items: stretch; text-align: center; }
  .register-band__text { max-width: none; }
  .chips { justify-content: center; }
  .register-band__cta { justify-items: stretch; }
  .register-band__cta .btn { width: 100%; }
}

@media (max-width: 640px) {
  .wrap { width: min(100% - 32px, var(--wrap)); }
  .topbar__row { justify-content: center; gap: 10px; font-size: 12.5px; }
  .topbar__item:nth-child(2) { display: none; }
  .brand img { width: 142px; }
  .countdown__cell { min-width: 68px; padding: 13px 8px 10px; }
  .sectors { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { justify-content: center; text-align: center; }
  .hero__organizer { flex-direction: column; gap: 8px; }
  .hero__dot { width: 28px; height: 22px; }
  .hero__dot i { width: 20px; }
  .hero__dot.is-active i { width: 28px; }
  .sponsor { width: 128px; }
  .sponsor__logo { width: 114px; height: 114px; }
  .company__logo { width: 86px; height: 86px; }
  .company__name { font-size: 13.5px; }
  .company { padding: 18px 10px; gap: 11px; }
  .dir-search__input { padding: 13px 48px; font-size: 15px; }
  .dir-search__icon { inset-inline-start: 17px; }
  .company__contact li { font-size: 12px; grid-template-columns: 14px 1fr; gap: 6px; }
  .company__contact svg { width: 13px; height: 13px; }
  .company__badge { font-size: 10.5px; padding: 3px 9px; }
  .companies--dir { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand img { width: 128px; }
  .header__tools { gap: 8px; }
  .header__tools .btn { padding: 9px 15px; font-size: 13.5px; }
  .to-top { inset-block-end: 18px; inset-inline-end: 18px; width: 42px; height: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__slide { transform: none; transition: opacity .001ms; animation: none !important; }
  .hero__slide.is-active { transform: none; }
  .hero__dot.is-active i::after { animation: none !important; width: 100%; }
}

@media print {
  .site-header, .topbar, .to-top, .preloader, .hero__actions { display: none !important; }
  body { color: #000; }
}
