:root {
  --bg: #030817;
  --bg-2: #071127;
  --card: rgba(7, 17, 40, 0.72);
  --card-border: rgba(44, 112, 255, 0.28);
  --line: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.48);
  --blue: #1e66ff;
  --blue-2: #23b1ff;
  --container: 1280px;
  --header-h: 76px;
  --ticker-h: 44px;
  --transition: 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

.page {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  background: #020716;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 90%;
  filter: brightness(0.55) contrast(1.03) saturate(1);
  transform: scale(1.005);
  z-index: 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 55%, rgba(30, 102, 255, 0.18), transparent 32%),
    radial-gradient(circle at 80% 52%, rgba(88, 42, 255, 0.08), transparent 26%),
    linear-gradient(90deg, rgba(2, 8, 23, 0.95) 8%, rgba(2, 8, 23, 0.7) 40%, rgba(2, 8, 23, 0.3) 68%, rgba(2, 8, 23, 0.82) 100%),
    linear-gradient(180deg, rgba(2, 8, 23, 0.54) 0%, rgba(2, 8, 23, 0.12) 28%, rgba(2, 8, 23, 0.3) 100%);
  z-index: 1;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(49, 94, 184, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 94, 184, 0.07) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.1;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.42), transparent 85%);
  z-index: 1;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 1;
}

.hero__glow--left {
  width: 360px;
  height: 360px;
  left: 12%;
  top: 46%;
  background: rgba(32, 102, 255, 0.1);
}

.hero__glow--right {
  width: 280px;
  height: 280px;
  right: -4%;
  top: 34%;
  background: rgba(102, 0, 255, 0.06);
}

.hero__rings {
  position: absolute;
  inset: auto -18% 18% auto;
  width: 500px;
  height: 280px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  opacity: 0.24;
  z-index: 1;
}

.hero__rings::before,
.hero__rings::after {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero__rings::after {
  inset: 40px;
}

.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  z-index: 1;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.6) 0.7px, transparent 1px),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.5) 0.8px, transparent 1.1px),
    radial-gradient(circle at 40% 70%, rgba(255,255,255,0.5) 0.6px, transparent 1px),
    radial-gradient(circle at 82% 16%, rgba(255,255,255,0.4) 0.8px, transparent 1px);
  background-size: 260px 260px, 320px 320px, 240px 240px, 380px 380px;
  animation: noiseFloat 18s linear infinite;
}

.hero__container {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 96px), var(--container));
  margin: 0 auto;
  min-height: calc(100vh - var(--ticker-h));
  height: calc(100vh - var(--ticker-h));
  display: flex;
  flex-direction: column;
}

.header {
  position: relative;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 2px;
  padding-bottom: 12px;
}

.header::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(20, 60, 140, 0) 0%,
    rgba(58, 123, 255, 0.28) 12%,
    rgba(87, 156, 255, 0.42) 50%,
    rgba(58, 123, 255, 0.28) 88%,
    rgba(20, 60, 140, 0) 100%
  );
  box-shadow: 0 0 18px rgba(48, 119, 255, 0.16);
  pointer-events: none;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  width: 150px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(27, 116, 255, 0.14));
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 160px;
  height: 48px;
  padding: 0 18px;
  border-radius: 14px;

  background: linear-gradient(180deg, rgba(11, 24, 52, 0.9), rgba(8, 18, 40, 0.75));
  border: 1px solid rgba(88, 198, 255, 0.22);

  color: #dff6ff;
  font-size: 0.95rem;
  font-weight: 800;

  transition: all 0.3s ease;
}

.header__link:hover {
  transform: translateY(-2px);
  border-color: rgba(120, 220, 255, 0.45);
  box-shadow: 0 10px 22px rgba(0, 140, 255, 0.18);
}
.header__link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  color: #7ff0c8;
  flex-shrink: 0;
}

.header__link-icon svg {
  width: 100%;
  height: 100%;
}

.header__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  height: 42px;
  padding: 0 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2272ff 0%, #1a55dd 100%);
  box-shadow:
    0 12px 24px rgba(18, 78, 220, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.header__button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 28px rgba(18, 78, 220, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  filter: brightness(1.05);
}

.hero__content {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 560px;
  gap: 84px;
  align-items: center;
  padding: 18px 0 18px;
}

.hero__left {
  max-width: 500px;
  padding-top: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  background: rgba(8, 27, 73, 0.44);
  border: 1px solid rgba(36, 124, 255, 0.22);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 0 14px rgba(19, 102, 255, 0.06);
  color: #49d5ff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #19c9ff;
  box-shadow: 0 0 12px rgba(25, 201, 255, 0.6);
  animation: pulseDot 2.2s ease-in-out infinite;
}

.hero__title {
  margin-top: 18px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.1rem, 3.5vw, 3.45rem);
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.hero__title--soft {
  background: linear-gradient(180deg, #f7fbff 0%, #dcecff 46%, #bfdcff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__title--accent {
  background: linear-gradient(180deg, #eefcff 0%, #c8f3ff 50%, #8ee3ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__description {
  margin-top: 20px;
  max-width: 490px;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.82;
  letter-spacing: -0.01em;
}

.hero__description strong {
  color: #c7e0ff;
  font-weight: 700;
}

.hero__infos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
}

.info-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 600;
}

.info-pill__icon {
  width: 17px;
  height: 17px;
  color: #11ccff;
  flex-shrink: 0;
}

.info-pill__icon svg {
  width: 100%;
  height: 100%;
}

.scroll-indicator {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 20px;
}

.scroll-indicator__mouse {
  position: relative;
  width: 34px;
  height: 50px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  display: inline-flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-indicator__wheel {
  width: 4px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  animation: scrollWheel 2s ease-in-out infinite;
}

.scroll-indicator__text {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.hero__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.form-card {
  position: relative;
  width: 100%;
  max-width: 560px;
  border-radius: 20px;
  padding: 18px 22px 12px;
  background:
    linear-gradient(180deg, rgba(7, 16, 39, 0.9) 0%, rgba(7, 16, 39, 0.76) 100%);
  border: 1px solid rgba(35, 98, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 28px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(20, 70, 180, 0.04);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.form-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(63, 149, 255, 0.32), transparent);
}

.form-card__topline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #24d3ff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-card__topline span {
  width: 4px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #33dbff, #1d67ff);
  box-shadow: 0 0 16px rgba(44, 194, 255, 0.32);
}

.form-card__title {
  margin-top: 8px;
  font-size: clamp(1.45rem, 1.9vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 800;
  background: linear-gradient(90deg, #4facfe 0%, #007bff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.form-card__subtitle {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.form {
  margin-top: 14px;
}

.field + .field {
  margin-top: 8px;
}

.field label {
  display: inline-block;
  margin-bottom: 5px;
  color: rgba(220, 231, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.field__control {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(67, 110, 200, 0.24);
  background: rgba(22, 33, 74, 0.4);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition),
    background var(--transition);
}

.field__control:hover,
.field__control:focus-within {
  border-color: rgba(64, 158, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(30, 102, 255, 0.08);
  background: rgba(24, 37, 84, 0.54);
}

.field__control.is-invalid {
  border-color: rgba(255, 91, 91, 0.65);
  box-shadow: 0 0 0 4px rgba(255, 91, 91, 0.08);
}

.field__icon {
  position: absolute;
  left: 14px;
  width: 16px;
  height: 16px;
  color: rgba(133, 175, 255, 0.72);
  pointer-events: none;
}

.field__icon svg {
  width: 100%;
  height: 100%;
}

.field input,
.field select {
  width: 100%;
  height: 46px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  padding: 0 15px 0 42px;
  font-size: 0.88rem;
  font-weight: 600;
}

.field input::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

.field select {
  appearance: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.86);
  padding-right: 42px;
}

.field option {
  color: #fff;
  background: #091224;
}

.field__arrow {
  position: absolute;
  right: 14px;
  width: 14px;
  height: 14px;
  color: rgba(143, 179, 255, 0.78);
  pointer-events: none;
}

.field__arrow svg {
  width: 100%;
  height: 100%;
}

.field__error {
  display: block;
  min-height: 12px;
  margin-top: 4px;
  color: #ff8282;
  font-size: 0.75rem;
  font-weight: 600;
}

.form__submit {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 50px;
  margin-top: 4px;
  border-radius: 13px;
  background: linear-gradient(135deg, #2b78ff 0%, #1747c9 100%);
  color: #fff;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow:
    0 14px 22px rgba(29, 87, 232, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    filter var(--transition);
}

.form__submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow:
    0 18px 28px rgba(29, 87, 232, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.form__submit-flash {
  position: absolute;
  inset: 0 auto 0 -120%;
  width: 48%;
  background: linear-gradient(110deg, transparent 10%, rgba(255, 255, 255, 0.26) 48%, transparent 90%);
  transform: skewX(-18deg);
  animation: buttonSweep 4.2s ease-in-out infinite;
  z-index: -1;
}

.form__privacy {
  margin-top: 6px;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.72rem;
  font-weight: 600;
}

.ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--ticker-h);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(11, 29, 77, 0.44);
  backdrop-filter: blur(12px);
  overflow: hidden;
  z-index: 4;
}

.ticker__track {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: tickerMove 28s linear infinite;
}

.ticker__group {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 14px;
  height: var(--ticker-h);
  white-space: nowrap;
}

.ticker__group span {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ticker__fade {
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.ticker__fade--left {
  left: 0;
  background: linear-gradient(90deg, rgba(4, 11, 29, 0.95), transparent);
}

.ticker__fade--right {
  right: 0;
  background: linear-gradient(270deg, rgba(4, 11, 29, 0.95), transparent);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%) translateY(20px);
  min-width: 240px;
  max-width: calc(100vw - 32px);
  padding: 11px 14px;
  border-radius: 14px;
  background: rgba(10, 18, 39, 0.92);
  border: 1px solid rgba(64, 137, 255, 0.26);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  z-index: 50;
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(8px);
  animation: revealUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.reveal--1 { animation-delay: 0.12s; }
.reveal--2 { animation-delay: 0.24s; }
.reveal--3 { animation-delay: 0.36s; }
.reveal--4 { animation-delay: 0.48s; }
.reveal--5 { animation-delay: 0.6s; }

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes buttonSweep {
  0%, 50%, 100% {
    left: -120%;
  }
  20%, 30% {
    left: 130%;
  }
}

@keyframes pulseDot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.72;
  }
}

@keyframes scrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  40% {
    transform: translateY(9px);
    opacity: 0.3;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes noiseFloat {
  from {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-10px, 8px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 1280px) {
  .hero__container {
    width: min(calc(100% - 56px), var(--container));
  }

  .hero__content {
    grid-template-columns: minmax(0, 1fr) 520px;
    gap: 54px;
  }
}

@media (max-width: 1080px) {
  .hero {
    height: auto;
    min-height: 100vh;
  }

  .hero__container {
    height: auto;
    min-height: calc(100vh - var(--ticker-h));
    width: min(calc(100% - 28px), var(--container));
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 14px 0 74px;
  }

  .hero__left,
  .hero__right {
    max-width: 100%;
  }

  .hero__right {
    justify-content: flex-start;
  }

  .form-card {
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  :root {
    --header-h: 72px;
    --ticker-h: 46px;
  }

  .hero__container {
    width: min(calc(100% - 18px), var(--container));
  }

  .header {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0 12px;
}

.header__actions {
  width: auto;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__link {
  min-width: unset;
  height: 42px;
  padding: 0 14px;
  font-size: 0.84rem;
  border-radius: 12px;
  gap: 8px;
}

.header__link-icon {
  width: 18px;
  height: 18px;
}

.logo img {
  width: 118px;
}

  .hero__content {
    gap: 18px;
    padding: 8px 0 70px;
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero__description {
    font-size: 0.9rem;
    line-height: 1.72;
  }

  .hero__infos {
    gap: 10px 14px;
  }

  .info-pill {
    font-size: 0.8rem;
  }

  .scroll-indicator {
    margin-top: 18px;
  }

  .form-card {
    padding: 18px 12px 14px;
    border-radius: 16px;
  }

  .form-card__title {
    font-size: 1.45rem;
  }

  .form-card__subtitle {
    font-size: 0.86rem;
  }

  .field__control,
  .field input,
  .field select {
    min-height: 50px;
    height: 50px;
    font-size: 0.9rem;
  }

  .form__submit {
    min-height: 52px;
    font-size: 0.86rem;
  }

  .ticker__group span {
    font-size: 0.64rem;
    letter-spacing: 0.12em;
  }

  .hero__grid,
  .hero__rings {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}