/* 1295 Domains — logo on a cream card, warm dark room around it. */

:root {
  --room: #1b1714;
  --room-2: #2a221c;
  --paper: #fff8ee;
  --ink: #1b1714;
  --muted: #8a8178;
  --red: #c4161c;
  --red-dark: #9a1015;
  --green: #2f7a32;
  --sans: "IBM Plex Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html,
body { overflow-x: clip; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 50% 18%, #3a2e26 0%, transparent 70%),
    var(--room);
  -webkit-font-smoothing: antialiased;
}

.stage {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 48px 20px 28px;
}

.card {
  width: min(560px, 100%);
  background: var(--paper);
  border-radius: 18px;
  padding: 44px 36px 32px;
  text-align: center;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 24px 60px rgba(0, 0, 0, 0.35);
}

.logo {
  display: block;
  max-width: min(420px, 100%);
  margin: 0 auto;
}

.logo img {
  width: 100%;
  height: auto;
  display: block;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  color: #fff;
  background: var(--red);
  border: 2px solid var(--red);
  border-radius: 8px;
  padding: 12px 20px;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.btn:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn:active { transform: translateY(1px); }
.btn:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: #c9bfb3;
}

.btn--ghost:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.help {
  margin: 22px 0 0;
  font-size: 14px;
}

.help a {
  color: #6f675f;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.help a:hover { color: var(--ink); }
.help a:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

footer {
  padding: 0 20px 28px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

footer p { margin: 0; }

.miss {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 48px 20px;
  text-align: center;
  color: #f4efe6;
}

.miss h1 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 16px;
}

@media (max-width: 414px) {
  .card { padding: 32px 20px 24px; }
  .actions { flex-direction: column; }
  .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .btn { transition: none; }
}
