:root {
  --accent: #b2d0c8;
  --dark: #0e0e0c;
  --light: #f6f4f0;
  --text-light-muted: #c8c5bc;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--dark);
  color: var(--light);
  font-family: "Inter", system-ui, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.stage {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 5vw;
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  animation: rise 1.1s ease forwards 0.15s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mark {
  margin: 0 auto 2.5rem;
  width: 88px;
  height: 88px;
}

.ring {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.ring-outer,
.ring-inner {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1;
  opacity: 0.55;
  transform-origin: 60px 60px;
}

.ring-outer {
  stroke-dasharray: 2 6;
  animation: spin 34s linear infinite;
}

.ring-inner {
  stroke-dasharray: 1 4;
  animation: spin 22s linear infinite reverse;
}

.ring-core {
  fill: var(--accent);
  animation: pulse 2.6s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; r: 3.4; }
  50% { opacity: 1; r: 4.6; }
}

.eyebrow {
  margin: 0 0 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--accent);
}

.title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(3rem, 9vw, 5.5rem);
  letter-spacing: 0.04em;
  line-height: 1;
}

.subtitle {
  margin: 0.8rem 0 0;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--text-light-muted);
}

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

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 2.6rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(178, 208, 200, 0.35);
  border-radius: 999px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(178, 208, 200, 0.6);
  animation: dot-pulse 1.8s ease-out infinite;
}

@keyframes dot-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(178, 208, 200, 0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(178, 208, 200, 0); }
  100% { box-shadow: 0 0 0 0 rgba(178, 208, 200, 0); }
}

.status-text {
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--light);
}

.foot {
  margin-top: 3.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  color: rgba(200, 197, 188, 0.5);
}
