:root {
  --header-offset: 100px;
}

section[id] {
  scroll-margin-top: var(--header-offset);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #101728;
  background: #f6f9fb;
  overflow-x: hidden !important;
}

.containerWidth {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

.gradient-text {
  color: #01747E;
  background-image: linear-gradient(45deg, #01747E, #7DD9D8);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.gradient-text-animation {
  background: linear-gradient(90deg, #01747E, #7DD9D8, #004A52);
  background-size: 200% 200%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  animation: gradient-shift 3s infinite linear;
}

.js-anim {
  opacity: 0;
}

.js-anim.animate__fadeInRight,
.js-anim.animate__fadeInUp,
.js-anim.animate__zoomIn {
  opacity: 1;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  80% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes fadeInRightSmall {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRightSmall {
  animation: fadeInRightSmall 0.8s ease-out forwards;
}

.accentLight-text {
  color: #7DD9D8;
}

.accent-text {
  color: #01747E;
}

.text-gray {
  color: #47505f;
}

.shadows-into-light-two-regular {
  font-family: "Shadows Into Light Two", cursive;
  font-weight: 400;
  font-style: normal;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 30px;
  border-radius: 999px;
  font-weight: 400;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  will-change: transform;
  font-size: 15px;
}
.button:hover {
  transform: translateY(-1px);
}
.button:active {
  transform: translateY(0);
}
.button--primary {
  background: #01747E;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(1, 116, 126, 0.22);
}
.button--primary:hover {
  background: rgb(0.7590551181, 88.0503937008, 95.6409448819);
  box-shadow: 0 14px 30px rgba(28, 236, 255, 0.26);
}
.button--ghost {
  background: rgba(255, 255, 255, 0.8);
  color: #101728;
  border-color: rgba(16, 23, 40, 0.1);
  padding: 10px 20px 10px 30px;
}
.button--ghost:hover {
  background: #ffffff;
  border-color: rgba(16, 23, 40, 0.16);
  box-shadow: 0 10px 24px rgba(5, 174, 189, 0.12);
}
.button--ghost:hover .button__arrow {
  margin-left: 15px;
}
.button__arrow {
  margin-left: 10px;
  transition: margin-left 0.2s ease-in-out;
}
.button--full {
  width: 100%;
  border-radius: 12px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  padding: 15px 0;
  transition: background-color 0.5s ease, box-shadow 0.5s ease, backdrop-filter 0.5s ease, transform 0.5s ease;
  transform: translateY(0);
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .header .header {
    transition: none;
  }
}
.header--scrolled {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(125, 217, 216, 0.1);
}
.header--scrolled::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: linear-gradient(to right, transparent 0%, rgba(125, 217, 216, 0.55) 50%, transparent 100%);
}

.nav__link {
  text-decoration: none;
  color: #101728;
  font-weight: 400;
  font-size: 15px;
  opacity: 0.86;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.nav__link:hover {
  color: #01747E;
  opacity: 1;
}

.header__burger {
  display: none;
  /* shown only under 720px */
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-direction: column;
}
.header__burger:focus-visible {
  outline: 2px solid rgba(1, 116, 126, 0.35);
  outline-offset: 2px;
}
.header__burgerLine {
  display: block;
  width: 22px;
  height: 2px;
  background: #101728;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
.header--menuOpen .header__burgerLine:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header--menuOpen .header__burgerLine:nth-child(2) {
  opacity: 0;
}
.header--menuOpen .header__burgerLine:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobileMenu {
  position: fixed;
  inset: 0;
  top: 62px;
  width: 100vw;
  height: calc(100vh - 62px);
  overflow: hidden;
  z-index: 200;
}
.mobileMenu__drawer {
  position: absolute;
  top: -1px;
  right: 0;
  height: 100%;
  width: 60%;
  background: rgba(255, 255, 255, 0.96);
  transform: translateX(60%);
  transition: transform 0.28s ease;
  padding: 50px 22px 24px;
}
.mobileMenu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  /* transparent white */
  opacity: 0;
  transition: opacity 0.25s ease;
}
.mobileMenu__nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobileMenu__link {
  text-decoration: none;
  color: #101728;
  font-weight: 400;
  font-size: 18px;
  opacity: 0.9;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.mobileMenu__link:hover {
  color: #01747E;
  opacity: 1;
}
.mobileMenu__actions {
  margin-top: auto;
  padding-top: 20px;
}
.mobileMenu {
  /* opened state */
}
.mobileMenu--open .mobileMenu__backdrop {
  opacity: 1;
}
.mobileMenu--open .mobileMenu__drawer {
  transform: translateX(0);
}

/* optional: reduce motion */
@media (prefers-reduced-motion: reduce) {
  .mobileMenu__backdrop,
  .mobileMenu__drawer,
  .header__burgerLine {
    transition: none !important;
  }
}
/* body scroll lock when menu open */
.no-scroll {
  overflow: hidden;
}

.banner__imageWrapper {
  position: absolute;
  top: -90px;
  right: -400px;
  width: 1200px;
}
.banner__imageDots {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.banner__imageDots svg {
  width: 100%;
  height: 100%;
  display: block;
}
.banner__imageDots #dots path[id] {
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform;
}
.banner__imageDots #dots path[id="1"], .banner__imageDots #dots path[id="2"], .banner__imageDots #dots path[id="3"], .banner__imageDots #dots path[id="4"], .banner__imageDots #dots path[id="5"] {
  animation: dotPulseA 4s ease-in-out infinite;
}
.banner__imageDots #dots path[id="6"], .banner__imageDots #dots path[id="7"], .banner__imageDots #dots path[id="8"], .banner__imageDots #dots path[id="9"], .banner__imageDots #dots path[id="10"] {
  animation: dotPulseB 6s ease-in-out infinite;
}
.banner__imageDots #dots path[id="1"] {
  animation-delay: -0.15s;
}
.banner__imageDots #dots path[id="2"] {
  animation-delay: -0.05s;
}
.banner__imageDots #dots path[id="3"] {
  animation-delay: -0.55s;
}
.banner__imageDots #dots path[id="4"] {
  animation-delay: -0.65s;
}
.banner__imageDots #dots path[id="5"] {
  animation-delay: -0.95s;
}
.banner__imageDots #dots path[id="6"] {
  animation-delay: -0.35s;
}
.banner__imageDots #dots path[id="7"] {
  animation-delay: -0.25s;
}
.banner__imageDots #dots path[id="8"] {
  animation-delay: -0.75s;
}
.banner__imageDots #dots path[id="9"] {
  animation-delay: -1.05s;
}
.banner__imageDots #dots path[id="10"] {
  animation-delay: -0.55s;
}
@keyframes dotPulseA {
  0%, 100% {
    transform: scale(1.3);
  }
  15% {
    transform: scale(2.1);
  }
  32% {
    transform: scale(0.75);
  }
  52% {
    transform: scale(1.85);
  }
  70% {
    transform: scale(0.95);
  }
  86% {
    transform: scale(1.45);
  }
}
@keyframes dotPulseB {
  0%, 100% {
    transform: scale(1.2);
  }
  18% {
    transform: scale(0.75);
  }
  38% {
    transform: scale(2.35);
  }
  58% {
    transform: scale(0.85);
  }
  78% {
    transform: scale(2);
  }
  90% {
    transform: scale(1.15);
  }
}
@media (prefers-reduced-motion: reduce) {
  .banner__imageDots #dots path[id="1"], .banner__imageDots #dots path[id="2"], .banner__imageDots #dots path[id="3"], .banner__imageDots #dots path[id="4"], .banner__imageDots #dots path[id="5"], .banner__imageDots #dots path[id="6"], .banner__imageDots #dots path[id="7"], .banner__imageDots #dots path[id="8"], .banner__imageDots #dots path[id="9"], .banner__imageDots #dots path[id="10"] {
    animation: none !important;
  }
}

.label {
  border-radius: 20px;
  padding: 5px 16px;
  color: rgba(1, 116, 126, 0.8);
  border: 1px solid rgba(1, 116, 126, 0.2);
  background: rgba(1, 116, 126, 0.04);
  display: flex;
  align-items: center;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
}
.label__circle {
  background: rgba(1, 116, 126, 0.2);
  border-radius: 100%;
  height: 8px;
  width: 8px;
}
.label--blue {
  border-radius: 20px;
  padding: 5px 16px;
  color: #123d68;
  border: 1px solid rgba(18, 61, 104, 0.2);
  background: rgba(18, 61, 104, 0.04);
  display: flex;
  align-items: center;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
}
.label--blue__circle {
  background: rgba(18, 61, 104, 0.2);
  border-radius: 100%;
  height: 8px;
  width: 8px;
}

/* Impact Card */
.impactCard {
  background: #ffffff;
  border: 1px solid rgba(16, 23, 40, 0.08);
  border-radius: 18px;
  padding: 25px 20px;
  box-shadow: 0 10px 30px rgba(1, 116, 126, 0.1);
}
.impactCard__title {
  margin: 0;
  font-size: 16px;
  color: #101728;
  font-weight: 500;
}
.impactCard__hint {
  margin: 6px 0 0;
  color: #47505f;
  font-size: 14px;
  line-height: 1.6;
}
.impactCard__items {
  display: grid;
  gap: 10px;
}

.impactItem {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(16, 23, 40, 0.06);
  background: rgba(246, 249, 251, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  align-items: center;
}
.impactItem:hover {
  cursor: pointer;
  transform: translateY(-1px);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(16, 23, 40, 0.08);
}
.impactItem__icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: rgba(1, 116, 126, 0.05);
  padding: 8px;
  color: #01747E;
  display: grid;
  place-items: center;
  font-weight: 700;
  flex: 0 0 auto;
}
.impactItem__title {
  color: #101728;
  font-weight: 500;
  font-size: 16px;
}
.impactItem__text {
  color: #47505f;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 2px;
  line-height: 18px;
}

/* Next Generation section */
.nextGeneration__cardBg {
  background: #EFF1F4;
  background: linear-gradient(180deg, #EFF1F4 0%, #F7F8FA 100%);
  border: 1px solid rgba(2, 116, 126, 0.1);
  border-radius: 25px;
  padding: 15px;
  height: 100%;
}
.nextGeneration__cardBg--white {
  background: #ffffff;
  background: linear-gradient(180deg, #ffffff 0%, #F7F8FA 100%);
  border: 1px solid rgba(2, 116, 126, 0.1);
  border-radius: 25px;
  padding: 15px;
  height: 100%;
}
.nextGeneration__innerCard {
  border-radius: 15px;
  padding: 20px 20px 15px 20px;
  background: #FFFFFF;
  background: linear-gradient(180deg, #FFFFFF 0%, #F7F8FA 100%);
}
.nextGeneration__innerCard--white {
  border-radius: 15px;
  padding: 20px;
  background: #FFFFFF;
  background: linear-gradient(180deg, #FFFFFF 0%, #F7F8FA 100%);
}

/* Advantages */
.advantages {
  background: #101728;
}
.advantages__container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
}
.advantages img {
  bottom: -1px;
  z-index: 0;
}

/* Footer */
.footer {
  background: #101728;
}
.footer__mainInfo {
  position: relative;
}
.footer__mainInfo ::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent 5%, rgba(125, 217, 216, 0.05) 50%, transparent 95%);
}

@media (max-width: 1022px) {
  .nextGeneration__innerCard--white {
    height: 100%;
  }
}
@media (max-width: 960px) {
  .banner__imageWrapper {
    top: -20px;
    right: -300px;
    width: 1000px;
  }
}
@media (max-width: 800px) {
  .banner__imageWrapper {
    top: -20px;
    right: -300px;
    width: 900px;
  }
}
@media (max-width: 768px) {
  .header {
    padding-top: calc(env(safe-area-inset-top) + 8px);
    padding-bottom: 8px;
    background: rgba(255, 255, 255, 0.96);
  }
  .header--scrolled {
    background: rgba(255, 255, 255, 0.96);
  }
  .header--scrolled::after {
    height: 1px;
    background: linear-gradient(to right, transparent 0%, rgba(125, 217, 216, 0.7) 50%, transparent 100%);
  }
  .header__nav {
    display: none !important;
  }
  .header__cta {
    display: none !important;
  }
  .header__burger {
    display: inline-flex !important;
  }
  .mobileMenu__drawer {
    width: 75vw;
    max-width: 75vw;
  }
}
@media (max-width: 720px) {
  .banner__imageWrapper {
    position: relative;
    top: -120px;
    right: 0px;
    width: 130%;
  }
}
@media (max-width: 640px) {
  .banner__imageWrapper {
    top: 0px;
    width: 100%;
  }
  .button {
    width: 100%;
    padding: 13px 30px;
  }
}/*# sourceMappingURL=styles.css.map */