/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f9fafb;
  color: #111827;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.container {
  text-align: center;
  padding: 2rem;
  max-width: 700px;
  margin: auto;
}

/* Logo */
.logo img {
  max-width: 180px;
  margin-bottom: 2rem;
}

/* Hero */
.hero h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero .tagline {
  font-size: 1.1rem;
  color: #4b5563;
  margin-bottom: 2rem;
}

/* Countdown */
#timer {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1rem 0;
}

#timer div {
  background: #e5e7eb;
  padding: 1rem 1.5rem;
  border-radius: 8px;
}

/* CTA */
.cta {
  margin-top: 2rem;
}

.cta p {
  margin-bottom: 1rem;
}

input[type="email"] {
  padding: 0.6rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  width: 70%;
  margin-right: 0.5rem;
}

button {
  padding: 0.6rem 1.2rem;
  background-color: #10b981;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

button:hover {
  background-color: #065f46;
}

/* Footer */
footer {
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #6b7280;
}

footer ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

footer a {
  text-decoration: none;
  color: #6b7280;
}

footer a:hover {
  color: #111827;
}