@charset "UTF-8";
@font-face {
  font-family: "Science Gothic";
  src: url("assets/fonts/science-gothic-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Science Gothic";
  src: url("assets/fonts/science-gothic-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
:root {
  --orange: #f46400;
  --orange-deep: #df5900;
  --ink: #333;
  --pattern: #515151;
  --canvas: min(100vw, 1920px);
  --container: min(1310px, 68.229vw);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #fff;
  font: 400 16px/1.45 "Segoe UI", Arial, sans-serif;
}

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

button, input {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

h1, h2, h3, .numbers dt {
  font-family: "Science Gothic", "Segoe UI", sans-serif;
  font-weight: 600;
}

h2 {
  margin: 0 0 min(30px, 1.563vw);
  line-height: 1.12;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.design-section,
.hero {
  position: relative;
  width: min(100%, 1920px);
  margin-inline: auto;
}

.design-section {
  isolation: isolate;
  scroll-margin-top: min(120px, 6.25vw);
}

.section-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.72s ease, transform 0.82s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-reveal.section-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.button {
  display: grid;
  width: min(467px, 24.323vw);
  min-height: min(46px, 2.396vw);
  place-items: center;
  border-radius: 3px;
  background: var(--orange);
  color: #fff;
  font-size: clamp(11px, 0.729vw, 14px);
  font-weight: 700;
}

.design-section:not(.hero) .button {
  min-height: 52px;
  padding: 12px 22px;
  box-shadow: none;
  font-size: 16px;
  line-height: 1.2;
  transition: background-color 0.25s ease, scale 0.25s ease, box-shadow 0.3s ease;
}

@media (min-width: 768px) {
  .design-section:not(.hero) .button {
    width: min(320px, 100%);
  }
}
@media (hover: hover) and (pointer: fine) {
  .design-section:not(.hero) .button:hover {
    box-shadow: 5px 8px 0 rgba(0, 0, 0, 0.09);
  }
}
.back-to-top {
  position: fixed;
  z-index: 9999;
  right: clamp(18px, 2vw, 36px);
  bottom: clamp(18px, 2vw, 36px);
  width: 56px;
  height: 56px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.back-to-top img {
  display: block;
  width: 100%;
  height: 100%;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  outline: 0;
  transform: translateY(-3px) scale(1.04);
}

@media (max-width: 767px) {
  :root {
    --container: min(calc(100% - 36px), 560px);
  }
  .design-section {
    width: 100%;
    height: auto;
    min-height: 0;
    overflow: hidden;
    scroll-margin-top: 72px;
  }
  .back-to-top {
    width: 48px;
    height: 48px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .section-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* Hidden fallback request for Yandex Metrika when JavaScript is disabled. */
.metrika-noscript {
  position: absolute;
  left: -9999px;
}

/* Header and hero — 1920 × 1097 */
.hero {
  z-index: 0;
  height: min(1097px, 57.135vw);
  min-height: 0;
  overflow: visible;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: -2;
  width: 100vw;
  transform: translateX(-50%);
  transform-origin: center;
  background: #303234 url("assets/figma-hero.webp") center/cover no-repeat;
  animation: hero-background-drift 16s ease-in-out infinite alternate;
}

.hero__shade {
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
  background: transparent;
}

.triangle-field {
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.triangle-field--hero {
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  top: 0;
  z-index: 1;
  background-position: center;
  background-size: contain;
  translate: var(--hero-shift-x) var(--hero-shift-y);
  transition: translate 0.18s ease-out;
}

.triangle-field--hero-left {
  top: min(110px, 5.729vw);
  left: max(-78.53px, -4.09vw);
  width: min(1095px, 57.031vw);
  height: min(987px, 51.406vw);
  background-image: url("assets/hero-1.svg?v=2");
  animation: hero-left-reveal 1.05s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.triangle-field--hero-right {
  top: min(680px, 35.417vw);
  right: max(-78.53px, -4.09vw);
  width: min(1100px, 57.292vw);
  height: min(640px, 33.333vw);
  background-image: url("assets/hero-2.svg?v=2");
  animation: hero-right-reveal 1.05s 0.18s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.triangle-field--hero-mirror-left {
  top: calc(min(110px, 5.729vw) - min(70.56px, 3.675vw));
  left: calc(max(-78.53px, -4.09vw) - min(1095px, 57.031vw) + min(39.27px, 2.045vw) - min(6px, 0.313vw) + 1px);
  transform: scale(-1, -1);
}

.triangle-field--hero-mirror-right {
  top: calc(min(680px, 35.417vw) - min(141.12px, 7.35vw));
  right: calc(max(-78.53px, -4.09vw) - min(1100px, 57.292vw) + min(39.27px, 2.045vw) + 1px);
  transform: scale(-1, -1);
}

.nav {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: min(120px, 6.25vw);
  padding-inline: calc((100vw - min(100vw, 1920px)) / 2 + min(305px, 15.885vw));
  align-items: center;
  justify-content: space-between;
  background: rgba(24, 27, 29, 0.78);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.logo {
  width: min(122px, 6.354vw);
  flex: 0 0 auto;
}

.logo img {
  width: 100%;
}

.nav__links {
  display: flex;
  gap: min(50px, 2.604vw);
  align-items: center;
  font-size: clamp(11px, 0.729vw, 14px);
  font-weight: 700;
}

.nav__links a {
  padding: min(13px, 0.677vw) min(20px, 1.042vw);
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}

.nav__links a:hover,
.nav__links a:focus-visible,
.nav__links a[aria-current=page] {
  outline: 0;
  background: var(--orange);
  color: #fff;
}

.nav__switch,
.nav__burger {
  display: none;
}

.hero__content {
  position: absolute;
  z-index: 2;
  top: 25%;
  right: 0;
  left: 0;
}

.hero__content .eyebrow {
  margin: 0 0 min(14px, 0.729vw);
  font-family: "Science Gothic", "Segoe UI", sans-serif;
  font-size: clamp(18px, 1.354vw, 26px);
  font-weight: 500;
  letter-spacing: 0.015em;
}

.hero h1 {
  margin: 0 0 min(60px, 3.125vw);
  color: #fff;
  font-size: clamp(54px, 4.583vw, 88px);
  line-height: 0.95;
  letter-spacing: 0.015em;
}

.hero__lead {
  margin: 0 0 min(30px, 1.563vw);
  font-size: clamp(13px, 1.042vw, 20px);
  line-height: 1.55;
}

.hero__brands {
  display: flex;
  width: min(630px, 32.4vw);
  min-height: min(112px, 5.833vw);
  margin-bottom: min(24px, 1.25vw);
  gap: min(24px, 1.25vw);
  align-items: center;
  perspective: 1000px;
}

.hero__brands a {
  display: block;
  width: calc(50% - min(12px, 0.625vw));
  height: auto;
  aspect-ratio: 3/1;
  border-radius: 12px;
  background: rgba(246, 246, 246, 0.78);
  box-shadow: none;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, background-color 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.hero__brands img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: contain;
}

@media (hover: hover) and (pointer: fine) {
  .hero__brands a:hover,
  .hero__brands a:focus-visible {
    outline: 0;
    background: rgba(246, 246, 246, 0.88);
    box-shadow: 5px 8px 0 rgba(0, 0, 0, 0.09);
    transform: translate3d(0, -5px, 12px) rotateX(3deg) rotateY(4deg);
  }
  .hero__brands a:nth-child(2):hover,
  .hero__brands a:nth-child(2):focus-visible {
    transform: translate3d(0, -5px, 12px) rotateX(3deg) rotateY(-4deg);
  }
}
.hero .button {
  width: min(520px, 30vw);
  min-height: clamp(54px, 3.542vw, 68px);
  font-size: clamp(16px, 0.99vw, 19px);
  scale: 1;
  transition: background-color 0.25s ease, scale 0.25s ease;
}

.hero .button:hover,
.hero .button:focus-visible {
  outline: 0;
  background: var(--orange-deep);
  scale: 1.035;
}

.hero__registration--mobile {
  display: none;
}

.hero__registration-group--mobile {
  display: none;
}

.hero__registration-group--desktop {
  position: absolute;
  z-index: 2;
  bottom: 12.5%;
  left: calc((100% - var(--container)) / 2);
  animation: hero-content-in 0.72s 0.68s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.hero__registration-note {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(15px, 0.938vw, 18px);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.hero__event {
  position: absolute;
  z-index: 2;
  right: min(325px, 16.927vw);
  bottom: 12.5%;
  display: grid;
  grid-template-columns: 1fr auto;
  width: min(520px, 27.083vw);
  align-items: center;
  text-align: right;
}

.hero__event > span {
  grid-column: 1/-1;
  justify-self: end;
  margin-bottom: min(18px, 0.938vw);
  border-radius: 999px;
  padding: min(8px, 0.417vw) min(13px, 0.677vw);
  background: rgba(20, 22, 24, 0.64);
  font-size: clamp(13px, 1.042vw, 20px);
}

.hero__event > span::before {
  display: inline-block;
  width: 0.55em;
  height: 0.55em;
  margin-right: 0.55em;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(244, 100, 0, 0.55);
  vertical-align: 0.08em;
  content: "";
  animation: online-pulse 1.7s ease-out infinite;
}

.hero__event p {
  grid-column: 1/-1;
  margin: 0 0 min(30px, 1.563vw);
  font-size: clamp(13px, 1.042vw, 20px);
}

.hero__event small {
  padding: 0 min(35px, 1.823vw) 0 0;
  font-size: clamp(12px, 1.042vw, 20px);
  line-height: 1;
}

.hero__event strong {
  font: 600 clamp(38px, 3.125vw, 60px)/1 "Science Gothic", "Segoe UI", sans-serif;
}

.hero__event--mobile {
  display: none;
}

.hero__content > *,
.hero__event > * {
  animation: hero-content-in 0.72s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.hero__content > :nth-child(1) {
  animation-delay: 0.18s;
}

.hero__content > :nth-child(2) {
  animation-delay: 0.28s;
}

.hero__content > :nth-child(3) {
  animation-delay: 0.38s;
}

.hero__content > :nth-child(4) {
  animation-delay: 0.48s;
}

.hero__content > :nth-child(5) {
  animation-delay: 0.58s;
}

.hero__content > :nth-child(6) {
  animation-delay: 0.68s;
}

.hero__event > :nth-child(1) {
  animation-delay: 0.52s;
}

.hero__event > :nth-child(2) {
  animation-delay: 0.6s;
}

.hero__event > :nth-child(3) {
  animation-delay: 0.68s;
}

.hero__event > :nth-child(4) {
  animation-delay: 0.76s;
}

@keyframes hero-background-drift {
  from {
    transform: translateX(-50%) scale(1);
  }
  to {
    transform: translateX(-50%) scale(1.03);
  }
}
@keyframes hero-left-reveal {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0);
  }
}
@keyframes hero-right-reveal {
  from {
    opacity: 0;
    clip-path: inset(0 0 0 100%);
  }
  to {
    opacity: 1;
    clip-path: inset(0);
  }
}
@keyframes hero-content-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes online-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(244, 100, 0, 0.55);
  }
  65%, 100% {
    box-shadow: 0 0 0 0.55em rgba(244, 100, 0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .triangle-field--hero,
  .hero__content > *,
  .hero__event > * {
    animation: none;
  }
  .hero__event > span::before {
    animation: none;
  }
  .triangle-field--hero {
    translate: 0 0;
    transition: none;
  }
}
@media (max-width: 1100px) and (min-width: 768px) {
  .nav__links {
    gap: 10px;
  }
}
@media (max-height: 960px) and (min-width: 768px) {
  .hero__content {
    top: clamp(25%, 25% + 115.2px - 12vh, 29.5%);
  }
  .hero__registration--desktop,
  .hero__event--desktop {
    bottom: clamp(12.5%, 12.5% + 115.2px - 12vh, 17.5%);
  }
}
@media (max-width: 767px) {
  .nav {
    height: 72px;
    padding-inline: 18px;
  }
  .logo {
    width: 78px;
  }
  .nav__switch {
    position: absolute;
    opacity: 0;
  }
  .nav__burger {
    display: grid;
    gap: 6px;
    padding: 11px;
    cursor: pointer;
  }
  .nav__burger i {
    width: 28px;
    height: 3px;
    background: #fff;
  }
  .nav__links {
    position: absolute;
    top: 72px;
    right: 18px;
    display: none;
    width: 260px;
    padding: 20px;
    gap: 10px;
    background: #17191b;
    font-size: 16px;
  }
  .nav__links a {
    padding: 14px 20px;
  }
  .nav__switch:checked ~ .nav__links {
    display: grid;
  }
  .hero {
    width: 100%;
    height: 800px;
    min-height: 800px;
    overflow: hidden;
  }
  .hero::before {
    background-position: 57% center;
  }
  .triangle-field--hero-mirror {
    display: none;
  }
  .triangle-field--hero-left {
    top: 72px;
    left: calc(50% - 51px);
    width: auto;
    height: calc(100% - 72px);
    max-height: calc(100% - 72px);
    aspect-ratio: 1094.84/987.01;
    transform: translateX(-50%);
  }
  .triangle-field--hero-right {
    display: none;
  }
  .triangle-field--hero {
    translate: 0 0;
    transition: none;
  }
  .hero__content.container {
    top: 104px;
    right: auto;
    left: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(100% - 40px);
    margin: 0;
    text-align: center;
  }
  .hero__content .eyebrow {
    margin-bottom: 16px;
    font-size: 18px;
  }
  .hero h1 {
    margin-bottom: 32px;
    font-size: clamp(46px, 13.5vw, 60px);
  }
  .hero__lead {
    max-width: 520px;
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.65;
  }
  .hero__lead-accent {
    font-size: 1.2em;
    font-weight: 700;
  }
  .hero__lead br {
    display: none;
  }
  .hero__brands {
    width: min(100%, 340px);
    min-height: 72px;
    margin-bottom: 22px;
    gap: 12px;
  }
  .hero__brands a {
    width: calc(50% - 6px);
  }
  .hero__brands img {
    width: 100%;
    height: 100%;
    padding: 0;
  }
  .hero .button {
    width: min(100%, 420px);
    min-height: 56px;
    font-size: 18px;
  }
  .hero__registration-group--desktop {
    display: none;
  }
  .hero__registration-group--mobile {
    display: flex;
    width: min(100%, 420px);
    flex-direction: column;
    align-items: center;
  }
  .hero__registration--mobile {
    display: grid;
  }
  .hero__registration-note {
    margin-bottom: 12px;
    font-size: 15px;
  }
  .hero__event--desktop {
    display: none;
  }
  .hero__event--mobile {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 300px);
    margin: 0 auto 36px;
    text-align: center;
  }
  .hero__event--mobile > span {
    margin-bottom: 14px;
    padding: 7px 12px;
    justify-self: center;
    font-size: 14px;
  }
  .hero__event--mobile p {
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.55;
  }
  .hero__event--mobile small {
    padding: 0 0 10px;
    text-align: center;
    font-size: 14px;
  }
  .hero__event--mobile strong {
    font-size: clamp(36px, 11vw, 48px);
  }
  .hero__content > :nth-child(6) {
    animation-delay: 0.84s;
  }
}
/* About — trimmed after the lower triangle pattern */
.about {
  height: min(1780px, 92.708vw);
}

@media (min-width: 768px) {
  .about {
    margin-top: min(80px, 4.167vw);
  }
}
.about__hex {
  position: absolute;
  inset: min(336px, 17.5vw) auto auto 37%;
  width: min(1280px, 66.667vw);
  height: min(1280px, 66.667vw);
  z-index: 3;
  transition: transform 0.45s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.about__hex > img {
  width: 100%;
  height: 100%;
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.about__photo {
  position: absolute;
  z-index: 0;
  top: min(59px, 3.073vw);
  bottom: auto;
  left: max(-402px, -20.938vw);
  width: auto;
  height: min(1139px, 59.323vw);
  max-width: none;
}

.about__pattern {
  position: absolute;
  z-index: 1;
  top: min(1198px, 62.396vw);
  left: 50%;
  width: min(2020px, 105.208vw);
  max-width: none;
  height: auto;
  transform: translateX(-50%);
  pointer-events: none;
}

.about--animated .about__photo {
  opacity: 0;
  transition: opacity 1.05s 0.12s ease;
}

.about--animated .about__pattern {
  opacity: 0;
  transform: translate(-50%, 12px);
  transition: opacity 1.05s 0.12s ease, transform 1.05s 0.12s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.about--animated .about__hex > img {
  transform: rotate(-2deg) scale(0.985);
}

.about--animated.is-visible .about__photo {
  opacity: 1;
}

.about--animated.is-visible .about__pattern {
  opacity: 1;
  transform: translateX(-50%);
}

.about--animated.is-visible .about__hex > img {
  transform: rotate(0) scale(1);
  transition-delay: 0s;
}

.about__content {
  position: absolute;
  z-index: 1;
  top: 10%;
  left: 9.27%;
  width: 81.64%;
  height: 87.73%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8.59% 8.59% 8.59% 10.63%;
}

.about__content h2 {
  font-family: "Science Gothic", "Segoe UI", sans-serif;
  font-size: clamp(38px, 2.917vw, 56px);
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}

.about__content p {
  margin: 0 0 1em;
  font-size: clamp(15px, 1.042vw, 20px);
  line-height: 1.45;
}

.about__content .button {
  width: min(320px, 100%);
  margin-top: min(18px, 0.938vw);
  flex: 0 0 auto;
}

@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .about__hex:hover {
    transform: translateY(-4px);
  }
  .about--animated.is-visible .about__hex:hover > img {
    transform: rotate(2deg) scale(1.01);
    transition-delay: 0s;
  }
  .about__content h2:hover {
    color: var(--orange);
  }
}
@media (max-width: 1500px) and (min-width: 1101px) {
  .about__content p {
    font-size: clamp(13px, 0.95vw, 15px);
    line-height: 1.38;
  }
}
@media (max-width: 1100px) and (min-width: 768px) {
  .about__content {
    padding-right: 7%;
    padding-left: 8%;
  }
  .about__content h2 {
    font-size: clamp(32px, 3.4vw, 38px);
  }
  .about__content p {
    font-size: clamp(11px, 1.15vw, 13px);
    line-height: 1.35;
  }
}
@media (max-width: 767px) {
  .about {
    --about-mobile-hex: min(140vw, 820px);
    --about-mobile-gap: clamp(24px, 6vw, 40px);
    height: auto;
    min-height: calc(var(--about-mobile-hex) + var(--about-mobile-gap) * 2);
    overflow: hidden;
    padding: 0;
  }
  .about__photo,
  .about__pattern {
    display: none;
  }
  .about__hex {
    display: block;
    inset: var(--about-mobile-gap) auto auto 50%;
    width: var(--about-mobile-hex);
    height: var(--about-mobile-hex);
    transform: translateX(-50%);
  }
  .about__content {
    position: absolute;
    z-index: 1;
    top: 10%;
    left: 50%;
    width: min(100vw - 20px, 350px);
    height: 87.73%;
    min-height: 0;
    margin: 0;
    padding: 0;
    transform: translateX(-50%);
  }
  .about__content h2 {
    margin: 0 0 20px;
    font-size: 36px;
  }
  .about__content p {
    font-size: clamp(10px, 2.9vw, 12px);
    line-height: 1.4;
  }
  .about__content .button {
    width: 100%;
    margin-top: 12px;
  }
}
@media (max-width: 767px) and (hover: hover) and (pointer: fine) {
  .about__hex:hover {
    transform: translate(-50%, -3px);
  }
  .about--animated.is-visible .about__hex:hover > img {
    transform: rotate(2deg) scale(1.01);
    transition-delay: 0s;
  }
}
/* Numbers — 1920 × 1391 */
.numbers {
  --section-parallax-x: 0px;
  --section-parallax-y: 0px;
  height: min(1391px, 72.448vw);
}

.numbers::before {
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: 0;
  width: 100vw;
  background-image: url("assets/pattern-numbers.svg");
  background-position: calc(64% + var(--section-parallax-x)) calc(50% + var(--section-parallax-y));
  background-repeat: no-repeat;
  background-size: 115% 115%;
  content: "";
  opacity: 0.1;
  transform: translateX(-50%);
  transition: background-position 0.22s ease-out;
  pointer-events: none;
}

.numbers__pattern,
.tracks__pattern,
.statement__pattern,
.cyber__pattern {
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: 0;
  width: 100vw;
  transform: translateX(-50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.numbers__pattern {
  background-image: url("assets/pattern-numbers.svg");
  inset: 0 auto 0 50%;
  transform: translateX(-50%);
  background-position: center;
  background-size: 100% 100%;
}

.numbers__intro {
  position: absolute;
  z-index: 3;
  top: 43.13%;
  left: 25.16%;
  display: flex;
  flex-direction: column;
  width: 25%;
  min-height: 28%;
  padding: 3%;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: translate(-50%, -50%);
  user-select: text;
}

.numbers__title {
  margin: 0 0 min(20px, 1.042vw);
  font-size: clamp(40px, 3.125vw, 60px);
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
}

.numbers__title:hover {
  color: var(--orange);
}

.numbers__note {
  margin: 0;
  font-size: clamp(14px, 0.938vw, 18px);
}

.numbers__list {
  position: absolute;
  z-index: 2;
  inset: 0;
  margin: 0;
  pointer-events: none;
}

.numbers__list div {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 20%;
  min-height: 18%;
  text-align: center;
  transform: translate(-50%, -50%);
  perspective: 800px;
  pointer-events: auto;
}

.numbers__list div:nth-child(1) {
  top: 27.82%;
  left: 54.01%;
}

.numbers__list div:nth-child(2) {
  top: 43.6%;
  left: 71.74%;
}

.numbers__list div:nth-child(3) {
  top: 58.95%;
  left: 53.96%;
}

.numbers__list div:nth-child(4) {
  top: 74.73%;
  left: 72.34%;
}

.numbers dt {
  color: #000;
  font-size: clamp(45px, 3.958vw, 76px);
  line-height: 1;
  transition: color 0.28s ease, transform 1s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.numbers dd {
  margin: 5px 0 0;
  font-size: clamp(20px, 1.927vw, 37px);
  line-height: 1.22;
  transition: color 0.28s ease, transform 1s cubic-bezier(0.2, 0.75, 0.25, 1);
}

@media (hover: hover) and (pointer: fine) {
  .numbers__list div:hover dt {
    color: var(--orange);
    transform: rotateY(360deg);
  }
  .numbers__list div:hover dd {
    color: var(--orange);
    transform: translateY(4px) rotateY(-360deg);
  }
}
@media (max-width: 767px) {
  .numbers {
    height: auto;
    min-height: 0;
    margin-top: 0;
    margin-bottom: 56px;
    padding: 0;
  }
  .numbers::before {
    display: none;
  }
  .numbers__pattern {
    display: none;
  }
  .numbers__intro {
    position: relative;
    top: auto;
    left: auto;
    width: min(100vw - 20px, 350px);
    min-height: 0;
    margin: 0 auto;
    padding: 36px 0 0;
    transform: none;
  }
  .numbers__title {
    width: 100%;
    margin: 0 0 14px;
    font-size: 36px;
    font-weight: 400;
    text-align: left;
  }
  .numbers__note {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    min-height: 0;
    margin: 0 auto;
    padding: 0;
    text-align: left;
    transform: none;
  }
  .numbers__list {
    --honeycomb-width: min(calc(100vw - 32px), 430px);
    --honeycomb-hex: calc(var(--honeycomb-width) * .565);
    position: relative;
    inset: auto;
    display: block;
    width: var(--honeycomb-width);
    height: calc(var(--honeycomb-width) * 1.248);
    margin: 30px auto 0;
    padding: 0;
    transform: none;
  }
  .numbers__list::before {
    content: "";
    position: absolute;
    inset: 2% -12%;
    z-index: 0;
    background: url("assets/about-2.webp") center/cover no-repeat;
    pointer-events: none;
  }
  .numbers__list div,
  .numbers__list div:nth-child(n) {
    position: absolute;
    z-index: 1;
    left: 0;
    width: var(--honeycomb-hex);
    min-height: 0;
    aspect-ratio: 1.15;
    padding: 20px 14px;
    isolation: isolate;
    background: #aaa;
    color: var(--hex-text);
    clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
    transform: none;
  }
  .numbers__list div::before {
    content: "";
    position: absolute;
    inset: 2px;
    z-index: 0;
    background: var(--hex-fill);
    clip-path: inherit;
  }
  .numbers__list div::after {
    content: "";
    position: absolute;
    inset: 2px;
    z-index: 0;
    background: url("assets/about-1.svg") var(--hex-position, center) center/auto 100% no-repeat;
    opacity: 0.16;
    clip-path: inherit;
  }
  .numbers__list dt,
  .numbers__list dd {
    position: relative;
    z-index: 1;
  }
  .numbers__list div:nth-child(1) {
    --hex-fill: #fff;
    --hex-text: #2d2d2d;
    --hex-position: 8%;
    top: 0;
  }
  .numbers__list div:nth-child(2) {
    --hex-fill: #fff;
    --hex-text: #2d2d2d;
    --hex-position: 36%;
    top: 20.2%;
    right: 0;
    left: auto;
  }
  .numbers__list div:nth-child(3) {
    --hex-fill: #fff;
    --hex-text: #2d2d2d;
    --hex-position: 64%;
    top: 40.4%;
  }
  .numbers__list div:nth-child(4) {
    --hex-fill: #fff;
    --hex-text: #2d2d2d;
    --hex-position: 92%;
    top: 60.6%;
    right: 0;
    left: auto;
  }
  .numbers dt {
    font-size: clamp(42px, 13vw, 56px);
  }
  .numbers dd {
    margin-top: 7px;
    font-size: 19px;
    line-height: 1.16;
  }
}
/* Speakers — balanced vertical breathing room on desktop */
.speakers {
  height: auto;
  padding: min(100px, 5.208vw) 0 min(200px, 10.417vw);
}

.speakers::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: 0;
  width: 100vw;
  transform: translateX(-50%);
  background: #fff;
}

.speakers__title {
  position: relative;
  z-index: 2;
  margin: 0 auto min(30px, 1.563vw);
  font-family: "Science Gothic", "Segoe UI", sans-serif;
  font-size: clamp(40px, 3.125vw, 60px);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-align: center;
  transition: color 0.3s ease;
}

.speakers__subtitle {
  position: relative;
  z-index: 2;
  width: min(760px, 100% - 44px);
  margin: 0 auto min(55px, 2.865vw);
  font-size: clamp(15px, 0.938vw, 18px);
  line-height: 1.45;
  text-align: center;
}

.speakers__slider {
  position: relative;
  z-index: 2;
  width: min(1580px, 82.292vw);
}

.speakers__viewport {
  width: min(1580px, 82.292vw);
  margin-inline: auto;
  overflow: hidden;
  touch-action: pan-y;
}

.speakers__viewport:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 8px;
}

.speakers__row {
  display: flex;
}

.speaker-card {
  width: min(360px, 18.75vw);
  height: auto;
}

.speaker-card__visual {
  position: relative;
  height: min(360px, 18.75vw);
  overflow: hidden;
  perspective: 900px;
}

.speaker-card__visual span {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: min(377px, 19.635vw);
  height: min(359px, 18.698vw);
  transform: translateX(-50%);
  background: url("assets/speaker-accent.svg?v=2") center/contain no-repeat;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.speaker-card__visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45px;
  filter: grayscale(1);
  transition: transform 0.42s cubic-bezier(0.2, 0.75, 0.25, 1), filter 0.35s ease;
}

.speaker-card__caption {
  min-height: min(106px, 5.521vw);
  padding: min(24px, 1.25vw) min(34px, 1.771vw);
  background: #111;
  transition: background-color 0.32s ease;
}

.speaker-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(15px, 1.042vw, 20px);
  line-height: 1.1;
}

.speaker-card p {
  margin: min(5px, 0.26vw) 0 0;
  color: #ff8f00;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

@media (hover: hover) and (pointer: fine) {
  .speakers__title:hover {
    color: var(--orange);
  }
  .speaker-card:hover .speaker-card__visual img {
    filter: grayscale(0);
    transform: translateY(-3px) scale(1.035);
  }
  .speaker-card:hover .speaker-card__visual span {
    transform: translateX(-50%) scale(1.06) rotate(-5deg);
  }
  .speaker-card:hover .speaker-card__caption {
    background: #242424;
  }
}
.speakers__arrow {
  position: absolute;
  z-index: 4;
  top: 43%;
  display: none;
  width: min(50px, 2.604vw);
  height: min(44px, 2.292vw);
  place-items: center;
  isolation: isolate;
  border: 0;
  padding: 0 0 3px;
  background: #555;
  color: #333;
  font-size: clamp(28px, 2.083vw, 40px);
  line-height: 1;
  cursor: pointer;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}

.speakers__arrow::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 2px;
  background: #fff;
  clip-path: inherit;
}

.speakers__arrow:hover,
.speakers__arrow:focus-visible {
  outline: 0;
  background: var(--orange);
  color: #fff;
}

.speakers__arrow:hover::before,
.speakers__arrow:focus-visible::before {
  background: var(--orange);
}

.speakers__arrow--prev {
  left: 0;
}

.speakers__arrow--next {
  right: 0;
}

.pager {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: min(24px, 1.25vw);
  margin-top: min(40px, 2.083vw);
}

.pager .pager__dot {
  position: relative;
  width: min(24px, 1.25vw);
  height: min(28px, 1.458vw);
  margin: 0;
  opacity: 1;
  border: 0;
  padding: 0;
  background: #555;
  cursor: pointer;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.pager .pager__dot::after {
  content: "";
  position: absolute;
  inset: 1px;
  background: #fff;
  clip-path: inherit;
}

.pager .pager__dot.active {
  background: var(--orange);
}

.pager .pager__dot.active::after {
  background: var(--orange);
}

@media (max-width: 767px) {
  .speakers {
    --speaker-mobile-width: min(calc(100vw - 20px), 350px);
    height: auto;
    min-height: 0;
    overflow: hidden;
    padding: 90px 0 70px;
  }
  .speakers::before {
    width: 1000px;
  }
  .speakers__title {
    width: min(100vw - 20px, 350px);
    margin-bottom: 12px;
    font-size: 36px;
    text-align: left;
  }
  .speakers__subtitle {
    width: min(100vw - 20px, 350px);
    margin-bottom: 30px;
    font-size: 15px;
    text-align: left;
  }
  .speakers__slider {
    width: min(100% - 20px, 560px);
  }
  .speakers__viewport {
    width: var(--speaker-mobile-width);
  }
  .speaker-card {
    width: var(--speaker-mobile-width);
  }
  .speaker-card__visual {
    height: var(--speaker-mobile-width);
  }
  .speaker-card__visual span {
    bottom: 0;
    left: 50%;
    width: calc(var(--speaker-mobile-width) * 1.044);
    height: calc(var(--speaker-mobile-width) * 0.996);
  }
  .speaker-card__caption {
    min-height: 96px;
    padding: 18px 21px;
  }
  .speaker-card h3 {
    font-size: 19px;
  }
  .speaker-card p {
    font-size: 18px;
  }
  .speakers__arrow {
    top: 42%;
    width: 40px;
    height: 35px;
  }
  .speakers__arrow--prev {
    left: 0;
  }
  .speakers__arrow--next {
    right: 0;
  }
  .pager {
    gap: 14px;
    margin-top: 28px;
  }
  .pager .pager__dot {
    width: 18px;
    height: 21px;
  }
}
/* Tracks — compact desktop section */
.tracks {
  --section-parallax-x: 0px;
  --section-parallax-y: 0px;
  height: min(1200px, 62.5vw);
}

.tracks::before {
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: 0;
  width: 100vw;
  background-image: url("assets/pattern-tracks.svg");
  background-position: calc(50% + var(--section-parallax-x)) calc(54% + var(--section-parallax-y));
  background-repeat: no-repeat;
  background-size: 115% 115%;
  content: "";
  opacity: 0.1;
  transform: translateX(-50%);
  transition: background-position 0.22s ease-out;
  pointer-events: none;
}

.tracks__pattern {
  background-image: url("assets/pattern-tracks.svg");
}

.tracks__content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.tracks__content > h2 {
  position: absolute;
  z-index: 2;
  top: 24.25%;
  left: 26.797%;
  display: grid;
  width: min(320px, 16.667vw);
  min-height: min(150px, 7.813vw);
  margin: 0;
  place-items: center;
  text-align: center;
  font-size: clamp(40px, 3.125vw, 60px);
  font-weight: 400;
  letter-spacing: 0.02em;
  transform: translate(-50%, -50%);
  transition: color 0.25s ease;
  user-select: text;
}

.tracks__content > h2:hover {
  color: var(--orange);
}

.tracks__grid {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.tracks__grid article {
  position: absolute;
  top: var(--track-y);
  left: var(--track-x);
  display: flex;
  width: min(300px, 15.625vw);
  height: min(250px, 13.021vw);
  padding: min(16px, 0.833vw) min(24px, 1.25vw);
  overflow: hidden;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(20px, 1.563vw, 30px);
  font-weight: 600;
  line-height: 1.25;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  transform: translate(-50%, -50%);
  perspective: 800px;
  pointer-events: auto;
  user-select: text;
}

.tracks__grid article > span {
  display: block;
  width: 100%;
  text-align: center;
  transition: color 0.28s ease, transform 1s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.tracks__grid article:nth-child(1) {
  --track-x: 26.797%;
  --track-y: 51.958%;
}

.tracks__grid article:nth-child(2) {
  --track-x: 38.359%;
  --track-y: 40.875%;
}

.tracks__grid article:nth-child(3) {
  --track-x: 49.896%;
  --track-y: 51.958%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.tracks__grid article:nth-child(4) {
  --track-x: 61.432%;
  --track-y: 40.875%;
}

.tracks__grid article:nth-child(5) {
  --track-x: 72.995%;
  --track-y: 51.958%;
}

@media (min-width: 768px) {
  .tracks__content > h2 {
    width: min(375px, 19.531vw);
    height: min(134px, 6.979vw);
    min-height: 0;
    padding: 0;
    place-content: center;
    justify-items: center;
    line-height: 1;
  }
  .tracks__grid article {
    height: min(267px, 13.906vw);
    padding: 0;
  }
  .tracks__grid article:nth-child(1),
  .tracks__grid article:nth-child(5) {
    width: min(303px, 15.781vw);
  }
  .tracks__grid article:nth-child(2),
  .tracks__grid article:nth-child(4) {
    width: min(307px, 15.99vw);
  }
  .tracks__grid article:nth-child(3) {
    width: min(304px, 15.833vw);
  }
  .tracks__grid article > span {
    position: absolute;
    inset: 0;
    display: grid;
    padding: min(16px, 0.833vw) min(24px, 1.25vw);
    place-items: center;
    line-height: 1.2;
  }
}
@media (hover: hover) and (pointer: fine) {
  .tracks__grid article:hover > span {
    color: var(--orange);
    transform: rotateY(360deg);
  }
}
@media (max-width: 767px) {
  .tracks {
    height: auto;
    min-height: 0;
    margin-bottom: 0;
    padding: 0 0 64px;
  }
  .tracks::before {
    display: none;
  }
  .tracks__pattern {
    display: none;
  }
  .tracks__pattern::before {
    content: none;
  }
  .tracks__content {
    width: 100%;
    height: auto;
  }
  .tracks__content > h2 {
    position: relative;
    top: auto;
    left: auto;
    display: block;
    width: min(100vw - 20px, 350px);
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 0;
    background: transparent;
    font-size: 36px;
    font-weight: 400;
    text-align: left;
    clip-path: none;
    margin: 0 auto 30px;
    padding-top: 36px;
    transform: none;
  }
  .tracks__grid {
    --honeycomb-width: min(calc(100vw - 32px), 430px);
    --honeycomb-hex: calc(var(--honeycomb-width) * .565);
    position: relative;
    inset: auto;
    display: block;
    width: var(--honeycomb-width);
    height: calc(var(--honeycomb-width) * 1.5);
    margin: 0 auto;
    padding: 0;
  }
  .tracks__grid::before {
    content: "";
    position: absolute;
    inset: 2% -12%;
    z-index: 0;
    background: url("assets/about-2.webp") center/cover no-repeat;
    transform: scaleX(-1);
    pointer-events: none;
  }
  .tracks__grid article,
  .tracks__grid article:nth-child(n) {
    position: absolute;
    z-index: 1;
    width: var(--honeycomb-hex);
    height: auto;
    min-height: 0;
    aspect-ratio: 1.15;
    padding: 28px 24px;
    isolation: isolate;
    background: #aaa;
    color: var(--hex-text);
    font-size: clamp(14px, 4vw, 17px);
    line-height: 1.22;
    transform: none;
  }
  .tracks__grid article::before {
    content: "";
    position: absolute;
    inset: 2px;
    z-index: 0;
    background: var(--hex-fill);
    clip-path: inherit;
  }
  .tracks__grid article::after {
    content: "";
    position: absolute;
    inset: 2px;
    z-index: 0;
    background: url("assets/about-1.svg") var(--hex-position, center) center/auto 100% no-repeat;
    opacity: 0.16;
    clip-path: inherit;
  }
  .tracks__grid article > span {
    position: relative;
    z-index: 1;
  }
  .tracks__grid article:nth-child(1) {
    --hex-fill: #fff;
    --hex-text: #2d2d2d;
    --hex-position: 5%;
    top: 0;
    left: 0;
  }
  .tracks__grid article:nth-child(2) {
    --hex-fill: #fff;
    --hex-text: #2d2d2d;
    --hex-position: 27%;
    top: 16.8%;
    right: 0;
    left: auto;
  }
  .tracks__grid article:nth-child(3) {
    --hex-fill: #fff;
    --hex-text: #2d2d2d;
    --hex-position: 50%;
    top: 33.6%;
    left: 0;
  }
  .tracks__grid article:nth-child(4) {
    --hex-fill: #fff;
    --hex-text: #2d2d2d;
    --hex-position: 73%;
    top: 50.4%;
    right: 0;
    left: auto;
  }
  .tracks__grid article:nth-child(5) {
    --hex-fill: #fff;
    --hex-text: #2d2d2d;
    --hex-position: 95%;
    top: 67.2%;
    left: 0;
  }
}
/* Program — compact after removing the original 245px top offset */
.program {
  height: auto;
  min-height: min(4505px, 234.635vw);
  padding: min(60px, 3.125vw) 0 0;
}

/* Program presentation and navigation rules previously embedded in index.html. */
.program .timeline__slide {
  background: transparent;
}

.program {
  overflow-anchor: none;
}

.program .timeline__slide .timeline__item > div {
  border-radius: 6px;
  background: #f3f3f3;
  box-shadow: 0 0 0 min(16px, 0.833vw) #f3f3f3;
}

#program {
  scroll-margin-top: 120px;
}

.program .timeline::before {
  display: none;
}

.program #program-slide-0 .timeline__hall-slide::before {
  top: 0;
  height: calc(var(--segment-line-height) + var(--segment-line-top));
}

.program #program-slide-0 .timeline__nav,
.program .timeline__slide--empty .timeline__nav,
.program .timeline__boundary[hidden] {
  display: none !important;
}

.program .timeline__boundary time::after {
  display: none;
}

.program .timeline__boundary--leading .timeline__burst i:nth-child(1),
.program .timeline__boundary--leading .timeline__burst i:nth-child(2) {
  --ray-top: #515151;
}

.program .timeline__boundary--leading .timeline__burst i:nth-child(3) {
  --ray-top: #f46400;
}

.program .timeline__hall-slide[data-swiper-slide-index="1"] time::after {
  content: "основной зал";
  color: #555;
}

.program .timeline__hall-slide[data-swiper-slide-index="2"] time::after {
  content: "второй зал";
  color: #555;
}

.program .timeline__hall-slide[data-swiper-slide-index="3"] time::after {
  content: "третий зал";
  color: #555;
}

.program .timeline__hall-slide[data-swiper-slide-index="4"] time::after {
  content: "четвертый зал";
  color: #555;
}

@media (max-width: 767px) {
  .program .timeline__slide .timeline__item > div {
    box-shadow: 0 0 0 10px #f3f3f3;
  }
  .program .timeline {
    width: calc(100% - 72px);
  }
  .program .timeline__nav {
    top: 50%;
    display: block;
    width: 34px;
    height: 52px;
    background-size: 13px 36px;
  }
  .program .timeline__nav--prev {
    left: -34px;
  }
  .program .timeline__nav--next {
    right: -34px;
  }
  #program {
    scroll-margin-top: 84px;
  }
}
.program::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: 0;
  width: 100vw;
  transform: translateX(-50%);
  background: #fff;
}

.program::after {
  display: none;
}

.program__header {
  position: relative;
  z-index: 2;
  margin-bottom: min(197px, 10.26vw);
}

.program__header h2 {
  font-family: "Science Gothic", "Segoe UI", sans-serif;
  font-size: clamp(40px, 3.125vw, 60px);
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.program__header p {
  margin: 0;
  font-size: clamp(15px, 0.938vw, 18px);
}

.program__tracks {
  display: flex;
  width: 100%;
  margin-top: min(36px, 1.875vw);
  margin-inline: auto;
  gap: min(16px, 0.833vw);
  align-items: center;
  justify-content: center;
}

.program__header .program__tracks {
  margin-top: min(56px, 2.917vw);
}

.program__track {
  width: auto;
  flex: 0 0 auto;
  min-height: 56px;
  border: 1px solid var(--orange);
  border-radius: 3px;
  padding: 12px 22px;
  background: transparent;
  box-shadow: none;
  color: var(--orange);
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.program__track.active,
.program__track:hover,
.program__track:focus-visible {
  outline: 0;
  background: var(--orange);
  color: #fff;
}

.program__track:hover {
  box-shadow: 5px 8px 0 rgba(0, 0, 0, 0.09);
}

.program__tracks--bottom {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin-top: min(20px, 1.042vw);
}

@media (hover: hover) and (pointer: fine) {
  .program__header h2:hover {
    color: var(--orange);
  }
}
.program__decor {
  position: absolute;
  z-index: 1;
  display: block;
  width: min(400px, 20.833vw);
  height: min(2450px, 127.604vw);
  background-image: url("assets/program-1.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.program__decor--left {
  top: 16%;
  left: 50%;
  margin-left: -50vw;
  transform: translateX(-50%) scaleX(-1);
}

.program__decor--right {
  top: 27%;
  right: 50%;
  margin-right: -50vw;
  transform: translateX(50%) scaleX(-1);
}

.timeline {
  position: relative;
  z-index: 2;
  isolation: isolate;
  width: min(1060px, 55.208vw);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: max(-58px, -3.021vw);
  left: min(145px, 7.552vw);
  width: min(4px, 0.208vw);
  height: min(58px, 3.021vw);
  background: #f46400;
  transform: translateX(-50%);
}

.timeline__item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: min(105px, 5.469vw) 1fr;
  gap: min(95px, 4.948vw);
  min-height: min(55px, 2.865vw);
  padding-bottom: min(151px, 7.865vw);
}

.timeline__item > div {
  transition: transform 0.32s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.timeline time {
  text-align: right;
  font: 600 clamp(17px, 1.302vw, 25px)/1.15 "Science Gothic", "Segoe UI", sans-serif;
  transition: color 0.28s ease;
}

.timeline time::after {
  content: "основной зал";
  display: block;
  margin-top: min(7px, 0.365vw);
  color: var(--orange);
  font: 500 clamp(11px, 0.729vw, 14px)/1.2 "Segoe UI", Arial, sans-serif;
  white-space: nowrap;
}

.timeline__item--hall-2 time::after {
  content: "второй зал";
  color: #555;
}

.timeline__item--hall-4 time::after {
  content: "четвертый зал";
  color: #555;
}

.timeline h3 {
  margin: 0;
  font-size: clamp(19px, 1.458vw, 28px);
  line-height: 1.2;
  transition: color 0.28s ease;
}

.timeline__item > div:has(p) h3 {
  margin-bottom: min(15px, 0.781vw);
}

.timeline p {
  margin: 0;
  font-size: clamp(13px, 0.938vw, 18px);
  line-height: 1.45;
}

.timeline__item::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: calc(min(145px, 7.552vw) - min(25.5px, 1.328vw));
  width: min(51px, 2.656vw);
  height: min(55px, 2.865vw);
  background: transparent url("assets/frame-70-bullet.svg") center/contain no-repeat;
  transform-origin: center;
  transition: transform 0.32s cubic-bezier(0.2, 0.75, 0.25, 1), filter 0.32s ease;
}

@media (hover: hover) and (pointer: fine) {
  .timeline__item:hover > div {
    transform: translateX(min(10px, 0.521vw));
  }
  .timeline__item:hover h3,
  .timeline__item:hover time {
    color: var(--orange);
  }
  .timeline__item:hover::before {
    transform: scale(1.1);
    filter: drop-shadow(0 5px 8px rgba(244, 100, 0, 0.24));
  }
}
.timeline__item::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: min(55px, 2.865vw);
  bottom: 0;
  left: min(145px, 7.552vw);
  display: block;
  width: min(4px, 0.208vw);
  background: #f46400;
  transform: translateX(-50%);
}

.timeline .timeline__boundary::after,
.timeline__slide .timeline__item::after,
.timeline__item--last::after {
  display: none;
}

.timeline .timeline__boundary--static::after {
  top: min(55px, 2.865vw);
  bottom: 0;
  display: block;
  height: auto;
  background: #f46400;
}

.timeline__slide {
  position: relative;
  z-index: 1;
  overflow: visible;
}

.timeline__slide-track {
  position: relative;
  z-index: 1;
}

.timeline__hall-slide {
  position: relative;
  height: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.timeline__hall-slide.swiper-slide-active {
  opacity: 1;
  pointer-events: auto;
}

.timeline__hall-slide::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: var(--segment-line-top);
  left: min(145px, 7.552vw);
  width: min(4px, 0.208vw);
  height: var(--segment-line-height);
  background: var(--segment-line-color);
  transform: translateX(-50%);
}

.timeline__burst {
  position: absolute;
  z-index: 2;
  top: max(-22.5px, -1.172vw);
  left: calc(min(145px, 7.552vw) - min(48px, 2.5vw));
  width: min(96px, 5vw);
  height: min(100px, 5.208vw);
  pointer-events: none;
}

.timeline__burst i {
  position: absolute;
  top: 0;
  left: calc(50% - min(2px, 0.104vw));
  width: min(4px, 0.208vw);
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(to bottom, var(--ray-top, transparent) 0 42%, transparent 42% 58%, var(--ray-bottom, transparent) 58% 100%);
  transform-origin: center;
}

.timeline__burst i:nth-child(2) {
  transform: rotate(28deg);
}

.timeline__burst i:nth-child(3) {
  transform: rotate(-28deg);
}

.timeline__boundary[data-program-panel="0"] .timeline__burst i:nth-child(1) {
  --ray-bottom: #515151;
}

.timeline__boundary[data-program-panel="0"] .timeline__burst i:nth-child(2) {
  --ray-bottom: #515151;
}

.timeline__boundary[data-program-panel="0"] .timeline__burst i:nth-child(3) {
  --ray-bottom: #f46400;
}

.timeline__boundary[data-program-panel="1"] .timeline__burst i:nth-child(1) {
  --ray-top: #515151;
  --ray-bottom: #f46400;
}

.timeline__boundary[data-program-panel="1"] .timeline__burst i:nth-child(2) {
  --ray-top: #515151;
  --ray-bottom: #515151;
}

.timeline__boundary[data-program-panel="1"] .timeline__burst i:nth-child(3) {
  --ray-top: #f46400;
  --ray-bottom: #515151;
}

.timeline__boundary[data-program-panel="2"] .timeline__burst i:nth-child(1) {
  --ray-top: #f46400;
  --ray-bottom: #515151;
}

.timeline__boundary[data-program-panel="2"] .timeline__burst i:nth-child(2) {
  --ray-top: #515151;
  --ray-bottom: #f46400;
}

.timeline__boundary[data-program-panel="2"] .timeline__burst i:nth-child(3) {
  --ray-top: #515151;
  --ray-bottom: #515151;
}

.timeline__boundary[data-program-panel="3"] .timeline__burst i:nth-child(1) {
  --ray-top: #515151;
}

.timeline__boundary[data-program-panel="3"] .timeline__burst i:nth-child(2) {
  --ray-top: #f46400;
}

.timeline__boundary[data-program-panel="3"] .timeline__burst i:nth-child(3) {
  --ray-top: #515151;
}

.timeline__nav {
  position: absolute;
  z-index: 4;
  top: calc(50% - min(75.5px, 3.9325vw));
  display: block;
  width: min(44px, 2.292vw);
  height: min(64px, 3.333vw);
  border: 0;
  padding: 0;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: min(18px, 0.938vw) min(49px, 2.552vw);
  color: transparent;
  font-size: 0;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.timeline__nav::before {
  display: none;
}

.timeline__nav--prev {
  background-image: url("assets/program-arrow-left.svg");
}

.timeline__nav--next {
  background-image: url("assets/program-arrow-right.svg");
}

.timeline__nav:hover,
.timeline__nav:focus-visible {
  outline: 0;
}

.timeline__nav:hover,
.timeline__nav:focus-visible {
  filter: brightness(0.75);
}

.timeline__nav[hidden] {
  display: none;
}

.timeline__nav--prev {
  left: min(-70px, -3.646vw);
}

.timeline__nav--next {
  right: min(-70px, -3.646vw);
}

.timeline__mobile-pager {
  display: none;
}

@media (max-width: 767px) {
  .program {
    height: auto;
    min-height: 0;
    overflow: hidden;
    padding: 80px 0 30px;
  }
  .program__decor {
    display: none;
  }
  .program::before {
    width: 1000px;
    background-size: auto 100%;
  }
  .program__header {
    width: min(100vw - 20px, 350px);
    margin-bottom: 70px;
  }
  .program__header h2 {
    font-size: 36px;
  }
  .program__tracks {
    flex-wrap: wrap;
    margin-top: 28px;
    margin-inline: auto;
    gap: 8px;
    justify-content: center;
  }
  .program__header .program__tracks {
    margin-top: 40px;
  }
  .program__track {
    width: auto;
    min-height: 52px;
    padding: 10px 14px;
    font-size: 15px;
  }
  .program__tracks--bottom {
    width: min(100vw - 20px, 350px);
    margin: 0 auto;
  }
  .timeline {
    width: min(100vw - 20px, 350px);
  }
  .timeline::before {
    top: -45px;
    left: 88px;
    width: 2px;
    height: 45px;
  }
  .timeline__item {
    grid-template-columns: 68px 1fr;
    gap: 34px;
    min-height: 22px;
    padding-bottom: 70px;
  }
  .timeline__item:nth-child(n) {
    min-height: 22px;
  }
  .timeline__item::before {
    left: 77px;
    width: 22px;
    height: 22px;
  }
  .timeline__item::after {
    top: 22px;
    left: 88px;
    width: 2px;
  }
  .timeline::before {
    background: var(--orange);
  }
  .timeline__item::after {
    content: "";
    position: absolute;
    z-index: 1;
    right: auto;
    bottom: 0;
    display: block;
    background: var(--orange);
    transform: translateX(-50%);
  }
  .timeline__item:last-child::after {
    display: none;
  }
  .timeline__hall-slide::before {
    left: 88px;
    width: 2px;
  }
  .timeline time {
    font-size: 13px;
  }
  .timeline h3 {
    font-size: 15px;
  }
  .timeline p {
    font-size: 11px;
  }
  .timeline__burst {
    top: -11px;
    left: 66px;
    width: 44px;
    height: 44px;
    -webkit-mask: radial-gradient(circle, transparent 0 14px, #000 15px);
    mask: radial-gradient(circle, transparent 0 14px, #000 15px);
  }
  .timeline__nav {
    display: none;
  }
  .timeline__mobile-pager {
    position: absolute;
    z-index: 4;
    bottom: 26px;
    left: 50%;
    display: none;
    gap: 14px;
    transform: translateX(-50%);
  }
  .timeline__mobile-pager .timeline__dot {
    position: relative;
    width: 18px;
    height: 21px;
    margin: 0;
    opacity: 1;
    border: 0;
    padding: 0;
    background: #555;
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  }
  .timeline__mobile-pager .timeline__dot::after {
    content: "";
    position: absolute;
    inset: 1px;
    background: #fff;
    clip-path: inherit;
  }
  .timeline__mobile-pager .timeline__dot.active,
  .timeline__mobile-pager .timeline__dot.active::after {
    background: var(--orange);
  }
}
/* Statement — 1920 × 1525 */
.statement {
  height: min(1525px, 79.427vw);
}

.statement__background {
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: 3;
  width: 100vw;
  background: url("assets/frontier2.svg?v=4") center/min(3589px, 186.93vw) min(1513px, 78.816vw) no-repeat;
  transform: translateX(-50%);
}

.statement__copy {
  position: absolute;
  z-index: 5;
  top: 46%;
  left: calc((100% - var(--container)) / 2);
  width: min(845px, 44.01vw);
}

.statement__copy h2 {
  margin-bottom: min(45px, 2.344vw);
  font-family: "Science Gothic", "Segoe UI", sans-serif;
  font-size: clamp(38px, 3.229vw, 62px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}

.statement__copy p {
  width: min(500px, 26.042vw);
  margin: 0;
  font-size: clamp(15px, 1.042vw, 20px);
}

.statement__copy .button {
  width: min(320px, 100%);
  min-height: 52px;
  margin-top: min(34px, 1.771vw);
  font-size: 16px;
  transition: background-color 0.25s ease, scale 0.25s ease;
}

.statement__copy .button:hover,
.statement__copy .button:focus-visible {
  outline: 0;
  background: var(--orange-deep);
  scale: 1.025;
}

@media (hover: hover) and (pointer: fine) {
  .statement__copy h2:hover {
    color: var(--orange);
  }
}
@media (max-width: 767px) {
  .statement {
    height: auto;
    min-height: 620px;
    overflow: hidden;
  }
  .statement__background {
    background-position: center top;
    background-size: auto 132%;
  }
  .statement__copy {
    top: 46%;
    left: 50%;
    width: min(100vw - 20px, 350px);
    transform: translateX(-50%);
  }
  .statement__copy h2 {
    font-size: 31px;
  }
  .statement__copy p {
    width: 100%;
    font-size: 14px;
  }
  .statement__copy .button {
    width: 100%;
    min-height: 50px;
    margin-top: 24px;
    font-size: 16px;
  }
}
/* Cyber — 1920 × 1674 */
.cyber {
  --section-parallax-x: 0px;
  --section-parallax-y: 0px;
  height: min(1674px, 87.188vw);
}

.cyber::before {
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: 0;
  width: 100vw;
  background-image: url("assets/pattern-cyber.svg");
  background-position: calc(36% + var(--section-parallax-x)) calc(50% + var(--section-parallax-y));
  background-repeat: no-repeat;
  background-size: 115% 115%;
  content: "";
  opacity: 0.1;
  transform: translateX(-50%);
  transition: background-position 0.22s ease-out;
  pointer-events: none;
}

.cyber__pattern {
  background-image: url("assets/pattern-cyber.svg");
}

.cyber__card {
  position: absolute;
  z-index: 2;
  top: 49.5%;
  left: 63%;
  width: min(760px, 39.583vw);
  text-align: left;
  transform: translate(-50%, -50%);
}

.cyber__card h2 {
  margin-bottom: min(36px, 1.875vw);
  font-family: "Science Gothic", "Segoe UI", sans-serif;
  font-size: clamp(38px, 2.917vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}

.cyber__card p {
  margin: 0 0 1em;
  font-size: clamp(15px, 1.042vw, 20px);
  line-height: 1.5;
}

.cyber__card .button {
  width: min(320px, 100%);
  min-height: 52px;
  margin-top: min(22px, 1.146vw);
  font-size: 16px;
  transition: background-color 0.25s ease, scale 0.25s ease;
}

.cyber__card .button:hover,
.cyber__card .button:focus-visible {
  outline: 0;
  background: var(--orange-deep);
  scale: 1.025;
}

@media (hover: hover) and (pointer: fine) {
  .cyber__card h2:hover {
    color: var(--orange);
  }
}
@media (max-width: 767px) {
  .cyber {
    height: auto;
    min-height: 620px;
    overflow: hidden;
  }
  .cyber::before {
    display: none;
  }
  .cyber__pattern {
    display: none;
  }
  .cyber__card {
    top: 49%;
    left: 50%;
    width: min(100vw - 20px, 350px);
  }
  .cyber__card h2 {
    font-size: 36px;
  }
  .cyber__card p {
    font-size: 14px;
  }
  .cyber__card .button {
    width: 100%;
    min-height: 50px;
    margin-top: 20px;
    font-size: 16px;
  }
}
/* Activities */
.activities {
  padding: 0 0 min(160px, 8.333vw);
  background: #fff;
}

.activities__inner {
  position: relative;
  z-index: 1;
}

.activities__header {
  max-width: 850px;
}

.activities__header h2 {
  margin-bottom: min(24px, 1.25vw);
  font-size: clamp(42px, 3.125vw, 60px);
  font-weight: 400;
  transition: color 0.25s ease;
}

.activities__header p {
  margin: 0;
  font-size: clamp(16px, 1.042vw, 20px);
  line-height: 1.55;
}

.activities__slider {
  min-width: 0;
  margin-top: min(72px, 3.75vw);
}

.activities__viewport {
  width: 100%;
  padding: 7px 2px 2px;
  overflow: hidden;
  touch-action: pan-y;
}

.activities__row {
  display: flex;
  align-items: stretch;
}

.activity-card {
  position: relative;
  display: grid;
  min-height: 580px;
  overflow: hidden;
  border: 1px solid #d3d3d3;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  background: #fff;
  transition: border-color 0.3s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.activities__row .activity-card {
  height: auto;
}

.activity-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 74px;
  height: 5px;
  background: var(--orange);
  content: "";
  transition: width 0.35s ease;
}

.activity-card__media {
  min-height: 580px;
  overflow: hidden;
  background: #303234;
}

.activity-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.activity-card__media--ai img {
  object-position: 46% center;
}

.activity-card__body {
  position: relative;
  display: flex;
  overflow: hidden;
  padding: clamp(30px, 2.604vw, 50px);
  flex-direction: column;
}

.activity-card__body::after {
  position: absolute;
  left: -32%;
  bottom: 0;
  z-index: 0;
  width: 140%;
  aspect-ratio: 2020/520;
  background: url("assets/about-1.svg") right top/contain no-repeat;
  opacity: 0.12;
  content: "";
  transform: rotate(180deg);
  pointer-events: none;
}

.activity-card__body > * {
  position: relative;
  z-index: 1;
}

.activity-card h3 {
  margin: 0 0 24px;
  font-size: clamp(27px, 1.823vw, 35px);
  font-weight: 400;
  line-height: 1.12;
  transition: color 0.25s ease;
}

.activity-card p,
.activity-card li {
  font-size: clamp(15px, 0.938vw, 18px);
  line-height: 1.55;
}

.activity-card p {
  margin: 0 0 1em;
}

.activity-card p:last-child {
  margin-bottom: 0;
}

.activity-card ul {
  margin: 4px 0 20px;
  padding-left: 1.25em;
}

.activity-card__note {
  margin-top: 12px !important;
  border-left: 3px solid var(--orange);
  padding-left: 18px;
}

.activity-card .button {
  width: min(260px, 100%);
  min-height: 48px;
  margin-top: auto;
  padding: 12px 22px;
  font-size: 15px;
  transition: background-color 0.25s ease, scale 0.25s ease;
}

.activity-card .button:hover,
.activity-card .button:focus-visible {
  outline: 0;
  background: var(--orange-deep);
  scale: 1.025;
}

.activity-card__actions {
  display: flex;
  margin-top: auto;
  gap: 24px;
  align-items: center;
}

.activity-card__actions .button {
  margin-top: 0;
}

.activity-card__more {
  border-bottom: 1px solid currentColor;
  color: var(--orange);
  font-size: 15px;
  font-weight: 700;
  transition: color 0.25s ease;
}

.activity-card__more:hover,
.activity-card__more:focus-visible {
  outline: 0;
  color: var(--orange-deep);
}

.activities__pagination {
  margin-top: min(38px, 1.979vw);
}

@media (hover: hover) and (pointer: fine) {
  .activities__header h2:hover {
    color: var(--orange);
  }
  .activity-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
  }
  .activity-card:hover::before {
    width: 100%;
  }
  .activity-card:hover h3 {
    color: var(--orange);
  }
}
@media (max-width: 767px) {
  .activities {
    padding: 0 0 104px;
  }
  .activities__header {
    width: min(100vw - 20px, 350px);
    margin-inline: auto;
  }
  .activities__header h2 {
    margin-bottom: 16px;
    font-size: 36px;
  }
  .activities__header p {
    font-size: 15px;
  }
  .activities__slider {
    margin-top: 42px;
  }
  .activities__viewport {
    padding-top: 7px;
  }
  .activity-card {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }
  .activity-card__media {
    min-height: 0;
    aspect-ratio: 4/3;
  }
  .activity-card__body {
    padding: 30px 22px;
    align-self: stretch;
    justify-content: flex-start;
  }
  .activity-card__body::after {
    left: -44%;
    bottom: 0;
    width: 155%;
    opacity: 0.1;
  }
  .activity-card h3 {
    margin-bottom: 18px;
    font-size: 28px;
  }
  .activity-card p,
  .activity-card li {
    font-size: 15px;
  }
  .activity-card .button {
    width: 100%;
    min-height: 50px;
    margin-top: 22px;
    font-size: 16px;
  }
  .activity-card__actions {
    flex-direction: column;
    margin-top: 0;
    gap: 18px;
    align-items: stretch;
    text-align: center;
  }
  .activity-card__actions .button {
    margin-top: 22px;
  }
  .activity-card__more {
    align-self: center;
  }
  .activities__pagination {
    margin-top: 28px;
  }
}
/* Partners */
.partners {
  height: auto;
  padding: min(110px, 5.729vw) 0 min(220px, 11.458vw);
  background: #fff;
}

.partners::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: 0;
  width: 100vw;
  background: #fff;
  transform: translateX(-50%);
}

.partners__title {
  position: relative;
  z-index: 2;
  margin: 0 auto min(60px, 3.125vw);
  font-family: "Science Gothic", "Segoe UI", sans-serif;
  font-size: clamp(40px, 3.125vw, 60px);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-align: center;
  transition: color 0.3s ease;
}

.partners__slider {
  position: relative;
  z-index: 2;
  width: min(1580px, 82.292vw);
  margin-inline: auto;
}

.partners__viewport {
  width: 100%;
  margin-top: -8px;
  padding-top: 8px;
  overflow: hidden;
  touch-action: pan-y;
}

.partners__row {
  display: flex;
}

.partner-card {
  display: grid;
  aspect-ratio: 1/1;
  border: 0;
  border-radius: 12px;
  background: #f6f6f6;
  cursor: pointer;
  place-items: center;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.partner-card img {
  width: 88%;
  height: 72%;
  object-fit: contain;
}

.partner-card span {
  color: #777;
  font-size: clamp(14px, 0.938vw, 18px);
  text-align: center;
}

.partners__pagination {
  display: none;
  margin-top: min(40px, 2.083vw);
}

@media (min-width: 768px) {
  .partners__viewport {
    overflow: visible;
  }
}
@media (hover: hover) and (pointer: fine) {
  .partners__title:hover {
    color: var(--orange);
  }
  .partner-card:hover {
    box-shadow: 5px 8px 0 rgba(0, 0, 0, 0.09);
    transform: translateY(-5px);
  }
  .partner-card:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: -2px;
  }
}
@media (max-width: 767px) {
  .partners {
    padding: 104px 0 64px;
  }
  .partners__title {
    width: min(100vw - 20px, 350px);
    margin-bottom: 40px;
    font-size: 36px;
    text-align: left;
  }
  .partners__slider {
    width: min(100% - 36px, 420px);
  }
  .partners__pagination {
    display: flex;
    margin-top: 28px;
  }
}
/* Trophy — 1920 × 1525 */
.trophy {
  height: min(1525px, 79.427vw);
  overflow: visible;
}

.trophy::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: 0;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
  background: url("assets/pattern-trophy.svg") center/100% 100% no-repeat;
}

.trophy__background {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  overflow: hidden;
  transform: translateX(-50%);
}

.trophy__background::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("assets/trophy-1-white-sky.webp") center bottom/100% auto no-repeat;
  transform: scaleX(-1);
}

.trophy__hex {
  position: absolute;
  z-index: 3;
  top: min(43px, 2.24vw);
  left: max(-120px, -6.25vw);
  width: min(1280px, 66.667vw);
  height: min(1280px, 66.667vw);
  transition: transform 0.45s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.trophy__hex > img {
  width: 100%;
  height: 100%;
  transform: scaleX(-1);
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.trophy__content {
  position: absolute;
  z-index: 1;
  top: 10%;
  left: 50%;
  display: flex;
  width: 81.64%;
  height: 87.73%;
  flex-direction: column;
  justify-content: center;
  padding: 9% 9% 9% 23%;
  transform: translateX(-50%);
}

.trophy__content h2 {
  font-family: "Science Gothic", "Segoe UI", sans-serif;
  font-size: clamp(38px, 2.917vw, 56px);
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}

.trophy__content p {
  margin: 0 0 1em;
  font-size: clamp(15px, 1.042vw, 20px);
  line-height: 1.45;
}

.trophy__content .button {
  width: min(320px, 16.667vw);
  margin-top: min(32px, 1.667vw);
  scale: 1;
  transition: background-color 0.25s ease, scale 0.25s ease;
}

.trophy__content .button:hover,
.trophy__content .button:focus-visible {
  outline: 0;
  background: var(--orange-deep);
  scale: 1.035;
}

.trophy--animated .trophy__hex > img {
  transform: scaleX(-1) rotate(-2deg) scale(0.985);
}

.trophy--animated.is-visible .trophy__hex > img {
  transform: scaleX(-1) rotate(0) scale(1);
  transition-delay: 0s;
}

@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .trophy__hex:hover {
    transform: translateY(-4px);
  }
  .trophy--animated.is-visible .trophy__hex:hover > img {
    transform: scaleX(-1) rotate(2deg) scale(1.01);
    transition-delay: 0s;
  }
  .trophy__content h2:hover {
    color: var(--orange);
  }
}
@media (max-width: 767px) {
  .trophy {
    height: auto;
    min-height: min(150vw, 820px);
    overflow: hidden;
  }
  .trophy::before {
    width: 1000px;
  }
  .trophy__background::before {
    background-position: center bottom;
    background-size: auto 73%;
  }
  .trophy__hex {
    top: 24px;
    left: 50%;
    width: min(140vw, 820px);
    height: min(140vw, 820px);
    transform: translateX(-50%);
  }
  .trophy__content {
    top: 10%;
    left: 50%;
    width: min(100vw - 20px, 350px);
    height: 87.73%;
    padding: 0;
    transform: translateX(-50%);
  }
  .trophy__content h2 {
    font-size: 31px;
  }
  .trophy__content p {
    font-size: 13px;
  }
  .trophy__content .button {
    width: 100%;
    min-height: 50px;
    font-size: 16px;
  }
}
@media (max-width: 767px) and (hover: hover) and (pointer: fine) {
  .trophy__hex:hover {
    transform: translate(-50%, -3px);
  }
  .trophy--animated.is-visible .trophy__hex:hover > img {
    transform: scaleX(-1) rotate(2deg) scale(1.01);
    transition-delay: 0s;
  }
}
/* Contacts */
.contacts {
  height: auto;
  min-height: min(650px, 33.854vw);
  padding: min(150px, 7.813vw) 0 min(55px, 2.865vw);
  background: #555;
  color: #fff;
}

.contacts::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #555;
}

.contacts::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: max(-80px, -4.167vw);
  width: min(1050px, 54.688vw);
  aspect-ratio: 2020/520;
  background: url("assets/about-1.svg") center/contain no-repeat;
  transform: scaleX(-1);
  pointer-events: none;
}

.contacts__inner {
  position: relative;
  z-index: 1;
}

.contacts__header h2 {
  margin: 0;
  font-family: "Science Gothic", "Segoe UI", sans-serif;
  font-size: clamp(40px, 3.125vw, 60px);
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.contacts__body {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.35fr);
  gap: min(70px, 3.646vw);
  margin-top: min(72px, 3.75vw);
  align-items: stretch;
}

.contacts__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: min(28px, 1.458vw);
  margin: 0;
}

.contacts__grid article {
  padding-top: 0;
}

.contacts__grid article {
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  padding-top: min(24px, 1.25vw);
}

.contacts__grid span {
  display: block;
  margin-bottom: min(14px, 0.729vw);
  color: var(--orange);
  font-size: clamp(12px, 0.729vw, 14px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contacts__grid a,
.contacts__grid address {
  color: #fff;
  font-size: clamp(17px, 1.146vw, 22px);
  font-style: normal;
  line-height: 1.45;
}

.contacts__grid a {
  transition: color 0.25s ease;
}

.contacts__grid a:hover,
.contacts__grid a:focus-visible {
  color: var(--orange);
  outline: 0;
}

.contacts__route {
  display: inline-block;
  margin-top: min(20px, 1.042vw);
  color: var(--orange) !important;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.contacts__map {
  position: relative;
  min-height: min(390px, 20.313vw);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.36);
  background: #454545;
}

.contacts__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

.contacts__bottom {
  display: flex;
  margin-top: min(90px, 4.688vw);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  padding-top: min(28px, 1.458vw);
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.contacts__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(12px, 0.729vw, 14px);
}

.contacts__logo {
  width: min(122px, 6.354vw);
  flex: 0 0 auto;
}

.contacts__logo img {
  width: 100%;
}

@media (hover: hover) and (pointer: fine) {
  .contacts__header h2:hover {
    color: var(--orange);
  }
}
@media (max-width: 767px) {
  .contacts {
    height: auto;
    min-height: 0;
    overflow: hidden;
    padding: 96px 0 40px;
  }
  .contacts::before {
    height: 100%;
  }
  .contacts::after {
    right: -330px;
    width: 600px;
  }
  .contacts__inner {
    padding: 0;
  }
  .contacts__header h2 {
    font-size: 38px;
    text-align: center;
  }
  .contacts__body {
    grid-template-columns: 1fr;
    gap: 38px;
    width: 100%;
    margin-top: 46px;
  }
  .contacts__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
    margin: 0;
  }
  .contacts__grid article {
    width: 100%;
    min-height: 0;
    padding: 0;
    text-align: center;
  }
  .contacts__grid article {
    padding-top: 18px;
  }
  .contacts__grid a,
  .contacts__grid address {
    font-size: 18px;
  }
  .contacts__map {
    width: 100%;
    min-height: 320px;
  }
  .contacts__bottom {
    flex-direction: column;
    width: 100%;
    margin-top: 52px;
    padding-top: 28px;
    text-align: center;
  }
  .contacts__logo {
    width: 122px;
  }
  .contacts__bottom p {
    max-width: 300px;
    line-height: 1.45;
  }
}
body.modal-open {
  overflow: hidden;
}

.registration-modal {
  position: fixed;
  z-index: 20000;
  inset: 0;
  display: grid;
  padding: 32px;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.registration-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.registration-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(5px);
}

.registration-modal__dialog {
  position: relative;
  width: min(920px, 100%);
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  padding: 48px 54px 52px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  transform: translateY(24px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.registration-modal.is-open .registration-modal__dialog {
  transform: none;
}

.registration-modal__dialog::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 7px;
  background: var(--orange);
  content: "";
}

.registration-modal__dialog h2 {
  margin: 0 54px 34px 0;
  color: #222;
  font-size: clamp(28px, 2.2vw, 42px);
  text-transform: uppercase;
}

.registration-modal__close {
  position: absolute;
  z-index: 1;
  top: 22px;
  right: 25px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #222;
  font-size: 0;
  cursor: pointer;
  transform-origin: 50% 50%;
  transition: transform 0.25s ease;
}

.registration-modal__close::before,
.registration-modal__close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 27px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: background-color 0.2s ease;
}

.registration-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.registration-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.registration-modal__close:hover {
  color: var(--orange);
  transform: rotate(90deg);
}

.registration-form {
  display: grid;
  gap: 30px;
}

.registration-form__honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.registration-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.registration-form legend,
.registration-form__caption {
  margin: 0 0 16px;
  color: #222;
  font-family: "Science Gothic", "Segoe UI", sans-serif;
  font-size: 19px;
  font-weight: 600;
}

.registration-form__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  align-items: start;
}

.registration-form__fields label {
  display: grid;
  gap: 7px;
  align-content: start;
  align-self: start;
}

.registration-form__fields label > span {
  font-size: 14px;
  font-weight: 600;
}

.registration-form__fields input {
  width: 100%;
  height: 48px;
  border: 1px solid #bdbdbd;
  border-radius: 2px;
  padding: 0 14px;
  background: #fff;
  color: #222;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.registration-form__fields input::placeholder {
  color: #b3b3b3;
  opacity: 1;
}

.registration-form__fields input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244, 100, 0, 0.12);
}

.registration-form__fields .is-invalid input,
.registration-form__fields input[aria-invalid=true] {
  border-color: #c62828;
  box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.1);
}

.registration-form__field--wide {
  grid-column: 1/-1;
}

.registration-form__offline {
  display: grid;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid #ddd;
}

.registration-form__offline[hidden] {
  display: none;
}

.registration-form__caption {
  margin-bottom: -8px;
  color: var(--orange);
}

.registration-form__options {
  display: grid;
  gap: 10px;
}

.registration-form__options--inline {
  grid-template-columns: repeat(2, minmax(0, 180px));
}

.registration-form__options--grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.registration-form__options label {
  position: relative;
  display: flex;
  min-width: 0;
  cursor: pointer;
}

.registration-form__options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.registration-form__options span {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  border: 1px solid #c9c9c9;
  padding: 9px 14px 9px 43px;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.registration-form__options span::before {
  position: absolute;
  left: 14px;
  width: 17px;
  height: 17px;
  border: 2px solid #999;
  content: "";
  transition: border-color 0.2s ease, background 0.2s ease;
}

.registration-form__options--inline span::before {
  border-radius: 50%;
}

.registration-form__options input:checked + span {
  border-color: var(--orange);
  background: #f3f3f3;
  color: #111;
}

.registration-form__options input:checked + span::before {
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: inset 0 0 0 3px #fff;
}

.registration-form__options input:focus-visible + span {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.registration-form__options input:disabled + span {
  opacity: 0.42;
  cursor: not-allowed;
}

.registration-form__privacy {
  border-top: 1px solid #ddd;
  padding-top: 28px;
}

.registration-form__privacy > p {
  margin: 0 0 16px;
  color: #222;
  font-family: "Science Gothic", "Segoe UI", sans-serif;
  font-size: 19px;
  font-weight: 600;
}

.registration-form__consents {
  display: grid;
  gap: 10px;
}

.registration-form__consent {
  position: relative;
  display: block;
  width: 100%;
  cursor: pointer;
}

.registration-form__consent input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.registration-form__consent span {
  position: relative;
  display: block;
  width: 100%;
  min-height: 44px;
  border: 1px solid #c9c9c9;
  padding: 9px 14px 9px 43px;
  font-size: 14px;
  line-height: 1.45;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.registration-form__consent span::before {
  position: absolute;
  top: 12px;
  left: 14px;
  width: 17px;
  height: 17px;
  border: 2px solid #999;
  content: "";
  transition: border-color 0.2s ease, background 0.2s ease;
}

.registration-form__consent input:checked + span {
  border-color: var(--orange);
  background: #f3f3f3;
}

.registration-form__consent input:checked + span::before {
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: inset 0 0 0 3px #fff;
}

.registration-form__consent input:focus-visible + span {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.registration-form__consent a {
  margin-left: 4px;
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.registration-form__consent a:hover {
  color: var(--orange-deep);
}

.registration-form__section.is-invalid .registration-form__options span,
.registration-form__consent.is-invalid span {
  border-color: #c62828;
}

.registration-form__error {
  display: block;
  margin-top: 5px;
  color: #b71c1c;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.registration-form__status {
  display: none;
  width: min(560px, 100%);
  margin: 0;
  border-radius: 3px;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.45;
}

.registration-form__status:not(:empty) {
  display: block;
}

.registration-form__status--pending {
  background: #f3f3f3;
  color: #333;
}

.registration-form__status--success {
  background: #e8f5e9;
  color: #1b5e20;
}

.registration-form__status--error {
  background: #ffebee;
  color: #b71c1c;
}

.registration-form__submit {
  width: min(360px, 100%);
  min-height: 52px;
  border: 0;
  border-radius: 3px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.registration-form__submit:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
}

.registration-form__submit:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

.registration-success-modal__dialog {
  width: min(620px, 100%);
  text-align: center;
}

.registration-success-modal__dialog h2 {
  margin-right: 0;
  margin-bottom: 20px;
}

.registration-success-modal__dialog p {
  max-width: 500px;
  margin: 0 auto 30px;
  font-size: 18px;
  line-height: 1.55;
}

.registration-success-modal__button {
  width: min(320px, 100%);
  min-height: 52px;
  border: 0;
  border-radius: 3px;
  background: var(--orange);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.registration-success-modal__button:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .registration-modal {
    align-items: end;
    padding: 0;
  }
  .registration-modal__dialog {
    width: 100%;
    max-height: calc(100dvh - 24px);
    padding: 36px 20px 40px;
  }
  .registration-modal__dialog h2 {
    margin-bottom: 26px;
    font-size: 27px;
  }
  .registration-modal__close {
    top: 13px;
    right: 12px;
  }
  .registration-form {
    gap: 25px;
  }
  .registration-form__fields {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .registration-form__field--wide {
    grid-column: auto;
  }
  .registration-form__options--grid {
    grid-template-columns: 1fr;
  }
  .registration-form__options--inline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .registration-form legend,
  .registration-form__caption,
  .registration-form__privacy > p {
    font-size: 17px;
  }
  .registration-form__submit {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .registration-modal,
  .registration-modal__dialog {
    transition: none;
  }
}
.trophy-detail-page {
  background: #fff;
}

.trophy-detail-hero {
  position: relative;
  min-height: min(900px, 46.875vw);
  overflow: hidden;
  padding-top: min(120px, 6.25vw);
  background: #222;
  color: #fff;
}

.trophy-detail-hero__image {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 20, 21, 0.92) 0%, rgba(18, 20, 21, 0.7) 43%, rgba(18, 20, 21, 0.18) 76%), url("assets/trophy-1-white-sky.webp") center bottom/cover no-repeat;
}

.trophy-detail-hero__pattern {
  position: absolute;
  right: -8%;
  bottom: -16%;
  width: 60%;
  aspect-ratio: 1.35;
  background: url("assets/pattern-trophy.svg") right bottom/contain no-repeat;
  opacity: 0.58;
  pointer-events: none;
}

.trophy-detail-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: calc(min(900px, 46.875vw) - min(120px, 6.25vw));
  flex-direction: column;
  justify-content: center;
  padding: min(70px, 3.646vw) 0 min(90px, 4.688vw);
}

.breadcrumbs {
  display: flex;
  margin-bottom: min(48px, 2.5vw);
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(15px, 0.938vw, 18px);
}

.breadcrumbs a {
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: var(--orange);
}

.trophy-detail-hero__eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: clamp(16px, 1.042vw, 20px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker {
  font-size: clamp(18px, 1.25vw, 24px);
}

.trophy-detail-hero h1 {
  min-width: 0;
  max-width: none;
  margin: 0;
  font: 500 clamp(44px, 4.271vw, 82px)/0.92 "Science Gothic", "Segoe UI", sans-serif;
}

.trophy-detail-hero h1 span {
  white-space: nowrap;
}

.trophy-detail-hero__heading {
  display: flex;
  width: 100%;
  max-width: none;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 2.604vw, 50px);
}

.trophy-detail-hero__logo {
  display: grid;
  width: clamp(280px, 18.75vw, 360px);
  flex: 0 0 auto;
  box-sizing: border-box;
  place-items: center;
  border-radius: 4px;
  padding: clamp(10px, 0.833vw, 16px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 8px 10px 0 rgba(0, 0, 0, 0.16);
}

.trophy-detail-hero__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.trophy-detail-hero__lead {
  max-width: 680px;
  margin: min(38px, 1.979vw) 0 0;
  font-size: clamp(17px, 1.146vw, 22px);
  line-height: 1.5;
}

.trophy-detail-hero__facts {
  display: flex;
  margin: min(62px, 3.229vw) 0 0;
  gap: min(70px, 3.646vw);
}

.trophy-detail-hero__facts div {
  min-width: 130px;
}

.trophy-detail-hero__facts dt {
  color: var(--orange);
  font: 600 clamp(30px, 2.083vw, 40px)/1 "Science Gothic", "Segoe UI", sans-serif;
}

.trophy-detail-hero__facts dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

@media (min-width: 768px) and (max-width: 900px) {
  .trophy-detail-hero__heading {
    gap: 18px;
  }
  .trophy-detail-hero__logo {
    width: 180px;
    padding: 9px;
  }
  .trophy-detail-hero h1 {
    font-size: 34px;
  }
}
.trophy-detail-about {
  position: relative;
  padding: min(150px, 7.813vw) 0;
}

.trophy-detail-about::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 34%;
  aspect-ratio: 2.5;
  background: url("assets/about-1.svg") right top/contain no-repeat;
  content: "";
  transform: scale(-1, -1);
  pointer-events: none;
}

.trophy-detail-about__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: min(110px, 5.729vw);
}

.trophy-detail-about h2,
.trophy-detail-process h2,
.trophy-detail-final h2 {
  font-size: clamp(40px, 3.125vw, 60px);
  font-weight: 400;
}

.trophy-detail-about__copy p {
  margin: 0 0 1.2em;
  font-size: clamp(17px, 1.042vw, 20px);
  line-height: 1.6;
}

.trophy-detail-process {
  padding: min(130px, 6.771vw) 0;
  background: #f1f1f1;
}

.trophy-detail-process__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: min(70px, 3.646vw) 0 0;
  padding: 0;
  gap: min(48px, 2.5vw);
  list-style: none;
}

.trophy-detail-process__list li {
  border-top: 4px solid var(--orange);
  padding: 28px 0 0;
}

.trophy-detail-process__list span {
  color: var(--orange);
  font: 600 22px/1 "Science Gothic", "Segoe UI", sans-serif;
}

.trophy-detail-process__list h3 {
  min-height: 2.4em;
  margin: 24px 0 14px;
  font-size: clamp(22px, 1.458vw, 28px);
  font-weight: 500;
}

.trophy-detail-process__list p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

.trophy-detail-final {
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: min(700px, 36.458vw);
}

.trophy-detail-final__image {
  min-height: 480px;
  background: url("assets/trophy-1-white-sky.webp") center bottom/cover no-repeat;
}

.trophy-detail-final__content {
  display: flex;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
  padding: min(80px, 4.167vw) clamp(32px, 4.167vw, 80px);
  background: #fff;
}

.trophy-detail-final h2 {
  max-width: 100%;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.trophy-detail-final__content p:not(.section-kicker) {
  max-width: 580px;
  margin: 0;
  font-size: clamp(17px, 1.042vw, 20px);
  line-height: 1.6;
}

.trophy-detail-final .button {
  display: flex;
  width: min(360px, 100%);
  min-height: 52px;
  margin-top: 36px;
  padding: 12px 24px;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-align: center;
  scale: 1;
  transition: background-color 0.25s ease, scale 0.25s ease;
}

.trophy-detail-final .button:hover {
  background: var(--orange-deep);
  scale: 1.025;
}

.trophy-detail-footer {
  padding: 34px 0;
  background: #555;
  color: #fff;
}

.trophy-detail-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.trophy-detail-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

@media (max-width: 767px) {
  .trophy-detail-hero {
    min-height: 760px;
    padding-top: 72px;
  }
  .trophy-detail-hero__image {
    background-image: linear-gradient(180deg, rgba(18, 20, 21, 0.7), rgba(18, 20, 21, 0.92)), url("assets/trophy-1-white-sky.webp");
    background-position: center bottom;
  }
  .trophy-detail-hero__pattern {
    right: -55%;
    bottom: -4%;
    width: 150%;
    opacity: 0.38;
  }
  .trophy-detail-hero__content {
    min-height: 688px;
    padding: 44px 0 54px;
  }
  .breadcrumbs {
    margin-bottom: 42px;
    font-size: 14px;
  }
  .trophy-detail-hero__eyebrow {
    font-size: 15px;
  }
  .section-kicker {
    font-size: 17px;
  }
  .trophy-detail-hero__heading {
    align-items: center;
    gap: 6px;
  }
  .trophy-detail-hero__logo {
    width: clamp(100px, 32vw, 135px);
    margin-left: auto;
    padding: 7px;
    box-shadow: 4px 5px 0 rgba(0, 0, 0, 0.16);
  }
  .trophy-detail-hero h1 {
    font-size: clamp(24px, 6.5vw, 27px);
  }
  .trophy-detail-hero__lead {
    margin-top: 28px;
    font-size: 16px;
  }
  .trophy-detail-hero__facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 42px;
    gap: 25px 18px;
  }
  .trophy-detail-hero__facts div:nth-child(1) {
    order: 1;
  }
  .trophy-detail-hero__facts div:nth-child(2) {
    grid-column: 1/-1;
    order: 3;
  }
  .trophy-detail-hero__facts div:nth-child(3) {
    order: 2;
  }
  .trophy-detail-about {
    padding: 80px 0;
  }
  .trophy-detail-about::after {
    width: 75%;
  }
  .trophy-detail-about__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .trophy-detail-about h2,
  .trophy-detail-process h2,
  .trophy-detail-final h2 {
    font-size: 34px;
  }
  .trophy-detail-process {
    padding: 80px 0;
  }
  .trophy-detail-process__list {
    grid-template-columns: 1fr;
    margin-top: 45px;
    gap: 42px;
  }
  .trophy-detail-process__list h3 {
    min-height: 0;
    margin-top: 18px;
  }
  .trophy-detail-final {
    grid-template-columns: 1fr;
  }
  .trophy-detail-final__image {
    min-height: 300px;
  }
  .trophy-detail-final__content {
    padding: 64px 18px 72px;
  }
  .trophy-detail-final .button {
    width: 100%;
    min-height: 50px;
    font-size: 16px;
  }
  .trophy-detail-footer .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
