*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #0B0F1A;
  --bg2:         #0D1220;
  --bg3:         #111827;
  --blue:        #2563EB;
  --blue-mid:    #1D4ED8;
  --blue-light:  #3B82F6;
  --orange:      #F97316;
  --orange-lt:   #FB923C;
  --white:       #FFFFFF;
  --off-white:   #F0F4FF;
  --gray:        #9CA3AF;
  --gray-dim:    #4B5563;
  --border:      rgba(255,255,255,0.07);
  --border-blue: rgba(37,99,235,0.28);
  --glow-blue:   rgba(37,99,235,0.22);
  --glow-org:    rgba(249,115,22,0.18);
  --bebas:       'Bebas Neue', sans-serif;
  --sans:        'Geist', system-ui, sans-serif;
  --radius:      12px;
  --radius-lg:   20px;
}

html { scroll-behavior: smooth; }

body {
  background: #080C14;
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
}

body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 999; opacity: 0.5;
}

/* Background glows */
.bg-glow-teal {
  position: fixed; top: -10%; left: -15%;
  width: 55vw; height: 80vh;
  background: radial-gradient(ellipse at 30% 40%, rgba(0,180,180,0.13) 0%, rgba(0,100,180,0.08) 35%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.bg-glow-orange {
  position: fixed; bottom: -10%; right: -10%;
  width: 55vw; height: 70vh;
  background: radial-gradient(ellipse at 70% 70%, rgba(249,115,22,0.16) 0%, rgba(180,60,0,0.07) 40%, transparent 70%);
  pointer-events: none; z-index: 0;
}

::selection { background: rgba(37,99,235,0.35); }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue-mid); border-radius: 2px; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 64px;
  background: rgba(11,15,26,0.75);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s, border-color 0.4s;
}
nav.scrolled { background: rgba(11,15,26,0.96); border-color: rgba(255,255,255,0.09); }

.logo {
  font-family: var(--bebas);
  font-size: 1.45rem;
  letter-spacing: 0.1em;
  color: var(--white);
  text-decoration: none;
}
.logo .v { color: var(--orange); }

.nav-back {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--gray); text-decoration: none;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: color 0.2s, gap 0.2s;
}
.nav-back:hover { color: var(--white); gap: 0.65rem; }

/* MAIN */
main {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 100px 5vw 60px;
  position: relative; z-index: 1;
}

.waitlist-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px; width: 100%;
}

/* LEFT COPY */
.wl-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.25);
  padding: 6px 14px; border-radius: 20px;
  font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--orange); font-weight: 600; margin-bottom: 28px;
  animation: fadeUp 0.6s 0.05s ease both;
}
.wl-eyebrow::before { content: '●'; font-size: 0.45rem; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1}50%{opacity:0.3} }

.wl-h1 {
  font-family: var(--bebas);
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 400; line-height: 1.0; letter-spacing: 0.03em;
  margin-bottom: 1.2rem;
  animation: fadeUp 0.6s 0.1s ease both;
}
.wl-h1 .orange { color: var(--orange); }
.wl-h1 .blue-lt { color: var(--blue-light); }

.wl-desc {
  font-size: 0.975rem; font-weight: 300; color: var(--gray);
  line-height: 1.8; margin-bottom: 2rem;
  animation: fadeUp 0.6s 0.15s ease both;
}

.wl-perks {
  display: flex; flex-direction: column; gap: 0.9rem;
  animation: fadeUp 0.6s 0.2s ease both;
}
.wl-perk {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.875rem; color: var(--off-white);
}
.perk-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.pi-orange { background: rgba(249,115,22,0.15); border: 1px solid rgba(249,115,22,0.25); }
.pi-blue   { background: rgba(37,99,235,0.15);  border: 1px solid rgba(37,99,235,0.28);  }
.pi-teal   { background: rgba(20,184,166,0.12); border: 1px solid rgba(20,184,166,0.25); }

.wl-stats {
  display: flex; gap: 2rem;
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.6s 0.28s ease both;
}
.stat-val {
  font-family: var(--bebas); font-size: 1.8rem;
  color: var(--white); letter-spacing: 0.05em; line-height: 1;
}
.stat-val .ao { color: var(--orange); }
.stat-val .ab { color: var(--blue-light); }
.stat-lbl {
  font-size: 0.68rem; color: var(--gray-dim);
  text-transform: uppercase; letter-spacing: 0.09em; margin-top: 3px;
}

/* CARD */
.wl-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(37,99,235,0.06) inset;
  animation: fadeUp 0.7s 0.2s ease both;
}
.wl-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--blue-light), var(--orange));
  background-size: 200%;
  animation: shimmer-bar 3s linear infinite;
}
@keyframes shimmer-bar { 0%{background-position:0%}100%{background-position:200%} }

.deco-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(37,99,235,0.12);
  pointer-events: none;
}
.dr1 { width: 300px; height: 300px; top: -80px; right: -80px; }
.dr2 { width: 200px; height: 200px; bottom: -60px; left: -60px; border-color: rgba(249,115,22,0.1); }

.card-title {
  font-family: var(--bebas);
  font-size: 1.5rem; letter-spacing: 0.06em;
  color: var(--white); margin-bottom: 0.3rem;
}
.card-sub { font-size: 0.8rem; color: var(--gray); margin-bottom: 2rem; }

/* FORM */
.form-group { margin-bottom: 1.2rem; }

.form-label {
  display: block;
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--gray); margin-bottom: 0.45rem;
}

.form-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: var(--sans); font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.form-input::placeholder { color: var(--gray-dim); }
.form-input:focus {
  border-color: var(--blue-light);
  background: rgba(37,99,235,0.07);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}
.form-input.phone-focus {
  border-color: var(--orange) !important;
  background: rgba(249,115,22,0.06) !important;
  box-shadow: 0 0 0 3px rgba(249,115,22,0.12) !important;
}

.form-hint {
  font-size: 0.7rem; color: var(--gray-dim);
  margin-top: 0.3rem;
}

.btn-submit {
  width: 100%; margin-top: 0.5rem;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 2rem; border-radius: 9px;
  background: var(--orange); color: var(--white);
  font-family: var(--sans); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.05em; cursor: pointer; border: none;
  box-shadow: 0 0 24px var(--glow-org);
  transition: all 0.25s;
  position: relative; overflow: hidden;
}
.btn-submit::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.btn-submit:hover::after { transform: translateX(100%); }
.btn-submit:hover {
  background: var(--orange-lt);
  box-shadow: 0 0 36px rgba(249,115,22,0.42);
  transform: translateY(-2px);
}
.btn-submit:active { transform: translateY(0); }
.btn-submit:disabled { opacity: 0.6; pointer-events: none; }

.form-privacy {
  text-align: center; margin-top: 1rem;
  font-size: 0.68rem; color: var(--gray-dim);
}

/* SUCCESS */
.success-state {
  display: none;
  flex-direction: column; align-items: center;
  text-align: center; padding: 1rem 0; gap: 1rem;
}
.success-icon {
  width: 72px; height: 72px;
  background: rgba(249,115,22,0.12); border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  animation: pop-in 0.4s 0.1s ease both;
}
@keyframes pop-in { 0%{transform:scale(0.5);opacity:0}80%{transform:scale(1.08)}100%{transform:scale(1);opacity:1} }
.success-title {
  font-family: var(--bebas); font-size: 1.9rem;
  letter-spacing: 0.06em; color: var(--white);
}
.success-msg { font-size: 0.875rem; color: var(--gray); max-width: 280px; line-height: 1.75; }
.success-back {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 0.5rem; padding: 0.6rem 1.4rem; border-radius: 7px;
  background: transparent; border: 1px solid var(--border);
  color: var(--gray); font-family: var(--sans);
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em;
  text-decoration: none; cursor: pointer; transition: all 0.22s;
}
.success-back:hover { border-color: rgba(255,255,255,0.18); color: var(--white); }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .waitlist-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .wl-left { max-width: 560px; margin: 0 auto; text-align: center; }
  .wl-perks { align-items: center; }
  .wl-stats { justify-content: center; }
}
@media (max-width: 480px) {
  main { padding: 90px 1.5rem 60px; }
  .wl-card { padding: 1.75rem 1.25rem; }
  .wl-stats { flex-direction: column; gap: 1rem; align-items: center; }
}
