:root {
  --bg: #060a10;
  --paper: #e7ece8;
  --soft: #b9cbc5;
  --muted: #90a29d;
  --line: rgba(180, 206, 199, 0.22);
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: radial-gradient(circle at top, #16314f 0%, #08101a 46%, var(--bg) 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.45;
}
.hero.mobile { display: none; }
.veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(2, 6, 10, 0.28), rgba(2, 6, 10, 0.78)),
    radial-gradient(circle at 50% 42%, rgba(214, 223, 222, 0.06), transparent 30%),
    radial-gradient(circle at 50% 85%, rgba(5, 9, 15, 0.08), rgba(5, 9, 15, 0.82) 72%);
}
.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: 38rem;
  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(7, 12, 16, 0.32);
  backdrop-filter: blur(2px);
}
.links a:hover,
.links a:focus-visible {
  background: rgba(16, 24, 32, 0.56);
  outline: none;
}
@media (max-width: 760px) {
  .hero.desktop { display: none; }
  .hero.mobile { display: block; object-position: center; opacity: 0.48; }
  .content { justify-content: end; padding-bottom: 4.5rem; }
}
