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

:root {
  color-scheme: dark;
  --bg: #050509;
  --bg-soft: rgba(255, 255, 255, 0.04);
  --fg: #f7f7fb;
  --muted: rgba(247, 247, 251, 0.7);
  --primary: #ffd35c;
  --accent: #b07aff;
  --border: rgba(255, 255, 255, 0.1);
  font-size: clamp(14px, 1.2vw, 16px);
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--fg);
  min-height: 100vh;
  padding: clamp(1.5rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.background {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(176, 122, 255, 0.3), transparent 55%),
    radial-gradient(circle at bottom right, rgba(255, 211, 92, 0.25), transparent 60%),
    #050509;
  pointer-events: none;
  z-index: -2;
}

.background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.02) 0,
    rgba(255, 255, 255, 0.02) 2px,
    transparent 2px,
    transparent 10px
  );
  mix-blend-mode: overlay;
  opacity: 0.4;
}

.hero {
  max-width: 900px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin: 1rem 0;
  line-height: 1.1;
}

.lead {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 60ch;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  transition: transform 200ms, box-shadow 200ms, background 200ms;
}

.button.primary {
  background: linear-gradient(120deg, var(--primary), #ff9a62);
  color: #1b1200;
  box-shadow: 0 10px 30px rgba(255, 211, 92, 0.35);
}

.button.ghost {
  border-color: var(--border);
  color: var(--fg);
  background: transparent;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

.status-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.label {
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-card strong {
  display: block;
  font-size: 1.4rem;
  margin-top: 0.4rem;
}

.progress-bar {
  width: 100%;
  height: 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  margin-top: 0.6rem;
}

.progress-bar__fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

.panel {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: rgba(8, 8, 12, 0.75);
  backdrop-filter: blur(12px);
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  color: var(--muted);
}

.stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.stats h3 {
  margin: 0;
  font-size: 2.5rem;
}

.stats p {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.timeline article {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.timeline article:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.timeline time {
  color: var(--muted);
  font-weight: 600;
}

.timeline h3 {
  margin: 0 0 0.3rem;
}

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

.notify {
  text-align: center;
}

.notify-form {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.notify-form input {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  color: var(--fg);
  min-width: min(320px, 90vw);
}

.notify-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.socials {
  display: flex;
  gap: 1rem;
}

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

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.legal-hero {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-content {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.legal-content section h2 {
  margin-top: 0;
}

.legal-list {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.back-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.back-link:hover {
  color: var(--fg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  border: 0;
}

@media (max-width: 640px) {
  .timeline article {
    grid-template-columns: 1fr;
  }
}
