:root {
  --bg: #070709;
  --bg-raised: #0d0d11;
  --text: #f7f7f9;
  --muted: #aaa8b2;
  --muted-strong: #c8c6ce;
  --line: rgba(255, 255, 255, 0.105);
  --line-strong: rgba(255, 255, 255, 0.17);
  --purple: #7b42ff;
  --purple-bright: #9a6aff;
  --focus: #a882ff;
  --font: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100svh;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

button,
input { font: inherit; }

button,
a { -webkit-tap-highlight-color: transparent; }

.stage {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  isolation: isolate;
}

.stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 46% at 50% 18%, rgba(123, 66, 255, 0.075), transparent 68%),
    linear-gradient(180deg, rgba(255,255,255,0.012), transparent 38%);
}

.stage__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.52;
  transform: translate3d(0,0,0);
}

.stage__glow--primary {
  width: min(68vw, 1000px);
  height: min(42vw, 620px);
  left: 50%;
  top: -24%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(124, 65, 255, 0.20), rgba(88, 30, 220, 0.07) 42%, transparent 72%);
}

.stage__glow--secondary {
  width: 420px;
  height: 420px;
  right: -260px;
  bottom: -240px;
  background: rgba(115, 55, 255, 0.08);
}

.stage__ring {
  position: absolute;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(157, 113, 255, 0.095);
  transform: translateX(-50%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.86), rgba(0,0,0,.18) 52%, transparent 80%);
}

.stage__ring--one {
  width: min(1120px, 86vw);
  height: min(590px, 46vw);
  top: -355px;
}

.stage__ring--two {
  width: min(1450px, 110vw);
  height: min(770px, 60vw);
  top: -455px;
  opacity: 0.55;
}

.stage__grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.hero {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - 88px);
  display: grid;
  place-items: center;
  padding: clamp(64px, 9vh, 112px) 24px clamp(76px, 10vh, 118px);
}

.hero__content {
  width: min(920px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translateY(-1.6vh);
}

.hero__logo {
  display: block;
  width: clamp(270px, 34vw, 455px);
  height: auto;
  user-select: none;
  filter: drop-shadow(0 20px 52px rgba(73, 27, 165, 0.09));
}

.hero__tagline {
  margin: clamp(24px, 3.4vh, 36px) 0 0;
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.042em;
  font-weight: 540;
  color: #f5f4f8;
}

.hero__rule {
  width: 62px;
  height: 1px;
  margin: clamp(29px, 4vh, 42px) 0 clamp(28px, 3.8vh, 40px);
  background: linear-gradient(90deg, transparent, rgba(151, 104, 255, 0.95), transparent);
  box-shadow: 0 0 24px rgba(123, 66, 255, 0.38);
}

.hero__proposition {
  max-width: 820px;
  margin: 0;
  color: var(--muted-strong);
  font-size: clamp(18px, 1.65vw, 22px);
  line-height: 1.64;
  letter-spacing: -0.017em;
  font-weight: 400;
  text-wrap: balance;
}

.cta {
  margin-top: clamp(36px, 5vh, 52px);
  min-height: 58px;
  padding: 0 25px 0 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 999px;
  color: #09090c;
  background: #f7f7f8;
  box-shadow:
    0 1px 0 rgba(255,255,255,.95) inset,
    0 14px 40px rgba(0,0,0,.24),
    0 0 0 0 rgba(125,66,255,0);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}

.cta svg {
  width: 18px;
  height: 18px;
  transition: transform .22s ease;
}

.cta:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow:
    0 1px 0 rgba(255,255,255,1) inset,
    0 18px 46px rgba(0,0,0,.3),
    0 0 42px rgba(119,62,255,.10);
}

.cta:hover svg { transform: translateX(2px); }

.cta:focus-visible,
.interest__close:focus-visible,
.submit:focus-visible,
.footer a:focus-visible,
input:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 4px;
}

.footer {
  position: relative;
  z-index: 2;
  min-height: 88px;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #65636d;
  font-size: 12px;
  letter-spacing: .01em;
}

.footer a {
  color: #787580;
  text-decoration: none;
  transition: color .18s ease;
}

.footer a:hover { color: #b8b5bf; }

.interest {
  width: min(680px, calc(100% - 28px));
  max-height: calc(100svh - 28px);
  padding: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  color: var(--text);
  background: rgba(15,15,20,.98);
  box-shadow: 0 36px 120px rgba(0,0,0,.72), 0 0 80px rgba(91,37,210,.10);
  overflow: auto;
}

.interest::backdrop {
  background: rgba(2,2,4,.74);
  backdrop-filter: blur(12px);
}

.interest[open] { animation: dialog-in .24s cubic-bezier(.2,.8,.2,1); }

.interest__surface {
  position: relative;
  padding: clamp(30px, 5vw, 52px);
}

.interest__surface::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 150px;
  pointer-events: none;
  background: radial-gradient(ellipse 65% 120% at 50% -10%, rgba(119,62,255,.14), transparent 72%);
}

.interest__close {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 50%;
  background: rgba(255,255,255,.035);
  color: #aaa8b1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.interest__close:hover {
  background: rgba(255,255,255,.07);
  color: #fff;
  border-color: rgba(255,255,255,.14);
}

.interest__close svg { width: 18px; height: 18px; }

.interest__intro { position: relative; z-index: 1; padding-right: 40px; }

.interest__eyebrow {
  margin: 0 0 14px;
  color: #a77fff;
  font-size: 11px;
  line-height: 1;
  font-weight: 680;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.interest h2 {
  margin: 0;
  max-width: 500px;
  color: #f7f6f9;
  font-size: clamp(29px, 5vw, 40px);
  line-height: 1.08;
  letter-spacing: -.04em;
  font-weight: 590;
}

.interest__intro > p:last-child {
  margin: 18px 0 0;
  max-width: 535px;
  color: #9e9ba5;
  font-size: 15px;
  line-height: 1.6;
}

.interest__form {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.field { min-width: 0; }

.field--wide { grid-column: 1 / -1; }

.field label {
  display: block;
  margin-bottom: 9px;
  color: #c8c5cd;
  font-size: 12px;
  font-weight: 560;
}

.field__optional {
  color: #77747e;
  font-weight: 450;
}

.field input {
  width: 100%;
  min-height: 51px;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 12px;
  color: #f5f4f7;
  background: rgba(255,255,255,.035);
  box-shadow: 0 1px 0 rgba(255,255,255,.025) inset;
  outline: none;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.field input:hover { border-color: rgba(255,255,255,.17); }

.field input:focus {
  border-color: rgba(155,111,255,.72);
  background: rgba(255,255,255,.048);
  box-shadow: 0 0 0 3px rgba(123,66,255,.11);
}

.field.is-invalid input { border-color: rgba(244, 113, 122, .72); }

.field__error {
  display: block;
  min-height: 14px;
  margin-top: 6px;
  color: #e88f98;
  font-size: 11px;
  line-height: 1.25;
}

.field--trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.interest__actions {
  grid-column: 1 / -1;
  margin-top: 3px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.interest__privacy {
  margin: 0;
  max-width: 370px;
  color: #76737d;
  font-size: 11px;
  line-height: 1.55;
}

.submit {
  flex: 0 0 auto;
  min-height: 48px;
  min-width: 154px;
  padding: 0 18px;
  border: 0;
  border-radius: 11px;
  color: #09090c;
  background: #f5f5f7;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
  position: relative;
  transition: transform .18s ease, background .18s ease, opacity .18s ease;
}

.submit:hover { transform: translateY(-1px); background: #fff; }
.submit:disabled { cursor: wait; opacity: .72; transform: none; }

.submit__spinner {
  display: none;
  width: 15px;
  height: 15px;
  margin: auto;
  border: 2px solid rgba(10,10,13,.24);
  border-top-color: #0a0a0d;
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

.submit.is-loading .submit__label { display: none; }
.submit.is-loading .submit__spinner { display: block; }

.form-status {
  grid-column: 1 / -1;
  margin: -5px 0 0;
  min-height: 18px;
  color: #a7a4ae;
  font-size: 12px;
  line-height: 1.5;
}

.form-status.is-success { color: #bba4ef; }
.form-status.is-error { color: #eb9ba3; }

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(14px) scale(.988); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 700px) {
  .hero {
    min-height: calc(100svh - 76px);
    padding: 62px 22px 68px;
  }

  .hero__content { transform: translateY(-1vh); }
  .hero__logo { width: min(76vw, 370px); }
  .hero__tagline { font-size: clamp(27px, 8vw, 34px); }
  .hero__proposition { font-size: 17px; line-height: 1.58; text-wrap: pretty; }
  .hero__rule { margin-top: 30px; margin-bottom: 30px; }
  .cta { margin-top: 38px; min-height: 55px; font-size: 14px; }

  .footer {
    min-height: 76px;
    width: calc(100% - 36px);
    font-size: 11px;
  }

  .interest { border-radius: 22px; }
  .interest__surface { padding: 34px 22px 28px; }
  .interest__close { top: 15px; right: 15px; }
  .interest__intro { padding-right: 34px; }
  .interest__form { grid-template-columns: 1fr; gap: 14px; margin-top: 30px; }
  .interest__actions { flex-direction: column; align-items: stretch; gap: 17px; padding-top: 20px; }
  .submit { width: 100%; }
}

@media (max-width: 430px) {
  .hero { padding-left: 19px; padding-right: 19px; }
  .hero__logo { width: 78vw; }
  .hero__proposition { font-size: 16.5px; }
  .footer { flex-direction: column; justify-content: center; gap: 7px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
