/* ===============================
   Base Reset
================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

/* ===============================
   Design Tokens
================================ */
:root {
  --bg: #0b0f14;
  --surface: #111827;
  --text-primary: #f9fafb;
  --text-secondary: #9ca3af;
  --accent: #22c55e;

  --max-width: 720px;
}

/* ===============================
   Layout
================================ */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  background: radial-gradient(
    circle at top,
    #111827 0%,
    #0b0f14 60%
  );
  color: var(--text-primary);
}

.coming-soon {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.content {
  max-width: var(--max-width);
  width: 100%;
  text-align: center;
}

/* ===============================
   Typography
================================ */
.eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin: 0 0 1rem;
  font-weight: 700;
}

.intro {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ===============================
   Divider
================================ */
.divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    var(--accent),
    transparent
  );
  margin: 2rem auto;
}

/* ===============================
   Socials
================================ */
.socials {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.socials a {
  color: var(--text-secondary);
  font-size: 1.4rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.socials a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

/* ===============================
   Footer
================================ */
footer {
  font-size: 0.8rem;
  color: var(--text-secondary);
}