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

:root {
  --navy: #000b29;
  --black: #000000;
  --cyan: #00aeef;
  --blue: #0054a6;
  --magenta: #ec008c;
  --purple: #722e85;
  --orange: #f7941d;
  --gold: #ffb800;
  --white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.45);
  --font: "Montserrat", system-ui, sans-serif;
  --radius: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Ambient glows — match logo gradients */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.bg-glow--cyan {
  width: 420px;
  height: 420px;
  background: rgba(0, 174, 239, 0.14);
  top: -120px;
  left: -100px;
}

.bg-glow--magenta {
  width: 380px;
  height: 380px;
  background: rgba(236, 0, 140, 0.12);
  top: -80px;
  right: -100px;
}

.bg-glow--orange {
  width: 500px;
  height: 300px;
  background: rgba(247, 148, 29, 0.08);
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
}

/* Layout */
.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem 2rem;
  max-width: 520px;
  margin: 0 auto;
}

/* Hero */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.logo {
  width: min(280px, 72vw);
  height: auto;
  margin-bottom: 2rem;
  user-select: none;
}

.coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(255, 184, 0, 0.25);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.12), rgba(247, 148, 29, 0.08));
  background-clip: padding-box;
  color: var(--gold);
  margin-bottom: 2rem;
}

.pulse {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

/* Notify form */
.notify-form {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  width: 100%;
  max-width: 360px;
}

.notify-form input {
  width: 100%;
  padding: 0.8125rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.notify-form input::placeholder {
  color: var(--text-muted);
}

.notify-form input:focus {
  outline: none;
  border-color: rgba(0, 174, 239, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.12);
}

.btn-notify {
  padding: 0.8125rem 1.5rem;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: var(--navy);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.btn-notify:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(247, 148, 29, 0.35);
}

.btn-notify:active {
  transform: translateY(0);
}

.form-message {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  min-height: 1.125rem;
}

.form-message.success {
  color: var(--cyan);
}

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

/* Footer */
.footer {
  margin-top: 3rem;
  text-align: center;
  width: 100%;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s, border-color 0.2s, transform 0.2s, background 0.2s;
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  color: var(--gold);
  border-color: rgba(255, 184, 0, 0.3);
  background: rgba(255, 184, 0, 0.06);
  transform: translateY(-2px);
}

.footer-copy {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

/* Responsive */
@media (min-width: 480px) {
  .notify-form {
    flex-direction: row;
  }

  .notify-form input {
    flex: 1;
  }

  .btn-notify {
    flex-shrink: 0;
  }

  .logo {
    width: min(320px, 80vw);
  }
}

@media (max-width: 380px) {
  .page {
    padding: 2rem 1.125rem 1.5rem;
  }

  .logo {
    width: min(240px, 80vw);
    margin-bottom: 1.5rem;
  }

  .coming-soon {
    margin-bottom: 1.5rem;
  }
}
