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

:root {
  --bg: #040f1a;
  --text: #f0f4f8;
  --muted: rgba(240,244,248,0.6);
  --blue: #4a9aba;
  --teal: #2dd4bf;
  --red: #c8102e;
  --yellow: #FFD166;
  --card-bg: rgba(255,255,255,0.06);
  --card-border: rgba(255,255,255,0.1);
}

html, body {
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 3rem 1.5rem;
}

/* Background orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  pointer-events: none;
  animation: drift 12s ease-in-out infinite alternate;
}

.orb-blue  { width: 500px; height: 500px; background: #1a6fa8; top: -120px; left: -120px; }
.orb-teal  { width: 400px; height: 400px; background: #0d9488; bottom: -60px; right: -80px; animation-delay: 3s; }
.orb-red   { width: 300px; height: 300px; background: #9b1a2e; bottom: 80px; left: 30%; animation-delay: 6s; opacity: 0.15; }

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.05); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
  max-width: 640px;
  width: 100%;
}

/* ===== LOGO ===== */
.site-logo {
  width: min(340px, 88vw);
  height: auto;
  filter: drop-shadow(0 4px 24px rgba(74, 154, 186, 0.35));
}

/* ===== TAGLINE ===== */
.tagline {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(1.4rem, 5vw, 2.2rem);
  letter-spacing: 0.12em;
  color: var(--teal);
  text-shadow: 0 2px 12px rgba(45, 212, 191, 0.3);
}

/* ===== SEASONS ===== */
.seasons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.season {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.season span:first-child { font-size: 1.6rem; }

.season-div {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.2);
}

/* ===== MISSION CARD ===== */
.mission-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

.mission-card strong { color: var(--text); font-weight: 700; }

/* ===== MERCH ===== */
.merch-section {
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.15), rgba(74, 154, 186, 0.1));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.merch-badge {
  background: var(--red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}

.merch-section h2 {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.merch-section > p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted);
}

.merch-sub {
  font-size: 0.82rem !important;
  color: rgba(240,244,248,0.45) !important;
}

/* Email form */
.email-form {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  max-width: 380px;
  margin-top: 0.5rem;
}

.email-form input {
  flex: 1;
  padding: 0.7rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s;
}

.email-form input:focus { border-color: var(--teal); }
.email-form input::placeholder { color: var(--muted); }

.email-form button {
  padding: 0.7rem 1.25rem;
  background: var(--teal);
  color: #040f1a;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}

.email-form button:hover { background: #25c7b3; }

.thanks-msg {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.9rem;
}

.hidden { display: none !important; }

/* ===== TOWNS ===== */
.towns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
  line-height: 2;
}

footer a { color: var(--teal); text-decoration: none; }
footer a:hover { text-decoration: underline; }

@media (max-width: 420px) {
  .email-form { flex-direction: column; }
  .mission-card { padding: 1.25rem 1.25rem; }
}
