:root {
  --ink: #0b0d10;
  --steel: #131821;
  --paper: #f5f1e8;
  --acid: #c8ff2e;
  --ember: #ff5d3d;
  --cloud: #b9c1cc;
}

* {
  box-sizing: border-box;
}

body {
  background-color: var(--ink);
  background-image:
    radial-gradient(circle at 10% 20%, rgba(200, 255, 46, 0.15), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(255, 93, 61, 0.2), transparent 45%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(0, 0, 0, 0) 55%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 80px 80px, 80px 80px;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}

.page {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.4;
  animation: drift 10s ease-in-out infinite alternate;
}

.glow-left {
  left: -120px;
  top: 120px;
  background: radial-gradient(circle, rgba(200, 255, 46, 0.7), transparent 60%);
}

.glow-right {
  right: -160px;
  bottom: 80px;
  background: radial-gradient(circle, rgba(255, 93, 61, 0.6), transparent 60%);
  animation-delay: 1.5s;
}

.badge {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
  letter-spacing: 0.25em;
}

.hero-rail {
  height: 3px;
  width: 180px;
  background: linear-gradient(90deg, var(--acid), rgba(200, 255, 46, 0));
  position: relative;
  overflow: hidden;
}

.hero-rail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: scan 2.8s linear infinite;
}

.stat {
  background: rgba(19, 24, 33, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.stat-title {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
}

.stat-value {
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
  margin-top: 8px;
}

.info-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 24px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.04), transparent 60%);
}

.form-shell {
  background: rgba(19, 24, 33, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  position: relative;
}

.form-shell::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(11, 13, 16, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--paper);
  font-size: 1rem;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.input:focus {
  outline: none;
  border-color: var(--acid);
  box-shadow: 0 0 0 3px rgba(200, 255, 46, 0.15);
}

.hint {
  margin-top: 6px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.cta {
  width: 100%;
  background: var(--acid);
  color: #0b0d10;
  font-family: "Syne", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 16px 20px;
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.cta:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.cta:hover {
  transform: translateY(-2px);
}

.cta-line {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.4), transparent);
}

.result {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(11, 13, 16, 0.7);
}

.result-link {
  display: inline-block;
  margin-top: 6px;
  font-family: "Syne", sans-serif;
  color: var(--acid);
  text-decoration: none;
  font-size: 1.1rem;
}

.copy {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--paper);
  padding: 8px 16px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  animation: rise 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.15s;
}

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

@keyframes scan {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes drift {
  from {
    transform: translateY(-10px);
  }
  to {
    transform: translateY(20px);
  }
}

.hidden {
  display: none;
}
