@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Rubik+Dirt&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  color-scheme: dark;
  --bg: #08030f;
  --panel: #12091f;
  --text: #ffffff;
  --muted: #c4b8d4;
  --dim: #8c75a8;
  --acid: #c7ff4e;
  --techno: #c7ff4e;
  --trippy: #9b6dff;
  --dystopia: #c94343;
  --purple: #241039;
  --purple-deep: #12071e;
  --line: rgba(151,91,255,.18);
  --field-line: rgba(199,255,78,.24);
  --glass: rgba(18,7,31,.72);
  --shadow: 0 24px 70px rgba(0,0,0,.32);
  --font-street: "Rubik Dirt", "Space Grotesk", system-ui, sans-serif;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "DM Mono", ui-monospace, "SFMono-Regular", Consolas, monospace;
  --page-pad: clamp(24px, 5vw, 80px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--muted);
  background-color: var(--bg);
  background-image:
    radial-gradient(circle, rgba(255,255,255,.045) 0 2px, transparent 2px),
    linear-gradient(120deg, rgba(199,255,78,.045), transparent 28%),
    linear-gradient(145deg, rgba(35,14,58,.74), rgba(8,3,15,.98) 38%, rgba(33,13,54,.76));
  background-size: 32px 32px, 100% 100%, 100% 100%;
  background-attachment: fixed;
  font-family: var(--font-body);
  font-size: clamp(14px, 1vw, 14px);
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0 18%, rgba(155,109,255,.08) 18.2% 18.5%, transparent 18.7% 100%),
    linear-gradient(70deg, transparent 0 64%, rgba(199,255,78,.045) 64.1% 64.35%, transparent 64.55% 100%),
    linear-gradient(180deg, transparent, rgba(0,0,0,.34));
  opacity: .9;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(180deg, rgba(255,255,255,.025) 0 1px, transparent 1px 7px);
  opacity: .12;
  mix-blend-mode: screen;
}

body > * {
  position: relative;
  z-index: 1;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

a,
button,
input,
select,
textarea {
  min-height: 44px;
}

.container {
  width: min(1240px, calc(100% - (var(--page-pad) * 2)));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 12px;
  border: 1px solid var(--text);
  background: var(--bg);
  color: var(--text);
  font-size: clamp(11px, .8vw, 11px);
  letter-spacing: .2em;
  text-transform: uppercase;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(15,6,25,.98), rgba(8,3,15,.92)),
    rgba(8,3,15,.95);
  backdrop-filter: blur(14px);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 1px;
  background: var(--acid);
}

.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand img {
  width: clamp(150px, 18vw, 260px);
  height: auto;
  background: transparent;
  border: 0;
  box-shadow: none;
  filter: drop-shadow(0 0 16px rgba(199,255,78,.08));
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid var(--field-line);
  border-radius: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
  border: 1px solid rgba(151,91,255,.12);
  border-radius: 999px;
  padding: 7px;
  background:
    linear-gradient(90deg, rgba(18,9,31,.92), rgba(22,8,36,.72)),
    rgba(8,3,15,.84);
  box-shadow: inset 0 0 30px rgba(151,91,255,.08);
}

.nav-links a {
  position: relative;
  z-index: 0;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: clamp(104px, 9vw, 150px);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  background: rgba(255,255,255,.018);
  color: var(--dim);
  font-size: clamp(11px, .8vw, 11px);
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  overflow: hidden;
  transition: color .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.nav-links a::before {
  content: "";
  position: absolute;
  inset: 5px;
  z-index: -1;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(199,255,78,.12), rgba(155,109,255,.14));
  opacity: 0;
  transform: scaleX(.72);
  transition: opacity .22s ease, transform .22s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 7px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity .22s ease, transform .22s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  color: var(--acid);
  border-color: rgba(199,255,78,.45);
  background:
    linear-gradient(180deg, rgba(199,255,78,.08), rgba(199,255,78,.02)),
    rgba(22,8,36,.95);
  box-shadow: 0 0 0 1px rgba(199,255,78,.06), inset 0 -1px 0 rgba(199,255,78,.42);
  transform: translateY(-1px);
  outline: none;
}

.nav-links a:hover::before,
.nav-links a:focus-visible::before,
.nav-links a.active::before {
  opacity: 1;
  transform: scaleX(1);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.active::after {
  opacity: .78;
  transform: scaleX(1);
}

.section-band,
.content-section,
.morocco-statement,
.site-footer,
.article-main {
  border-bottom: 1px solid var(--line);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 96px 0 64px;
  background:
    linear-gradient(90deg, rgba(199,255,78,.04), transparent 36%, rgba(155,109,255,.08)),
    linear-gradient(145deg, rgba(40,13,70,.95), rgba(8,3,15,.9) 44%, rgba(64,30,98,.7)),
    var(--bg);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 32vw;
  height: 140vh;
  pointer-events: none;
  filter: blur(18px);
  opacity: .13;
  animation: slow-drift 10s ease-in-out infinite alternate;
}

.hero::before {
  left: -16vw;
  top: -18vh;
  background: linear-gradient(180deg, transparent, var(--trippy), transparent);
  transform: skewX(-18deg);
}

.hero::after {
  right: -18vw;
  top: -26vh;
  background: linear-gradient(180deg, transparent, var(--techno), transparent);
  animation-delay: -3s;
  transform: skewX(16deg);
}

@keyframes slow-drift {
  from { translate: 0 0; }
  to { translate: 4vw -2vw; }
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .03;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 20%, #fff 0 1px, transparent 1px),
    radial-gradient(circle at 80% 35%, #fff 0 1px, transparent 1px),
    radial-gradient(circle at 42% 72%, #fff 0 1px, transparent 1px);
  background-size: 48px 48px, 64px 64px, 38px 38px;
  animation: grain-shift 1.4s steps(2) infinite;
}

@keyframes grain-shift {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-14px, 9px, 0); }
  100% { transform: translate3d(11px, -8px, 0); }
}

.hero-watermark {
  position: absolute;
  right: -3vw;
  top: 50%;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 40vw;
  font-weight: 700;
  line-height: .8;
  opacity: .03;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 160px);
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
  text-align: center;
}

.hero-copy {
  align-self: center;
  max-width: min(1040px, 100%);
}

.hero-title {
  display: grid;
  gap: 10px;
}

.hero-title span,
.hero-brand-word,
.hero-underground {
  display: block;
  color: transparent;
  font-family: var(--font-street);
  font-size: 108px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: .9;
  text-transform: uppercase;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(0 0 18px rgba(199,255,78,.16))
    drop-shadow(0 14px 34px rgba(0,0,0,.52));
}

.hero-brand-word {
  background-image: linear-gradient(105deg, #c7ff4e 0%, #b5aebf 28%, #8e64e6 66%, #c94343 100%);
  -webkit-text-stroke: 1px rgba(8,3,15,.2);
}

.hero-underground {
  font-size: 76px;
  background-image: linear-gradient(105deg, #8f849d 0%, #a94848 54%, #c7ff4e 100%);
  -webkit-text-stroke: 1px rgba(199,255,78,.12);
  filter:
    drop-shadow(0 0 14px rgba(155,109,255,.16))
    drop-shadow(0 12px 28px rgba(0,0,0,.5));
}

@media (max-width: 760px) {
  .hero-title {
    gap: 7px;
  }

  .hero-title span,
  .hero-brand-word,
  .hero-underground {
    font-size: 58px;
  }

  .hero-underground {
    font-size: 43px;
  }
}

@media (max-width: 420px) {
  .hero-title span,
  .hero-brand-word,
  .hero-underground {
    font-size: 46px;
  }

  .hero-underground {
    font-size: 34px;
  }
}

.hero-lead {
  margin: 28px 0 0;
  color: var(--acid);
  font-size: clamp(13px, .95vw, 13px);
  font-weight: 500;
  letter-spacing: .2em;
  line-height: 1.6;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(199,255,78,.18);
}

.hero-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 28px;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}

.hero-tabs::-webkit-scrollbar {
  display: none;
}

.hero-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(199,255,78,.34);
  border-radius: 6px;
  padding: 12px 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), transparent),
    rgba(33,13,54,.78);
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  overflow: hidden;
  box-shadow: inset 0 0 24px rgba(199,255,78,.05);
  transition: border-color .2s ease, color .2s ease, transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.hero-tab-techno {
  border-color: color-mix(in srgb, var(--techno) 55%, transparent);
  color: var(--techno);
}

.hero-tab-trippy {
  border-color: color-mix(in srgb, var(--trippy) 55%, transparent);
  color: var(--trippy);
}

.hero-tab-dystopia {
  border-color: color-mix(in srgb, var(--dystopia) 55%, transparent);
  color: var(--dystopia);
}

.hero-tab:hover,
.hero-tab:focus-visible,
.hero-tab.click-target.is-clicked {
  border-color: currentColor;
  outline: none;
  transform: translateY(-2px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), transparent),
    rgba(33,13,54,.94);
  box-shadow: 0 14px 32px rgba(0,0,0,.22);
}

.hero-tab-techno:hover,
.hero-tab-techno:focus-visible,
.hero-tab-techno.click-target.is-clicked {
  color: var(--techno);
}

.hero-tab-trippy:hover,
.hero-tab-trippy:focus-visible,
.hero-tab-trippy.click-target.is-clicked {
  color: var(--trippy);
}

.hero-tab-dystopia:hover,
.hero-tab-dystopia:focus-visible,
.hero-tab-dystopia.click-target.is-clicked {
  color: var(--dystopia);
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.btn {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--acid);
  border-radius: 999px;
  padding: 15px 36px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.025), transparent),
    rgba(18,7,31,.34);
  color: var(--text);
  cursor: pointer;
  font-size: clamp(12px, .9vw, 12px);
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  overflow: hidden;
  transition: color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.btn:active {
  transform: translateY(0) scale(.98);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, var(--acid), #e9ff9b);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s ease;
}

.btn:hover,
.btn:focus-visible,
.btn.click-target.is-clicked {
  color: #11051b;
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(199,255,78,.12);
}

.btn:hover::before,
.btn:focus-visible::before,
.btn.click-target.is-clicked::before {
  transform: scaleX(1);
}

.btn:hover::after,
.btn:focus-visible::after,
.btn.click-target.is-clicked::after {
  display: none;
}

.btn-text {
  border-color: transparent;
  background: transparent;
  padding-inline: 0;
  border-radius: 0;
}

.btn-text::before {
  display: none;
}

.btn-text::after {
  display: none;
}

.btn-text:hover,
.btn-text:focus-visible,
.btn-text.click-target.is-clicked {
  color: var(--text);
}

.product-select,
.form-submit {
  font-family: var(--font-display);
  font-size: clamp(13px, 1vw, 14px);
  letter-spacing: .02em;
  text-transform: none;
}

.product-select {
  width: 100%;
  justify-self: stretch;
  padding-inline: 18px;
}

.scroll-indicator {
  width: 1px;
  height: 56px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: rgba(255,255,255,.14);
  overflow: hidden;
}

.scroll-indicator span {
  display: block;
  width: 3px;
  height: 12px;
  background: var(--acid);
  animation: scroll-dot 1.4s ease-in-out infinite;
}

@keyframes scroll-dot {
  0%, 100% { transform: translateY(0); opacity: .35; }
  50% { transform: translateY(44px); opacity: 1; }
}

.content-section {
  scroll-margin-top: 96px;
  padding: 120px 0;
}

.manifesto-section {
  padding: 160px 0;
  background:
    linear-gradient(180deg, rgba(8,3,15,.18), rgba(31,12,52,.5), rgba(8,3,15,.18)),
    rgba(19,7,31,.68);
  position: relative;
  overflow: hidden;
}

.manifesto-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 9%, rgba(199,255,78,.08) 9.1% 9.22%, transparent 9.35%),
    linear-gradient(90deg, transparent 0 78%, rgba(155,109,255,.08) 78.1% 78.22%, transparent 78.35%);
}

.collection-story {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 42px;
}

.collection-head {
  margin-bottom: 0;
}

.collection-story-grid {
  display: grid;
  gap: 34px;
  align-items: start;
}

.collection-narrative {
  max-width: 720px;
}

.manifesto-text {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 28px);
  font-weight: 400;
  line-height: 1.5;
}

.manifesto-rule {
  width: 100%;
  height: 1px;
  margin: 0;
  background: linear-gradient(90deg, transparent, rgba(199,255,78,.45), transparent);
}

.story-steps {
  display: grid;
  gap: 14px;
}

.story-step {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 18px 18px 18px 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(199,255,78,.05), rgba(155,109,255,.06)),
    rgba(22,8,36,.72);
  overflow: hidden;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.story-step:hover,
.story-step:focus-within {
  transform: translateX(6px);
  border-color: rgba(199,255,78,.32);
  box-shadow: 0 16px 34px rgba(0,0,0,.22);
}

.story-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--acid);
  box-shadow: 0 0 18px rgba(199,255,78,.45);
}

.story-step span {
  color: var(--acid);
  font-size: clamp(11px, .8vw, 11px);
  letter-spacing: .2em;
}

.story-step strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(18px, 1.4vw, 18px);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.story-step p {
  margin: 0;
}

.collection-roadmap {
  scroll-margin-top: 110px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 10px;
}

.collection-chapter {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 0, rgba(199,255,78,.10), transparent 34%),
    linear-gradient(135deg, rgba(155,109,255,.10), rgba(8,3,15,.68));
  overflow: hidden;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.collection-chapter::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 84px;
  height: 1px;
  background: rgba(199,255,78,.42);
  opacity: .7;
}

.collection-chapter:hover,
.collection-chapter:focus-within,
.collection-chapter.click-target.is-clicked {
  transform: translateY(-4px);
  border-color: rgba(199,255,78,.34);
  box-shadow: 0 18px 44px rgba(0,0,0,.24);
}

.collection-chapter span,
.collection-chapter em {
  color: var(--acid);
  font-size: clamp(11px, .8vw, 11px);
  font-style: normal;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.collection-chapter strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: .05em;
  line-height: 1.05;
  text-transform: uppercase;
}

.collection-chapter p {
  max-width: 520px;
  margin: 0;
}

.collection-chapter.is-current {
  border-color: rgba(199,255,78,.32);
  background:
    radial-gradient(circle at 12% 0, rgba(199,255,78,.15), transparent 36%),
    linear-gradient(135deg, rgba(155,109,255,.14), rgba(8,3,15,.78));
}

.collection-chapter:not(.is-current) {
  border-color: rgba(155,109,255,.2);
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.035) 0 1px, transparent 1px 13px),
    radial-gradient(circle at 82% 10%, rgba(155,109,255,.16), transparent 34%),
    rgba(13,5,22,.76);
}

.collection-chapter:not(.is-current)::before {
  content: "LOCKED";
  position: absolute;
  right: 20px;
  top: 20px;
  color: rgba(255,255,255,.05);
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 86px);
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1;
}

.chapter-link {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(199,255,78,.4);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(11px, .8vw, 11px);
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.chapter-link:hover,
.chapter-link:focus-visible {
  border-color: var(--acid);
  background: var(--acid);
  color: #12051d;
  outline: none;
  transform: translateY(-2px);
}

.morocco-statement {
  padding: 80px 0;
  background: #12071e;
  overflow: hidden;
}

.morocco-statement p {
  margin: 0;
  color: rgba(255,255,255,.12);
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: .05em;
  line-height: .95;
  text-transform: uppercase;
}

.section-head,
.split-intro,
.article-header {
  position: relative;
  width: 100%;
  margin-bottom: 40px;
  padding: 0 0 20px 18px;
  border-bottom: 1px solid var(--line);
}

.section-subcopy {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(14px, 1.1vw, 15px);
}

.section-head::before,
.split-intro::before,
.article-header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 2px;
  height: calc(100% - 22px);
  background: var(--acid);
  box-shadow: 0 0 18px rgba(199,255,78,.38);
}

.eyebrow,
.theme-code,
.theme-mood,
.image-note,
.tag,
.poster-tags span,
label,
.optional-label,
.channel-note,
.status,
.contact-card span,
.article-meta,
.date {
  color: var(--dim);
  font-size: clamp(11px, .8vw, 11px);
  font-weight: 500;
  letter-spacing: .2em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--acid);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1;
  text-transform: uppercase;
}

h2,
.article-header h1 {
  font-size: clamp(24px, 4vw, 48px);
}

h3 {
  font-size: clamp(18px, 1.4vw, 18px);
}

p,
li,
em {
  color: var(--muted);
}

.theme-grid,
.product-grid,
.blog-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.theme-card,
.contact-card {
  position: relative;
  display: flex;
  min-height: 280px;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(22,8,36,.72);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, background .24s ease;
  overflow: hidden;
}

.theme-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .5;
  transform: translate3d(-8px, 8px, 0) scale(1.04);
  transition: opacity .24s ease, transform .24s ease;
}

.theme-card::after,
.contact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.055), transparent 34%, rgba(0,0,0,.08));
  opacity: .38;
}

.theme-card:hover,
.theme-card:focus-within,
.theme-card.click-target.is-clicked,
.contact-card:hover,
.contact-card:focus-visible,
.contact-card.click-target.is-clicked {
  transform: translateY(-4px);
  border-color: rgba(199,255,78,.35);
  box-shadow: 0 18px 44px rgba(0,0,0,.24), 0 0 0 1px rgba(199,255,78,.06);
  background: rgba(28,10,45,.86);
}

.theme-card:hover::before,
.theme-card:focus-within::before,
.theme-card.click-target.is-clicked::before {
  opacity: .82;
  transform: translate3d(0, 0, 0) scale(1.02);
}

.theme-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(14px, 1vw, 14px);
}

.theme-card h3,
.theme-card .theme-code,
.theme-card .theme-mood,
.theme-card .theme-link,
.contact-card > * {
  position: relative;
  z-index: 1;
}

.theme-code {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.025);
}

.theme-card-techno {
  border-left: 2px solid var(--techno);
  background: rgba(199,255,78,.045);
}

.theme-card-techno::before {
  background:
    linear-gradient(180deg, rgba(199,255,78,.08), transparent 46%),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(199,255,78,.045) 18px 19px, transparent 19px 38px);
}

.theme-card-techno .theme-mood {
  color: var(--techno);
}

.theme-card-trippy {
  border-left: 2px solid var(--trippy);
  background: rgba(155,109,255,.08);
}

.theme-card-trippy::before {
  background:
    radial-gradient(circle at 28% 20%, rgba(155,109,255,.18), transparent 18%),
    radial-gradient(circle at 70% 62%, rgba(199,255,78,.07), transparent 21%),
    repeating-radial-gradient(circle at 60% 40%, transparent 0 14px, rgba(155,109,255,.04) 14px 15px, transparent 15px 28px);
}

.theme-card-trippy .theme-mood {
  color: var(--trippy);
}

.theme-card-dystopia {
  border-left: 2px solid var(--dystopia);
  background: rgba(201,67,67,.07);
}

.theme-card-dystopia::before {
  background:
    linear-gradient(135deg, rgba(201,67,67,.12), transparent 38%),
    repeating-linear-gradient(0deg, transparent 0 22px, rgba(201,67,67,.045) 22px 23px, transparent 23px 44px);
}

.theme-card-dystopia .theme-mood {
  color: var(--dystopia);
}

.theme-link,
.blog-link {
  position: relative;
  z-index: 1;
  margin-top: auto;
  color: var(--acid);
  font-size: clamp(11px, .8vw, 11px);
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.theme-product-stack {
  display: grid;
  gap: 42px;
}

.theme-product-group {
  border-left: 2px solid var(--line);
  padding-left: clamp(16px, 2vw, 28px);
}

.theme-product-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255,255,255,.025), transparent);
  padding-left: 12px;
}

#techno-products,
#trippy-products,
#dystopia-products {
  scroll-margin-top: 110px;
}

.theme-product-head .eyebrow {
  margin: 0;
}

.theme-product-techno {
  border-left-color: var(--techno);
}

.theme-product-techno .theme-product-head h3,
.theme-product-techno .theme-product-head .eyebrow {
  color: var(--techno);
}

.theme-product-techno .product-card {
  color: var(--techno);
  border-color: color-mix(in srgb, var(--techno) 32%, rgba(255,255,255,.08));
}

.theme-product-techno .product-media span {
  color: var(--techno);
}

.theme-product-trippy {
  border-left-color: var(--trippy);
}

.theme-product-trippy .theme-product-head h3,
.theme-product-trippy .theme-product-head .eyebrow {
  color: var(--trippy);
}

.theme-product-trippy .product-card {
  color: var(--trippy);
  border-color: color-mix(in srgb, var(--trippy) 32%, rgba(255,255,255,.08));
}

.theme-product-trippy .product-media span {
  color: var(--trippy);
}

.theme-product-dystopia {
  border-left-color: var(--dystopia);
}

.theme-product-dystopia .theme-product-head h3,
.theme-product-dystopia .theme-product-head .eyebrow {
  color: var(--dystopia);
}

.theme-product-dystopia .product-card {
  color: var(--dystopia);
  border-color: color-mix(in srgb, var(--dystopia) 32%, rgba(255,255,255,.08));
}

.theme-product-dystopia .product-media span {
  color: var(--dystopia);
}

.product-grid {
  align-items: stretch;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: 56% 44%;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(22,8,36,.72);
  overflow: hidden;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, background .24s ease;
}

.product-card-photo {
  --street-flicker-delay: 0s;
  --image-contour-delay: -.4s;
}

.theme-product-dystopia .product-card-photo:nth-child(2) {
  --street-flicker-delay: -2.3s;
  --image-contour-delay: -2.6s;
}

.theme-product-dystopia .product-card-photo:nth-child(3) {
  --street-flicker-delay: -4.1s;
  --image-contour-delay: -1.5s;
}

.theme-product-dystopia .product-card {
  grid-template-rows: auto auto;
  aspect-ratio: auto;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  opacity: .48;
  transition: height .24s ease, opacity .24s ease, box-shadow .24s ease;
}

.product-card:hover,
.product-card:focus-within,
.product-card.click-target.is-clicked,
.product-card.is-selected {
  transform: translateY(-5px);
  border-color: currentColor;
  background: rgba(28,10,45,.88);
  box-shadow: 0 22px 48px rgba(0,0,0,.28), 0 0 0 1px color-mix(in srgb, currentColor 18%, transparent);
}

.product-card:hover::after,
.product-card:focus-within::after,
.product-card.click-target.is-clicked::after,
.product-card.is-selected::after {
  height: 3px;
  opacity: .9;
  box-shadow: 0 0 22px currentColor;
}

.product-media,
.product-img {
  width: 100%;
  height: 100%;
  border-bottom: 1px solid var(--line);
  background: #12071e;
}

.product-img {
  display: block;
  object-fit: cover;
  object-position: center;
  filter: none;
  opacity: .96;
}

.product-media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  background:
    linear-gradient(0deg, rgba(0,0,0,.18), transparent),
    linear-gradient(135deg, rgba(199,255,78,.06), rgba(155,109,255,.08)),
    #100719;
}

.theme-product-dystopia .product-media {
  aspect-ratio: 4 / 5;
  height: auto;
  isolation: isolate;
  overflow: hidden;
  background: #08060a;
}

.product-card-dystopia-01 .product-img {
  object-position: center 45%;
}

.product-card-photo .product-media {
  border: 2px solid rgba(201,67,67,.56);
  outline: 1px solid rgba(199,255,78,.18);
  outline-offset: -7px;
  cursor: zoom-in;
  animation: none;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.1),
    inset 0 0 24px rgba(201,67,67,.08),
    0 0 0 1px rgba(201,67,67,.24),
    0 0 24px rgba(201,67,67,.22);
}

.product-card-photo .product-img {
  border: 0;
  opacity: .94;
  transform: scale(1);
  transform-origin: center;
  animation: none;
  transition: opacity .24s ease, filter .24s ease, transform .42s cubic-bezier(.2, .72, .18, 1);
  will-change: filter, transform;
}

.product-card-photo:hover .product-img,
.product-card-photo:focus-within .product-img,
.product-card-photo.click-target.is-clicked .product-img,
.product-card-photo.is-selected .product-img {
  opacity: 1;
  transform: scale(1.12);
}

.product-media::after {
  content: "N";
  position: absolute;
  right: -2%;
  bottom: -8%;
  color: rgba(255,255,255,.035);
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 220px);
  font-weight: 700;
  line-height: 1;
}

.product-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.08), transparent 80%);
  transform: translateX(-120%);
  animation: media-scan 4.8s ease-in-out infinite;
}

.product-card-photo .product-media::before {
  z-index: 2;
  background:
    radial-gradient(circle at 18% 18%, rgba(201,67,67,.5), transparent 30%),
    radial-gradient(circle at 82% 24%, rgba(199,255,78,.3), transparent 26%),
    radial-gradient(circle at 58% 82%, rgba(155,109,255,.22), transparent 34%),
    linear-gradient(120deg, transparent 35%, rgba(255,255,255,.08), transparent 72%);
  mix-blend-mode: screen;
  opacity: .18;
  animation: none;
  transform: none;
  pointer-events: none;
}

.product-card-photo .product-media::after {
  content: "";
  inset: 0;
  z-index: 3;
  right: auto;
  bottom: auto;
  width: auto;
  height: auto;
  background:
    linear-gradient(0deg, rgba(0,0,0,.44), transparent 34%),
    linear-gradient(90deg, rgba(8,3,15,.22), transparent 28%, rgba(8,3,15,.3));
  opacity: .8;
  animation: none;
  pointer-events: none;
}

.product-card-glitch .product-media {
  border-color: rgba(255,255,255,.28);
  outline-color: rgba(155,109,255,.32);
  animation: none;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.12),
    inset 0 0 38px rgba(255,255,255,.08),
    0 0 28px rgba(155,109,255,.28);
}

.product-card-glitch .product-img {
  animation: none;
  filter: brightness(.9) contrast(1.18) saturate(.94);
}

.product-card-glitch .product-media::before {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(255,255,255,.22), transparent 16% 68%, rgba(155,109,255,.24)),
    repeating-linear-gradient(180deg, transparent 0 9px, rgba(255,255,255,.08) 9px 10px, transparent 10px 22px),
    radial-gradient(circle at 52% 38%, rgba(255,255,255,.38), transparent 26%);
  mix-blend-mode: screen;
  opacity: .24;
  animation: none;
}

.product-card-glitch .product-media::after {
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.32)),
    linear-gradient(90deg, rgba(201,67,67,.2), transparent 24% 72%, rgba(199,255,78,.16));
  opacity: .48;
  animation: none;
}

.theme-product-techno .product-card-photo {
  grid-template-rows: auto auto;
  aspect-ratio: auto;
}

.theme-product-techno .product-card-photo .product-media {
  aspect-ratio: 4 / 5;
  height: auto;
  isolation: isolate;
  overflow: hidden;
  border: 2px solid rgba(199,255,78,.62);
  outline: 1px solid rgba(255,144,73,.24);
  outline-offset: -7px;
  background:
    radial-gradient(circle at 18% 16%, rgba(255,144,73,.18), transparent 28%),
    linear-gradient(135deg, rgba(199,255,78,.12), rgba(8,3,15,.78)),
    #08060a;
  animation: none;
  box-shadow:
    inset 0 0 0 1px rgba(199,255,78,.24),
    inset 0 0 34px rgba(255,144,73,.1),
    0 0 26px rgba(199,255,78,.2);
}

.theme-product-techno .product-card-photo .product-img {
  border: 0;
  opacity: .96;
  animation: none;
  transition: opacity .24s ease, filter .24s ease;
}

.product-card-techno-02 .product-img {
  object-position: center 47%;
}

.product-card-techno-03 .product-img {
  object-position: center 45%;
}

.theme-product-techno .product-card-photo .product-media::before {
  z-index: 2;
  background:
    linear-gradient(90deg, transparent 0 24%, rgba(199,255,78,.28), transparent 42%),
    linear-gradient(180deg, transparent 0 58%, rgba(255,144,73,.18), transparent 76%),
    repeating-linear-gradient(90deg, transparent 0 22px, rgba(199,255,78,.08) 22px 23px, transparent 23px 46px);
  mix-blend-mode: screen;
  opacity: .24;
  animation: none;
  transform: none;
  pointer-events: none;
}

.theme-product-techno .product-card-photo .product-media::after {
  content: "";
  inset: 0;
  z-index: 3;
  right: auto;
  bottom: auto;
  width: auto;
  height: auto;
  background:
    linear-gradient(180deg, rgba(8,3,15,.02), rgba(8,3,15,.24)),
    linear-gradient(90deg, rgba(255,144,73,.12), transparent 34%, rgba(199,255,78,.16));
  opacity: .52;
  animation: none;
  pointer-events: none;
}

.theme-product-trippy .product-card-photo {
  grid-template-rows: auto auto;
  aspect-ratio: auto;
}

.theme-product-trippy .product-card-photo .product-media {
  aspect-ratio: 4 / 5;
  height: auto;
  isolation: isolate;
  overflow: hidden;
  border: 2px solid rgba(155,109,255,.64);
  outline: 1px solid rgba(199,255,78,.2);
  outline-offset: -7px;
  background:
    radial-gradient(circle at 28% 18%, rgba(155,109,255,.18), transparent 28%),
    radial-gradient(circle at 72% 72%, rgba(199,255,78,.12), transparent 26%),
    #100719;
  animation: none;
  box-shadow:
    inset 0 0 0 1px rgba(155,109,255,.24),
    inset 0 0 30px rgba(155,109,255,.1),
    0 0 28px rgba(155,109,255,.22);
}

.theme-product-trippy .product-card-photo .product-img {
  border: 0;
  opacity: .96;
  animation: none;
  transition: opacity .24s ease, filter .24s ease;
}

.product-card-trippy-wide .product-img {
  object-fit: cover;
  background: #09050f;
}

.product-card-trippy-wide .product-media {
  aspect-ratio: 3 / 2;
}

.product-card-trippy-portrait .product-img {
  object-position: center 42%;
}

.product-card-trippy-02 .product-img {
  object-position: center 45%;
}

.theme-product-trippy .product-card-photo .product-media::before {
  z-index: 2;
  background:
    repeating-radial-gradient(circle at 54% 42%, transparent 0 18px, rgba(155,109,255,.16) 18px 20px, transparent 20px 36px),
    linear-gradient(110deg, transparent 18%, rgba(199,255,78,.18), transparent 46%, rgba(155,109,255,.22), transparent 78%);
  mix-blend-mode: screen;
  opacity: .22;
  animation: none;
  transform: none;
  pointer-events: none;
}

.theme-product-trippy .product-card-photo .product-media::after {
  content: "";
  inset: 0;
  z-index: 3;
  right: auto;
  bottom: auto;
  width: auto;
  height: auto;
  background:
    linear-gradient(180deg, rgba(8,3,15,.02), rgba(8,3,15,.2)),
    radial-gradient(circle at 50% 50%, transparent 48%, rgba(8,3,15,.3));
  opacity: .58;
  animation: none;
  pointer-events: none;
}

.product-card-photo {
  --product-accent: 201, 67, 67;
  --product-second: 220, 220, 214;
  --product-edge: rgba(255,255,255,.18);
  --product-ink: rgba(4,3,7,.82);
  --product-filter: brightness(.88) contrast(1.08) saturate(.9);
  --product-filter-zoom: brightness(1.02) contrast(1.12) saturate(.98);
  --product-base-scale: 1;
  --product-zoom-scale: 1.18;
}

.theme-product-techno .product-card-photo {
  --product-accent: 199, 255, 78;
  --product-second: 255, 144, 73;
  --product-edge: rgba(199,255,78,.28);
  --product-ink: rgba(9,7,4,.82);
  --product-filter: brightness(.88) contrast(1.12) saturate(.88);
  --product-filter-zoom: brightness(1.04) contrast(1.16) saturate(1.02);
}

.theme-product-trippy .product-card-photo {
  --product-accent: 155, 109, 255;
  --product-second: 199, 255, 78;
  --product-edge: rgba(155,109,255,.3);
  --product-ink: rgba(7,3,14,.78);
  --product-filter: brightness(.9) contrast(1.08) saturate(.98);
  --product-filter-zoom: brightness(1.04) contrast(1.12) saturate(1.08);
}

.theme-product-dystopia .product-card-photo {
  --product-accent: 201, 67, 67;
  --product-second: 210, 218, 230;
  --product-edge: rgba(201,67,67,.28);
  --product-ink: rgba(5,5,6,.86);
  --product-filter: brightness(.82) contrast(1.16) saturate(.78);
  --product-filter-zoom: brightness(.98) contrast(1.22) saturate(.9);
}

.product-card-techno-01 {
  --product-base-scale: .88;
  --product-zoom-scale: 1.02;
}

.product-card-techno-01 .product-img {
  object-fit: contain;
  object-position: center;
  background:
    linear-gradient(180deg, rgba(255,144,73,.08), rgba(0,0,0,.18)),
    #08060a;
}

.product-card-photo .product-media,
.product-card-glitch .product-media,
.theme-product-techno .product-card-photo .product-media,
.theme-product-trippy .product-card-photo .product-media {
  border: 1px solid var(--product-edge);
  outline: 1px solid rgba(var(--product-accent), .22);
  outline-offset: -8px;
  background:
    linear-gradient(180deg, rgba(var(--product-accent), .06), transparent 42%),
    linear-gradient(135deg, rgba(var(--product-second), .08), rgba(0,0,0,.1)),
    #08060a;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.06),
    inset 0 -36px 58px var(--product-ink),
    0 18px 38px rgba(0,0,0,.26),
    0 0 0 1px rgba(var(--product-accent), .08);
  animation: none;
  cursor: zoom-in;
}

.product-card-photo .product-img,
.product-card-glitch .product-img,
.theme-product-techno .product-card-photo .product-img,
.theme-product-trippy .product-card-photo .product-img {
  opacity: .97;
  filter: var(--product-filter);
  transform: scale(var(--product-base-scale));
  transform-origin: center;
  animation: none;
  transition:
    transform .5s cubic-bezier(.18, .72, .16, 1),
    filter .32s ease,
    opacity .24s ease;
  will-change: transform, filter;
}

.product-card-photo:hover .product-img,
.product-card-photo:focus-within .product-img,
.product-card-photo.click-target.is-clicked .product-img,
.product-card-photo.is-selected .product-img,
.product-card-photo.is-zoom-locked .product-img {
  opacity: 1;
  filter: var(--product-filter-zoom);
  transform: scale(var(--product-zoom-scale));
}

.product-card-photo.is-zoom-locked .product-media {
  cursor: zoom-out;
}

.product-card-photo .product-media::before,
.product-card-glitch .product-media::before,
.theme-product-techno .product-card-photo .product-media::before,
.theme-product-trippy .product-card-photo .product-media::before {
  z-index: 2;
  background:
    linear-gradient(118deg, transparent 0 26%, rgba(var(--product-second), .12) 42%, transparent 62%),
    repeating-linear-gradient(180deg, rgba(255,255,255,.035) 0 1px, transparent 1px 14px),
    linear-gradient(90deg, rgba(0,0,0,.18), transparent 24% 72%, rgba(0,0,0,.22));
  mix-blend-mode: screen;
  opacity: .18;
  transform: none;
  animation: none;
  pointer-events: none;
}

.product-card-photo:hover .product-media::before,
.product-card-photo:focus-within .product-media::before,
.product-card-photo.is-selected .product-media::before,
.product-card-photo.is-zoom-locked .product-media::before {
  opacity: .28;
}

.product-card-photo .product-media::after,
.product-card-glitch .product-media::after,
.theme-product-techno .product-card-photo .product-media::after,
.theme-product-trippy .product-card-photo .product-media::after {
  content: "";
  inset: 0;
  z-index: 3;
  right: auto;
  bottom: auto;
  width: auto;
  height: auto;
  background:
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.28)),
    radial-gradient(circle at 50% 45%, transparent 42%, rgba(0,0,0,.28));
  opacity: .68;
  animation: none;
  pointer-events: none;
}

.product-card-photo:hover .product-media,
.product-card-photo:focus-within .product-media,
.product-card-photo.is-selected .product-media,
.product-card-photo.is-zoom-locked .product-media {
  border-color: rgba(var(--product-accent), .54);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.08),
    inset 0 -36px 58px var(--product-ink),
    0 22px 46px rgba(0,0,0,.32),
    0 0 28px rgba(var(--product-accent), .16);
}

.product-card-trippy-rabat .product-img {
  object-position: center 45%;
}

.product-card-trippy-split {
  --product-zoom-scale: 1.08;
}

.product-card-trippy-split .product-media {
  aspect-ratio: 4 / 5;
}

.product-media-facets {
  display: block;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(var(--product-accent), .56) rgba(255,255,255,.08);
  scrollbar-width: thin;
}

.product-media-facets::-webkit-scrollbar {
  height: 6px;
}

.product-media-facets::-webkit-scrollbar-track {
  background: rgba(255,255,255,.08);
}

.product-media-facets::-webkit-scrollbar-thumb {
  background: rgba(var(--product-accent), .52);
}

.facet-track {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 100%);
  width: 200%;
  height: 100%;
}

.facet-panel {
  position: relative;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.facet-panel .product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facet-panel-front .product-img {
  object-position: left center;
}

.facet-panel-back .product-img {
  object-position: right center;
}

@keyframes photo-street-pulse {
  0%, 18%, 31%, 58%, 73%, 100% {
    filter: brightness(.68) contrast(1.1) saturate(.88);
  }
  19%, 27%, 59%, 68% {
    filter: brightness(1.12) contrast(1.13) saturate(1.18);
  }
  28%, 30%, 69%, 72% {
    filter: brightness(.44) contrast(1.2) saturate(.72);
  }
}

@keyframes trippy-color-breathe {
  0%, 100% {
    filter: brightness(.94) contrast(1.08) saturate(1);
  }
  42% {
    filter: brightness(1.08) contrast(1.12) saturate(1.18) hue-rotate(-8deg);
  }
  68% {
    filter: brightness(.86) contrast(1.18) saturate(1.28) hue-rotate(10deg);
  }
}

@keyframes techno-light-pulse {
  0%, 22%, 48%, 100% {
    filter: brightness(.86) contrast(1.16) saturate(.94);
  }
  23%, 30%, 58%, 66% {
    filter: brightness(1.12) contrast(1.22) saturate(1.1);
  }
  31%, 36%, 67%, 72% {
    filter: brightness(.66) contrast(1.3) saturate(.82);
  }
}

@keyframes techno-contour-beat {
  0%, 22%, 48%, 100% {
    border-color: rgba(199,255,78,.62);
    outline-color: rgba(255,144,73,.24);
    box-shadow:
      inset 0 0 0 1px rgba(199,255,78,.24),
      inset 0 0 34px rgba(255,144,73,.1),
      0 0 26px rgba(199,255,78,.2);
  }
  23%, 30%, 58%, 66% {
    border-color: rgba(255,144,73,.82);
    outline-color: rgba(199,255,78,.42);
    box-shadow:
      inset 0 0 0 1px rgba(255,144,73,.34),
      inset 0 0 42px rgba(255,144,73,.16),
      0 0 36px rgba(255,144,73,.32),
      0 0 52px rgba(199,255,78,.18);
  }
  31%, 36%, 67%, 72% {
    border-color: rgba(255,255,255,.24);
    outline-color: rgba(199,255,78,.18);
    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,.08),
      0 0 14px rgba(0,0,0,.36);
  }
}

@keyframes techno-scan-shift {
  0%, 22%, 48%, 100% {
    opacity: .2;
    transform: translate3d(-4%, 0, 0);
  }
  23%, 30%, 58%, 66% {
    opacity: .48;
    transform: translate3d(3%, 0, 0);
  }
  31%, 36%, 67%, 72% {
    opacity: .08;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes techno-vignette-beat {
  0%, 22%, 48%, 100% {
    opacity: .52;
  }
  23%, 30%, 58%, 66% {
    opacity: .34;
  }
  31%, 36%, 67%, 72% {
    opacity: .7;
  }
}

@keyframes trippy-contour-wave {
  0%, 100% {
    border-color: rgba(155,109,255,.62);
    outline-color: rgba(199,255,78,.18);
    box-shadow:
      inset 0 0 0 1px rgba(155,109,255,.24),
      inset 0 0 30px rgba(155,109,255,.1),
      0 0 28px rgba(155,109,255,.22);
  }
  45% {
    border-color: rgba(199,255,78,.74);
    outline-color: rgba(155,109,255,.38);
    box-shadow:
      inset 0 0 0 1px rgba(199,255,78,.26),
      inset 0 0 34px rgba(199,255,78,.12),
      0 0 32px rgba(199,255,78,.28),
      0 0 48px rgba(155,109,255,.22);
  }
  70% {
    border-color: rgba(255,255,255,.34);
    outline-color: rgba(155,109,255,.32);
    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,.12),
      0 0 24px rgba(155,109,255,.3);
  }
}

@keyframes trippy-orbit-haze {
  0%, 100% {
    opacity: .18;
    transform: rotate(0deg) scale(1);
  }
  50% {
    opacity: .38;
    transform: rotate(1.2deg) scale(1.035);
  }
}

@keyframes trippy-vignette-drift {
  0%, 100% {
    opacity: .58;
  }
  50% {
    opacity: .38;
  }
}

@keyframes glitch-stage-pulse {
  0%, 15%, 28%, 56%, 100% {
    filter: brightness(.88) contrast(1.18) saturate(.92);
  }
  16%, 21%, 57%, 66% {
    filter: brightness(1.22) contrast(1.28) saturate(1.2) hue-rotate(-8deg);
  }
  22%, 27%, 67%, 72% {
    filter: brightness(.68) contrast(1.34) saturate(.78) hue-rotate(12deg);
  }
}

@keyframes glitch-stage-scan {
  0%, 15%, 28%, 56%, 100% {
    opacity: .2;
    transform: translate3d(0, 0, 0);
  }
  16%, 21%, 57%, 66% {
    opacity: .58;
    transform: translate3d(2%, 0, 0);
  }
  22%, 27%, 67%, 72% {
    opacity: .1;
    transform: translate3d(-2%, 0, 0);
  }
}

@keyframes street-neon-flicker {
  0%, 18%, 31%, 58%, 73%, 100% {
    opacity: .14;
  }
  19%, 27%, 59%, 68% {
    opacity: .58;
  }
  28%, 30%, 69%, 72% {
    opacity: .02;
  }
}

@keyframes stage-contour-surge {
  0%, 15%, 28%, 56%, 100% {
    border-color: rgba(255,255,255,.3);
    outline-color: rgba(155,109,255,.32);
    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,.12),
      inset 0 0 38px rgba(255,255,255,.08),
      0 0 28px rgba(155,109,255,.28);
  }
  16%, 21%, 57%, 66% {
    border-color: rgba(255,255,255,.82);
    outline-color: rgba(201,67,67,.42);
    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,.42),
      inset 0 0 46px rgba(255,255,255,.18),
      0 0 38px rgba(255,255,255,.3),
      0 0 56px rgba(155,109,255,.26);
  }
  22%, 27%, 67%, 72% {
    border-color: rgba(201,67,67,.74);
    outline-color: rgba(199,255,78,.24);
    box-shadow:
      inset 0 0 0 1px rgba(201,67,67,.28),
      0 0 26px rgba(201,67,67,.34),
      0 0 42px rgba(0,0,0,.2);
  }
}

@keyframes image-contour-flicker {
  0%, 18%, 34%, 62%, 100% {
    border-color: rgba(201,67,67,.6);
    outline-color: rgba(199,255,78,.18);
    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,.08),
      inset 0 0 24px rgba(201,67,67,.08),
      0 0 0 1px rgba(201,67,67,.24),
      0 0 24px rgba(201,67,67,.22);
  }
  19%, 24%, 63%, 70% {
    border-color: rgba(199,255,78,.9);
    outline-color: rgba(201,67,67,.48);
    box-shadow:
      inset 0 0 0 1px rgba(199,255,78,.38),
      inset 0 0 30px rgba(199,255,78,.14),
      0 0 0 1px rgba(199,255,78,.46),
      0 0 34px rgba(199,255,78,.42),
      0 0 52px rgba(201,67,67,.24);
  }
  25%, 33%, 71%, 76% {
    border-color: rgba(155,109,255,.78);
    outline-color: rgba(155,109,255,.44);
    box-shadow:
      inset 0 0 0 1px rgba(155,109,255,.3),
      inset 0 0 24px rgba(155,109,255,.12),
      0 0 0 1px rgba(155,109,255,.34),
      0 0 30px rgba(155,109,255,.3);
  }
  77%, 84% {
    border-color: rgba(255,255,255,.2);
    outline-color: rgba(255,255,255,.08);
    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,.04),
      0 0 0 1px rgba(255,255,255,.06),
      0 0 8px rgba(0,0,0,.4);
  }
}

@keyframes glitch-stage-blackout {
  0%, 15%, 28%, 56%, 100% {
    opacity: .48;
  }
  16%, 21%, 57%, 66% {
    opacity: .26;
  }
  22%, 27%, 67%, 72% {
    opacity: .62;
  }
}

@keyframes street-blackout {
  0%, 18%, 31%, 58%, 73%, 100% {
    opacity: .82;
  }
  19%, 27%, 59%, 68% {
    opacity: .36;
  }
  28%, 30%, 69%, 72% {
    opacity: .94;
  }
}

@keyframes media-scan {
  0%, 54% { transform: translateX(-120%); }
  70%, 100% { transform: translateX(120%); }
}

.product-media span {
  position: relative;
  z-index: 1;
  color: var(--dim);
  font-size: clamp(11px, .8vw, 11px);
  letter-spacing: .2em;
  text-align: center;
  text-transform: uppercase;
}

.product-body {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 0;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.08));
}

.image-note {
  margin: 0;
}

.product-title-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: start;
}

.blog-section {
  background:
    linear-gradient(180deg, rgba(18,7,31,.2), rgba(8,3,15,.72)),
    rgba(8,3,15,.54);
}

.blog-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(220px, 48%) 1fr;
  min-height: 520px;
  border: 1px solid var(--line);
  background: rgba(22,8,36,.72);
  overflow: hidden;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, background .24s ease;
}

.blog-card:hover,
.blog-card:focus-visible,
.blog-card.click-target.is-clicked {
  transform: translateY(-5px);
  border-color: rgba(199,255,78,.36);
  background: rgba(28,10,45,.86);
  box-shadow: 0 20px 48px rgba(0,0,0,.28), 0 0 0 1px rgba(199,255,78,.08);
  outline: none;
}

.blog-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  opacity: .62;
}

.blog-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 28% 18%, rgba(199,255,78,.11), transparent 28%),
    linear-gradient(135deg, rgba(155,109,255,.12), rgba(8,3,15,.72));
  overflow: hidden;
}

.blog-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0,0,0,.34)),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255,255,255,.035) 18px 19px, transparent 19px 42px);
  pointer-events: none;
}

.blog-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  filter: none;
  opacity: .96;
  transition: transform .24s ease, opacity .24s ease;
}

.blog-card:hover .blog-media img,
.blog-card:focus-visible .blog-media img,
.blog-card.click-target.is-clicked .blog-media img {
  transform: scale(1.035);
  opacity: 1;
}

.blog-card-dystopia .blog-media img {
  object-fit: cover;
  padding: 0;
}

.blog-body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
}

.blog-body h3 {
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.05;
}

.blog-body p {
  margin: 0;
}

.blog-card-techno {
  color: var(--techno);
}

.blog-card-trippy {
  color: var(--trippy);
}

.blog-card-dystopia {
  color: var(--dystopia);
}

.product-title-row h3 span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: clamp(11px, .8vw, 11px);
  font-weight: 500;
  letter-spacing: .12em;
}

.price {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(199,255,78,.18);
  padding: 0 10px;
  margin: 0;
  color: var(--text);
  font-size: clamp(11px, .8vw, 11px);
  letter-spacing: .2em;
  white-space: nowrap;
}

.order-section {
  background: transparent;
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: start;
}

.order-copy p {
  max-width: 640px;
  font-size: clamp(14px, 1.2vw, 16px);
}

.order-panel {
  padding: clamp(18px, 3vw, 32px);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.025), rgba(0,0,0,.06)),
    var(--glass);
  box-shadow: var(--shadow);
}

form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 6px;
}

.form-row-two,
.form-row-three {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

label {
  display: block;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--field-line);
  border-radius: 0;
  padding: 12px 16px;
  background: #100719;
  color: var(--text);
  font-family: inherit;
  font-size: clamp(13px, .95vw, 13px);
  outline: none;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255,255,255,.25);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(199,255,78,.7);
  box-shadow: none;
  outline: none;
}

input[readonly] {
  color: var(--muted);
}

input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  height: 18px;
  flex: 0 0 18px;
  padding: 0;
  accent-color: var(--acid);
}

.offer-check {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  margin: 4px 0 0;
  color: var(--muted);
  cursor: pointer;
}

.offer-check span {
  color: var(--muted);
  font-size: clamp(11px, .8vw, 11px);
  letter-spacing: .12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.form-submit {
  width: 100%;
  letter-spacing: .04em;
  min-height: 52px;
}

.status {
  display: none;
  border: 1px solid var(--field-line);
  padding: 12px 16px;
}

.status.ok,
.status.err {
  display: block;
}

.channel-note {
  margin: 0;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-card {
  min-height: 190px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(199,255,78,.28);
  color: var(--acid);
  background: rgba(199,255,78,.04);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card:hover .contact-icon,
.contact-card:focus-visible .contact-icon,
.contact-card.click-target.is-clicked .contact-icon {
  color: #11051b;
  background: var(--acid);
  box-shadow: 0 0 24px rgba(199,255,78,.22);
}

.contact-card strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(18px, 1.4vw, 18px);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.contact-card em {
  font-style: normal;
}

.site-footer {
  padding: 48px 0;
  background: var(--bg);
}

.footer-inner {
  display: grid;
  gap: 24px;
  align-items: center;
}

.footer-brand {
  margin: 0;
  color: var(--text);
  font-size: clamp(11px, .8vw, 11px);
  letter-spacing: .2em;
  text-transform: uppercase;
}

.footer-line {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 30px);
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  color: #404040;
  font-size: clamp(11px, .8vw, 11px);
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .2s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--text);
  outline: none;
}

.article-main {
  padding: 120px 0;
}

.article-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
}

.article-body {
  font-size: clamp(14px, 1.2vw, 16px);
}

.article-body p,
.article-body ul {
  margin: 0 0 20px;
}

.article-body h2 {
  margin: 48px 0 16px;
  font-size: clamp(24px, 3vw, 34px);
}

.article-gallery {
  display: grid;
  gap: 14px;
  margin: 34px 0 12px;
}

.article-figure {
  min-height: 220px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 15%, rgba(199,255,78,.1), transparent 28%),
    linear-gradient(135deg, rgba(155,109,255,.11), rgba(8,3,15,.78));
  overflow: hidden;
}

.article-figure img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: contain;
  padding: 22px;
  filter: none;
  opacity: .96;
}

.article-figure-photo img {
  object-fit: cover;
  padding: 0;
}

.article-side-card {
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(22,8,36,.72);
}

.article-side-card img {
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
  filter: none;
  opacity: .96;
}

.back-link {
  margin-top: 28px;
}

.reveal-target {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal-target.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .collection-story-grid {
    grid-template-columns: minmax(0, .95fr) minmax(320px, .75fr);
  }

  .collection-roadmap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .theme-grid,
  .blog-grid,
  .contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-row-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-row-three {
    grid-template-columns: .7fr .55fr 1fr;
  }

  .order-grid,
  .article-shell {
    grid-template-columns: .8fr 1.2fr;
  }

  .article-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
  }

  .footer-line {
    grid-column: 1 / -1;
  }
}

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

@media (max-width: 767px) {
  .site-header {
    position: sticky;
  }

  .nav-inner {
    min-height: 76px;
  }

  .brand img {
    width: min(56vw, 190px);
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-content: center;
    gap: 22px;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: rgba(8,3,15,.98);
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .22s ease, transform .22s ease;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    justify-content: center;
    color: var(--text);
    border: 0;
    border-radius: 0;
    background: transparent;
    font-family: var(--font-display);
    font-size: clamp(24px, 8vw, 42px);
    letter-spacing: .05em;
  }

  .nav-links a::before,
  .nav-links a::after {
    display: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 110;
  }

  .content-section {
    padding: 96px 0;
  }

  .manifesto-section {
    padding: 120px 0;
  }

  .product-card {
    min-height: 560px;
  }

  .product-title-row {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .reveal-target {
    opacity: 1;
    transform: none;
  }
}
