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

:root {
  --bg: #0c0f14;
  --bg-elevated: #141a22;
  --text: #e8eaed;
  --text-muted: #8b939e;
  --accent: #c4a574;
  --accent-dim: rgba(196, 165, 116, 0.15);
  --border: rgba(255, 255, 255, 0.06);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  z-index: 1;
}

.glow {
  position: fixed;
  width: 60vmax;
  height: 60vmax;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.glow--left {
  top: -20%;
  left: -15%;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
}

.glow--right {
  bottom: -25%;
  right: -20%;
  background: radial-gradient(
    circle,
    rgba(60, 90, 120, 0.25) 0%,
    transparent 70%
  );
}

.page {
  position: relative;
  z-index: 2;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  animation: fade-up 1s ease-out both;
}

.mark {
  width: 3.5rem;
  height: 3.5rem;
  color: var(--accent);
  animation: mark-pulse 4s ease-in-out infinite;
}

@keyframes mark-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.75;
  }
}

.name {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.status {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.status__line {
  width: 2.75rem;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(196, 165, 116, 0.35)
  );
}

.status__line:last-child {
  background: linear-gradient(
    90deg,
    rgba(196, 165, 116, 0.35),
    transparent
  );
}

.status__label {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.footnote {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  padding-bottom: 0.5rem;
  animation: fade-up 1s ease-out 0.2s both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand,
  .footnote {
    animation: none;
  }

  .mark {
    animation: none;
  }
}
