:root {
  color-scheme: dark;
  --bg: #101313;
  --ink: #f4efe7;
  --muted: #c9bda9;
  --line: rgba(244, 239, 231, 0.18);
  --accent: #d4a94f;
  --panel: rgba(255, 255, 255, 0.035);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 169, 79, 0.18), transparent 34rem),
    linear-gradient(180deg, #151918 0%, var(--bg) 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.page-shell {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 2rem;
}

.intro {
  display: grid;
  justify-items: center;
  width: min(100%, 42rem);
  padding: clamp(2rem, 7vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  border: 1px solid var(--line);
  background: var(--panel);
  text-align: center;
}

.mark {
  width: clamp(4.75rem, 16vw, 8rem);
  height: auto;
  margin-bottom: 1.25rem;
}

.logo {
  width: min(100%, 18rem);
  height: auto;
}

.summary {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  color: var(--ink);
  font-size: clamp(1.15rem, 2.6vw, 1.6rem);
  line-height: 1.35;
}

.status {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0;
}

@media (max-width: 34rem) {
  .page-shell {
    padding: 1rem;
  }

  .intro {
    min-height: calc(100svh - 2rem);
  }
}
