:root {
  color-scheme: dark;
  --bg: #111111;
  --panel: #333333;
  --text: #f5f3ef;
  --muted: #b9b2a8;
  --stone: #6b6b6b;
  --line: rgba(245, 243, 239, 0.14);
  --accent: #e39c5a;
  --accent-soft: rgba(227, 156, 90, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 28%, rgba(227, 156, 90, 0.07), transparent 28rem),
    linear-gradient(180deg, #151515 0%, var(--bg) 62%);
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image: linear-gradient(rgba(245, 243, 239, 0.025) 1px, transparent 1px);
  background-size: 100% 4px;
  opacity: 0.22;
}

.page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 4rem 1.25rem;
}

.intro {
  width: min(100%, 34rem);
  text-align: center;
  animation: fade-in 900ms ease-out both;
}

.mark {
  display: block;
  width: 6.5rem;
  height: 6.5rem;
  margin: 0 auto 1.7rem;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  line-height: 1;
  text-transform: uppercase;
}

.status::before,
.status::after {
  width: 1.55rem;
  height: 1px;
  content: "";
  background: rgba(227, 156, 90, 0.54);
}

h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0;
}

.tagline {
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.shape {
  margin: 0.7rem 0 0;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.7;
}

footer {
  position: fixed;
  right: 1.25rem;
  bottom: 1rem;
  color: rgba(245, 243, 239, 0.48);
  font-size: 0.78rem;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }

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

@media (max-width: 34rem) {
  .page {
    padding-inline: 1rem;
  }
  footer {
    right: 0;
    left: 0;
    text-align: center;
  }
}
