:root {
  --ink: #05070d;
  --ink-2: #0b1020;
  --panel: rgba(12, 16, 31, 0.82);
  --blue: #5c75fe;
  --blue-soft: #8d9cff;
  --mint: #42c7ab;
  --mint-soft: #83ddcd;
  --white: #ffffff;
  --paper: #f8fafc;
  --muted: #b8c0d4;
  --line: rgba(255, 255, 255, 0.12);
  --success: #83ddcd;
  --error: #ff8f9c;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  margin: 0;
  color: var(--white);
  font-family: "Outfit", Arial, sans-serif;
  background:
    radial-gradient(circle at 12% 18%, rgba(92, 117, 254, 0.22), transparent 32%),
    radial-gradient(circle at 86% 18%, rgba(66, 199, 171, 0.2), transparent 28%),
    linear-gradient(135deg, #05070d 0%, #0b1020 52%, #07090f 100%);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 76%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(120deg, transparent 0 36%, rgba(92, 117, 254, 0.1) 36% 36.4%, transparent 36.4% 100%),
    linear-gradient(54deg, transparent 0 62%, rgba(66, 199, 171, 0.09) 62% 62.5%, transparent 62.5% 100%);
  opacity: 0.8;
}

.coming-soon {
  min-height: calc(100vh - 72px);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 72px);
  padding: clamp(16px, 3vw, 34px);
  overflow: hidden;
  place-items: center;
}

.hero__ambient {
  position: absolute;
  width: min(38vw, 480px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  opacity: 0.55;
  animation: float 12s ease-in-out infinite;
}

.hero__ambient--one {
  top: 8%;
  left: -14%;
  background: radial-gradient(circle, rgba(92, 117, 254, 0.18), transparent 64%);
}

.hero__ambient--two {
  right: -16%;
  bottom: 4%;
  background: radial-gradient(circle, rgba(66, 199, 171, 0.17), transparent 66%);
  animation-delay: -5s;
}

.hero__shell {
  position: relative;
  width: min(1140px, 100%);
  padding: clamp(22px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(12, 16, 31, 0.94), rgba(5, 7, 13, 0.86)),
    linear-gradient(90deg, rgba(92, 117, 254, 0.11), rgba(66, 199, 171, 0.08));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.hero__shell::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--mint), transparent 82%);
}

.site-header,
.hero__grid,
.hero__signals {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(44px, 7vw, 82px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
}

.brand__logo {
  display: block;
  width: clamp(122px, 14vw, 164px);
  height: auto;
}

.site-header__tag {
  color: rgba(248, 250, 252, 0.68);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(260px, 0.82fr);
  gap: clamp(34px, 7vw, 82px);
  align-items: center;
}

.hero__content {
  max-width: 660px;
  animation: riseIn 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__eyebrow {
  margin: 0 0 16px;
  color: var(--mint-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 690px;
  margin: 0;
  color: var(--paper);
  font-size: clamp(2.15rem, 4.7vw, 4.15rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero__description {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  line-height: 1.72;
}

.notify-form {
  max-width: 600px;
  margin: 32px 0 0;
}

.notify-form label {
  display: block;
  margin-bottom: 9px;
  color: rgba(248, 250, 252, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
}

.notify-form__field {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 7px;
  border: 1px solid rgba(92, 117, 254, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(16px);
}

input {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  border: 0;
  border-radius: 6px;
  outline: 0;
  padding: 0 17px;
  color: var(--white);
  font: inherit;
  background: rgba(5, 7, 13, 0.84);
}

input::placeholder {
  color: rgba(248, 250, 252, 0.45);
}

input:focus {
  box-shadow: inset 0 0 0 1px rgba(66, 199, 171, 0.8);
}

button {
  min-height: 52px;
  border: 0;
  border-radius: 6px;
  padding: 0 24px;
  color: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(135deg, var(--blue), #5167df);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), background 220ms ease, opacity 180ms ease;
}

button:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #667dff, var(--blue));
}

button:active {
  transform: translateY(1px) scale(0.99);
}

button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.form-message {
  min-height: 26px;
  margin: 12px 0 0;
  font-size: 0.94rem;
  font-weight: 700;
}

.form-message.is-success {
  color: var(--success);
}

.form-message.is-error {
  color: var(--error);
}

.identity-panel {
  position: relative;
  min-height: 360px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 68% 20%, rgba(92, 117, 254, 0.26), transparent 38%),
    radial-gradient(circle at 26% 82%, rgba(66, 199, 171, 0.2), transparent 40%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.identity-panel::before {
  position: absolute;
  inset: 28px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
}

.identity-panel__mark {
  position: relative;
  width: min(100%, 260px);
  height: 176px;
  margin: 10px 0 44px auto;
}

.identity-panel__mark span {
  position: absolute;
  right: 0;
  display: block;
  height: 44px;
  border-radius: 8px 0 0 8px;
  transform: skewX(-18deg);
  animation: markShift 4s ease-in-out infinite;
}

.identity-panel__mark span:nth-child(1) {
  top: 16px;
  width: 210px;
  background: var(--blue);
}

.identity-panel__mark span:nth-child(2) {
  top: 68px;
  width: 154px;
  background: var(--mint);
  animation-delay: -1.2s;
}

.identity-panel__mark span:nth-child(3) {
  top: 120px;
  width: 96px;
  background: rgba(248, 250, 252, 0.9);
  animation-delay: -2.2s;
}

.identity-panel__line {
  width: 100%;
  height: 1px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
}

.identity-panel p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(248, 250, 252, 0.82);
  font-size: 0.88rem;
  font-weight: 700;
}

.identity-panel p::after {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  content: "";
  background: var(--mint);
}

.hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(34px, 6vw, 64px);
}

.hero__signals span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 9px 14px;
  color: rgba(248, 250, 252, 0.75);
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.045);
}

.site-footer {
  display: grid;
  min-height: 72px;
  padding: 18px;
  color: rgba(248, 250, 252, 0.58);
  font-size: 0.9rem;
  text-align: center;
  background: #04060a;
  place-items: center;
}

.site-footer p {
  margin: 0;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(18px, -16px, 0);
  }
}

@keyframes markShift {
  0%,
  100% {
    transform: translateX(0) skewX(-18deg);
  }

  50% {
    transform: translateX(-10px) skewX(-18deg);
  }
}

@media (max-width: 860px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .identity-panel {
    min-height: 270px;
  }

  .identity-panel__mark {
    margin-left: 0;
  }
}

@media (max-width: 620px) {
  .hero {
    padding: 14px;
  }

  .hero__shell {
    padding: 20px 16px 24px;
  }

  .site-header {
    align-items: flex-start;
    margin-bottom: 38px;
  }

  .site-header__tag {
    display: none;
  }

  .brand__logo {
    width: 122px;
  }

  h1 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .notify-form__field {
    grid-template-columns: 1fr;
  }

  input,
  button {
    min-height: 52px;
  }

  .identity-panel {
    min-height: 230px;
    padding: 20px;
  }

  .identity-panel__mark {
    height: 132px;
    margin-bottom: 22px;
  }

  .identity-panel__mark span {
    height: 34px;
  }

  .identity-panel__mark span:nth-child(1) {
    width: 168px;
  }

  .identity-panel__mark span:nth-child(2) {
    top: 56px;
    width: 124px;
  }

  .identity-panel__mark span:nth-child(3) {
    top: 96px;
    width: 78px;
  }
}

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