:root {
  --bg: #080808;
  --card: #101010;
  --card-2: #181818;
  --text: #ffffff;
  --muted: #cfcfcf;
  --line: rgba(255, 255, 255, 0.16);
  --brand: #e3000f;
  --brand-dark: #b9000c;
  --brand-soft: rgba(227, 0, 15, 0.2);
  --radius: 14px;
  --shadow: 0 22px 48px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  max-width: 100vw;
  overflow-x: hidden;
  font-family: 'Oswald', sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 520px at 7% -12%, rgba(227, 0, 15, 0.34), transparent 56%),
    radial-gradient(950px 460px at 100% 6%, rgba(255, 255, 255, 0.07), transparent 52%),
    linear-gradient(165deg, #050505 0%, #0b0b0b 42%, #121212 100%);
}

body {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem 6rem;
  isolation: isolate;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background:
    repeating-linear-gradient(
      -24deg,
      rgba(255, 255, 255, 0.035) 0px,
      rgba(255, 255, 255, 0.035) 2px,
      transparent 2px,
      transparent 22px
    ),
    radial-gradient(800px 350px at 15% 25%, rgba(227, 0, 15, 0.16), transparent 60%),
    radial-gradient(620px 240px at 85% 70%, rgba(227, 0, 15, 0.11), transparent 65%);
  opacity: 0.65;
  animation: stripeShift 28s linear infinite;
}

body::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 100%),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.02) 0px,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 3px
    );
  mix-blend-mode: soft-light;
  opacity: 0.75;
}

.page {
  position: relative;
  width: 100%;
  max-width: 1100px;
  display: grid;
  gap: 24px;
  margin-top: 22px;
  animation: pageIn 0.7s ease;
  z-index: 1;
}

.logo img {
  height: 145px;
  margin: 20px auto 10px;
  display: block;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e7e7e7;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.subtitle {
  margin: 0 auto;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.5;
}

.footer,
footer {
  margin: 14px 0 10px;
  text-align: center;
  font-size: 0.9rem;
  color: #949494;
}

.footer a,
footer a {
  color: #bdbdbd;
}

@keyframes glitchTop {
  0% { clip: rect(0, 9999px, 0, 0); }
  10% { clip: rect(0, 9999px, 10px, 0); transform: translate(-3px, -2px); }
  20% { clip: rect(10px, 9999px, 20px, 0); transform: translate(3px, 2px); }
  100% { clip: rect(0, 9999px, 0, 0); transform: translate(0, 0); }
}

@keyframes glitchBottom {
  0% { clip: rect(0, 9999px, 0, 0); }
  10% { clip: rect(10px, 9999px, 25px, 0); transform: translate(3px, 1px); }
  20% { clip: rect(25px, 9999px, 40px, 0); transform: translate(-3px, -1px); }
  100% { clip: rect(0, 9999px, 0, 0); transform: translate(0, 0); }
}

@keyframes glitch {
  0%,
  100% { transform: translate(0, 0); }
  25% { transform: translate(1px, 0); }
  50% { transform: translate(0, 1px); }
  75% { transform: translate(-1px, 0); }
}

@keyframes pageIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes stripeShift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-80px, 40px, 0); }
}

@media (min-width: 768px) {
  .mobile-only {
    display: none;
  }
}

@media (max-width: 900px) {
  body::before {
    opacity: 0.48;
  }
}

@media (max-width: 767px) {
  .desktop-only {
    display: none;
  }
}
