:root {
  --bg: #0c0c0e;
  --surface: #141418;
  --border: #222228;
  --text: #e8e8ec;
  --muted: #8888a0;
  --accent: #6b7cff;
  --accent-hover: #8492ff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 0;
}

main {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 420px;
}

.logo {
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease-out 0.2s forwards;
}

.logo span {
  color: var(--accent);
}

h1 {
  font-weight: 500;
  font-size: clamp(1.35rem, 4vw, 1.6rem);
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s ease-out 0.35s forwards;
}

.date {
  font-weight: 300;
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease-out 0.5s forwards;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.2s ease;
  opacity: 0;
  animation: fadeUp 0.8s ease-out 0.65s forwards;
}

.cta:hover {
  border-color: var(--accent);
  background: rgba(107, 124, 255, 0.08);
  transform: translateY(-2px);
}

.cta:active {
  transform: translateY(0);
}

.cta svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.hint {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease-out 0.8s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.glow {
  position: fixed;
  width: 60vw;
  max-width: 400px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(107, 124, 255, 0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
