:root {
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #f8fbff;
  background: #07131f;
  font-synthesis: none;
}

* { box-sizing: border-box; }

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

body { overflow-x: hidden; }

.background,
.veil {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
}

.background {
  object-fit: cover;
  transform: scale(1.025);
}

.veil {
  background:
    linear-gradient(90deg, rgba(2, 12, 20, .82) 0%, rgba(4, 17, 26, .68) 48%, rgba(3, 16, 26, .54) 100%),
    linear-gradient(180deg, rgba(3, 16, 26, .22), rgba(2, 9, 16, .64));
  backdrop-filter: saturate(.85);
}

main {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: clamp(24px, 6vw, 88px);
}

.card {
  width: min(720px, 100%);
  padding: clamp(28px, 4.5vw, 56px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 30px;
  background: rgba(7, 20, 31, .52);
  box-shadow: 0 32px 100px rgba(0, 0, 0, .35);
  backdrop-filter: blur(18px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, .74);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7ee8b8;
  box-shadow: 0 0 0 6px rgba(126, 232, 184, .12);
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 9vw, 6.7rem);
  font-weight: 800;
  letter-spacing: -.075em;
  line-height: .92;
}

.status {
  margin: 26px 0 0;
  color: #dff9ec;
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 700;
}

.message {
  max-width: 62ch;
  margin: 24px 0 0;
  color: rgba(246, 250, 255, .84);
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.75;
}

.signature {
  margin: 18px 0 0;
  color: #fff;
  font-size: .96rem;
  font-weight: 800;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 15px;
  color: #fff;
  font-size: .91rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, filter .18s ease, background .18s ease;
}

.button:hover { transform: translateY(-2px); filter: brightness(1.08); }
.button:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.button svg { width: 20px; height: 16px; }
.discord { background: #5865f2; border-color: #6975f4; }
.stock { background: rgba(255, 255, 255, .1); }

.footnote {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .54);
  font-size: .78rem;
  font-weight: 600;
}

@media (max-width: 620px) {
  main { align-items: end; padding: 14px; }
  .card { border-radius: 24px; }
  .actions { flex-direction: column; }
  .button { width: 100%; }
}

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