:root {
  color-scheme: dark;
  --ink: #ebdbb2;
  --muted: #a89984;
  --bg: #1d2021;
  --bg-deep: #141617;
  --accent: #d65d0e;
  --line: rgba(235, 219, 178, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Bebas Neue", sans-serif;
  background: radial-gradient(circle at top, #282828 0%, var(--bg) 55%, var(--bg-deep) 100%);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page {
  position: relative;
  width: min(1100px, 90vw);
  min-height: 75vh;
  padding: 6rem 3rem;
  border-radius: 28px;
  background: linear-gradient(150deg, rgba(40, 40, 40, 0.92) 0%, rgba(24, 24, 24, 0.95) 70%);
  border: 1px solid rgba(235, 219, 178, 0.08);
  box-shadow: 0 40px 90px rgba(8, 8, 8, 0.75);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.85rem;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  font-size: 1rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.micro {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.5;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.glow {
  position: absolute;
  inset: auto -10% -35% auto;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(214, 93, 14, 0.2), rgba(24, 24, 24, 0));
  filter: blur(26px);
  opacity: 0.7;
  animation: float 12s ease-in-out infinite;
}

.grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(transparent 74%, rgba(235, 219, 178, 0.06) 100%),
    linear-gradient(90deg, rgba(235, 219, 178, 0.06) 1px, transparent 1px);
  background-size: 100% 100%, 120px 120px;
  opacity: 0.3;
  mask-image: radial-gradient(circle at 50% 40%, rgba(0, 0, 0, 1) 34%, rgba(0, 0, 0, 0) 72%);
  animation: grid-shift 24s linear infinite;
}

.lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
  transform: translateZ(0);
  animation: slow-pan 20s ease-in-out infinite;
}

.line-group {
  transform-origin: 50% 50%;
  animation: slow-rotate 26s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-24px, -22px, 0);
  }
}

@keyframes slow-pan {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-12px);
  }
}

@keyframes slow-rotate {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(1.4deg) scale(1.01);
  }
}

@keyframes grid-shift {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 0 0, 120px 120px;
  }
}

@media (max-width: 700px) {
  .page {
    padding: 4.5rem 2rem;
  }

  .hero {
    max-width: 100%;
  }

  .micro {
    letter-spacing: 0.24em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .glow,
  .lines,
  .line-group,
  .grid {
    animation: none;
  }
}
