:root {
  --bg: #050506;
  --text: #f7f7f4;
  --muted: #b9bbc2;
  --red: #f21117;
  --green: #66bd22;
  --line: rgba(255, 255, 255, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background:
    linear-gradient(118deg, transparent 0 38%, rgba(242, 17, 23, 0.38) 38.2% 38.7%, transparent 39%),
    repeating-linear-gradient(155deg, transparent 0 24px, rgba(242, 17, 23, 0.18) 25px 27px, transparent 28px 44px),
    radial-gradient(circle at 78% 22%, rgba(242, 17, 23, 0.2), transparent 34%),
    #050506;
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 22%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 5px);
  mix-blend-mode: screen;
  opacity: 0.35;
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

.page {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100% - 28px));
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(18px, 4vw, 46px) 0 28px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  min-height: calc(100vh - 150px);
}

.hero-image-wrap {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: #000;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65);
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.eyebrow {
  margin: 0;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(42px, 6.2vw, 82px);
  font-style: italic;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.86;
  text-transform: uppercase;
}

.lead {
  max-width: 510px;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.42;
}

.shop-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.shop-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-width: min(100%, 244px);
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: #f4f4ef;
  color: #111;
  font-weight: 900;
  transition: transform 150ms ease, border-color 150ms ease;
}

.shop-link:hover,
.shop-link:focus-visible,
.footer button:hover,
.footer button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.55);
}

.shop-link strong {
  font-size: 30px;
  line-height: 1;
}

.shop-logo {
  display: block;
  width: 104px;
  height: 38px;
  object-fit: contain;
}

.shop-ebay .shop-logo {
  width: 102px;
}

.shop-hood .shop-logo {
  width: 178px;
  height: 38px;
  object-fit: contain;
  object-position: center;
}

.tag-list,
.mini-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list span,
.mini-facts span,
.mini-facts a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.mini-facts a {
  transition: transform 150ms ease, border-color 150ms ease;
}

.mini-facts a:hover,
.mini-facts a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.55);
}

.fact-pill {
  gap: 9px;
}

.fact-pill i {
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: var(--red);
}

.fact-pill svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-facts {
  margin-top: 8px;
}

.footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
}

.footer button,
.close {
  cursor: pointer;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  transition: transform 150ms ease, border-color 150ms ease;
}

.footer button {
  min-height: 38px;
  padding: 0 13px;
}

.legal-dialog {
  width: min(620px, calc(100% - 28px));
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #0c0d10;
  color: var(--text);
  padding: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
}

.legal-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.legal-dialog h2 {
  margin-bottom: 18px;
  font-size: 32px;
}

.legal-dialog p {
  margin-bottom: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  font-size: 24px;
}

@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    max-width: 680px;
  }

}

@media (max-width: 520px) {
  .page {
    width: min(100% - 18px, 1080px);
  }

  .hero-image-wrap {
    border-radius: 14px;
  }

  h1 {
    font-size: 42px;
  }

  .shop-link,
  .footer button {
    width: 100%;
  }

  .footer {
    flex-direction: column;
  }
}
