@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;600;700;800&display=swap');

:root {
  color-scheme: dark;
  --bg: #09090b;
  --paper: #f4f1e8;
  --muted: #9b9a94;
  --acid: #d7ff43;
  --pink: #ff4f9b;
  --line: rgba(244, 241, 232, .16);
  font-family: Manrope, system-ui, sans-serif;
  background: var(--bg);
  color: var(--paper);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-height: 100vh; background: radial-gradient(circle at 78% 8%, #2b1638 0, transparent 30rem), var(--bg); }
a { color: inherit; }
.noise { position: fixed; inset: 0; z-index: 10; opacity: .035; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

.hero { min-height: 88vh; display: flex; flex-direction: column; justify-content: center; padding: 5vw clamp(24px, 8vw, 128px); border-bottom: 1px solid var(--line); }
.wordmark { position: absolute; top: 32px; text-decoration: none; font-size: clamp(22px, 2vw, 30px); font-weight: 800; letter-spacing: -.08em; }
.wordmark i { color: var(--acid); font-style: normal; }
.wordmark b { color: var(--pink); }
.kicker, .section-heading, .slug, footer { font-family: 'DM Mono', monospace; text-transform: uppercase; letter-spacing: .1em; }
.kicker { margin: 0 0 24px; color: var(--acid); font-size: 12px; }
h1 { max-width: 1100px; margin: 0; font-size: clamp(54px, 9vw, 148px); line-height: .84; letter-spacing: -.075em; font-weight: 800; }
h1 em { color: transparent; font-style: normal; -webkit-text-stroke: 1.5px var(--paper); }
.intro { max-width: 580px; margin: 42px 0 0 auto; color: #c8c5bc; font-size: clamp(16px, 1.4vw, 21px); line-height: 1.7; }
.skip { align-self: flex-start; margin-top: 38px; border-bottom: 1px solid var(--paper); padding: 8px 0; text-decoration: none; font: 500 12px 'DM Mono', monospace; text-transform: uppercase; letter-spacing: .08em; }
.skip span { color: var(--acid); margin-left: 12px; }

.catalog { padding: clamp(70px, 9vw, 140px) clamp(24px, 8vw, 128px); }
.section-heading { display: flex; justify-content: space-between; gap: 24px; margin-bottom: 36px; padding-bottom: 16px; border-bottom: 1px solid var(--line); font-size: 11px; }
.section-heading p { margin: 0; color: var(--acid); }
.section-heading span { color: var(--muted); }
.grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(24px, 4vw, 60px); }
.card { min-width: 0; text-decoration: none; }
.art { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background-position: center; background-size: cover; border: 1px solid var(--line); filter: saturate(.78); transition: filter .3s ease, transform .3s ease; }
.art::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.58)); }
.art.blank { background: repeating-linear-gradient(135deg, #17171b 0 18px, #121215 18px 36px); }
.launch { position: absolute; right: 20px; bottom: 18px; z-index: 1; padding: 10px 13px; background: var(--acid); color: #111; font: 500 11px 'DM Mono', monospace; text-transform: uppercase; transform: translateY(8px); opacity: 0; transition: .25s ease; }
.launch i { font-style: normal; margin-left: 6px; }
.card:hover .art { filter: saturate(1.15); transform: translateY(-5px); }
.card:hover .launch { opacity: 1; transform: none; }
.copy { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; padding-top: 18px; }
.slug { margin: 0 0 7px; color: var(--pink); font-size: 10px; }
h2 { margin: 0; font-size: clamp(25px, 2.5vw, 40px); line-height: 1; letter-spacing: -.045em; }
.description { margin: 18px 0 0; color: #b0aea7; line-height: 1.55; font-size: 14px; }
.copy small { grid-column: 1 / -1; color: #696862; font: 10px 'DM Mono', monospace; text-transform: uppercase; }
.empty { padding: 90px 20px; border: 1px dashed var(--line); text-align: center; color: var(--muted); }
.empty code { display: inline-block; margin-top: 12px; padding: 10px 14px; background: #16161a; color: var(--acid); }

footer { display: flex; justify-content: space-between; padding: 28px clamp(24px, 8vw, 128px); border-top: 1px solid var(--line); color: #77766f; font-size: 9px; }
footer p { margin: 0; }

@media (max-width: 760px) {
  .hero { min-height: 78vh; padding-top: 110px; }
  h1 { font-size: clamp(48px, 16vw, 80px); }
  .intro { margin-left: 0; }
  .grid { grid-template-columns: 1fr; }
  .copy { grid-template-columns: 1fr; }
  .description { margin-top: 0; }
  footer { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
