/* -------- RESET -------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* -------- VARIABLES -------- */
:root {
  --black: #0F0F10;
  --soft-black: #1A1A1C;
  --stone: #8C8C8C;
  --white: #EDEDED;
  --accent: #C96A2B;
}
/* -------- HERO BACKGROUND (Pizza Pirate V1) -------- */
.hero-bg {
  position: relative;
  background: url("hero.jpg") center center / cover no-repeat;
}

/* Lighter dark overlay for readability (dialed back) */
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 16, 0.48); /* was ~0.68 */
}

/* Softer vignette (lets city + oven glow show) */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    80% 60% at 50% 55%,
    rgba(15, 15, 16, 0.15) 0%,
    rgba(15, 15, 16, 0.55) 70%,
    rgba(15, 15, 16, 0.7) 100%
  );
  pointer-events: none;
}

/* Ensure content sits above overlays */
.hero-content {
  position: relative;
  z-index: 1;
}


/* -------- BASE -------- */
html, body {
  height: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* -------- HERO -------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.hero-content {
  max-width: 720px;
  width: 100%;
  text-align: center;
}

/* -------- TYPE -------- */
h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.subhead {
  color: var(--stone);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 3rem;
}

/* -------- FORM -------- */
.signup-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.signup-form input {
  background: var(--soft-black);
  border: 1px solid #2A2A2C;
  color: var(--white);
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
}

.signup-form input::placeholder {
  color: #666;
}

.signup-form input:focus {
  border-color: var(--stone);
}

.signup-form button {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
  padding: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}

.signup-form button:hover {
  background: var(--white);
  color: var(--black);
}

/* -------- MICRO COPY -------- */
.micro {
  font-size: 0.75rem;
  color: #666;
}

/* -------- FOOTER -------- */
footer {
  position: fixed;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #555;
}

/* -------- RESPONSIVE -------- */
@media (max-width: 480px) {
  footer {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .hero-bg {
    background-position: center 60%;
  }
}
