:root {
  --green: #09c45f;
  --green-dark: #07994d;
  --white: #f8f8f2;
  --black: #070707;
  --shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--white);
  font-family: "Courier New", Courier, monospace;
  font-weight: 800;
  letter-spacing: 0;
  background:
    linear-gradient(rgba(8, 8, 8, 0.38), rgba(8, 8, 8, 0.38)),
    repeating-linear-gradient(0deg, #151515 0 2px, #0a0a0a 2px 4px),
    #111;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background: #111;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.1), transparent 1px),
    radial-gradient(circle at 64% 10%, rgba(255, 255, 255, 0.08), transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 22%, transparent 74%, rgba(0, 0, 0, 0.22));
  background-size: 16px 16px, 25px 25px, 100% 100%;
  mix-blend-mode: screen;
  opacity: 0.32;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 2px, #fff 2px 3px),
    repeating-linear-gradient(90deg, transparent 0 5px, #000 5px 6px);
}

.site-shell {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
}

.hero {
  min-height: 100vh;
  padding: 24px 0 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-sticker,
.mini-sticker,
.hero-image {
  display: block;
  object-fit: contain;
  filter: grayscale(1) contrast(1.25) drop-shadow(0 14px 0 rgba(0, 0, 0, 0.55));
}

.logo-sticker {
  width: min(280px, 70vw);
  aspect-ratio: 1;
  margin: 18px 0 12px;
}

.mini-sticker {
  width: min(180px, 48vw);
  aspect-ratio: 1;
  margin: 26px 0 18px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 9vw, 82px);
  line-height: 0.92;
  text-shadow: 4px 4px 0 #000;
  text-transform: uppercase;
}

.tagline {
  width: min(620px, 100%);
  margin: 14px auto 22px;
  font-size: clamp(16px, 2.3vw, 22px);
  line-height: 1.25;
  text-shadow: 3px 3px 0 #000;
}

.socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 54px);
  margin: 0;
}

.socials a {
  min-width: 24px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  color: var(--green);
  font-size: 25px;
  line-height: 1;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.65);
  transition: transform 160ms ease, color 160ms ease;
}

.socials a:hover,
.socials a:focus-visible {
  color: #25ff86;
  transform: translateY(-4px) rotate(-4deg);
}

.hero-image {
  width: min(360px, 74vw);
  aspect-ratio: 1;
  margin: 70px 0 24px;
}

.hero-video {
  width: min(620px, 92vw);
  aspect-ratio: 16 / 9;
  max-height: 380px;
  margin: 0 0 30px;
  display: block;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #050505;
  box-shadow: var(--shadow);
  filter: contrast(1.08) brightness(1.04);
}

.menu-panel {
  width: min(760px, 100%);
  display: grid;
  gap: 20px;
}

.shop-title {
  display: inline-grid;
  place-items: center;
  min-height: 44px;
  color: var(--green);
  font-size: clamp(22px, 4vw, 34px);
  text-shadow: 3px 3px 0 #000;
}

.menu-button,
.ca-pill {
  border: 0;
  font: inherit;
  color: var(--white);
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.7);
  box-shadow: var(--shadow);
}

.menu-button {
  min-height: 60px;
  display: grid;
  place-items: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--green);
  font-size: clamp(23px, 3.7vw, 31px);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.menu-button:hover,
.menu-button:focus-visible,
.ca-pill:hover,
.ca-pill:focus-visible {
  background: #16e474;
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.55);
}

.contract {
  padding: 54px 0 120px;
}

.contract h2 {
  margin: 0 0 24px;
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.2;
  text-shadow: 3px 3px 0 #000;
  overflow-wrap: anywhere;
}

.ca-pill {
  width: min(780px, 100%);
  min-height: 44px;
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  color: #050505;
  background: #f5f5f2;
  text-shadow: none;
  overflow: hidden;
}

.ca-pill span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-note {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--green);
  text-shadow: 2px 2px 0 #000;
}

footer {
  width: min(520px, calc(100% - 32px));
  margin: -78px auto 0;
  padding-bottom: 18px;
  text-align: center;
  line-height: 1.45;
  text-shadow: 3px 3px 0 #000;
}

footer p {
  margin: 0;
}

footer a {
  display: inline-block;
  margin-top: 4px;
}

@media (max-width: 720px) {
  body {
    background:
      linear-gradient(rgba(8, 8, 8, 0.4), rgba(8, 8, 8, 0.4)),
      repeating-linear-gradient(0deg, #151515 0 2px, #0a0a0a 2px 4px),
      #111;
  }

  .hero {
    min-height: auto;
    padding-top: 18px;
  }

  .hero-image {
    width: min(300px, 78vw);
    margin-top: 48px;
  }

  .logo-sticker {
    width: min(230px, 72vw);
    margin-top: 18px;
  }

  .mini-sticker {
    width: min(150px, 48vw);
  }

  .hero-video {
    width: min(420px, 92vw);
    margin-bottom: 30px;
  }

  .menu-panel {
    gap: 16px;
  }

  .menu-button {
    min-height: 56px;
  }

}
