:root {
  --bg: #0b0b0e;
  --bg-soft: #121218;
  --fg: #eaeaf2;
  --muted: #a6a6b3;
  --accent: #8b5cf6;
  --accent-2: #06b6d4;
  --radius: 18px;
  --shadow: 0 10px 40px rgba(0, 0, 0, .35);
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%;
  margin: 0
}

body {
  color: var(--fg);
  background: var(--bg);
  font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Inter, "Helvetica Neue", Arial, Noto Sans, "Apple Color Emoji", "Segoe UI Emoji";
  overflow-x: hidden;
}

#space {
  position: fixed;
  inset: 0;
  display: block;
  z-index: 0;
  background: transparent
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .06;
  mix-blend-mode: overlay;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="120" viewBox="0 0 120 120"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency=".8" numOctaves="2" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n)" opacity=".9"/></svg>');
  animation: move 12s linear infinite;
  z-index: 1
}

@keyframes move {
  from {
    transform: translate(0, 0)
  }

  to {
    transform: translate(-120px, -120px)
  }
}

.wrap {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 64px);
  position: relative;
  z-index: 2;
}

.card {
  width: min(900px, 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: saturate(140%) blur(8px);
  padding: clamp(20px, 4vw, 40px);
  position: relative;
  overflow: hidden;
}

.card:before {
  content: "";
  position: absolute;
  inset: auto -30% -30% auto;
  width: 60%;
  height: 60%;
  background: radial-gradient(closest-side, rgba(139, 92, 246, .25), transparent 60%);
  transform: translate(20%, 20%);
  filter: blur(40px);
  pointer-events: none;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.logo {
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .9rem;
  color: var(--muted);
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  margin-left: 6px;
  box-shadow: 0 0 0 0 rgba(6, 182, 212, .7);
  animation: pulse 2.2s infinite
}

@keyframes pulse {
  60% {
    box-shadow: 0 0 0 12px rgba(6, 182, 212, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(6, 182, 212, 0)
  }
}

.hero {
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: .9rem;
  letter-spacing: .04em;
  text-transform: uppercase
}

.eyebrow .line {
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--muted));
}

.glitch {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  font-weight: 800;
  margin: 12px 0 10px;
  letter-spacing: .01em;
  display: inline-block;
  text-shadow: 2px 0 var(--accent), -2px 0 var(--accent-2);
  filter: drop-shadow(0 8px 28px rgba(139, 92, 246, .25));
}

.sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 60ch
}

form {
  margin-top: 28px;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

@media (max-width: 720px) {
  .row {
    grid-template-columns: 1fr
  }
}

label {
  display: block;
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 6px
}

input,
textarea {
  width: 100%;
  padding: 14px 14px;
  color: var(--fg);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}

input:focus,
textarea:focus {
  border-color: rgba(139, 92, 246, .6);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, .20)
}

textarea {
  min-height: 130px;
  resize: vertical
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--muted)
}

.consent input {
  width: auto;
  margin-top: 3px
}

.actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap
}

.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 14px 18px;
  font-weight: 700;
  letter-spacing: .02em;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #0a0a0e;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(139, 92, 246, .25), 0 6px 18px rgba(6, 182, 212, .18);
  transition: transform .06s ease;
  will-change: transform;
}

.btn:disabled {
  opacity: .6;
  cursor: not-allowed;
  filter: grayscale(1)
}

.btn:active {
  transform: translateY(1px)
}

.note {
  font-size: .85rem;
  color: var(--muted)
}

.note a{
  color: var(--accent-2);
  text-decoration: none;
  transition: .2s ease;
}

.note a:hover{
  color: var(--accent);
  text-shadow: 0 0 8px rgba(139, 92, 246, .6);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(10px);
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(16, 16, 24, .85);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0)
}

footer {
  margin-top: 22px;
  color: var(--muted);
  font-size: .85rem;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap
}

footer a {
  color: var(--muted);
  text-underline-offset: 3px
}