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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: linear-gradient(135deg, #1e1b4b 0%, #4c1d95 50%, #7c3aed 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 24px;
}

.bg-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(2px);
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -80px;
  left: -80px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -60px;
  right: -60px;
  background: rgba(255, 255, 255, 0.06);
}

.shape-3 {
  width: 140px;
  height: 140px;
  top: 40%;
  right: 8%;
  background: rgba(255, 255, 255, 0.05);
}

.container {
  position: relative;
  z-index: 1;
  max-width: 640px;
  width: 100%;
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 40px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.time-block {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  min-width: 78px;
  padding: 16px 12px;
}

.time-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.time-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

.subscribe-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.subscribe-form input {
  flex: 1;
  min-width: 220px;
  max-width: 320px;
  padding: 14px 18px;
  border-radius: 30px;
  border: none;
  font-size: 0.95rem;
  outline: none;
}

.subscribe-form button {
  padding: 14px 28px;
  border-radius: 30px;
  border: none;
  background: #fff;
  color: #4c1d95;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.form-message {
  min-height: 20px;
  font-size: 0.85rem;
  color: #d1fae5;
  margin-bottom: 24px;
}

.form-message.error {
  color: #fecaca;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 8px;
}

.socials a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}

.socials a:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

footer {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

@media (max-width: 480px) {
  .time-block {
    min-width: 64px;
    padding: 12px 8px;
  }
  .time-value {
    font-size: 1.4rem;
  }
}
