:root {
  color-scheme: dark;
  --bg: #0a0a0e;
  --card: #14141b;
  --text: #f4f2ee;
  --muted: #b7b0a3;
  --accent: #f5d36a;
  --accent-2: #ff8e3c;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at top left, #26201a 0%, #0a0a0e 50%),
    radial-gradient(circle at 80% 20%, rgba(245, 211, 106, 0.18), transparent 45%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow: hidden;
}

.page {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 24px 32px;
  display: grid;
  gap: 28px;
  min-height: 100vh;
  align-content: center;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.logo-frame {
  padding: 16px;
  border-radius: 36px;
  background: conic-gradient(
    from 120deg,
    rgba(245, 211, 106, 0.8),
    rgba(255, 142, 60, 0.7),
    rgba(245, 211, 106, 0.8)
  );
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.logo {
  width: 170px;
  height: 170px;
  border-radius: 24px;
  display: block;
  object-fit: contain;
  background: rgba(10, 10, 14, 0.9);
  padding: 6px;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.6));
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 8px;
}

h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
}

.hero {
  background: linear-gradient(135deg, rgba(20, 20, 27, 0.92), rgba(20, 20, 27, 0.6));
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(245, 211, 106, 0.12);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 280px;
  height: 280px;
  background: url("images/SWR%20LOGO.png") no-repeat center/contain;
  opacity: 0.08;
  pointer-events: none;
}

.lede {
  margin-top: 0;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 14px;
  margin: 20px 0 18px;
}

.countdown__item {
  background: rgba(9, 9, 12, 0.7);
  border-radius: 18px;
  padding: 14px 12px;
  text-align: center;
  border: 1px solid rgba(245, 211, 106, 0.08);
}

.countdown__item span {
  font-size: 2rem;
  font-weight: 700;
  display: block;
}

.countdown__item small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.notify {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}

.notify input {
  flex: 1 1 240px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(245, 211, 106, 0.18);
  background: rgba(9, 9, 12, 0.9);
  color: var(--text);
  font-size: 1rem;
}

.notify button {
  padding: 14px 24px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #14141b;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.notify button:hover {
  transform: translateY(-2px);
}

.microcopy {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.features {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature {
  background: var(--card);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(245, 211, 106, 0.08);
}

.feature h3 {
  margin-top: 0;
}

.feature p {
  color: var(--muted);
  margin-bottom: 0;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  color: var(--muted);
}

.socials {
  display: flex;
  gap: 16px;
}

.socials a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

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

@media (max-width: 720px) {
  .page {
    padding: 32px 20px 24px;
  }

  .hero {
    padding: 22px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    width: 140px;
    height: 140px;
  }

  .hero::after {
    width: 220px;
    height: 220px;
    top: -30px;
    right: -30px;
  }
}
