:root {
  --primary-red: #ff3b3b;
  --text-dark: #111;
  --text-muted: #555;
  --bg-light: #fafafa;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
}

.background-accent {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,59,59,0.25) 0%, rgba(255,59,59,0) 70%);
  top: -150px;
  right: -150px;
  filter: blur(40px);
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 650px;
  padding: 2rem;
  animation: fadeIn 1s ease forwards;
}

.logo {
  width: 220px;
  margin-bottom: 2rem;
}

h1 {
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.description {
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.email-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.email-form input {
  flex: 1;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
}

.email-form button {
  padding: 0.9rem 1.6rem;
  border-radius: 10px;
  border: none;
  background: var(--primary-red);
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.email-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255,59,59,0.25);
}

.form-message {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.success {
  color: green;
}

.error {
  color: red;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.input-row {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  width: 100%;
}

.turnstile-wrapper {
  display: flex;
  justify-content: center;
}

/* Responsive */
@media (max-width: 640px) {
  .input-row {
    flex-direction: column;
  }

  .input-row button {
    width: 100%;
  }
}