:root {
  --bg: #111111;
  --fg: #f2f2f2;
  --yell: #ffe600;
  --hot: #c92500;
  --grid: #333;
}

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

body {
  font-family: "IBM Plex Mono", monospace;
  background: var(--bg);
  color: var(--fg);
  min-height: 100vh;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 48px 48px;
}

.frame {
  border: 4px solid var(--yell);
  margin: 12px;
  min-height: calc(100vh - 24px);
}

.nav {
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 3px solid var(--fg);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  animation: slam 0.4s steps(3) both;
}

.nav a {
  color: var(--yell);
  text-decoration: none;
  font-weight: 600;
}

.hero {
  padding: 2.5rem 1.25rem 3rem;
  border-bottom: 3px solid var(--fg);
}

.brand {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: clamp(4.5rem, 18vw, 10rem);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--yell);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: slam 0.5s 0.1s steps(4) both;
  text-shadow: 6px 6px 0 var(--hot);
}

.hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 4vw, 2.6rem);
  line-height: 1.05;
  text-transform: uppercase;
  max-width: 14ch;
  margin-bottom: 1rem;
  animation: slam 0.5s 0.2s steps(4) both;
}

.sub {
  font-size: 0.95rem;
  max-width: 36ch;
  line-height: 1.5;
  margin-bottom: 2rem;
  color: #bbb;
  animation: slam 0.5s 0.3s steps(4) both;
}

.cta {
  display: inline-block;
  background: var(--hot);
  color: var(--fg);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.9rem 1.25rem;
  border: 3px solid var(--fg);
  box-shadow: 6px 6px 0 var(--yell);
  transition: transform 0.1s steps(2), box-shadow 0.1s steps(2);
  animation: slam 0.5s 0.4s steps(4) both;
}

.cta:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--yell);
}

.block {
  padding: 2rem 1.25rem 3rem;
}

.block h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  color: var(--yell);
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid article {
  border: 3px solid var(--fg);
  padding: 1.25rem;
  background: #1a1a1a;
}


.grid article span {
  display: block;
  font-weight: 600;
  color: var(--hot);
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
}


.grid article p {
  font-size: 0.95rem;
  line-height: 1.45;
}

footer {
  border-top: 3px solid var(--fg);
  padding: 1rem 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: #888;
}

@keyframes slam {
  from {
    opacity: 0;
    transform: translateX(-12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (min-width: 760px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
