:root {
  --background: hsl(270 50% 5%);
  --foreground: hsl(80 100% 95%);
  --muted: hsl(270 20% 66%);
  --card-bg: hsl(270 40% 10% / 0.55);
  --card-border: hsl(80 100% 70% / 0.2);
  --primary: hsl(80 100% 50%);
  --accent: hsl(280 80% 62%);
  --danger: hsl(0 85% 66%);
  --ok: hsl(145 72% 50%);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at 15% 20%, hsl(80 100% 50% / 0.18), transparent 35%),
    radial-gradient(circle at 80% 70%, hsl(280 80% 62% / 0.2), transparent 40%), var(--background);
  color: var(--foreground);
  font-family: "Inter", sans-serif;
}

.page {
  min-height: 100vh;
  padding: 56px 20px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 10;
}

.hero-card {
  width: min(920px, 100%);
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(145deg, var(--card-bg), hsl(270 40% 8% / 0.4));
  border: 1px solid var(--card-border);
  backdrop-filter: blur(18px);
  box-shadow:
    0 12px 45px hsl(270 50% 5% / 0.55),
    inset 0 1px 0 hsl(0 0% 100% / 0.08);
}

.hero-head {
  display: grid;
  justify-items: center;
  text-align: center;
}

.logo {
  width: 220px;
  max-width: 72vw;
  height: auto;
}

.badge {
  margin: 18px 0 10px;
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid hsl(80 100% 50% / 0.35);
  padding: 7px 14px;
  color: var(--primary);
  background: hsl(80 100% 50% / 0.09);
  font-weight: 600;
  font-size: 13px;
}

h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
}

.subtitle {
  margin: 12px 0 28px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 700px;
}

form {
  display: grid;
  gap: 16px;
}

.grid {
  display: grid;
  gap: 14px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: 1.1fr 0.55fr 1fr;
}

label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: var(--foreground);
  font-weight: 500;
}

input,
select {
  width: 100%;
  border: 1px solid hsl(270 25% 35%);
  background: hsl(270 30% 11% / 0.92);
  border-radius: 12px;
  height: 46px;
  color: var(--foreground);
  padding: 0 14px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input::placeholder {
  color: hsl(270 12% 55%);
}

input:focus,
select:focus {
  border-color: hsl(80 100% 55%);
  box-shadow: 0 0 0 3px hsl(80 100% 50% / 0.16);
}

.consent-row {
  margin-top: 6px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: hsl(80 100% 50%);
}

.consent-row span {
  font-size: 13px;
  line-height: 1.45;
}

button {
  margin-top: 4px;
  border: none;
  border-radius: 14px;
  height: 52px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  color: hsl(270 50% 10%);
  background: linear-gradient(135deg, hsl(80 100% 50%), hsl(120 78% 45%));
  box-shadow: 0 12px 35px hsl(80 100% 50% / 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 42px hsl(80 100% 50% / 0.36);
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.status-message {
  min-height: 22px;
  margin: 10px 0 0;
  font-size: 14px;
  font-weight: 500;
}

.status-message.ok {
  color: var(--ok);
}

.status-message.error {
  color: var(--danger);
}

.legal-note {
  margin-top: 14px;
  color: hsl(270 12% 60%);
  font-size: 12px;
  line-height: 1.4;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.bg-orb {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 999px;
  filter: blur(60px);
  z-index: 1;
  opacity: 0.65;
  animation: float 11s ease-in-out infinite;
}

.orb-primary {
  top: -120px;
  left: -100px;
  background: hsl(80 100% 50% / 0.32);
}

.orb-accent {
  right: -110px;
  bottom: -120px;
  background: hsl(280 80% 62% / 0.33);
  animation-delay: 3s;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(hsl(80 100% 50% / 0.07) 1px, transparent 1px),
    linear-gradient(90deg, hsl(80 100% 50% / 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.4;
  z-index: 0;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-12px) scale(1.05);
  }
}

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

  .hero-card {
    padding: 22px;
    border-radius: 22px;
  }

  .page {
    padding: 34px 14px;
  }
}
