/* Basic reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Brand colors */
:root {
  --brand-primary: #1d3354; /* deep blue */
  --brand-accent: #ffae03;  /* warm yellow */
  --text-light: #f9fafb;
}

/* Page background & typography */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text-light);
  background: radial-gradient(
      circle at top left,
      var(--brand-accent),
      var(--brand-primary) 55%,
      #020617
    );
  min-height: 100vh;
}

/* Layout wrapper */
.coming-soon-wrapper {
  min-height: 100vh;
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 20px 16px;
  display: flex;
  flex-direction: column;
}

/* Header */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.logo-text {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 2rem;
}

/* Make top link outlined in accent color */
.top-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 174, 3, 0.7);
  padding: 6px 12px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.top-links a:hover {
  background: var(--brand-accent);
  color: #1b2433;
  border-color: transparent;
}

/* Main content */
.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.content h1 {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

/* Use brand colors in text accents */
.tagline {
  font-size: 1.05rem;
  max-width: 30rem;
  line-height: 1.5;
  color: #e5e7eb;
}

.subtext {
  font-size: 0.95rem;
  max-width: 26rem;
  color: #e2e8f0;
}

/* Notify form */
.notify-form {
  margin-top: 10px;
  max-width: 28rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.notify-form label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #cbd5f5;
}

.notify-controls {
  display: flex;
  gap: 8px;
}

.notify-controls input[type="email"] {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.75);
  color: var(--text-light);
  font-size: 0.95rem;
  outline: none;
}

.notify-controls input::placeholder {
  color: #64748b;
}

.notify-controls input:focus {
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 1px rgba(255, 174, 3, 0.8);
}

/* Primary button uses brand accent, hover uses deeper blue */
.notify-controls button {
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--brand-accent), #e39500);
  color: #1d1b16;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.12s ease, box-shadow 0.12s ease,
    filter 0.12s ease, background 0.12s ease;
}

.notify-controls button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.45);
  filter: brightness(1.03);
  background: linear-gradient(135deg, #ffb934, var(--brand-accent));
}

.notify-controls button:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Contact info */
.contact-info {
  margin-top: 16px;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.contact-info a {
  color: var(--brand-accent);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  margin-top: 32px;
  font-size: 0.75rem;
  text-align: center;
  color: #9ca3af;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .coming-soon-wrapper {
    padding: 16px 14px;
  }

  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .notify-controls {
    flex-direction: column;
  }

  .notify-controls button {
    width: 100%;
    text-align: center;
  }
}
