@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("./fonts/space-grotesk-latin-variable.woff2")
    format("woff2-variations");
}
:root {
  --bg: #07070a;
  --violet: #5b00f7;
  --violet2: #8f54ff;
  --white: #f5f3fa;
  --muted: #a49dad;
  --line: rgba(255, 255, 255, 0.055);
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--white);
  font-family: "Space Grotesk", system-ui, sans-serif;
}
body {
  overflow-x: hidden;
}
.opx-shell {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}
.opx-grid {
  position: absolute;
  inset: 0;
  z-index: -4;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(
    to bottom,
    black 10%,
    rgba(0, 0, 0, 0.8),
    transparent 95%
  );
}
.opx-aurora {
  position: absolute;
  z-index: -3;
  width: 70vw;
  height: 70vw;
  right: -18vw;
  top: -38vw;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(91, 0, 247, 0.4),
    rgba(91, 0, 247, 0) 68%
  );
  filter: blur(10px);
  animation: aurora 9s ease-in-out infinite;
}
.opx-noise {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.025;
  pointer-events: none;
  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='.9'/%3E%3C/svg%3E");
}
.opx-header {
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6.1vw;
  border-bottom: 1px solid var(--line);
}
.opx-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.opx-brand svg {
  display: block;
  flex: 0 0 auto;
  width: 66px;
  color: var(--violet);
  opacity: 1 !important;
  visibility: visible !important;
}
.opx-status {
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: #c2b2e9;
}
.opx-status i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: #a574ff;
  box-shadow: 0 0 12px #a574ff;
  animation: blink 2s infinite;
}
.opx-hero {
  min-height: calc(100svh - 220px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  padding: 40px 6.1vw 70px;
}
.opx-copy {
  position: relative;
  z-index: 2;
}
.opx-kicker {
  margin: 0 0 24px;
  color: #928a9f;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.17em;
}
.opx-copy h1 {
  margin: 0;
  font-size: clamp(62px, 6.4vw, 110px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 500;
}
.opx-lead {
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.opx-contact-trigger,
.opx-submit {
  border: 0;
  color: #fff;
  background: linear-gradient(100deg, #5200e8, #6c00ff 64%, #8f37ff);
  cursor: pointer;
  font: 600 11px "Space Grotesk";
  letter-spacing: 0.1em;
}
.opx-contact-trigger {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 232px;
  height: 60px;
  padding: 0 26px;
  margin-top: 42px;
  border-radius: 999px;
  box-shadow: 0 16px 42px rgba(91, 0, 247, 0.34);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.opx-contact-trigger:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 22px 54px rgba(91, 0, 247, 0.52);
}
.opx-contact-trigger b,
.opx-submit b {
  font-size: 15px;
}
.opx-trust {
  margin: 16px 0 0;
  color: #948c9c;
  font-size: 8px;
  letter-spacing: 0.12em;
}
.opx-portal-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 580px;
}
.opx-portal {
  width: min(38vw, 540px);
  aspect-ratio: 1;
  border-radius: 47% 45% 49% 48% / 45% 48% 47% 50%;
  background:
    radial-gradient(circle at center, var(--bg) 0 35%, transparent 36%),
    conic-gradient(from 210deg, #2a006e, #5600ef, #8f54ff, #5100cf, #2a006e);
  filter: drop-shadow(0 0 45px rgba(91, 0, 247, 0.48));
  animation: portal 8s ease-in-out infinite;
  will-change: transform, border-radius;
}
.opx-orbit {
  position: absolute;
  border: 1px solid rgba(143, 84, 255, 0.14);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}
.opx-orbit-a {
  width: 82%;
  aspect-ratio: 1;
}
.opx-orbit-b {
  width: 96%;
  aspect-ratio: 1;
  animation-direction: reverse;
  animation-duration: 26s;
}
.opx-portal-wrap:after {
  content: "";
  position: absolute;
  width: 32%;
  height: 10%;
  bottom: 10%;
  background: rgba(91, 0, 247, 0.35);
  filter: blur(50px);
  border-radius: 50%;
}
footer {
  position: absolute;
  bottom: 36px;
  left: 6.1vw;
  color: #8f8798;
  font-size: 9px;
  letter-spacing: 0.13em;
}
footer span {
  padding: 0 18px;
}
.opx-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.35s ease,
    visibility 0.35s;
}
.opx-modal.is-open {
  visibility: visible;
  opacity: 1;
}
.opx-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(3, 3, 6, 0.76);
  backdrop-filter: blur(16px);
  cursor: pointer;
}
.opx-panel {
  position: relative;
  width: min(720px, 100%);
  max-height: calc(100svh - 36px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(143, 84, 255, 0.45) transparent;
  padding: 36px 48px 30px;
  border: 1px solid rgba(143, 84, 255, 0.34);
  border-radius: 32px;
  background: #0c0b10;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.75);
  transform: translateY(28px) scale(0.96);
  transition: transform 0.45s cubic-bezier(0.2, 0.75, 0.2, 1);
}
.is-open .opx-panel {
  transform: none;
}
.opx-panel-glow {
  position: absolute;
  width: 430px;
  height: 430px;
  right: -220px;
  top: -220px;
  background: radial-gradient(circle, rgba(91, 0, 247, 0.5), transparent 68%);
  pointer-events: none;
}
.opx-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.opx-panel-head svg {
  width: 48px;
  color: var(--violet);
}
.opx-close {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: none;
  color: #bbb2c5;
  font-size: 30px;
  cursor: pointer;
  transition:
    color 0.2s,
    background 0.2s,
    transform 0.2s;
}
.opx-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  transform: rotate(6deg);
}
.opx-panel-kicker {
  margin: 24px 0 16px;
  color: #a98cff;
  font-size: 9px;
  letter-spacing: 0.18em;
}
.opx-panel h2 {
  margin: 0;
  font-size: 46px;
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 500;
}
.opx-panel-intro {
  max-width: 540px;
  margin: 18px 0 22px;
  color: #9d96a7;
  font-size: 13px;
  line-height: 1.6;
}
.opx-form {
  display: grid;
  gap: 13px;
}
.opx-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.opx-form label:not(.opx-consent) {
  display: block;
  padding: 12px 15px 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.045);
  transition:
    border-color 0.2s,
    background 0.2s;
}
.opx-form label:focus-within {
  border-color: rgba(143, 84, 255, 0.75);
  background: rgba(91, 0, 247, 0.07);
}
.opx-form label > span {
  display: block;
  color: #9b93a3;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.opx-form label em {
  font-style: normal;
  opacity: 0.6;
}
.opx-form input,
.opx-form textarea {
  width: 100%;
  margin-top: 5px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #f5f3fa;
  font: 400 13px "Space Grotesk";
}
.opx-form textarea {
  height: 64px;
  resize: vertical;
}
.opx-hp {
  position: absolute !important;
  left: -9999px !important;
}
.opx-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #9991a1;
  font-size: 9px;
  line-height: 1.5;
}
.opx-consent input {
  width: 15px;
  height: 15px;
  margin: 1px 0 0;
  accent-color: var(--violet);
}
.opx-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  transition:
    filter 0.2s,
    transform 0.2s;
}
.opx-submit:hover {
  filter: brightness(1.14);
  transform: translateY(-2px);
}
.opx-submit:disabled {
  opacity: 0.55;
  cursor: wait;
}
.opx-form-status {
  min-height: 16px;
  margin: 0;
  text-align: center;
  color: #bba9e8;
  font-size: 11px;
}
.opx-form-status.is-error {
  color: #ff8797;
}
.opx-form-status.is-success {
  color: #7ee0b4;
}
.opx-security {
  margin: 0;
  text-align: center;
  color: #8f8798;
  font-size: 7px;
  letter-spacing: 0.08em;
}
.opx-turnstile {
  margin: auto;
}
.body-modal-open {
  overflow: hidden;
}
.opx-contact-trigger:focus-visible,
.opx-submit:focus-visible,
.opx-close:focus-visible,
.opx-form input:focus-visible,
.opx-form textarea:focus-visible,
.opx-consent input:focus-visible {
  outline: 2px solid #b896ff;
  outline-offset: 3px;
}
@keyframes portal {
  0%,
  100% {
    transform: rotate(0) scale(1);
    border-radius: 47% 45% 49% 48% / 45% 48% 47% 50%;
  }
  50% {
    transform: rotate(3deg) scale(1.045, 0.985);
    border-radius: 43% 50% 45% 52% / 49% 43% 51% 45%;
  }
}
@keyframes aurora {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.65;
  }
  50% {
    transform: translate(-5vw, 3vw);
    opacity: 1;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes blink {
  50% {
    opacity: 0.35;
    transform: scale(0.8);
  }
}
@media (max-width: 760px) {
  .opx-header {
    height: 92px;
    padding: 0 max(24px, env(safe-area-inset-right)) 0
      max(24px, env(safe-area-inset-left));
    border: 0;
  }
  .opx-brand {
    gap: 12px;
    font-size: 18px;
  }
  .opx-brand svg {
    width: 48px;
  }
  .opx-status {
    display: none;
  }
  .opx-hero {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
    align-items: stretch;
    min-height: auto;
    padding: 6px 24px 120px;
  }
  .opx-portal-wrap {
    min-height: 315px;
  }
  .opx-portal {
    width: 270px;
  }
  .opx-orbit-a {
    width: 300px;
  }
  .opx-orbit-b {
    width: 330px;
  }
  .opx-kicker {
    margin: 24px 0 20px;
    font-size: 8px;
  }
  .opx-copy h1 {
    font-size: 49px;
    line-height: 1.02;
  }
  .opx-lead {
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.6;
  }
  .opx-desktop {
    display: none;
  }
  .opx-contact-trigger {
    width: 100%;
    margin-top: 36px;
  }
  .opx-trust {
    text-align: center;
  }
  .opx-grid {
    background-size: 84px 84px;
    opacity: 0.45;
  }
  .opx-aurora {
    width: 150vw;
    height: 150vw;
    right: -70vw;
    top: -75vw;
  }
  footer {
    position: relative;
    left: auto;
    bottom: auto;
    margin: -74px 24px 28px;
    font-size: 7px;
  }
  footer span {
    padding: 0 8px;
  }
  .opx-panel {
    padding: 24px max(24px, env(safe-area-inset-right))
      max(24px, env(safe-area-inset-bottom))
      max(24px, env(safe-area-inset-left));
    border-radius: 28px;
  }
  .opx-panel-head svg {
    width: 38px;
  }
  .opx-panel-kicker {
    margin-top: 18px;
    font-size: 8px;
    letter-spacing: 0.12em;
  }
  .opx-panel h2 {
    font-size: 35px;
  }
  .opx-panel-intro {
    font-size: 12px;
  }
  .opx-row {
    grid-template-columns: 1fr;
  }
  .opx-form textarea {
    height: 58px;
  }
  .opx-security {
    line-height: 1.5;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
