:root {
  --bg: #050607;
  --fg: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.65);
  --muted2: rgba(255, 255, 255, 0.5);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  overflow: hidden;
}

.bg {
  position: fixed;
  inset: 0;
  background-image: url("end%20assets/arf.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  filter: blur(2px) contrast(1.08) brightness(0.65);
}

.bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 700px at 50% 40%, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.85)),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.75));
}

.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.12) 0px,
      rgba(255, 255, 255, 0.12) 1px,
      rgba(0, 0, 0, 0) 2px,
      rgba(0, 0, 0, 0) 6px
    );
  mix-blend-mode: overlay;
  pointer-events: none;
}

.content {
  position: relative;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
}

.copy {
  width: min(680px, 92vw);
  padding: 0;
  margin: 0;
}

h1 {
  margin: 0 0 14px 0;
  font-size: clamp(28px, 4.4vw, 44px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 650;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: 0.02em;
}

.subtle {
  margin-top: 10px;
  color: var(--muted2);
  font-size: 12px;
}

@media (prefers-reduced-motion: reduce) {
  .bg {
    transform: none;
  }
}
