@import "https://cdn.jsdelivr.net/npm/@fontsource/bitter@latest/400.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/bitter@latest/400-italic.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/bitter@latest/700.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/bitter@latest/700-italic.css";

html,
body {
  margin: 0;
  padding: 0
}

body {
  font-family: 'Bitter', Georgia, serif;
  background-color: #080f10;
  min-height: 100vh
}

:focus-visible {
  outline: 2px solid #D96CF7;
  outline-offset: 3px;
  transition: outline-color .55s cubic-bezier(0.16, 1, 0.3, 1)
}

.bar {
  position: relative;
  z-index: 100;
  background: #0e3a3f61;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid #d96cf72e;
  box-shadow: 0 6px 25px -2px #d96cf717
}

.bar__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 88px
}

.brand {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
  text-decoration: none
}

.brand__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: #fdf3c812;
  border-radius: 8px 0 8px 0;
  border: 1px solid #d96cf747;
  box-shadow: 0 2px 4px -2px #d96cf714 0 0 0 3px #0e3a3f80;
  padding: 8px;
  flex-shrink: 0
}

.brand__mark img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  opacity: 0;
  transition: opacity .7s cubic-bezier(0.16, 1, 0.3, 1)
}

.brand__mark img.loaded {
  opacity: 1
}

.brand__name {
  font-family: 'Bitter', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  color: #FDF3C8;
  letter-spacing: 0
}

.menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap
}

.menu__item {
  position: relative
}

.menu__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  font-family: 'Bitter', Georgia, serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: #fdf3c8d1;
  text-decoration: none;
  border-radius: 3px;
  border: 1px solid transparent;
  transition: color .45s cubic-bezier(0.16, 1, 0.3, 1), border-color .45s cubic-bezier(0.16, 1, 0.3, 1), background .45s cubic-bezier(0.16, 1, 0.3, 1), transform .45s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  min-height: 44px
}

.menu__link:hover,
.menu__link:focus-visible {
  color: #D96CF7;
  border-color: #d96cf759;
  background: #d96cf712;
  transform: translateY(-2px);
  outline: none
}

.menu__item--has-sub>.menu__link::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.menu__item--has-sub:hover>.menu__link::after,
.menu__item--has-sub:focus-within>.menu__link::after {
  transform: rotate(-135deg) translateY(-2px)
}

.submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #0a282cf5;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #d96cf738;
  border-radius: 8px;
  box-shadow: 0 12px 48px -2px #d96cf724;
  list-style: none;
  margin: 0;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .5s cubic-bezier(0.16, 1, 0.3, 1), transform .5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 200
}

.menu__item--has-sub:hover .submenu,
.menu__item--has-sub:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0)
}

.submenu__link {
  display: block;
  padding: 8px 24px;
  font-family: 'Bitter', Georgia, serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: #fdf3c8c7;
  text-decoration: none;
  border-radius: 3px;
  border: 1px solid transparent;
  transition: color .45s cubic-bezier(0.16, 1, 0.3, 1), background .45s cubic-bezier(0.16, 1, 0.3, 1), transform .45s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  min-height: 44px;
  display: flex;
  align-items: center
}

.submenu__link:hover,
.submenu__link:focus-visible {
  color: #D96CF7;
  background: #d96cf717;
  transform: translateX(4px);
  outline: none
}

.bar__notice {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  background: #d96cf71a;
  border: 1px solid #d96cf74d;
  border-radius: 28px;
  font-family: 'Bitter', Georgia, serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1;
  color: #D96CF7;
  white-space: nowrap
}

.bar__notice .la {
  font-size: 15px
}

.ground {
  background: #0b1c1e;
  border-top: 1px solid #d96cf71f;
  box-shadow: 0 -6px 25px -2px #0e3a3f17
}

.ground__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap
}

.ground__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex-shrink: 0
}

.ground__mark {
  display: flex;
  align-items: center;
  gap: 24px
}

.ground__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  background: #fdf3c80d;
  border-radius: 0 8px 0 8px;
  border: 1px solid #d96cf733;
  box-shadow: 0 2px 4px -2px #0e3a3f14 0 0 0 2px #0e3a3f99;
  padding: 8px;
  flex-shrink: 0
}

.ground__logo img {
  width: 49px;
  height: 49px;
  object-fit: contain;
  display: block;
  opacity: 0;
  transition: opacity .7s cubic-bezier(0.16, 1, 0.3, 1)
}

.ground__logo img.loaded {
  opacity: 1
}

.ground__name {
  font-family: 'Bitter', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  color: #FDF3C8
}

.ground__tagline {
  font-family: 'Bitter', Georgia, serif;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.75;
  color: #fdf3c873;
  padding-left: 0
}

.ground__links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap
}

.ground__divider {
  width: 1px;
  height: 18px;
  background: #d96cf733;
  flex-shrink: 0
}

.ground__link {
  display: flex;
  align-items: center;
  padding: 8px 24px;
  font-family: 'Bitter', Georgia, serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: #fdf3c88c;
  text-decoration: none;
  border-radius: 3px;
  border: 1px solid transparent;
  min-height: 44px;
  transition: color .5s cubic-bezier(0.16, 1, 0.3, 1), border-color .5s cubic-bezier(0.16, 1, 0.3, 1), transform .5s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap
}

.ground__link:hover,
.ground__link:focus-visible {
  color: #FDF3C8;
  border-color: #d96cf738;
  transform: translateY(-2px);
  outline: none
}

.ground__copy {
  flex-shrink: 0;
  font-family: 'Bitter', Georgia, serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: #fdf3c859
}

.consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4000;
  background: #0b1c1e;
  border-top: 1px solid #d96cf738;
  box-shadow: 0 -6px 25px -2px #d96cf717
}

.consent__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap
}

.consent__text {
  font-family: 'Bitter', Georgia, serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: #fdf3c8b8;
  flex: 1;
  min-width: 200px
}

.consent__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  flex-shrink: 0
}

.consent__settings {
  display: none;
  padding: 24px 40px;
  border-top: 1px solid #d96cf71a;
  gap: 40px;
  flex-wrap: wrap
}

.consent__settings--open {
  display: flex
}

.consent__toggle {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: 'Bitter', Georgia, serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: #fdf3c8a6;
  cursor: pointer
}

.consent__toggle input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #D96CF7;
  cursor: pointer;
  box-shadow: inset 0 1px 3px #d96cf726
}

.consent__btn {
  display: flex;
  align-items: center;
  padding: 8px 24px;
  font-family: 'Bitter', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
  color: #D96CF7;
  background: transparent;
  border: 1px solid #d96cf780;
  border-radius: 3px;
  cursor: pointer;
  min-height: 44px;
  text-decoration: none;
  position: relative;
  transition: color .5s cubic-bezier(0.16, 1, 0.3, 1), background .5s cubic-bezier(0.16, 1, 0.3, 1), border-color .5s cubic-bezier(0.16, 1, 0.3, 1), transform .5s cubic-bezier(0.16, 1, 0.3, 1)
}

.consent__btn::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: border-color .5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none
}

.consent__btn:hover,
.consent__btn:focus-visible {
  color: #FDF3C8;
  background: #d96cf71f;
  border-color: #D96CF7;
  transform: translateY(-2px);
  outline: none
}

.consent__btn:hover::before,
.consent__btn:focus-visible::before {
  border-color: #d96cf766
}

.consent__btn--plain {
  color: #fdf3c88c;
  border-color: #fdf3c833
}

.consent__btn--plain:hover,
.consent__btn--plain:focus-visible {
  color: #FDF3C8;
  background: #fdf3c80f;
  border-color: #fdf3c866
}

@media (max-width: 992px) {
  .bar__inner {
    padding: 0 24px;
    gap: 24px;
    min-height: 80px;
    flex-wrap: wrap
  }

  .bar__notice {
    display: none
  }

  .menu {
    gap: 0
  }

  .menu__link {
    padding: 8px;
    font-size: 14px
  }

  .ground__inner {
    padding: 40px 24px;
    gap: 24px
  }

  .consent__inner {
    padding: 24px;
    gap: 24px
  }
}

@media (max-width: 576px) {
  .bar__inner {
    padding: 0 8px;
    gap: 8px
  }

  .brand__name {
    font-size: 15px
  }

  .ground__inner {
    padding: 40px 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px
  }

  .ground__links {
    gap: 0
  }

  .ground__link {
    padding: 8px;
    font-size: 14px
  }

  .consent__inner {
    padding: 24px 8px;
    gap: 24px
  }

  .consent__settings {
    padding: 24px 8px
  }
}

.content-trv-doc {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 40px;
  color: #FDF3C8;
  background: #0b1f22
}

.content-trv-doc p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 24px;
  color: #FDF3C8;
  opacity: .88
}

.content-trv-doc strong,
.content-trv-doc b {
  font-weight: 700;
  color: #FDF3C8;
  opacity: 1
}

.content-trv-doc em,
.content-trv-doc i {
  font-style: italic;
  color: #D96CF7
}

.content-trv-doc a {
  color: #D96CF7;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .55s cubic-bezier(0.16, 1, 0.3, 1), opacity .45s ease-in-out
}

.content-trv-doc a:hover {
  color: #FDF3C8;
  opacity: .9
}

.content-trv-doc hr {
  border: none;
  border-top: 1px solid #d96cf72e;
  margin: 40px 0
}

.content-trv-doc div {
  margin-bottom: 24px
}

@media (max-width: 992px) {
  .content-trv-doc {
    padding: 40px 24px
  }
}

@media (max-width: 576px) {
  .content-trv-doc {
    padding: 40px 8px
  }

  .content-trv-doc p {
    font-size: 14px
  }
}

.why-choose-us {
  background-color: #07191c;
  overflow-x: clip;
  position: relative
}

.why-choose-us .bleed {
  position: fixed;
  top: 0;
  left: 0;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle at 30% 30%, #d96cf721 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: bleed-anim 8s ease-in-out infinite alternate
}

@keyframes bleed-anim {
  0% {
    opacity: .4;
    transform: scale(1) translate(0, 0)
  }

  100% {
    opacity: 1;
    transform: scale(1.4) translate(40px, 60px)
  }
}

.why-choose-us .grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#d96cf70a 1px, transparent 1px), linear-gradient(90deg, #d96cf70a 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0
}

.why-choose-us .anchor {
  position: relative;
  z-index: 1;
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start
}

.why-choose-us .anchor__lead h1 {
  font-size: 56px;
  line-height: 1.1;
  color: #FDF3C8;
  margin: 0 0 24px;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: .01em
}

.why-choose-us .anchor__lead h1 span {
  color: #D96CF7;
  display: block
}

.why-choose-us .anchor__lead p {
  font-size: 18px;
  line-height: 1.75;
  color: #fdf3c8b8;
  margin: 0 0 40px;
  max-width: 560px
}

.why-choose-us .anchor__lead .divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #D96CF7, transparent);
  margin-bottom: 40px
}

.why-choose-us .anchor__lead .stat-row {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start
}

.why-choose-us .stat {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.why-choose-us .stat__num {
  font-size: 56px;
  line-height: 1.1;
  color: #D96CF7;
  font-weight: 300
}

.why-choose-us .stat__bar {
  width: 100%;
  height: 2px;
  background: #d96cf72e;
  border-radius: 0;
  position: relative;
  overflow: hidden
}

.why-choose-us .stat__bar-fill {
  height: 100%;
  background: #D96CF7;
  border-radius: 0;
  transition: width .9s cubic-bezier(0.16, 1, 0.3, 1)
}

.why-choose-us .stat__label {
  font-size: 14px;
  line-height: 1.75;
  color: #fdf3c88c;
  text-transform: uppercase
}

.why-choose-us .anchor__image {
  position: relative
}

.why-choose-us .anchor__image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 3px;
  opacity: 0;
  transition: opacity .9s cubic-bezier(0.16, 1, 0.3, 1)
}

.why-choose-us .anchor__image img.loaded {
  opacity: 1
}

.why-choose-us .anchor__image .badge {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background: #0E3A3F;
  border: 1px solid #d96cf747;
  border-radius: 3px;
  padding: 24px;
  max-width: 200px;
  box-shadow: 0 12px 48px -2px #d96cf724
}

.why-choose-us .anchor__image .badge p {
  font-size: 14px;
  line-height: 1.75;
  color: #FDF3C8;
  margin: 0
}

.why-choose-us .anchor__image .badge strong {
  color: #D96CF7;
  font-size: 15px
}

.why-choose-us .reasons {
  position: relative;
  z-index: 1;
  background: #0e3a3f47;
  backdrop-filter: blur(2px)
}

.why-choose-us .reasons__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 40px
}

.why-choose-us .reasons__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px
}

.why-choose-us .reasons__top-left {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.why-choose-us .reasons__top-left h2 {
  font-size: 56px;
  line-height: 1.1;
  color: #FDF3C8;
  margin: 0;
  text-transform: uppercase;
  font-weight: 300
}

.why-choose-us .reasons__top-left p {
  font-size: 18px;
  line-height: 1.75;
  color: #fdf3c8b3;
  margin: 0
}

.why-choose-us .reasons__top-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px
}

.why-choose-us .reasons__top-right p {
  font-size: 15px;
  line-height: 1.75;
  color: #fdf3c8a6;
  margin: 0
}

.why-choose-us .reasons__top-right .accent-line {
  font-size: 15px;
  line-height: 1.75;
  color: #D96CF7;
  margin: 0
}

.why-choose-us .steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative
}

.why-choose-us .steps::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(180deg, #D96CF7 0%, #d96cf726 100%);
  border-radius: 0
}

.why-choose-us .step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px 0;
  position: relative;
  cursor: default
}

.why-choose-us .step__dot {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: #0E3A3F;
  border: 2px solid #d96cf74d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: border-color .55s cubic-bezier(0.16, 1, 0.3, 1), background .55s cubic-bezier(0.16, 1, 0.3, 1), transform .55s cubic-bezier(0.16, 1, 0.3, 1)
}

.why-choose-us .step:hover .step__dot {
  border-color: #D96CF7;
  background: #d96cf71f;
  transform: translateY(-3px)
}

.why-choose-us .step__dot i {
  font-size: 22px;
  color: #D96CF7
}

.why-choose-us .step__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
  position: relative
}

.why-choose-us .step__body .label {
  font-size: 14px;
  line-height: 1.75;
  color: #d96cf7b3;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .45s ease-in-out, transform .45s ease-in-out;
  position: absolute;
  top: -20px;
  left: 0;
  white-space: nowrap;
  pointer-events: none
}

.why-choose-us .step:hover .step__body .label {
  opacity: 1;
  transform: translateX(0)
}

.why-choose-us .step__body h4 {
  font-size: 18px;
  line-height: 1.1;
  color: #FDF3C8;
  margin: 0;
  text-transform: uppercase;
  font-weight: 300
}

.why-choose-us .step__body p {
  font-size: 15px;
  line-height: 1.75;
  color: #fdf3c89e;
  margin: 0
}

.why-choose-us .reasons__bottom {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px
}

.why-choose-us .card {
  background: #07191ccc;
  border: 1px solid #d96cf71f;
  border-radius: 8px;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color .6s cubic-bezier(0.16, 1, 0.3, 1), transform .6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 4px -2px #d96cf714
}

.why-choose-us .card:hover {
  border-color: #d96cf773;
  transform: translateY(-4px);
  box-shadow: 0 6px 25px -2px #d96cf717
}

.why-choose-us .card--accent {
  background: conic-gradient(from 107deg at 20% 80%, #0e3a3fe6 0deg, #d96cf726 90deg, #0e3a3fe6 180deg, #0e3a3fe6 360deg);
  border-color: #d96cf74d
}

.why-choose-us .card__icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #d96cf71a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.why-choose-us .card__icon i {
  font-size: 22px;
  color: #D96CF7
}

.why-choose-us .card h5 {
  font-size: 15px;
  line-height: 1.1;
  color: #FDF3C8;
  margin: 0;
  text-transform: uppercase;
  font-weight: 300
}

.why-choose-us .card p {
  font-size: 14px;
  line-height: 1.75;
  color: #fdf3c899;
  margin: 0
}

.why-choose-us .divider-center {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  margin: 0
}

.why-choose-us .divider-center .line {
  flex: 1;
  height: 1px;
  background: #d96cf72e
}

.why-choose-us .divider-center .gem {
  width: 10px;
  height: 10px;
  background: #D96CF7;
  border-radius: 0;
  transform: rotate(45deg);
  flex-shrink: 0
}

.why-choose-us .portrait-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding: 24px;
  border: 1px solid #d96cf724;
  border-radius: 8px;
  background: #0e3a3f2e
}

.why-choose-us .portrait-row img {
  width: 80px;
  height: 120px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity .7s cubic-bezier(0.16, 1, 0.3, 1)
}

.why-choose-us .portrait-row img.loaded {
  opacity: 1
}

.why-choose-us .portrait-row .quote {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.why-choose-us .portrait-row .quote p {
  font-size: 15px;
  line-height: 1.75;
  color: #fdf3c8bf;
  margin: 0
}

.why-choose-us .portrait-row .quote cite {
  font-size: 14px;
  line-height: 1.75;
  color: #D96CF7;
  font-style: normal
}

.why-choose-us .img-second {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 3px;
  opacity: 0;
  transition: opacity .8s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 24px
}

.why-choose-us .img-second.loaded {
  opacity: 1
}

@media (max-width: 992px) {
  .why-choose-us .anchor {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 24px
  }

  .why-choose-us .anchor__image .badge {
    left: 0;
    bottom: 8px
  }

  .why-choose-us .reasons__top {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .why-choose-us .reasons__bottom {
    grid-template-columns: 1fr
  }

  .why-choose-us .reasons__inner {
    padding: 40px 24px
  }

  .why-choose-us .anchor__lead h1 {
    font-size: 56px
  }
}

@media (max-width: 576px) {
  .why-choose-us .anchor__lead h1 {
    font-size: 56px
  }

  .why-choose-us .stat-row {
    flex-direction: column !important;
    gap: 24px !important
  }

  .why-choose-us .steps::before {
    display: none
  }
}

.root {
  background: #0a1a1c;
  color: #e8dfc8;
  overflow-x: clip;
  position: relative
}

.root .vignette-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 40%, #0e3a3f8c 100%);
  animation: vignette-pulse 7s ease-in-out infinite
}

@keyframes vignette-pulse {

  0%,
  100% {
    opacity: .7
  }

  50% {
    opacity: 1
  }
}

.root .geo-accent {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  overflow: hidden
}

.root .page-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1
}

.root .title-block {
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden
}

.root .title-block .geo-circle--large {
  width: 520px;
  height: 520px;
  background: conic-gradient(from 107deg, #d96cf712, #0e3a3f1f, #fdf3c80a, #d96cf712);
  top: -120px;
  right: -80px;
  border-radius: 50%;
  position: absolute;
  pointer-events: none
}

.root .title-block .geo-circle--small {
  width: 220px;
  height: 220px;
  background: conic-gradient(from 107deg, #fdf3c80d, #d96cf714, transparent);
  bottom: 40px;
  left: 60px;
  border-radius: 50%;
  position: absolute;
  pointer-events: none
}

.root .title-block__grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: end
}

.root .title-block__left {
  padding-top: 80px
}

.root .title-block__eyebrow {
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #D96CF7;
  margin-bottom: 24px;
  display: block
}

.root .title-block__heading {
  font-size: 56px;
  line-height: 1.1;
  color: #FDF3C8;
  margin: 0 0 24px;
  text-transform: uppercase;
  font-weight: 300
}

.root .title-block__heading strong {
  color: #D96CF7;
  font-weight: 700
}

.root .title-block__description {
  font-size: 18px;
  line-height: 1.75;
  color: #b8c8c0;
  max-width: 520px;
  margin: 0
}

.root .title-block__right {
  position: relative
}

.root .title-block__image-frame {
  position: relative;
  width: 100%
}

.root .title-block__image-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 8px;
  opacity: 0;
  transition: opacity .9s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 12px 48px -2px #d96cf724
}

.root .title-block__image-frame img.loaded {
  opacity: 1
}

.root .title-block__image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: radial-gradient(ellipse at 50% 50%, transparent 40%, #0a1a1cb8 100%);
  pointer-events: none
}

.root .title-block__stat-tag {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: #0E3A3F;
  border: 1px solid #d96cf74d;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 6px 25px -2px #d96cf717
}

.root .title-block__stat-tag .stat-number {
  font-size: 56px;
  line-height: 1.1;
  color: #D96CF7;
  font-weight: 700;
  display: block
}

.root .title-block__stat-tag .stat-label {
  font-size: 14px;
  line-height: 1.75;
  color: #FDF3C8;
  display: block
}

.root .divider--blur {
  height: 1px;
  background: linear-gradient(90deg, transparent, #d96cf740, transparent);
  filter: blur(1px);
  margin: 40px 0;
  position: relative;
  z-index: 1
}

.root .value-strip {
  padding: 80px 0;
  background: #0e3a3f2e;
  position: relative;
  z-index: 1
}

.root .value-strip__grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start
}

.root .value-strip__label {
  font-size: 14px;
  line-height: 1.75;
  text-transform: uppercase;
  color: #D96CF7;
  letter-spacing: .06em;
  margin-bottom: 24px;
  display: block
}

.root .value-strip__heading {
  font-size: 56px;
  line-height: 1.1;
  color: #FDF3C8;
  font-weight: 300;
  text-transform: uppercase;
  margin: 0
}

.root .value-strip__right {
  padding-top: 8px
}

.root .value-strip__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.root .value-item {
  background: #0a1a1c99;
  border-radius: 8px;
  padding: 24px;
  border-top: 2px solid transparent;
  box-shadow: 0 2px 4px -2px #0e3a3f14;
  transition: border-color .55s cubic-bezier(0.16, 1, 0.3, 1), transform .55s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .55s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default
}

.root .value-item:hover {
  border-color: #D96CF7;
  transform: translateY(-4px);
  box-shadow: 0 6px 25px -2px #d96cf717
}

.root .value-item--accent {
  color: #D96CF7 !important
}

.root .value-item__number {
  font-size: 56px;
  line-height: 1.1;
  color: #D96CF7;
  font-weight: 700;
  display: block;
  margin-bottom: 8px
}

.root .value-item__heading {
  font-size: 15px;
  line-height: 1.75;
  color: #FDF3C8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 0 0 8px
}

.root .value-item__text {
  font-size: 14px;
  line-height: 1.75;
  color: #8aa8a0;
  margin: 0
}

.root .value-strip__image-aside {
  grid-column: 1 / -1;
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 40px
}

.root .value-strip__image-aside img {
  width: 360px;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity .85s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 12px 48px -2px #0e3a3f24
}

.root .value-strip__image-aside img.loaded {
  opacity: 1
}

.root .value-strip__aside-text {
  font-size: 18px;
  line-height: 1.75;
  color: #b8c8c0;
  margin: 0
}

.root .support-panel {
  padding: 80px 0;
  position: relative;
  z-index: 1
}

.root .support-panel__geo {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: conic-gradient(from 107deg, #d96cf70a, #0e3a3f17, transparent 60%);
  top: -100px;
  left: -200px;
  pointer-events: none
}

.root .support-panel__top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 40px
}

.root .support-panel__heading {
  font-size: 56px;
  line-height: 1.1;
  color: #FDF3C8;
  font-weight: 300;
  text-transform: uppercase;
  margin: 0;
  max-width: 640px
}

.root .support-panel__intro {
  font-size: 15px;
  line-height: 1.75;
  color: #8aa8a0;
  max-width: 380px;
  margin: 0
}

.root .support-panel__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.root .support-card {
  background: #0E3A3F;
  border-radius: 8px;
  padding: 40px 24px;
  position: relative;
  border-right: 3px solid #D96CF7;
  box-shadow: 0 6px 25px -2px #0e3a3f17;
  transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .6s cubic-bezier(0.16, 1, 0.3, 1)
}

.root .support-card:hover {
  transform: translateX(4px);
  box-shadow: 0 12px 48px -2px #d96cf724
}

.root .support-card:active {
  background: #D96CF7
}

.root .support-card:active .support-card__heading,
.root .support-card:active .support-card__text {
  color: #0E3A3F
}

.root .support-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center
}

.root .support-card__icon svg {
  width: 32px;
  height: 32px
}

.root .support-card__heading {
  font-size: 15px;
  line-height: 1.75;
  color: #FDF3C8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 0 0 8px;
  transition: color .5s ease-in-out
}

.root .support-card__text {
  font-size: 14px;
  line-height: 1.75;
  color: #8aa8a0;
  margin: 0;
  transition: color .5s ease-in-out
}

.root .support-panel__bottom {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center
}

.root .support-panel__portrait {
  width: 80px;
  height: 103px;
  flex-shrink: 0;
  overflow: hidden
}

.root .support-panel__portrait img {
  width: 80px;
  height: 103px;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0;
  transition: opacity .85s cubic-bezier(0.16, 1, 0.3, 1)
}

.root .support-panel__portrait img.loaded {
  opacity: 1
}

.root .support-panel__quote {
  flex: 1
}

.root .support-panel__quote-text {
  font-size: 15px;
  line-height: 1.75;
  color: #b8c8c0;
  margin: 0 0 8px
}

.root .support-panel__quote-author {
  font-size: 14px;
  line-height: 1.75;
  color: #D96CF7;
  display: block
}

.root .outcome-view {
  padding: 80px 0;
  background: #FDF3C8;
  position: relative;
  z-index: 1
}

.root .outcome-view__inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: start
}

.root .outcome-view__label {
  font-size: 14px;
  line-height: 1.75;
  text-transform: uppercase;
  color: #0E3A3F;
  letter-spacing: .06em;
  margin-bottom: 24px;
  display: block
}

.root .outcome-view__heading {
  font-size: 56px;
  line-height: 1.1;
  color: #0E3A3F;
  font-weight: 300;
  text-transform: uppercase;
  margin: 0 0 24px
}

.root .outcome-view__heading em {
  color: #D96CF7;
  font-style: normal;
  font-weight: 700
}

.root .outcome-view__body {
  font-size: 15px;
  line-height: 1.75;
  color: #2a4a40;
  margin: 0 0 24px
}

.root .outcome-view__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px
}

.root .outcome-view__list li {
  font-size: 15px;
  line-height: 1.75;
  color: #2a4a40;
  padding: 8px 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  border-bottom: 1px solid #0e3a3f1f
}

.root .outcome-view__list li .marker {
  width: 8px;
  height: 8px;
  background: #D96CF7;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px
}

.root .outcome-view__link {
  display: inline-block;
  font-size: 15px;
  line-height: 1.75;
  color: #0E3A3F;
  border: 2px solid #0E3A3F;
  border-radius: 3px;
  padding: 8px 24px;
  text-decoration: none;
  position: relative;
  transition: color .55s cubic-bezier(0.16, 1, 0.3, 1), background .55s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .55s cubic-bezier(0.16, 1, 0.3, 1), transform .55s cubic-bezier(0.16, 1, 0.3, 1)
}

.root .outcome-view__link::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid transparent;
  border-radius: 1px;
  transition: border-color .55s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none
}

.root .outcome-view__link:hover {
  background: #0E3A3F;
  color: #FDF3C8;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px -2px #0e3a3f17
}

.root .outcome-view__link:hover::before {
  border-color: #fdf3c859
}

.root .outcome-view__right {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.root .outcome-view__img-stack {
  position: relative
}

.root .outcome-view__img-stack img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  opacity: 0;
  transition: opacity .9s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 12px 48px -2px #0e3a3f24
}

.root .outcome-view__img-stack img.loaded {
  opacity: 1
}

.root .outcome-view__note {
  background: #0E3A3F;
  border-radius: 8px;
  padding: 24px;
  font-size: 14px;
  line-height: 1.75;
  color: #FDF3C8
}

.root .outcome-view__note strong {
  color: #D96CF7
}

@media (max-width: 1200px) {
  .root .title-block__grid {
    grid-template-columns: 1fr 380px;
    gap: 40px
  }

  .root .value-strip__grid {
    grid-template-columns: 260px 1fr;
    gap: 40px
  }

  .root .outcome-view__inner {
    grid-template-columns: 1fr 360px;
    gap: 40px
  }
}

@media (max-width: 992px) {
  .root .title-block__grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .root .title-block__left {
    padding-top: 40px
  }

  .root .title-block__image-frame img {
    height: 320px
  }

  .root .title-block__stat-tag {
    left: 0;
    bottom: -24px
  }

  .root .value-strip__grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .root .value-strip__items {
    grid-template-columns: 1fr 1fr
  }

  .root .support-panel__grid {
    grid-template-columns: 1fr 1fr
  }

  .root .support-panel__top {
    flex-direction: column;
    align-items: flex-start
  }

  .root .outcome-view__inner {
    grid-template-columns: 1fr;
    gap: 40px
  }
}

@media (max-width: 576px) {
  .root .page-container {
    padding: 0 24px
  }

  .root .title-block__heading {
    font-size: 56px
  }

  .root .value-strip__items {
    grid-template-columns: 1fr
  }

  .root .support-panel__grid {
    grid-template-columns: 1fr
  }

  .root .value-strip__image-aside {
    flex-direction: column;
    gap: 24px
  }

  .root .value-strip__image-aside img {
    width: 100%
  }

  .root .support-panel__bottom {
    flex-direction: column;
    align-items: flex-start
  }
}

.events {
  background: #06181a;
  color: #e8dfc8;
  overflow-x: clip;
  padding: 0
}

.events .page-schema {
  display: none
}

.events .title-panel {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: center;
  position: relative
}

.events .title-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  border-radius: 8px;
  z-index: 0
}

.events .title-panel__left {
  position: relative;
  z-index: 1
}

.events .title-panel__eyebrow {
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #D96CF7;
  margin-bottom: 24px;
  display: block
}

.events .title-panel__heading {
  font-size: 56px;
  line-height: 1.1;
  color: #FDF3C8;
  margin: 0 0 24px;
  text-transform: uppercase;
  font-weight: 300
}

.events .title-panel__desc {
  font-size: 18px;
  line-height: 1.75;
  color: #a89e88;
  max-width: 540px;
  margin: 0
}

.events .title-panel__image-wrap {
  position: relative;
  z-index: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 48px -2px #d96cf724
}

.events .title-panel__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: conic-gradient(from 107deg at 80% 80%, #0e3a3fb8 0deg, #06181a8c 120deg, transparent 200deg);
  pointer-events: none
}

.events .title-panel__image-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0;
  transition: opacity .7s cubic-bezier(0.16, 1, 0.3, 1)
}

.events .title-panel__image-wrap img.loaded {
  opacity: 1
}

.events .title-wave {
  width: 100%;
  height: 32px;
  overflow: hidden;
  line-height: 0
}

.events .title-wave svg {
  width: 100%;
  height: 32px
}

.events .schedule-band {
  background: #0E3A3F;
  padding: 80px 40px
}

.events .schedule-band__inner {
  max-width: 1500px;
  margin: 0 auto
}

.events .schedule-band__heading {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 300;
  text-transform: uppercase;
  color: #FDF3C8;
  margin: 0 0 8px
}

.events .schedule-band__sub {
  font-size: 15px;
  line-height: 1.75;
  color: #7ab8be;
  margin: 0 0 40px
}

.events .schedule-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3px;
  border-radius: 8px;
  overflow: hidden
}

.events .schedule-grid__head {
  background: #d96cf726;
  padding: 24px;
  font-size: 14px;
  line-height: 1.75;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #D96CF7;
  font-weight: 600
}

.events .schedule-grid__cell {
  background: #0e3a3f73;
  padding: 24px;
  font-size: 15px;
  line-height: 1.75;
  color: #c8bfa8;
  transition: background .55s cubic-bezier(0.16, 1, 0.3, 1)
}

.events .schedule-grid__cell:hover {
  background: #d96cf714
}

.events .schedule-grid__cell--accent {
  color: #FDF3C8;
  font-size: 18px;
  font-weight: 500
}

.events .schedule-grid__cell--tag {
  display: inline-block;
  background: #d96cf72e;
  color: #D96CF7;
  font-size: 14px;
  padding: 8px 24px;
  border-radius: 3px;
  margin-top: 8px
}

.events .schedule-grid__cell--open {
  color: #7ab8be
}

.events .schedule-grid__cell--full {
  color: #a89e88;
  text-decoration: line-through;
  opacity: .6
}

.events .schedule-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #D96CF7 40%, #0E3A3F 100%);
  margin: 0
}

.events .spotlight {
  position: relative;
  padding: 0;
  overflow: hidden
}

.events .spotlight__bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.events .spotlight__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0;
  transition: opacity .9s cubic-bezier(0.16, 1, 0.3, 1)
}

.events .spotlight__bg img.loaded {
  opacity: 1
}

.events .spotlight__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: conic-gradient(from 107deg at 30% 50%, #06181af7 0deg, #0e3a3fe0 180deg, #06181af2 360deg)
}

.events .spotlight__inner {
  position: relative;
  z-index: 1;
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start
}

.events .spotlight__quote-wrap {
  border-top: 3px solid #D96CF7;
  padding-top: 40px
}

.events .spotlight__pull {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 300;
  color: #FDF3C8;
  margin: 0 0 40px;
  text-transform: uppercase
}

.events .spotlight__pull em {
  font-style: normal;
  color: #D96CF7
}

.events .spotlight__body {
  font-size: 18px;
  line-height: 1.75;
  color: #a89e88;
  margin: 0 0 24px
}

.events .spotlight__aside {
  font-size: 14px;
  line-height: 1.75;
  color: #7ab8be;
  border-top: 1px solid #7ab8be33;
  padding-top: 24px;
  margin-top: 24px
}

.events .spotlight__card {
  background: #0e3a3f99;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 6px 25px -2px #0e3a3f17
}

.events .spotlight__card-heading {
  font-size: 18px;
  line-height: 1.75;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 300;
  color: #D96CF7;
  margin: 0 0 24px
}

.events .spotlight__stat-row {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.events .spotlight__stat {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.events .spotlight__stat-num {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 300;
  color: #FDF3C8;
  animation: colorshift 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards
}

@keyframes colorshift {
  0% {
    color: #D96CF7
  }

  100% {
    color: #FDF3C8
  }
}

.events .spotlight__stat-label {
  font-size: 14px;
  line-height: 1.75;
  color: #7ab8be;
  text-transform: uppercase;
  letter-spacing: .06em
}

.events .spotlight__stat-bar {
  height: 3px;
  background: #d96cf726;
  border-radius: 3px;
  overflow: hidden
}

.events .spotlight__stat-fill {
  height: 100%;
  background: #D96CF7;
  border-radius: 3px;
  transition: width .9s cubic-bezier(0.16, 1, 0.3, 1)
}

.events .speakers-band {
  background: #06181a;
  padding: 80px 40px
}

.events .speakers-band__inner {
  max-width: 1500px;
  margin: 0 auto
}

.events .speakers-band__heading {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 300;
  text-transform: uppercase;
  color: #FDF3C8;
  margin: 0 0 8px;
  text-align: center
}

.events .speakers-band__sub {
  font-size: 15px;
  line-height: 1.75;
  color: #a89e88;
  text-align: center;
  margin: 0 0 40px
}

.events .speakers-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px
}

.events .speaker-card {
  background: #0e3a3f40;
  border-radius: 8px;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  box-shadow: 0 2px 4px -2px #d96cf714;
  transition: box-shadow .55s cubic-bezier(0.16, 1, 0.3, 1), transform .55s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative
}

.events .speaker-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 3px;
  background: #D96CF7;
  border-radius: 0 3px 3px 0
}

.events .speaker-card:hover {
  box-shadow: 0 12px 48px -2px #d96cf724;
  transform: translateY(-4px)
}

.events .speaker-card--portrait {
  flex-direction: row;
  align-items: flex-start
}

.events .speaker-portrait {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 6px 25px -2px #d96cf717
}

.events .speaker-portrait img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0;
  transition: opacity .7s cubic-bezier(0.16, 1, 0.3, 1)
}

.events .speaker-portrait img.loaded {
  opacity: 1
}

.events .speaker-card__info {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.events .speaker-card__name {
  font-size: 18px;
  line-height: 1.75;
  color: #FDF3C8;
  margin: 0;
  font-weight: 500
}

.events .speaker-card__role {
  font-size: 14px;
  line-height: 1.75;
  color: #D96CF7;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 0
}

.events .speaker-card__bio {
  font-size: 15px;
  line-height: 1.75;
  color: #a89e88;
  margin: 0
}

.events .speakers-band__cta-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 24px
}

.events .btn-ghost {
  display: inline-block;
  padding: 24px 40px;
  border-radius: 3px;
  border: 1px solid #D96CF7;
  color: #D96CF7;
  font-size: 15px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition: color .55s cubic-bezier(0.16, 1, 0.3, 1), background .55s cubic-bezier(0.16, 1, 0.3, 1), transform .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.events .btn-ghost::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid transparent;
  border-radius: 3px;
  transition: border-color .55s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none
}

.events .btn-ghost:hover {
  background: #D96CF7;
  color: #06181a;
  transform: translateY(-3px)
}

.events .btn-ghost:hover::after {
  border-color: #06181a4d
}

.events .btn-ghost:focus {
  outline: 2px solid #D96CF7;
  outline-offset: 3px
}

.events .bottom-wave {
  width: 100%;
  height: 28px;
  overflow: hidden;
  line-height: 0;
  background: #06181a
}

.events .bottom-wave svg {
  width: 100%;
  height: 28px
}

@media (max-width: 992px) {
  .events .title-panel {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 24px
  }

  .events .title-panel__heading {
    font-size: 56px
  }

  .events .title-panel__image-wrap img {
    height: 240px
  }

  .events .schedule-band {
    padding: 40px 24px
  }

  .events .schedule-grid {
    grid-template-columns: 1fr
  }

  .events .schedule-grid__head:not(:first-child) {
    display: none
  }

  .events .spotlight__inner {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 40px
  }

  .events .speakers-band {
    padding: 40px 24px
  }

  .events .speakers-list {
    grid-template-columns: 1fr
  }

  .events .speaker-card--portrait {
    flex-direction: column
  }
}

@media (max-width: 576px) {
  .events .title-panel__heading {
    font-size: 56px
  }

  .events .schedule-band__heading,
  .events .spotlight__pull,
  .events .speakers-band__heading {
    font-size: 56px
  }

  .events .speakers-band__cta-row {
    flex-direction: column;
    align-items: center
  }
}

.about-us {
  background-color: #0a1a1c;
  color: #e8dfc8;
  overflow-x: clip;
  position: relative
}

.about-us .frame {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px
}

.about-us .reveal {
  opacity: 0;
  transform: scale(0.9);
  animation: revealIn .7s cubic-bezier(0.16, 1, 0.3, 1) forwards
}

.about-us .reveal--delay1 {
  animation-delay: .1s
}

.about-us .reveal--delay2 {
  animation-delay: .22s
}

.about-us .reveal--delay3 {
  animation-delay: .34s
}

.about-us .reveal--delay4 {
  animation-delay: .46s
}

@keyframes revealIn {
  to {
    opacity: 1;
    transform: scale(1)
  }
}

.about-us .img-fade {
  opacity: 0;
  animation: imgFadeIn .9s cubic-bezier(0.16, 1, 0.3, 1) .2s forwards
}

@keyframes imgFadeIn {
  to {
    opacity: 1
  }
}

.about-us .title-block {
  padding: 80px 0 40px;
  position: relative
}

.about-us .title-block .dots-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none
}

.about-us .title-block .dots-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #d96cf72e 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .45
}

.about-us .title-row {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 40px;
  position: relative;
  z-index: 1
}

.about-us .title-text {
  flex: 1 1 0;
  padding-bottom: 40px
}

.about-us .title-text .label {
  display: inline-block;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #D96CF7;
  border: 1px solid #d96cf759;
  border-radius: 3px;
  padding: 8px 24px;
  margin-bottom: 24px
}

.about-us .title-text .heading {
  font-size: 56px;
  line-height: 1.1;
  color: #FDF3C8;
  text-transform: uppercase;
  font-weight: 300;
  margin: 0 0 24px
}

.about-us .title-text .desc {
  font-size: 18px;
  line-height: 1.75;
  color: #b8c4c6;
  max-width: 480px;
  margin: 0
}

.about-us .title-image {
  flex: 0 0 520px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 48px -2px #0e3a3f24
}

.about-us .title-image img {
  width: 520px;
  height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 8px
}

.about-us .title-image .gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, #0a1a1c 0%, transparent 55%);
  border-radius: 8px;
  pointer-events: none
}

.about-us .title-image .img-border {
  position: absolute;
  inset: 0;
  border: 1.5px solid #d96cf738;
  border-radius: 8px;
  pointer-events: none
}

.about-us .story-block {
  padding: 80px 0;
  background: conic-gradient(from 107deg at 30% 60%, #0E3A3F 0%, #0a1a1c 40%, #0d1f22 70%, #0E3A3F 100%);
  position: relative
}

.about-us .story-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, #D96CF7 40%, #FDF3C8 60%, transparent)
}

.about-us .story-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: start
}

.about-us .story-main .story-heading {
  font-size: 56px;
  line-height: 1.1;
  color: #FDF3C8;
  text-transform: uppercase;
  font-weight: 300;
  margin: 0 0 40px;
  text-align: center
}

.about-us .story-main .story-body {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start
}

.about-us .story-main .story-text {
  flex: 1 1 0
}

.about-us .story-main .story-text p {
  font-size: 15px;
  line-height: 1.75;
  color: #b8c4c6;
  margin: 0 0 24px
}

.about-us .story-main .story-text p.accent-line {
  color: #D96CF7;
  font-size: 18px;
  line-height: 1.75
}

.about-us .story-aside {
  font-size: 14px;
  line-height: 1.75;
  color: #b8c4c699;
  border-top: 1px solid #d96cf733;
  padding-top: 24px;
  margin-top: 8px;
  flex: 0 0 160px
}

.about-us .story-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.about-us .stat-item {
  background: #0e3a3f59;
  border: 1px solid #d96cf726;
  border-radius: 8px;
  padding: 24px;
  position: relative;
  transition: transform .55s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .55s cubic-bezier(0.16, 1, 0.3, 1)
}

.about-us .stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px -2px #d96cf724
}

.about-us .stat-item .badge {
  position: absolute;
  top: -12px;
  right: 16px;
  width: 28px;
  height: 28px;
  background: #D96CF7;
  color: #0a1a1c;
  font-size: 14px;
  line-height: 28px;
  text-align: center;
  border-radius: 3px;
  font-weight: 700;
  transform: rotate(45deg)
}

.about-us .stat-item .badge span {
  display: block;
  transform: rotate(-45deg)
}

.about-us .stat-item .stat-value {
  font-size: 56px;
  line-height: 1.1;
  color: #FDF3C8;
  font-weight: 300;
  display: block
}

.about-us .stat-item .stat-label {
  font-size: 14px;
  line-height: 1.75;
  color: #b8c4c6;
  text-transform: uppercase;
  letter-spacing: .08em
}

.about-us .team-block {
  padding: 80px 0;
  background: #0a1a1c;
  position: relative
}

.about-us .team-block::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, #0E3A3F, transparent 50%)
}

.about-us .team-row {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: stretch
}

.about-us .team-portrait {
  flex: 0 0 280px;
  position: relative
}

.about-us .team-portrait img {
  width: 280px;
  height: 350px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  display: block;
  box-shadow: 0 6px 25px -2px #0e3a3f17
}

.about-us .team-portrait .diamond {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 40px;
  height: 40px;
  background: #D96CF7;
  transform: rotate(45deg);
  border-radius: 3px;
  z-index: 0
}

.about-us .team-info {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center
}

.about-us .team-info .team-label {
  font-size: 14px;
  line-height: 1.75;
  color: #D96CF7;
  text-transform: uppercase;
  letter-spacing: .12em
}

.about-us .team-info .team-name {
  font-size: 56px;
  line-height: 1.1;
  color: #FDF3C8;
  font-weight: 300;
  text-transform: uppercase;
  margin: 0
}

.about-us .team-info .team-role {
  font-size: 15px;
  line-height: 1.75;
  color: #d96cf7cc;
  margin: 0
}

.about-us .team-info .team-bio {
  font-size: 15px;
  line-height: 1.75;
  color: #b8c4c6;
  margin: 0;
  max-width: 540px
}

.about-us .team-images {
  flex: 0 0 360px;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.about-us .team-images img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  display: block;
  box-shadow: 0 2px 4px -2px #0e3a3f14;
  transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1)
}

.about-us .team-images img:hover {
  transform: translateY(-4px)
}

.about-us .process-block {
  padding: 80px 0;
  background: radial-gradient(ellipse at 50% 50%, #0e3a3f8c 0%, #0a1a1c 70%);
  position: relative
}

.about-us .process-block .process-heading {
  font-size: 56px;
  line-height: 1.1;
  color: #FDF3C8;
  font-weight: 300;
  text-transform: uppercase;
  margin: 0 0 40px;
  text-align: left
}

.about-us .step-tracker {
  display: flex;
  flex-direction: row;
  gap: 0;
  position: relative;
  margin-bottom: 80px
}

.about-us .step-tracker::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: #d96cf733;
  z-index: 0
}

.about-us .step-item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
  cursor: default
}

.about-us .step-item .step-num {
  width: 40px;
  height: 40px;
  border-radius: 3px;
  background: #0a1a1c;
  border: 1.5px solid #d96cf766;
  color: #D96CF7;
  font-size: 15px;
  line-height: 40px;
  text-align: center;
  font-weight: 700;
  transition: background .55s cubic-bezier(0.16, 1, 0.3, 1), border-color .55s cubic-bezier(0.16, 1, 0.3, 1)
}

.about-us .step-item:hover .step-num {
  background: #D96CF7;
  color: #0a1a1c;
  border-color: #D96CF7
}

.about-us .step-item .step-label {
  font-size: 14px;
  line-height: 1.75;
  color: #b8c4c6;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .08em;
  max-width: 120px
}

.about-us .process-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start
}

.about-us .process-card {
  background: #0e3a3f40;
  border: 1px solid #d96cf71f;
  border-radius: 8px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .65s cubic-bezier(0.16, 1, 0.3, 1), transform .65s cubic-bezier(0.16, 1, 0.3, 1)
}

.about-us .process-card:hover {
  box-shadow: 0 12px 48px -2px #d96cf724;
  transform: translateY(-4px)
}

.about-us .process-card .card-num {
  position: absolute;
  top: -16px;
  left: 24px;
  font-size: 56px;
  line-height: 1.1;
  color: #d96cf714;
  font-weight: 700;
  pointer-events: none;
  user-select: none
}

.about-us .process-card .card-heading {
  font-size: 18px;
  line-height: 1.75;
  color: #FDF3C8;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: .08em;
  margin: 0 0 24px
}

.about-us .process-card .card-text {
  font-size: 15px;
  line-height: 1.75;
  color: #b8c4c6;
  margin: 0
}

.about-us .process-card .card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  border-radius: 3px;
  display: block;
  margin-top: 24px;
  box-shadow: 0 6px 25px -2px #0e3a3f17;
  transition: opacity .7s ease-in-out
}

.about-us .process-card--tall {
  padding-bottom: 40px
}

@media (max-width: 992px) {
  .about-us .title-row {
    flex-direction: column;
    align-items: flex-start
  }

  .about-us .title-image {
    flex: 0 0 auto;
    width: 100%
  }

  .about-us .title-image img {
    width: 100%;
    height: 280px
  }

  .about-us .story-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .about-us .story-main .story-body {
    flex-direction: column
  }

  .about-us .team-row {
    flex-direction: column;
    gap: 40px
  }

  .about-us .team-images {
    flex: 0 0 auto;
    width: 100%;
    flex-direction: row
  }

  .about-us .team-images img {
    flex: 1 1 0;
    height: 140px
  }

  .about-us .process-content {
    grid-template-columns: 1fr
  }

  .about-us .step-tracker {
    flex-wrap: wrap;
    gap: 24px
  }

  .about-us .step-tracker::before {
    display: none
  }
}

@media (max-width: 576px) {
  .about-us .frame {
    padding: 0 24px
  }

  .about-us .title-text .heading,
  .about-us .story-main .story-heading,
  .about-us .team-info .team-name,
  .about-us .process-block .process-heading {
    font-size: 18px
  }

  .about-us .stat-item .stat-value {
    font-size: 18px
  }

  .about-us .team-images {
    flex-direction: column
  }
}

.contact-us {
  background: #08181A;
  overflow-x: clip
}

.contact-us .reveal {
  opacity: 0;
  transform: translateX(-48px);
  animation: slideIn .8s cubic-bezier(0.16, 1, 0.3, 1) forwards
}

.contact-us .reveal--2 {
  animation-delay: .15s
}

.contact-us .reveal--3 {
  animation-delay: .3s
}

.contact-us .reveal--4 {
  animation-delay: .45s
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0)
  }
}

.contact-us .page-label {
  display: inline-block;
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #D96CF7;
  background: #d96cf714;
  border: 1px solid #d96cf733;
  border-radius: 3px;
  padding: 8px 24px;
  margin-bottom: 24px
}

.contact-us .bento-grid {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  position: relative
}

.contact-us .bento-img-cell {
  grid-column: 1;
  grid-row: 1 / 3;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  min-height: 480px;
  box-shadow: 0 12px 48px -2px #0e3a3f24
}

.contact-us .bento-img-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity .7s cubic-bezier(0.16, 1, 0.3, 1)
}

.contact-us .bento-img-cell img.loaded {
  opacity: 1
}

.contact-us .bento-img-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #08181a4d 0%, #08181ae0 100%);
  pointer-events: none
}

.contact-us .bento-text-cell {
  grid-column: 2;
  grid-row: 1;
  background: #0e3a3f2e;
  border: 1px solid #0e3a3f80;
  border-radius: 8px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end
}

.contact-us .bento-stat-cell {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.contact-us .stat-card {
  background: #d96cf70f;
  border: 1px solid #d96cf726;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.contact-us .stat-card__number {
  font-size: 56px;
  line-height: 1.1;
  color: #D96CF7;
  font-weight: 700
}

.contact-us .stat-card__label {
  font-size: 14px;
  line-height: 1.75;
  color: #fdf3c899;
  text-transform: uppercase;
  letter-spacing: .08em
}

.contact-us .bento-h1 {
  font-size: 56px;
  line-height: 1.1;
  color: #FDF3C8;
  margin: 0 0 24px;
  font-weight: 700
}

.contact-us .bento-desc {
  font-size: 18px;
  line-height: 1.75;
  color: #fdf3c8b3;
  margin: 0
}

.contact-us .deco-circles {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 320px;
  pointer-events: none;
  overflow: hidden;
  border-radius: 0
}

.contact-us .deco-circles svg {
  width: 100%;
  height: 100%;
  opacity: .06
}

.contact-us .info-band {
  background: conic-gradient(from 107deg at 20% 60%, #0E3A3F 0%, #0a2428 40%, #0E3A3F 70%, #081C1E 100%);
  padding: 40px 0;
  border-top: 1px solid #0e3a3f99;
  border-bottom: 1px solid #0e3a3f99
}

.contact-us .info-band__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0
}

.contact-us .info-item {
  flex: 1;
  padding: 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background .55s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 8px
}

.contact-us .info-item:hover {
  background: #d96cf712
}

.contact-us .info-item__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d96cf71f;
  border-radius: 8px;
  margin-bottom: 8px
}

.contact-us .info-item__icon i {
  font-size: 18px;
  color: #D96CF7
}

.contact-us .info-item__label {
  font-size: 14px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #d96cf7b3
}

.contact-us .info-item__value {
  font-size: 15px;
  line-height: 1.75;
  color: #FDF3C8
}

.contact-us .info-item__value a {
  color: #FDF3C8;
  text-decoration: none;
  transition: color .45s ease-in-out
}

.contact-us .info-item__value a:hover {
  color: #D96CF7
}

.contact-us .info-divider {
  width: 1px;
  background: #0e3a3fcc;
  margin: 8px 0
}

.contact-us .form-area {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start
}

.contact-us .form-area__aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 40px
}

.contact-us .aside-block {
  background: #0e3a3f33;
  border: 1px solid #0e3a3f80;
  border-radius: 8px;
  padding: 24px
}

.contact-us .aside-block__heading {
  font-size: 15px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #D96CF7;
  margin: 0 0 24px;
  font-weight: 400
}

.contact-us .aside-block__note {
  font-size: 14px;
  line-height: 1.75;
  color: #fdf3c88c;
  margin: 0
}

.contact-us .timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.contact-us .timeline-list li {
  font-size: 14px;
  line-height: 1.75;
  color: #fdf3c8a6;
  padding: 8px 0;
  border-bottom: 1px solid #0e3a3f66;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px
}

.contact-us .timeline-list li:last-child {
  border-bottom: none
}

.contact-us .timeline-list li .dot {
  width: 6px;
  height: 6px;
  border-radius: 0;
  background: #D96CF7;
  flex-shrink: 0
}

.contact-us .timeline-list li.accent-line {
  color: #D96CF7 !important
}

.contact-us .form-card {
  background: #08181ae6;
  border: 1px solid #0e3a3f99;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 6px 25px -2px #0e3a3f17
}

.contact-us .form-card__heading {
  font-size: 18px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #FDF3C8;
  font-weight: 400;
  margin: 0 0 40px
}

.contact-us .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px
}

.contact-us .form-field {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.contact-us .form-field--full {
  grid-column: 1 / -1
}

.contact-us .form-field label {
  font-size: 14px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fdf3c88c
}

.contact-us .form-field input,
.contact-us .form-field select {
  background: #0e3a3f26;
  border: 1px solid #0e3a3f99;
  border-radius: 3px;
  padding: 24px;
  font-size: 15px;
  line-height: 1.75;
  color: #FDF3C8;
  outline: none;
  transition: border-color .5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: inset 0 2px 4px -2px #0e3a3f14;
  width: 100%;
  appearance: none;
  -webkit-appearance: none
}

.contact-us .form-field input::placeholder {
  color: #fdf3c840
}

.contact-us .form-field input:focus,
.contact-us .form-field select:focus {
  border-color: #D96CF7;
  box-shadow: inset 0 2px 4px -2px #0e3a3f14 0 0 0 2px #d96cf726
}

.contact-us .select-wrap {
  position: relative
}

.contact-us .select-wrap::after {
  content: '';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: #fdf3c866;
  pointer-events: none
}

.contact-us .form-field select option {
  background: #08181A;
  color: #FDF3C8
}

.contact-us .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 40px
}

.contact-us .privacy-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: #D96CF7;
  cursor: pointer
}

.contact-us .privacy-row .privacy-text {
  font-size: 14px;
  line-height: 1.75;
  color: #fdf3c880
}

.contact-us .privacy-row .privacy-text a {
  color: #D96CF7;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .45s ease-in-out
}

.contact-us .privacy-row .privacy-text a:hover {
  color: #FDF3C8
}

.contact-us .submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid #D96CF7;
  border-radius: 3px;
  padding: 24px 40px;
  font-size: 15px;
  line-height: 1.1;
  color: #D96CF7;
  text-transform: uppercase;
  letter-spacing: .1em;
  cursor: pointer;
  position: relative;
  transition: color .6s cubic-bezier(0.16, 1, 0.3, 1), background .6s cubic-bezier(0.16, 1, 0.3, 1), transform .5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden
}

.contact-us .submit-btn::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid transparent;
  border-radius: 0;
  transition: border-color .55s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none
}

.contact-us .submit-btn:hover {
  background: #D96CF7;
  color: #08181A;
  transform: translateY(-2px)
}

.contact-us .submit-btn:hover::before {
  border-color: #08181a4d
}

.contact-us .submit-btn:focus {
  outline: 2px solid #D96CF7;
  outline-offset: 4px
}

.contact-us .blur-group .info-item {
  transition: filter .5s ease-in-out, background .55s cubic-bezier(0.16, 1, 0.3, 1)
}

.contact-us .blur-group:hover .info-item {
  filter: blur(1.5px);
  opacity: .6
}

.contact-us .blur-group:hover .info-item:hover {
  filter: blur(0px);
  opacity: 1
}

@media (max-width: 992px) {
  .contact-us .bento-grid {
    grid-template-columns: 1fr;
    padding: 40px 24px 80px
  }

  .contact-us .bento-img-cell {
    grid-column: 1;
    grid-row: 1;
    min-height: 280px
  }

  .contact-us .bento-text-cell {
    grid-column: 1;
    grid-row: 2
  }

  .contact-us .bento-stat-cell {
    grid-column: 1;
    grid-row: 3
  }

  .contact-us .form-area {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 24px 80px
  }

  .contact-us .form-area__aside {
    position: static
  }

  .contact-us .info-band__inner {
    flex-direction: column;
    padding: 0 24px
  }

  .contact-us .info-divider {
    width: 100%;
    height: 1px;
    margin: 0
  }
}

@media (max-width: 576px) {
  .contact-us .bento-h1 {
    font-size: 56px
  }

  .contact-us .form-row {
    grid-template-columns: 1fr
  }

  .contact-us .form-field--full {
    grid-column: 1
  }

  .contact-us .bento-stat-cell {
    grid-template-columns: 1fr
  }

  .contact-us .bento-grid {
    padding: 24px 24px 80px
  }

  .contact-us .form-card {
    padding: 24px
  }
}

.success-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #0b2226;
  padding: 80px 24px
}

.success-page .card {
  max-width: 560px;
  width: 100%;
  background: #0E3A3F;
  border-radius: 8px;
  padding: 80px 40px;
  text-align: center;
  box-shadow: 0 12px 48px -2px #d96cf724;
  position: relative
}

.success-page .card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: center
}

.success-page .card__icon svg {
  width: 64px;
  height: 64px
}

.success-page .card__heading {
  font-size: 56px;
  line-height: 1.1;
  color: #FDF3C8;
  margin: 0 0 24px;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: .04em
}

.success-page .card__text {
  font-size: 18px;
  line-height: 1.75;
  color: #a8c8cc;
  margin: 0 0 40px
}

.success-page .card__text--accent {
  color: #D96CF7
}

.success-page .card__link {
  display: inline-block;
  font-size: 15px;
  line-height: 1.1;
  color: #D96CF7;
  text-decoration: none;
  border: 1px solid #D96CF7;
  border-radius: 3px;
  padding: 24px 40px;
  position: relative;
  transition: color .55s cubic-bezier(0.16, 1, 0.3, 1), background .55s cubic-bezier(0.16, 1, 0.3, 1), transform .45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .55s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: .06em;
  text-transform: uppercase
}

.success-page .card__link::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid #D96CF7;
  border-radius: 3px;
  opacity: 0;
  transition: opacity .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.success-page .card__link:hover {
  background: #D96CF7;
  color: #0b2226;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px -2px #d96cf717
}

.success-page .card__link:hover::after {
  opacity: 1
}

.success-page .card__link:focus {
  outline: 2px solid #D96CF7;
  outline-offset: 4px
}

.success-page .card__divider {
  width: 40px;
  height: 1px;
  background: #D96CF7;
  margin: 0 auto 40px;
  opacity: .5
}

@media (max-width: 576px) {
  .success-page {
    padding: 40px 24px
  }

  .success-page .card {
    padding: 40px 24px
  }

  .success-page .card__heading {
    font-size: 56px
  }
}