:root {
  --bg: #080b0f;
  --paper: #efe4cf;
  --soft: #cdbb9f;
  --muted: #9f8f78;
  --line: rgba(214, 190, 152, 0.2);
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: radial-gradient(circle at top, #132033 0%, var(--bg) 48%, #06080c 100%);
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
}
.shell {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
}
.visual {
  position: absolute;
  inset: 0;
}
.hero {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}
.hero.mobile { display: none; }
.veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(4, 6, 9, 0.35), rgba(4, 6, 9, 0.8)),
    radial-gradient(circle at 50% 32%, rgba(214, 178, 126, 0.08), transparent 28%),
    radial-gradient(circle at 50% 72%, rgba(8, 12, 18, 0.15), rgba(8, 12, 18, 0.88) 68%);
}
.content {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 7rem 1.5rem 5rem;
}
.mark {
  color: var(--soft);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
h1 {
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}
.dek {
  margin: 1.25rem auto 0;
  max-width: 42rem;
  color: var(--soft);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.7;
}
.status {
  margin: 1.6rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.links {
  margin-top: 2.2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.links a {
  color: var(--paper);
  text-decoration: none;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  background: rgba(9, 12, 16, 0.35);
  backdrop-filter: blur(2px);
}
.links a:hover,
.links a:focus-visible {
  background: rgba(19, 23, 30, 0.55);
  outline: none;
}
@media (max-width: 760px) {
  .hero.desktop { display: none; }
  .hero.mobile { display: block; object-position: center; opacity: 0.42; }
  .content { justify-content: end; padding-bottom: 4.5rem; }
}
