/* ThemeRadar splash — minimal, radar-inspired */

:root {
  --bg-deep: #141414;
  --bg-card: #1a1a1a;
  --accent: #C9A84C;
  --accent-dim: rgba(201, 168, 76, 0.35);
  --text: #ffffff;
  --text-muted: #a0a0a0;
}

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

html {
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "DM Sans", system-ui, sans-serif;
  text-transform: uppercase;
  background: var(--bg-deep);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}

/* Plain charcoal background */
.radar-bg {
  position: fixed;
  inset: 0;
  background: var(--bg-deep);
  pointer-events: none;
  z-index: 0;
}

.splash {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  max-width: 52rem;
}

/* Drop-in from top: each section appears in sequence */
.splash > * {
  opacity: 0;
  animation: dropIn 0.5s ease-out forwards;
}

.splash > *:nth-child(1) { animation-delay: 0s; }
.splash > *:nth-child(2) { animation-delay: 0.12s; }
.splash > *:nth-child(3) { animation-delay: 0.24s; }
.splash > *:nth-child(4) { animation-delay: 0.36s; }

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-lockup {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

.logo-mark svg {
  display: block;
  width: clamp(48px, 10vw, 72px);
  height: clamp(48px, 10vw, 72px);
}

.logo-wordmark {
  line-height: 1;
  text-transform: none;
}

.logo-wordmark .logo-theme {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}

.logo-wordmark .logo-radar {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* Shared logo wordmark colors (heading + footer) */
.logo-theme { color: #ffffff; }
.logo-radar { color: #C9A84C; }

.tagline {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
}

.coming-soon {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0 0 2rem;
}

/* Notify form */
.notify-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.notify-form input {
  flex: 1;
  min-width: 12rem;
  padding: 0.75rem 1rem;
  font: inherit;
  font-size: 0.95rem;
  text-transform: none;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

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

.notify-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.notify-form button {
  padding: 0.75rem 1.25rem;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--bg-deep);
  background: var(--accent);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.notify-form button:hover {
  background: #d4b85c;
}

.notify-form button:active {
  transform: scale(0.98);
}

.splash-footer {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.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;
}
