/* Syonix Coming Soon — brand: black wordmark + purple X accents */

:root {
  --bg: #0b0b0f;
  --bg-elevated: #12121a;
  --text: #f5f5f7;
  --text-muted: #a1a1aa;
  --accent: #7c3aed;
  --accent-soft: rgba(124, 58, 237, 0.22);
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 20px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem 1.5rem;
  overflow: hidden;
}

.glow {
  position: absolute;
  inset: auto;
  width: min(720px, 90vw);
  height: min(720px, 90vw);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 40%, var(--accent-soft), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(124, 58, 237, 0.12), transparent 50%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}

.card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  text-align: center;
  padding: 2.75rem 2rem 2.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.logo {
  display: block;
  width: min(280px, 72vw);
  height: auto;
  margin: 0 auto 1.75rem;
  border-radius: 8px;
  background: #fff;
  padding: 0.85rem 1.1rem;
}

.eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.55rem, 4vw, 1.9rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.lede {
  margin: 0 auto;
  max-width: 36ch;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.footer {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  text-align: center;
}

.footer p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

