:root {
  --bg: #030a23;
  --bg-deep: #020817;
  --panel: rgba(8, 16, 44, 0.78);
  --panel-strong: #08132f;
  --border: rgba(78, 88, 181, 0.45);
  --text: #ffffff;
  --muted: #c7cee5;
  --accent: #8d67ff;
  --accent-soft: #4f6fff;
  --accent-glow: rgba(141, 103, 255, 0.45);
  --radius: 18px;
  --container: 1280px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
html.lock {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  padding-right: var(--scrollbar-width);
}

body {
  margin: 0;
  padding-top: 45px;
  min-width: 320px;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: linear-gradient(270deg, #02081c 1.44%, #060c22 49.51%, #050b21 77.75%, #010718 100%);
  overflow-x: clip;
}
@media (width <= 767px) {
  body {
    padding-top: 10px;
  }
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.btn_round_blue {
  position: relative;
  z-index: 1;
  border-radius: 999px;
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
  padding: 0;
}
.btn_round_blue::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(115deg, #8D67FF 20.07%, #341493 54.9%, rgba(52, 20, 147, 0) 72.42%, #130EFF 83.4%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.btn_round_blue span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  color: var(--text);
  text-decoration: none;
  border-radius: 100px;
  background: rgba(14, 16, 28, 0.5);
  background-blend-mode: overlay;
}

.button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0 30px;
  border-radius: 10px;
  border: 2px solid transparent;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  transition: scale 0.3s cubic-bezier(0, 0, 0.2, 1);
  overflow: hidden;
  height: 62px;
}
@media (width <= 767px) {
  .button {
    flex: 1;
    min-width: fit-content;
  }
}
.button:hover {
  scale: 1.1;
}
.button:hover span {
  transform: translateY(-100%);
  scale: calc(1/1.1);
  line-height: 51px;
}
.button span {
  line-height: 62px;
  transition: transform 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.button-primary {
  border-color: var(--accent);
  background: rgba(14, 16, 28, 0.92);
  box-shadow: 0 -3px 10px #341493, inset 0 10px 20px rgba(19, 14, 255, 0.3);
}
.button-secondary {
  border-color: #212085;
  background: rgba(14, 16, 28, 0.88);
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 70px;
}
.section-heading.centered {
  align-items: center;
  text-align: center;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 116px;
  height: 42px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  color: var(--text);
}
.brand .brand-shadow,
.brand .brand-main {
  position: absolute;
  inset: 0;
}
.brand .brand-shadow-blue {
  color: #0166cc;
  transform: translateY(3px);
}
.brand .brand-shadow-violet {
  color: var(--accent);
  transform: translateY(0px);
}
.brand .brand-main {
  color: var(--text);
  transform: translateY(-3px);
}

.header {
  position: sticky;
  top: 10px;
  z-index: 10;
}
.header .container {
  transition: width 0.3s ease;
}
.header.full .container {
  width: calc(100vw - 32px);
}

.header_wrapper {
  padding: 9px 28px;
  border: 1px solid rgba(151, 165, 255, 0.18);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(4, 10, 29, 0.2);
  border-radius: 10px;
  backdrop-filter: blur(16px);
}
.header_wrapper .burger {
  display: none;
  width: 30px;
  height: 20px;
  position: relative;
  user-select: none;
}
@media (width <= 767px) {
  .header_wrapper .burger {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.header_wrapper .burger span {
  display: block;
  width: 30px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease 0s;
  border-radius: 9px;
}
.header_wrapper .burger span::before, .header_wrapper .burger span::after {
  content: "";
  background: #fff;
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 9px;
  transition: all 0.3s ease 0s;
}
.header_wrapper .burger span::before {
  top: 0;
}
.header_wrapper .burger span::after {
  bottom: 0;
}
.header_wrapper .burger.active span {
  background: transparent;
  height: 0;
}
.header_wrapper .burger.active span::before {
  top: 9px;
  transform: rotate(45deg);
}
.header_wrapper .burger.active span::after {
  bottom: 9px;
  transform: rotate(-45deg);
}
.header_wrapper .mobile_menu {
  display: contents;
}
@media (width <= 767px) {
  .header_wrapper .mobile_menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    padding: 20px;
    gap: 20px;
    background: #030a23;
    border: 1px solid rgba(151, 165, 255, 0.18);
    box-shadow: var(--shadow);
    border-radius: 10px;
  }
}
@media (width <= 767px) {
  .header_wrapper .mobile_menu.active {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.header_wrapper .nav {
  display: flex;
  align-items: center;
  gap: 31px;
}
@media (width <= 1023px) {
  .header_wrapper .nav {
    gap: 10px;
  }
}
@media (width <= 767px) {
  .header_wrapper .nav {
    flex-direction: column;
    gap: 20px;
  }
}
.header_wrapper .nav a {
  font-family: "IBM Plex Mono", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  padding: 7px 13px;
  transition: opacity 0.3s ease;
}
@media (width <= 1023px) {
  .header_wrapper .nav a {
    font-size: 16px;
  }
}
.header_wrapper .nav a:hover {
  opacity: 0.8;
}
.header_wrapper .btn_round_blue span {
  text-transform: capitalize;
}

.hero {
  --header: 107px;
  min-height: 665px;
  padding: calc(85px + var(--header)) 0 80px;
  position: relative;
  margin-top: calc(var(--header) * -1);
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #1B1848 0%, #6560B7 49.46%, #1B1848 99.11%);
}
.hero .hero-bg {
  position: absolute;
  inset: 0 0 0 0;
  height: 100%;
  background: url("./assets/hero-bg.jpg") center top/cover no-repeat;
  z-index: -2;
}
@media (width <= 767px) {
  .hero .hero-bg {
    background: url("./assets/hero-bg_m.jpg") center top/cover no-repeat;
    opacity: 0.7;
  }
}
.hero .hero-wrapper {
  margin-left: 0;
  width: fit-content;
}
.hero .hero_top {
  width: fit-content;
  margin-bottom: 38px;
}
.hero h1 {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  line-height: 1;
}
.hero h1 span {
  display: block;
  font-size: clamp(46px, 6vw, 80px);
}
.hero h1 strong {
  display: block;
  font-size: clamp(118px, 15vw, 245px);
  font-weight: 700;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: #1B1848;
}
.hero .hero-text {
  font-weight: 500;
  max-width: 589px;
  margin: 32px 0 0;
  font-size: 16px;
  line-height: 1.45;
  color: var(--muted);
}
.hero .hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}

.advantages {
  padding: 180px 0;
  background-image: url("./assets/dots.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1607px 1283px;
  position: relative;
  overflow: hidden;
}
@media (width <= 767px) {
  .advantages {
    padding: 80px 0;
  }
}
.advantages::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 1895px;
  height: 1128px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url("./assets/advantages-bg.png") center top/cover no-repeat;
}
.advantages h2 {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.08em;
}
.advantages .advantage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
@media (width <= 767px) {
  .advantages .advantage-grid {
    grid-template-columns: 100%;
  }
}
.advantages .advantage-card-inner {
  display: flex;
}
.advantages .advantage-card {
  border-radius: 10px;
  padding: 50px 40px;
  border: 2px solid #1B1848;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(16px);
  box-shadow: inset 2px 2px 2px -1px rgba(255, 255, 255, 0.45), inset -2px -2px 2px -1px rgba(255, 255, 255, 0.44);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: perspective(1200px) rotateX(0deg) rotateY(0deg) scale(1);
  transition: transform 0.12s ease;
  will-change: transform;
}
@media (width <= 1023px) {
  .advantages .advantage-card {
    padding: 30px;
  }
}
@media (width <= 767px) {
  .advantages .advantage-card {
    padding: 20px;
  }
}
.advantages .advantage-card .advantage-card-top {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 30px;
  position: relative;
}
.advantages .advantage-card .advantage-card-top::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 384px;
  height: 1px;
  max-width: 90%;
  opacity: 0.5;
  background: linear-gradient(270deg, rgba(27, 24, 72, 0) 0%, #A182FF 45.99%, rgba(27, 24, 72, 0) 100%);
}
.advantages .advantage-card .number-badge {
  display: grid;
  place-items: center;
  min-width: 66px;
  width: 66px;
  height: 66px;
  border: 1.7px solid #413aae;
  border-radius: 999px;
  background: linear-gradient(180deg, #1b1848, #413aae);
  font-size: 34px;
  font-weight: 600;
  box-shadow: inset 0px 0px 0px 60px white;
  color: #1B1848;
}
@media (width <= 767px) {
  .advantages .advantage-card .number-badge {
    width: 50px;
    height: 50px;
    font-size: 24px;
    min-width: 50px;
  }
}
.advantages .advantage-card h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 500;
}
@media (width <= 1023px) {
  .advantages .advantage-card h3 {
    font-size: 22px;
  }
}
.advantages .advantage-card p {
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #d9d9d9;
}

.features {
  padding: 20px 0 100px;
}
@media (width <= 767px) {
  .features {
    padding: 20px 0 80px;
  }
}
.features h2 {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.08em;
}
.features .feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  position: relative;
}
@media (width <= 767px) {
  .features .feature-grid {
    grid-template-columns: 100%;
  }
}
.features .feature-grid::after {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 154px;
  border-radius: 100%;
  background: #15adfa;
  filter: blur(500px);
  z-index: -1;
}
.features .feature-card {
  min-height: 232px;
  padding: 50px;
  text-align: center;
  border-radius: 10px;
  border: 1px solid #1B1848;
  background: #0D1328;
  box-shadow: 0 0 60px 0 rgba(27, 24, 72, 0.25) inset;
  background-image: url("./assets/dots.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1607px 1283px;
  position: relative;
}
@media (width <= 1023px) {
  .features .feature-card {
    padding: 30px;
  }
}
@media (width <= 767px) {
  .features .feature-card {
    padding: 20px;
  }
}
.features .feature-card::after, .features .feature-card::before {
  content: "";
  position: absolute;
  width: calc(100% - 20px);
  height: 1px;
  left: 10px;
  background: linear-gradient(270deg, #1B1848 13%, #8A38F5 50%, #1B1848 83%);
}
.features .feature-card::before {
  top: 0;
}
.features .feature-card::after {
  bottom: 0;
}
.features .feature-card .icon-ring {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border: 1.7px solid #413aae;
  border-radius: 999px;
  background: linear-gradient(180deg, #1b1848, #413aae);
  font-weight: 600;
  margin: 0 auto;
}
.features .feature-card h3 {
  margin: 20px 0;
  font-size: 34px;
  font-weight: 500;
  padding-bottom: 30px;
  position: relative;
}
@media (width <= 1023px) {
  .features .feature-card h3 {
    font-size: 24px;
  }
}
.features .feature-card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 384px;
  height: 1px;
  max-width: 90%;
  opacity: 0.5;
  background: linear-gradient(270deg, rgba(27, 24, 72, 0) 0%, #A182FF 45.99%, rgba(27, 24, 72, 0) 100%);
}
.features .feature-card p {
  margin: 0;
  color: #d9d9d9;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
}

.results {
  padding: 100px 0;
}
@media (width <= 767px) {
  .results {
    padding: 80px 0;
  }
}
.results .results-card {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 30px;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #1B1848;
  padding: 30px;
  background-image: url("./assets/dots.png");
  background-repeat: no-repeat;
  background-position: 600px 0;
  background-size: 1607px 1283px;
}
@media (width <= 1023px) {
  .results .results-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
.results .results-media {
  border-radius: 12px;
  overflow: hidden;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (width <= 1023px) {
  .results .results-media {
    height: 300px;
    width: 100%;
  }
}
.results .results-media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.results .results-media .play_btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}
.results .results-media .play_btn:hover {
  background: rgba(27, 24, 72, 0.4);
}
.results .results-media .play_btn:hover svg {
  scale: 1.1;
}
.results .results-media .play_btn:hover path {
  fill: #8D67FF;
}
.results .results-media .play_btn svg, .results .results-media .play_btn path {
  transition: all 0.2s ease;
}
.results .results-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
@media (width <= 1023px) {
  .results .results-content {
    display: contents;
  }
}
.results .btn_round_blue {
  margin-bottom: 20px;
}
@media (width <= 1023px) {
  .results .btn_round_blue {
    order: -1;
    margin-bottom: 0;
  }
}
.results h2 {
  font-family: "IBM Plex Mono", sans-serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 1;
  letter-spacing: -0.08em;
  color: #fff;
  margin: 0;
}
@media (width <= 1023px) {
  .results h2 {
    font-size: 34px;
  }
}
.results p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  color: #d9d9d9;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.9;
  color: #fff;
}
.check-list li {
  position: relative;
  padding-left: 28px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  color: #a0b3ff;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_267_354)'%3E%3Cpath d='M8.29216 1.26652C8.68269 0.876003 9.31667 0.876003 9.7072 1.26652L11.4728 3.03215H13.9533C14.5056 3.03215 14.9533 3.47986 14.9533 4.03215V6.51262L16.7336 8.29289C17.1237 8.68336 17.1238 9.31652 16.7336 9.70695L14.9533 11.4872V13.9687C14.9532 14.5209 14.5055 14.9687 13.9533 14.9687H11.4719L9.7072 16.7333C9.31667 17.1238 8.68269 17.1238 8.29216 16.7333L6.52751 14.9687H4.01677C3.4646 14.9686 3.01683 14.5209 3.01677 13.9687V11.457L1.26677 9.70695C0.876245 9.31643 0.876245 8.68341 1.26677 8.29289L3.01677 6.54191V4.03215C3.01677 3.47992 3.46457 3.03224 4.01677 3.03215H6.52654L8.29216 1.26652Z' fill='%2315ADFA'/%3E%3Cpath d='M11.9654 6.39132C12.2554 6.10133 12.7255 6.10133 13.0155 6.39132C13.302 6.67774 13.3055 7.13995 13.0261 7.43069L9.07352 12.3714C9.06781 12.3785 9.06172 12.3853 9.05526 12.3918C8.76528 12.6818 8.29512 12.6818 8.00513 12.3918L5.38497 9.77162C5.09498 9.48164 5.09498 9.01148 5.38497 8.7215C5.67495 8.43151 6.14511 8.43151 6.4351 8.7215L8.50782 10.7942L11.9457 6.41353C11.9518 6.40574 11.9584 6.39832 11.9654 6.39132Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_267_354'%3E%3Crect width='18' height='18' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 105px 40px 154px;
  text-align: center;
  border-radius: 10px;
  border: 1px solid #1B1848;
  background: #050B21;
  background-image: url("./assets/dots.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1607px 1283px;
  position: relative;
}
@media (width <= 767px) {
  .cta {
    padding: 60px 20px;
  }
}
.cta::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url("./assets/cta_light.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  pointer-events: none;
  user-select: none;
}
.cta h2 {
  color: #FFF;
  text-align: center;
  font-family: "IBM Plex Mono";
  font-size: 54px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -4.32px;
  margin: 0 0 37px;
}
@media (width <= 767px) {
  .cta h2 {
    margin-bottom: 20px;
    font-size: 34px;
  }
}
.cta p {
  max-width: 800px;
  color: #D9D9D9;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin: 0;
}
.cta button {
  margin-top: 100px;
  max-height: 62px;
}
@media (width <= 767px) {
  .cta button {
    margin-top: 40px;
  }
}

.footer {
  margin-top: 88px;
  padding: 0 0 30px;
  border: none;
}
.footer .footer-top,
.footer .footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
.footer .footer-top {
  padding-bottom: 20px;
  margin-bottom: 30px;
}
@media (width <= 767px) {
  .footer .footer-top {
    flex-direction: column;
    align-items: center;
  }
}
.footer .footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (width <= 767px) {
  .footer .footer-brand {
    align-items: center;
  }
}
.footer .footer-logo {
  width: 362px;
  height: 128px;
  font-size: 151px;
}
@media (width <= 767px) {
  .footer .footer-logo {
    width: 144px;
    height: 60px;
    font-size: 60px;
  }
}
.footer .footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer .footer-contact a:not(.button) {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  text-align: right;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer .footer-contact a:not(.button):hover {
  color: #a0b3ff;
}
.footer .footer-contact .button {
  margin-top: 22px;
  max-height: 52px;
}
.footer .footer-contact .button:hover span {
  line-height: 42px;
}
.footer .footer-contact .button span {
  line-height: 52px;
}
.footer .footer-contact p,
.footer .footer-bottom p,
.footer .footer-links {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.4;
}
.footer .footer-bottom {
  padding-top: 28px;
  position: relative;
}
@media (width < 1200px) {
  .footer .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
}
.footer .footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #1B1848 0%, #6560B7 49.46%, #1B1848 100%);
}
.footer .footer-links {
  display: flex;
  align-items: center;
  gap: 30px;
  text-align: right;
}
@media (width <= 479px) {
  .footer .footer-links {
    text-align: left;
    flex-direction: column;
  }
}
.footer .footer-links a {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  text-align: right;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}
@media (width <= 767px) {
  .footer .footer-links a {
    text-align: left;
    font-size: 14px;
  }
}
.footer .footer-links a:hover {
  color: #a0b3ff;
}

dialog {
  z-index: 100;
  padding: 0;
  border: none;
  animation: dialog 300ms ease forwards 1;
  will-change: scale, opacity;
  background-color: transparent;
  transform: translateX(0);
}
@media (width <= 767px) {
  dialog {
    max-width: 100vw;
    max-height: 100vh;
  }
}
dialog::backdrop {
  opacity: 0;
  will-change: opacity;
  background: rgba(2, 8, 28, 0.9);
  animation: backdrop 500ms ease forwards 1;
}
dialog[open=""] {
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}
dialog[open=""]::backdrop {
  opacity: 1;
}
dialog .dialog_wrapper {
  overflow: auto;
  position: relative;
  max-height: 100%;
  overscroll-behavior: contain;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.08);
  background: #1C285A;
  border-radius: 10px;
  padding: 40px;
  max-width: 100vw;
  width: fit-content;
}
@media (width <= 1023px) {
  dialog .dialog_wrapper {
    width: 100vw;
    padding: 40px 16px;
  }
}
@media (width <= 767px) {
  dialog .dialog_wrapper {
    box-shadow: none;
    height: 100vh;
    border-radius: 0;
  }
}
dialog .dialog_close {
  cursor: pointer;
  background: none;
  outline: none;
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-left: auto;
  color: #000;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  transition: all 0.2s ease;
}

#video-modal .dialog_content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
#video-modal iframe {
  margin: 0 auto;
  max-width: calc(100vw - 80px);
  aspect-ratio: 16/9;
  border-radius: 10px;
  height: auto;
  max-height: calc(100vh - 120px);
}

.dialog_form_wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.dialog_form_wrapper h2 {
  font-family: "IBM Plex Mono", sans-serif;
  font-weight: 400;
  font-size: 54px;
  line-height: 1;
  letter-spacing: -0.08em;
  color: #fff;
  margin: 0;
  padding: 0 0 40px;
  position: relative;
  width: 100%;
  text-align: center;
}
@media (width <= 767px) {
  .dialog_form_wrapper h2 {
    font-size: 40px;
  }
}
.dialog_form_wrapper h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background-image: url("./assets/form_title_bg.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
}
.dialog_form_wrapper form {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 867px;
  max-width: 100%;
}
.dialog_form_wrapper input {
  color: #fff;
  border-radius: 0px;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid #404b72;
  padding: 18px 21px;
  line-height: 1.4;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  outline: none;
  width: 100%;
}
.dialog_form_wrapper input:focus {
  border-color: #fff;
}
.dialog_form_wrapper input::placeholder {
  color: #fff;
}
.dialog_form_wrapper button {
  width: fit-content;
  margin-top: 22px;
  max-height: 52px;
}
.dialog_form_wrapper button:hover span {
  line-height: 42px;
}
.dialog_form_wrapper button span {
  line-height: 52px;
}
.dialog_form_wrapper .checkbox {
  display: flex;
  align-items: flex-start;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-align: justify;
  line-height: 16px;
  gap: 10px;
}
.dialog_form_wrapper .checkbox input {
  accent-color: #c7b4ff;
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin: 0;
}
.dialog_form_wrapper .checkbox a {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #c7b4ff;
  transition: color 0.2s ease;
}
.dialog_form_wrapper .checkbox a:hover {
  color: #fff;
  text-decoration: none;
}
.dialog_form_wrapper .captcha .captcha_text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-align: justify;
  color: #fff;
  margin-bottom: 2px;
}
.dialog_form_wrapper .captcha img {
  display: block;
  margin-bottom: 2px;
}

@keyframes dialog {
  from {
    transform: translateX(-100vw);
    opacity: 0;
  }
}
@keyframes backdrop {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}