:root {
  --bg: #0b0b14;
  --card: rgba(255, 255, 255, 0.08);
  --stroke: rgba(255, 255, 255, 0.18);
}

.emblem {
  width: clamp(120px, 14vw, 220px);
  aspect-ratio: 1;
  border-radius: 999px;
  position: relative;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.28), transparent 45%),
    radial-gradient(circle at 70% 60%, rgba(45, 120, 255, 0.35), transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.emblem::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: inherit;
  border: 10px solid rgba(125, 211, 252, 0.35);
  border-right-color: rgba(168, 85, 247, 0.55);
  border-top-color: rgba(45, 120, 255, 0.55);
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.35));
}

.emblem::after {
  content: "";
  position: absolute;
  inset: 23%;
  border-radius: inherit;
  border: 10px solid rgba(255, 255, 255, 0.24);
  border-left-color: rgba(20, 184, 166, 0.55);
  border-bottom-color: rgba(20, 184, 166, 0.35);
}

.emblem__c {
  position: relative;
  font-weight: 900;
  font-size: clamp(44px, 6vw, 92px);
  line-height: 1;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
}

.s1 {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background: url("/public/images/background-bg.jpg") center / cover no-repeat;
  --s1BoxW: clamp(200px, 22vw, 340px);
  --s1BoxH: clamp(78px, 8.2vw, 110px);
}

.s1__inner {
  width: min(1200px, 100%);
  height: 100%;
  padding: clamp(18px, 4vw, 40px);
  padding-bottom: clamp(44px, 5vw, 88px);
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: center;
  justify-items: center;
}

.s1::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: none;
  opacity: 0;
}

.s1__title {
  position: relative;
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.2px;
  font-size: clamp(22px, 3.1vw, 46px);
  padding: clamp(14px, 1.8vw, 22px) clamp(16px, 3vw, 46px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
  color:#ffffff;
}

.s1__grid {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 0;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-rows: auto auto;
  grid-template-areas:
    "left center right"
    "bottom bottom bottom";
  align-items: center;
  justify-items: center;
  justify-content: center;
  column-gap: clamp(16px, 4vw, 70px);
  padding: clamp(8px, 2vw, 28px);
}

.s1__callout {
  position: relative;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  padding: clamp(10px, 1.6vw, 18px) clamp(14px, 2.2vw, 24px);
  width: var(--s1BoxW);
  height: var(--s1BoxH);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  display: grid;
  gap: 10px;
  align-items: center;
  justify-items: center;
  color:#ffffff;  
}

.s1__calloutText {
  text-align: center;
  font-weight: 900;
  font-size: clamp(16px, 2vw, 28px);
}

.s1__callout--left {
  grid-area: left;
  justify-self: end;
}

.s1__callout--right {
  grid-area: right;
  justify-self: start;
}

.emblem--center {
  grid-area: center;
}

.s1__image {
  grid-area: center;
  width: clamp(140px, 18vw, 320px);
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.35));
}

.s1__bottom {
  grid-area: bottom;
  display: grid;
  justify-items: center;
  gap: 8px;
  padding-top: clamp(12px, 2vw, 24px);
}

.s1__callout--bottom {
  padding: clamp(10px, 1.6vw, 18px) clamp(14px, 2.2vw, 24px);
  width: var(--s1BoxW);
  height: var(--s1BoxH);
}

.s1__arrow {
  width: clamp(40px, 5vw, 74px);
  height: auto;
}

.s1__arrow--right {
  position: absolute;
  top: 50%;
  right: calc(clamp(16px, 4vw, 70px) * -0.55);
  transform: translateY(-50%);
}

.s1__arrow--left {
  position: absolute;
  top: 50%;
  left: calc(clamp(16px, 4vw, 70px) * -0.55);
  transform: translateY(-50%);
}

.s1__arrow path {
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.2));
}

.s1__arrow--down {
  width: auto;
  height: clamp(28px, 4vw, 54px);
}

.s2 {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background: url("/public/images/background-bg.jpg") center / cover no-repeat;
}

.s2__inner {
  width: min(1200px, 100%);
  height: 100%;
  padding: clamp(18px, 3vw, 44px);
  position: relative;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
}

.s2__content {
  display: grid;
  gap: 12px;
  align-content: center;
}

.s2__kicker {
  font-weight: 800;
  color: rgba(110, 231, 183, 0.9);
  letter-spacing: 0.2px;
  font-size: clamp(18px, 2.2vw, 34px);
}

.s2__headline {
  font-weight: 1000;
  letter-spacing: 0.6px;
  font-size: clamp(30px, 4vw, 64px);
  color:#ffffff;
}

.s2__subhead {
  font-weight: 800;
  color: rgba(216, 180, 254, 0.92);
  font-size: clamp(18px, 2.4vw, 38px);
}

.s2__icons {
  margin-top: clamp(10px, 2vw, 24px);
  display: flex;
  gap: 14px;
  align-items: center;
}

.s2__icon {
  width: clamp(54px, 6.2vw, 90px);
  height: auto;
  fill: none;
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.3));
}

.s2__iconImg {
  width: clamp(54px, 6.2vw, 90px);
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.3));
}

.s2__visual {
  position: relative;
  height: 100%;
  display: grid;
  place-items: center;
}

.s2__image {
  width: min(520px, 100%);
  max-height: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 22px 50px rgba(0, 0, 0, 0.35));
}

.s2__bars {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: min(320px, 100%);
  height: min(320px, 100%);
  background: repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.18) 0,
      rgba(255, 255, 255, 0.18) 4px,
      transparent 4px,
      transparent 30px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.14) 0,
      rgba(255, 255, 255, 0.14) 4px,
      transparent 4px,
      transparent 38px
    );
  border-radius: 18px;
  opacity: 0.4;
}

.emblem--right {
  width: clamp(160px, 18vw, 320px);
}

.s3 {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: url("/public/images/background-bg.jpg") center / cover no-repeat;
  position: relative;
}

.s3::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(11, 11, 20, 0.35) 0%, rgba(11, 11, 20, 0.18) 45%, rgba(11, 11, 20, 0.28) 100%);
}

.s3__inner {
  width: min(1200px, 100%);
  height: 100%;
  padding: clamp(18px, 2.8vw, 38px) clamp(24px, 4vw, 72px);
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: start;
  margin-left: auto;
  margin-right: auto;
  justify-items: start;
  position: relative;
  z-index: 1;
}

.s3__stats {
  width: 100%;
  max-width: 1200px;
  margin: clamp(6px, 1.4vw, 16px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: clamp(10px, 1.2vw, 14px);
  align-items: stretch;
  justify-content: center;
}

.s3__stat {
  position: relative;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(90deg, rgba(5, 158, 163, 0.98), rgba(14, 88, 197, 0.98));
  padding: 16px 60px 16px 16px;
  min-height: 74px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.s3__stat::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, transparent 55%);
  opacity: 0.35;
}

.s3__stat::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(110, 231, 183, 0.95) 0%, rgba(45, 212, 191, 0.55) 100%);
  opacity: 0.95;
}

.s3__stat > * {
  position: relative;
  z-index: 1;
}

.s3__statTitle {
  font-size: 16px;
  letter-spacing: 0.4px;
  opacity: 0.95;
  font-weight: 800;
  color:#ffffff;
}

.s3__statValue {
  margin-top: 6px;
  font-size: 14px;
  opacity: 1;
  font-weight: 900;
  color: rgba(110, 231, 183, 0.92);
  overflow-wrap: anywhere;
}

.s3__statIcon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  stroke: rgba(110, 231, 183, 0.92);
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.92;
}

.s3__content {
  align-self: start;
  justify-self: start;
  width: min(720px, 100%);
  display: grid;
  gap: 10px;
  margin-top: clamp(34px, 7vw, 120px);
  text-align: left;
}

.s3__headline {
  font-weight: 900;
  font-size: clamp(28px, 4.2vw, 56px);
  line-height: 1.12;
  max-width: 26ch;
  color:#ffffff;
}

.s3__subhead {
  font-weight: 600;
  font-size: clamp(14px, 1.8vw, 20px);
  opacity: 0.85;
  max-width: 44ch;
  color:#ffffff;
}

@media (max-width: 900px) {
  .s2__inner {
    grid-template-columns: 1fr;
  }

  .s2__visual {
    height: clamp(180px, 30vw, 260px);
  }

  .s2__bars {
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(360px, 100%);
  }

  .s3__stats {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    width: min(680px, 100%);
  }

  .s1__grid {
    column-gap: clamp(12px, 2.8vw, 40px);
  }
}

* {
  box-sizing: border-box;
}


.page {
  min-height: 100%;
  padding: 0;
}

.hero {
  width: 100%;
  margin-bottom:50px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans,
    Arial, "Apple Color Emoji", "Segoe UI Emoji";  
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  width: 100%;
  min-width: 0;
}

.hero__slider {
  min-width: 0;
}

.slider {
  position: relative;
  width: 100%;
  min-width: 0;
}

.slider__viewport {
  width: 100%;
  height: clamp(380px, 46vw, 720px);
  border-radius: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  min-width: 0;
}

.slider__track {
  display: flex;
  width: 400%;
  height: 100%;
  align-items: stretch;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  animation: sliderCycle 18s linear infinite;
}

.slider__slide {
  flex: 0 0 25%;
  margin: 0;
  height: 100%;
  position: relative;
}

.slider .slider__track > .slider__slide--clone {
  display: block !important;
}

.slider .slider__track .slider__slide[aria-hidden="true"] {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.slider__slide > * {
  width: 100%;
  height: 100%;
}

.slider__slide .s3__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: none;
}

.slider__slide--s3 {
  background-color: transparent;
}

.slider__slide--s3::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: transparent;
}

.slider__slide--s3 > * {
  position: relative;
  z-index: 1;
}

.s3__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  background: none;
}

.slider__slide--s3 .s3__img {
  object-fit: cover;
  object-position: center top;
  background: none;
}

.slider:hover .slider__track,
.slider:hover .slider__dots::before {
  animation-play-state: paused;
}

.slider__dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  z-index: 10;
}

.slider__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.slider__dots::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.14), 0 10px 30px rgba(0, 0, 0, 0.25);
  transform: translate3d(0px, -50%, 0);
  animation: dotCycle 18s linear infinite;
}

@keyframes sliderCycle {
  0% {
    transform: translate3d(0%, 0, 0);
    animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
  }
  18% {
    transform: translate3d(0%, 0, 0);
    animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
  }
  25% {
    transform: translate3d(-25%, 0, 0);
    animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
  }
  43% {
    transform: translate3d(-25%, 0, 0);
    animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
  }
  50% {
    transform: translate3d(-50%, 0, 0);
    animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
  }
  68% {
    transform: translate3d(-50%, 0, 0);
    animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
  }
  75% {
    transform: translate3d(-75%, 0, 0);
  }
  99.999% {
    transform: translate3d(-75%, 0, 0);
  }
  100% {
    transform: translate3d(-75%, 0, 0);
  }
}

@keyframes dotCycle {
  0% {
    transform: translate3d(0px, -50%, 0);
    animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
  }
  18% {
    transform: translate3d(0px, -50%, 0);
    animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
  }
  25% {
    transform: translate3d(19px, -50%, 0);
    animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
  }
  43% {
    transform: translate3d(19px, -50%, 0);
    animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
  }
  50% {
    transform: translate3d(38px, -50%, 0);
    animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
  }
  68% {
    transform: translate3d(38px, -50%, 0);
    animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
  }
  75% {
    transform: translate3d(0px, -50%, 0);
  }
  99.999% {
    transform: translate3d(0px, -50%, 0);
  }
  100% {
    transform: translate3d(0px, -50%, 0);
  }
}

@media (max-width: 640px) {
  .hero {
    margin-bottom: 50px;
  }

  .slider__viewport {
    height: 100vh;
    height: 100svh;
    min-height: 520px;
    max-height: 620px;
  }

  .s1__inner {
    padding-bottom: 82px;
  }

  .s2__inner {
    padding-bottom: 82px;
    align-content: start;
  }

  .s3__inner {
    padding: 18px 16px 82px;
    justify-items: center;
    align-content: start;
    grid-template-rows: auto auto;
  }

  .s1__title {
    font-size: clamp(18px, 5.6vw, 26px);
    padding: 12px 14px;
    border-radius: 12px;
  }

  .s1__image {
    width: min(240px, 68vw);
  }

  .s1__arrow {
    display: none;
  }

  .s2__content {
    text-align: center;
    justify-items: center;
  }

  .s2__icons {
    justify-content: center;
  }

  .s2__visual {
    place-items: center;
    height: clamp(240px, 62vw, 340px);
  }

  .s2__inner {
    gap: 14px;
  }

  .s2__kicker {
    font-size: clamp(16px, 4.8vw, 22px);
  }

  .s2__headline {
    font-size: clamp(24px, 9vw, 40px);
  }

  .s2__subhead {
    font-size: clamp(16px, 4.8vw, 22px);
  }

  .s2__image {
    width: min(440px, 100%);
    max-height: 100%;
  }

  .s1__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    grid-template-areas:
      "center"
      "left"
      "right"
      "bottom";
    gap: 14px;
  }

  .s1__callout--left,
  .s1__callout--right {
    justify-self: center;
  }

  .s1__callout {
    width: min(360px, 100%);
    min-height: 78px;
    padding: 14px 16px;
  }

  .s1__callout--bottom {
    width: min(360px, 100%);
    min-height: 78px;
    padding: 14px 16px;
  }

  .s1__bottom {
    position: static;
    margin-top: 10px;
  }

  .s1__arrow--down {
    display: none;
  }

  .s3__stats {
    grid-template-columns: 1fr;
    width: min(440px, 100%);
    gap: 12px;
    margin-top: 10px;
    margin-bottom: 12px;
  }

  .s3__stat {
    padding: 14px 56px 14px 14px;
    min-height: 76px;
  }

  .s3__statTitle {
    font-size: 12px;
    letter-spacing: 0.35px;
    color:#ffffff;
  }

  .s3__statValue {
    margin-top: 6px;
    font-size: 12px;
  }

  .s3__statIcon {
    right: 12px;
    width: 22px;
    height: 22px;
  }

  .s3__headline {
    font-size: clamp(22px, 7.2vw, 34px);
    line-height: 1.14;
  }

  .s3__content {
    text-align: center;
    justify-items: center;
    justify-self: center;
    margin-top: 22px;
    gap: 8px;
    align-self: start;
  }

  .slider__dots {
    bottom: 10px;
  }
}

@media (max-width: 420px) {
  .s3__stats {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .slider__track,
  .slider__dots::before {
    animation: none;
  }
}
