/* ---------- Fonts ---------- */
@font-face {
  font-family: "Rockstar";
  src: url("Rockstar-ExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ---------- Base ---------- */
:root{
  --bg:#0b0b0b;
  --ink:#f1f1f1;
  --muted:#bdbdbd;
  --pill:#2b2b2b;
  --pill-br:#6b6b6b;
  --glow:#ffffff;
  --cta:#ffffff;
  --cta-ink:#0d0d0d;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:
    radial-gradient(1200px 600px at 30% 10%, #111 0%, transparent 60%),
    radial-gradient(800px 400px at 80% 70%, #101010 0%, transparent 60%),
    #0a0a0a;
  color:var(--ink);
  font-family: Calibri, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing:.3px;
}

/* ---------- Layout ---------- */
.wrap{
  min-height:100%;
  padding:48px 20px 28px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:16px;
  text-align:center;
}

.logo{

  width:300px;
  max-width:60vw;
  display:block;
}

/* script “Waitlist” */
.script{
  margin:-35px 0 18px;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size:34px;
  font-weight:400;
  opacity:.95;
}

/* ---------- Card & Inputs ---------- */
.card{
  width:100%;
  min-width:250px;
  max-width:250px;
  display:grid;
  gap:12px;
}

.pill{
  width:100%;
  padding:14px 16px;
  border-radius:28px;
  border:0px solid var(--pill-br);
  background: rgba(55, 55, 55, 0.15);
  color:var(--ink);
  text-transform:uppercase;
  letter-spacing:.8px;
  text-align:center;
  outline:none;
  
  box-shadow: inset 0 0 7px rgba(255, 255, 255, 0.3);

  transition: 0.3s ease;
}
.pill::placeholder{
  color:#e6e6e6;opacity:.92;
}
.pill:focus{
  background: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 7px rgba(255, 255, 255, 0.5);
  padding:18px 22px;
}
.pill:hover{
  background: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 7px rgba(255, 255, 255, 0.5);
  padding:18px 22px;
}

/* make intl-tel-input look like our pill */
.iti{ width:100%; }
.iti input#phone{
  padding-left:58px; /* room for flag */
}
.iti--allow-dropdown .iti__flag-container{
  left:10px;
}
.iti input#phone.pill{
  text-align:left; text-transform:none; letter-spacing:.3px;
}

/* CTA */
.cta{
  margin-top:6px;
  padding:14px 18px;
  border-radius:30px;
  border:0;
  background:rgb(255, 255, 255);
  color:black;
  font-weight:900;
  font-family:"Rockstar", Calibri, system-ui, sans-serif;
  font-size:18px;
  cursor:pointer;
  box-shadow:
    0 10px 24px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -2px 1px rgba(0,0,0,.7);
  transition: 0.3s ease;
}
.cta:hover{ padding:20px 18px; background:rgb(110, 110, 110); color: white;}
.cta:active{ transform:translateY(0) scale(.99) }
.cta[disabled]{ opacity:.6; cursor:not-allowed; }

/* Error */
.err{ color:#ff6b6b; font-size:14px; }

/* Tagline */
.tagline{
  margin-top:12px;
  font-size:12.5px;
  color:var(--muted);
  line-height:1.45;
  max-width:780px;
  opacity:.9;
}

/* Responsive tweak */
@media (max-width:480px){
  .script{font-size:30px}
  .cta{font-size:17px}
}
