.wrap {
  width: 100%;
  max-width: 720px;
  text-align: center;
  background: #0b1224bf;
  border: 1px solid #1f2937;
  border-radius: 20px;
  padding: 36px 28px;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .35);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: aliceblue;
}
.logo {
  width: 64px; height: 64px;
  margin: 0 auto 14px;
  border-radius: 14px;
  background: #f97316;
  display: grid; place-items: center;
  color: #111827; font-weight: 800;
  letter-spacing: .5px;
}
h1 {
  margin: 8px 0 10px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
}
p.lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: clamp(14px, 2.2vw, 18px);
}
.countdown {
  display: flex; justify-content: center; gap: 10px;
  margin: 20px 0 10px;
  flex-wrap: wrap;
}
.time {
  min-width: 88px;
  padding: 12px 10px;
  border-radius: 14px;
  border: 1px solid #1f2937;
  background: #0b1224;
}
.time strong { display: block; font-size: 28px; }
.time span { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; }
form {
  margin-top: 20px;
  display: grid; grid-template-columns: 1fr auto; gap: 10px;
}
input[type="email"] {
  width: 100%; padding: 12px 14px;
  border-radius: 12px; border: 1px solid #1f2937;
  background: #0b1224; color: var(--text);
  outline: none;
}
input::placeholder { color: #6b7280; }
button {
  padding: 12px 16px; border: 0; border-radius: 12px;
  background: var(--accent); color: #111827; font-weight: 700;
  cursor: pointer;
}
.small {
  margin-top: 10px; font-size: 12px; color: #6b7280;
}
footer { margin-top: 24px; font-size: 12px; color: #6b7280; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }