:root {
  color-scheme: dark;

  /* Brand palette (mirrors apps/app design tokens) */
  --bg-base:        #0c0a10;
  --rose:           #e8407a;
  --gold:           #f0b440;
  --violet:         #9b6dff;
  --text-primary:   #f2eaf8;
  --text-secondary: #b8a8cc;
  --text-muted:     #7a6a8e;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui:      'DM Sans', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-ui);
}

* {
  box-sizing: border-box;
}

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

body {
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    radial-gradient(60% 50% at 30% 20%, rgba(232, 64, 122, 0.16), transparent 70%),
    radial-gradient(55% 45% at 78% 80%, rgba(155, 109, 255, 0.14), transparent 70%),
    var(--bg-base);
  overflow: hidden;
}

.page {
  position: relative;
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

/* Soft aurora glow behind the logo */
.glow {
  position: absolute;
  top: -40px;
  left: 50%;
  width: 360px;
  height: 360px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(232, 64, 122, 0.28), rgba(240, 180, 64, 0.10) 45%, transparent 70%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
}

.logo {
  position: relative;
  z-index: 1;
  width: clamp(180px, 42vw, 260px);
  height: auto;
  user-select: none;
}

h1,
p {
  margin: 0;
  position: relative;
  z-index: 1;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3rem, 12vw, 4.75rem);
  line-height: 1;
  letter-spacing: 0.01em;
}

.teaser {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 4.5vw, 1.5rem);
  color: var(--text-secondary);
}

.soon {
  margin-top: 6px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
}
