

:root {
  --black: #070707;
  --panel: #101010;
  --red: #e53935;
  --cream: #d6c7b1;
  --silver: #dedbd5;
  --muted: #6e6a65;
  --line: rgba(214, 199, 177, .11);
}

* { box-sizing: border-box; }
html { background: var(--black); scroll-behavior: smooth; }
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 7%, rgba(229,57,53,.10), transparent 24rem),
    var(--black);
  color: var(--silver);
  font-family: "SFMono-Regular", "SFMono-Regular", Consolas, monospace;
}
body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  content: "";
  opacity: .23;
  mask-image: linear-gradient(to bottom, #000 0, transparent 62%);
}
button, a { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }

.page-shell { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }
.hero { position: relative; min-height: 430px; padding-top: 22px; }
.topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: #625f5b;
  font-size: 9px;
  letter-spacing: .11em;
}
.topline p { margin: 0; }
.status-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 6px 1px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
}
.genza-logo-link { display: block; width: 190px; height: 54px; }
.genza-logo { display: block; width: 100%; height: 100%; object-fit: contain; object-position: left center; }

.hero-title-wrap { position: relative; margin-top: 66px; }
.hero-kicker { display: block; margin-bottom: 15px; color: var(--red); font-size: 8px; letter-spacing: .25em; }
.hero h1 {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  width: 100%;
  margin: 0;
  color: var(--cream);
  font-family: Arial Black, Helvetica Neue, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -.09em;
  line-height: .72;
  white-space: nowrap;
}
.hero h1 > span { font-size: clamp(72px, 11.5vw, 158px); transform: scaleX(1.04); transform-origin: left; }
.hero h1 em {
  margin: 0 0 4px 26px;
  color: var(--red);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(36px, 5.2vw, 72px);
  font-style: normal;
  letter-spacing: -.03em;
  -webkit-text-stroke: 1px var(--red);
}
.hero-watermark {
  position: absolute;
  z-index: 0;
  top: -100px;
  right: -12px;
  color: transparent;
  font-family: Arial Black, sans-serif;
  font-size: 250px;
  font-weight: 900;
  line-height: 1;
  opacity: .6;
  -webkit-text-stroke: 1px rgba(229,57,53,.18);
  pointer-events: none;
}
.hero-meta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 34px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}
.hero-meta p { margin: 0; color: #706b65; font-size: 9px; letter-spacing: .035em; line-height: 1.45; }
.download-button {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(229,57,53,.45);
  background: rgba(229,57,53,.06);
  padding: 11px 13px;
  color: var(--cream);
  font-size: 8px;
  letter-spacing: .11em;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.download-button span { color: var(--red); font-size: 15px; line-height: 0; transition: transform .2s ease; }
.download-button:hover { border-color: var(--red); background: var(--red); color: #080808; transform: translateY(-2px); }
.download-button:hover span { color: #080808; transform: translate(2px,-2px); }

.shape-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.shape-card {
  position: relative;
  display: flex;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #171717;
  border-radius: 5px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.018), transparent 42%),
    var(--panel);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: border-color .3s ease, background .3s ease, transform .3s cubic-bezier(.2,.8,.2,1);
}
.shape-card::before {
  position: absolute;
  inset: 10px;
  border: 1px solid transparent;
  content: "";
  transition: border-color .3s ease;
}
.shape-card::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(229,57,53,.15), transparent 55%);
  content: "";
  opacity: 0;
  transition: opacity .3s ease;
}
.shape-card img {
  position: relative;
  z-index: 1;
  width: 43%;
  height: 43%;
  object-fit: contain;
  filter: drop-shadow(0 0 0 rgba(229,57,53,0));
  transition: transform .4s cubic-bezier(.2,.9,.25,1), filter .35s ease;
}
.shape-card:hover { z-index: 1; border-color: rgba(229,57,53,.42); background: #131010; transform: translateY(-3px); }
.shape-card:hover::before { border-color: rgba(229,57,53,.12); }
.shape-card:hover::after { opacity: 1; }
.shape-card:hover img { transform: scale(.94) rotate(-3deg); filter: drop-shadow(0 0 20px rgba(229,57,53,.26)); }
.copy-label, .shape-number {
  position: absolute;
  z-index: 2;
  bottom: 15px;
  font-size: 8px;
  letter-spacing: .12em;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .2s ease, transform .2s ease, color .2s ease;
}
.copy-label { right: 17px; color: var(--cream); }
.shape-number { left: 17px; color: #48433f; }
.shape-card:hover .copy-label, .shape-card:hover .shape-number, .shape-card.is-copied .copy-label { opacity: 1; transform: translateY(0); }
.shape-card.is-copied { border-color: var(--red); }
.shape-card.is-copied .copy-label { color: var(--red); }
.shape-card.is-copied img { transform: scale(1.04); }

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 210px;
  color: #56514d;
  font-size: 8px;
  letter-spacing: .09em;
}
footer i { color: var(--red); font-style: normal; }
footer a { color: var(--cream); transition: color .2s ease; }
footer a:hover { color: var(--red); }
.cursor-orbit {
  position: fixed;
  z-index: 100;
  top: -9px;
  left: -9px;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(229,57,53,.65);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(229,57,53,.25);
  pointer-events: none;
  will-change: transform;
}

@media (max-width: 900px) {
  .page-shell { width: min(760px, calc(100% - 32px)); }
  .hero { min-height: 390px; }
  .hero h1 > span { font-size: clamp(68px, 14.5vw, 116px); }
  .hero h1 em { margin-left: 16px; }
  .shape-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  body::before { background-size: 44px 44px; }
  .page-shell { width: calc(100% - 24px); }
  .hero { min-height: 340px; padding-top: 14px; }
  .topline p { display: none; }
  .genza-logo-link { width: 165px; height: 46px; }
  .hero-title-wrap { margin-top: 62px; }
  .hero-kicker { font-size: 6px; }
  .hero h1 { display: block; white-space: normal; }
  .hero h1 > span { display: block; font-size: 18.2vw; letter-spacing: -.08em; }
  .hero h1 em { display: block; margin: 11px 0 0; font-size: 36px; letter-spacing: .02em; }
  .hero-watermark { top: -45px; right: -5px; font-size: 170px; }
  .hero-meta { align-items: flex-end; margin-top: 25px; }
  .hero-meta p { max-width: 54%; font-size: 6px; }
  .download-button { gap: 8px; padding: 9px; font-size: 6px; }
  .shape-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; }
  .shape-card img { width: 47%; height: 47%; }
  .copy-label, .shape-number { bottom: 11px; font-size: 7px; }
  .copy-label { right: 12px; }
  .shape-number { left: 12px; }
  footer { min-height: 150px; font-size: 6px; }
  .cursor-orbit { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
