/* Reset mínimo */
* { box-sizing: border-box; }
html, body { height: 100%; }
body { margin: 0; font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: #e8e8e8; background: radial-gradient(1200px 800px at 30% 20%, rgba(0, 153, 255, 0.12), transparent 60%), #0b0f14; }

/* Layout */
.wrap { min-height: 100%; display: grid; grid-template-rows: 1fr auto; }
.card { width: min(680px, 90%); margin: 10vh auto 0; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: clamp(20px, 4vw, 36px); backdrop-filter: blur(6px); box-shadow: 0 10px 40px rgba(0,0,0,0.35); }
.logo { display: flex; justify-content: center; margin-bottom: 8px; }
.logo img { width: 64px; height: 64px; border-radius: 12px; box-shadow: 0 4px 16px rgba(0,0,0,0.35); }

/* Typography */
h1 { margin: 10px 0 6px; font-size: clamp(28px, 4.5vw, 40px); letter-spacing: 0.4px; color: #f2f6ff; }
.lead { margin: 0 0 16px; color: #b7c2d0; line-height: 1.6; }
.eta { margin: 8px 0 20px; color: #a9ffea; font-weight: 600; }

/* Notify */
.notify { margin-top: 8px; }
.notify label { display: block; margin: 0 0 8px; color: #9fb1c4; font-size: 14px; }
.row { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
input[type="email"] { width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.12); background: rgba(0,0,0,0.25); color: #e8e8e8; outline: none; }
input[type="email"]::placeholder { color: #8fa1b4; }
button { padding: 12px 16px; border-radius: 10px; border: 0; background: linear-gradient(135deg, #00d1ff, #0072ff); color: #03111d; font-weight: 700; cursor: pointer; box-shadow: 0 6px 20px rgba(0, 114, 255, 0.35); transition: transform .1s ease, filter .2s ease; }
button:hover { filter: brightness(1.08); }
button:active { transform: translateY(1px); }
.msg { display: block; min-height: 20px; margin-top: 6px; color: #a0b8cf; }

/* Links */
.links { display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 18px; color: #8aa0b6; }
.link { color: #9cc3ff; text-decoration: none; }
.link:hover { text-decoration: underline; }
.dot { opacity: .65; }

/* Footer */
.footer { text-align: center; padding: 22px 12px 30px; color: #7d93a8; font-size: 14px; }

/* Responsivo */
@media (max-width: 520px) {
  .row { grid-template-columns: 1fr; }
  button { width: 100%; }
}
