:root {
  --ink: #080808;
  --ink-soft: #101010;
  --panel: #151515;
  --line: #2b2b2b;
  --line-light: #404040;
  --paper: #efede6;
  --bone: #d8d2c5;
  --muted: #96938c;
  --acid: #d9ff43;
  --danger: #ff857d;
  --font-sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --gutter: clamp(20px, 4vw, 64px);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.drawer-open { overflow: hidden; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 200;
  transform: translateY(-150%);
  padding: 12px 16px;
  background: var(--acid);
  color: var(--ink);
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.shop-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--gutter);
  background: rgba(8, 8, 8, .9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.shop-brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.01em;
  text-transform: uppercase;
}
.shop-brand img { width: 30px; height: 30px; }
.shop-nav { display: flex; align-items: center; gap: clamp(22px, 4vw, 54px); }
.shop-nav a,
.cart-trigger {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.shop-nav a:hover, .shop-nav a:focus-visible, .cart-trigger:hover, .cart-trigger:focus-visible { color: var(--paper); }
.cart-trigger {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0 10px 12px;
  border: 0;
  background: none;
  cursor: pointer;
}
.cart-count {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
}

.shop-hero {
  position: relative;
  min-height: min(840px, calc(100vh - 72px));
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, #000, transparent 72%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 850px;
  padding: clamp(80px, 11vh, 130px) var(--gutter) clamp(64px, 9vh, 110px);
}
.eyebrow {
  margin: 0 0 24px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  line-height: 1.5;
  text-transform: uppercase;
}
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 18px rgba(217, 255, 67, .7);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: .35; } }
.hero-copy h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(52px, 7.6vw, 124px);
  font-weight: 900;
  letter-spacing: -.072em;
  line-height: .86;
  text-transform: uppercase;
}
.hero-copy h1 em { color: var(--bone); font-family: Georgia, "Times New Roman", serif; font-weight: 400; text-transform: none; }
.hero-lede {
  max-width: 560px;
  margin: 38px 0 0;
  color: var(--bone);
  font-size: clamp(16px, 1.6vw, 21px);
  line-height: 1.55;
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; margin-top: 42px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s var(--ease);
}
.button:hover { transform: translateY(-2px); }
.button:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.button-primary { background: var(--acid); color: var(--ink); }
.button-primary:hover, .button-primary:focus-visible { background: var(--paper); }
.button-outline { border-color: var(--line-light); background: transparent; color: var(--paper); }
.button-outline:hover, .button-outline:focus-visible { border-color: var(--paper); }
.text-link {
  padding: 10px 0;
  border-bottom: 1px solid var(--line-light);
  color: var(--bone);
  font-size: 12px;
  font-weight: 700;
}
.text-link:hover, .text-link:focus-visible { border-color: var(--bone); }
.hero-art { position: relative; min-height: 560px; border-left: 1px solid var(--line); }
.hero-art::before {
  content: "";
  position: absolute;
  inset: 9% 6%;
  background: radial-gradient(circle at 45% 45%, rgba(217, 255, 67, .1), transparent 57%);
  filter: blur(20px);
}
.specimen-card {
  position: absolute;
  width: min(60%, 380px);
  aspect-ratio: .72;
  border: 1px solid var(--line-light);
  box-shadow: 0 35px 80px rgba(0, 0, 0, .5);
}
.specimen-card-back {
  top: 12%;
  left: 10%;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #1c1c1c;
  transform: rotate(-8deg);
}
.specimen-card-front {
  right: 6%;
  bottom: 10%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--bone);
  color: var(--ink);
  transform: rotate(5deg);
}
.specimen-card-front::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image: repeating-radial-gradient(circle at 0 0, transparent 0, #000 1px, transparent 2px, transparent 5px);
}
.specimen-card-front img { width: 55%; filter: brightness(0); }
.specimen-card-front span {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.specimen-code, .hero-coordinate {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.specimen-rule { flex: 1; width: 1px; margin: 24px 0; background: var(--line-light); }
.specimen-copy { font-size: clamp(30px, 4vw, 58px); font-weight: 900; letter-spacing: -.05em; line-height: .83; text-transform: uppercase; }
.hero-coordinate { position: absolute; color: var(--muted); writing-mode: vertical-rl; }
.coordinate-a { right: 14px; top: 9%; }
.coordinate-b { left: 16px; bottom: 9%; }
.hero-status {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  min-height: 58px;
  padding: 0 var(--gutter);
  border-top: 1px solid var(--line);
  background: rgba(8, 8, 8, .8);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-status strong { color: var(--acid); }
.hero-status span:last-child { justify-self: end; color: var(--muted); }
body[data-launch-status="available"] .coming-only,
body[data-launch-status="coming-soon"] .available-only { display: none; }

.catalog-section { padding: clamp(88px, 12vw, 170px) var(--gutter); }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 58px;
}
.section-heading h2, .manifesto h2, .join-section h2, .drawer-header h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 78px);
  font-weight: 850;
  letter-spacing: -.055em;
  line-height: .95;
}
.section-heading > p { max-width: 480px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.catalog-toolbar { display: flex; justify-content: space-between; gap: 24px; align-items: center; margin: 0 0 26px; }
.category-filters { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.category-filters::-webkit-scrollbar { display: none; }
.filter-button {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}
.filter-button:hover, .filter-button:focus-visible, .filter-button[aria-pressed="true"] { border-color: var(--paper); color: var(--paper); }
.product-count { margin: 0; color: var(--muted); font: 9px/1 var(--font-mono); letter-spacing: .1em; text-transform: uppercase; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.product-card { min-width: 0; background: var(--ink); }
.product-open { width: 100%; display: block; padding: 0; border: 0; background: none; color: inherit; text-align: left; cursor: pointer; }
.product-image-wrap { position: relative; display: block; aspect-ratio: .82; overflow: hidden; background: #181818; }
.product-image { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.product-open:hover .product-image, .product-open:focus-visible .product-image { transform: scale(1.025); }
.product-open:focus-visible { outline: 2px solid var(--acid); outline-offset: -2px; }
.product-state { position: absolute; left: 14px; top: 14px; padding: 7px 9px; background: var(--ink); font: 8px/1 var(--font-mono); letter-spacing: .12em; text-transform: uppercase; }
.product-state:empty { display: none; }
.product-info { min-height: 104px; display: flex; justify-content: space-between; gap: 20px; padding: 20px; }
.product-info > span:first-child { display: flex; flex-direction: column; gap: 8px; }
.product-type { color: var(--muted); font: 8px/1.2 var(--font-mono); letter-spacing: .12em; text-transform: uppercase; }
.product-title { font-size: 15px; line-height: 1.3; }
.product-price { flex: 0 0 auto; color: var(--bone); font: 11px/1.4 var(--font-mono); }
.product-skeleton { padding-bottom: 22px; }
.product-skeleton div { aspect-ratio: .82; background: linear-gradient(105deg, #131313 20%, #1d1d1d 40%, #131313 60%); background-size: 200% 100%; animation: shimmer 1.4s linear infinite; }
.product-skeleton span { display: block; width: 55%; height: 9px; margin: 20px 20px 0; background: #1b1b1b; }
.product-skeleton span:last-child { width: 30%; margin-top: 9px; }
@keyframes shimmer { to { background-position-x: -200%; } }
.catalog-empty { padding: clamp(60px, 10vw, 120px) 24px; border: 1px solid var(--line); background: var(--ink-soft); text-align: center; }
.empty-index { color: var(--acid); font: 10px/1 var(--font-mono); letter-spacing: .16em; }
.catalog-empty h3 { margin: 25px 0 14px; font-size: clamp(30px, 4vw, 56px); letter-spacing: -.045em; }
.catalog-empty p { max-width: 510px; margin: 0 auto 30px; color: var(--muted); line-height: 1.65; }

.manifesto {
  display: grid;
  grid-template-columns: .35fr 1fr .65fr;
  gap: clamp(34px, 6vw, 100px);
  padding: clamp(88px, 12vw, 170px) var(--gutter);
  background: var(--bone);
  color: var(--ink);
}
.manifesto .eyebrow { color: #625f58; }
.manifesto-index { font: 900 clamp(44px, 6vw, 92px)/.79 var(--font-sans); letter-spacing: -.08em; opacity: .1; }
.manifesto-copy p:last-child { max-width: 680px; margin: 34px 0 0; font-size: clamp(17px, 2vw, 25px); line-height: 1.5; }
.manifesto-specs { margin: 0; align-self: end; border-top: 1px solid rgba(8, 8, 8, .25); }
.manifesto-specs div { display: flex; justify-content: space-between; gap: 18px; padding: 14px 0; border-bottom: 1px solid rgba(8, 8, 8, .25); }
.manifesto-specs dt, .manifesto-specs dd { margin: 0; font: 9px/1.4 var(--font-mono); letter-spacing: .08em; text-transform: uppercase; }
.manifesto-specs dt { color: #69665f; }

.join-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 10vw, 160px);
  padding: clamp(90px, 13vw, 180px) var(--gutter);
  border-bottom: 1px solid var(--line);
}
.join-form-wrap { align-self: end; max-width: 670px; }
.join-form-wrap > p:first-child { margin: 0 0 28px; color: var(--muted); line-height: 1.6; }
.join-form { display: grid; grid-template-columns: 1fr auto; border-bottom: 1px solid var(--line-light); }
.join-form:focus-within { border-color: var(--paper); }
.join-form input { min-width: 0; padding: 18px 0; border: 0; outline: 0; background: transparent; color: var(--paper); font-size: clamp(18px, 2vw, 25px); }
.join-form input::placeholder { color: #555; }
.join-form button { min-width: 100px; border: 0; background: transparent; color: var(--acid); font: 800 11px/1 var(--font-mono); letter-spacing: .12em; text-transform: uppercase; cursor: pointer; }
.join-form button:disabled { cursor: wait; opacity: .7; }
.button-loader { display: none; width: 16px; height: 16px; margin: auto; border: 2px solid #3d4816; border-top-color: var(--acid); border-radius: 50%; animation: spin .7s linear infinite; }
.join-form.is-loading .button-label { display: none; }
.join-form.is-loading .button-loader { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-trap { position: absolute !important; left: -9999px !important; width: 1px !important; }
.form-status { min-height: 20px; margin: 13px 0 0; color: var(--bone); font: 10px/1.5 var(--font-mono); letter-spacing: .08em; text-transform: uppercase; }
.form-status[data-state="error"] { color: var(--danger); }
.form-status[data-state="success"] { color: var(--acid); }
.form-fineprint { margin: 7px 0 0; color: #63615c; font-size: 10px; }

.shop-footer {
  display: grid;
  grid-template-columns: 1.3fr 1fr .7fr auto;
  gap: 40px;
  align-items: start;
  padding: 54px var(--gutter);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}
.footer-brand img { width: min(210px, 100%); filter: brightness(0) invert(1); }
.shop-footer p { margin: 0; }
.footer-links { display: flex; flex-direction: column; gap: 6px; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--paper); }
.footer-meta { font-family: var(--font-mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }

.drawer-shell { position: fixed; inset: 0; z-index: 100; }
.drawer-backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(0, 0, 0, .72); backdrop-filter: blur(5px); cursor: default; animation: fade-in .25s ease; }
.cart-drawer, .product-drawer { position: absolute; right: 0; top: 0; bottom: 0; width: min(520px, 100%); background: var(--ink-soft); box-shadow: -25px 0 70px rgba(0, 0, 0, .5); animation: slide-in .35s var(--ease); }
.cart-drawer { display: flex; flex-direction: column; }
@keyframes fade-in { from { opacity: 0; } }
@keyframes slide-in { from { transform: translateX(100%); } }
.drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 28px; border-bottom: 1px solid var(--line); }
.drawer-header .eyebrow { margin-bottom: 8px; }
.drawer-header h2 { font-size: 36px; }
.icon-button { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); background: transparent; color: var(--paper); font-size: 25px; line-height: 1; cursor: pointer; }
.icon-button:hover, .icon-button:focus-visible { border-color: var(--paper); }
.cart-body { flex: 1; overflow-y: auto; padding: 10px 28px; }
.cart-empty { min-height: 60vh; display: grid; place-items: center; align-content: center; gap: 18px; text-align: center; }
.cart-empty strong { font-size: 25px; }
.cart-empty p { max-width: 300px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.cart-loading { padding: 40px 0; color: var(--muted); font: 10px/1.5 var(--font-mono); letter-spacing: .1em; text-transform: uppercase; }
.cart-line { display: grid; grid-template-columns: 92px 1fr auto; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cart-line img { width: 92px; height: 112px; object-fit: cover; background: #1c1c1c; }
.cart-line-copy { min-width: 0; }
.cart-line-copy strong { display: block; font-size: 13px; line-height: 1.35; }
.cart-line-copy > span { display: block; margin-top: 7px; color: var(--muted); font: 9px/1.5 var(--font-mono); letter-spacing: .07em; text-transform: uppercase; }
.cart-line-price { font: 10px/1.3 var(--font-mono); white-space: nowrap; }
.quantity-control { width: max-content; display: grid; grid-template-columns: 30px 28px 30px; align-items: center; margin-top: 18px; border: 1px solid var(--line); }
.quantity-control button { height: 30px; border: 0; background: transparent; color: var(--paper); cursor: pointer; }
.quantity-control span { text-align: center; font: 9px/1 var(--font-mono); }
.line-remove { display: block; margin-top: 9px; padding: 0; border: 0; background: none; color: var(--muted); font: 8px/1.4 var(--font-mono); letter-spacing: .08em; text-decoration: underline; text-transform: uppercase; cursor: pointer; }
.cart-footer { padding: 24px 28px 28px; border-top: 1px solid var(--line); }
.cart-subtotal { display: flex; justify-content: space-between; gap: 20px; font-size: 14px; }
.cart-footer > p { margin: 10px 0 20px; color: var(--muted); font-size: 10px; line-height: 1.5; }
.checkout-button { width: 100%; }

.product-drawer { width: min(700px, 100%); overflow-y: auto; }
.product-close { position: absolute; right: 18px; top: 18px; z-index: 2; background: rgba(8, 8, 8, .75); }
.detail-image { width: 100%; aspect-ratio: 1.08; object-fit: cover; background: #1a1a1a; }
.detail-copy { padding: clamp(26px, 5vw, 52px); }
.detail-type { color: var(--muted); font: 9px/1.4 var(--font-mono); letter-spacing: .12em; text-transform: uppercase; }
.detail-copy h2 { margin: 10px 0 8px; font-size: clamp(34px, 5vw, 58px); letter-spacing: -.05em; line-height: .95; }
.detail-price { margin: 0; color: var(--bone); font: 12px/1.5 var(--font-mono); }
.detail-description { margin: 24px 0 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.option-group { margin: 28px 0 0; padding: 0; border: 0; }
.option-group legend { margin-bottom: 12px; font: 9px/1 var(--font-mono); letter-spacing: .12em; text-transform: uppercase; }
.option-values { display: flex; flex-wrap: wrap; gap: 8px; }
.option-value { position: relative; }
.option-value input { position: absolute; opacity: 0; pointer-events: none; }
.option-value span { min-width: 44px; min-height: 40px; display: grid; place-items: center; padding: 0 12px; border: 1px solid var(--line); color: var(--muted); font: 9px/1 var(--font-mono); text-transform: uppercase; cursor: pointer; }
.option-value input:checked + span, .option-value input:focus-visible + span { border-color: var(--paper); color: var(--paper); }
.option-value input:disabled + span { opacity: .25; cursor: not-allowed; text-decoration: line-through; }
.add-to-cart { width: 100%; margin-top: 34px; }
.detail-note { margin: 12px 0 0; color: var(--muted); font: 9px/1.5 var(--font-mono); letter-spacing: .06em; text-transform: uppercase; text-align: center; }
.detail-status { min-height: 18px; margin: 12px 0 0; color: var(--danger); font: 9px/1.5 var(--font-mono); letter-spacing: .06em; text-transform: uppercase; text-align: center; }

@media (max-width: 980px) {
  .shop-hero { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 30px; }
  .hero-art { min-height: 520px; border-left: 0; }
  .hero-status { grid-column: 1; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .manifesto { grid-template-columns: .3fr 1fr; }
  .manifesto-specs { grid-column: 2; }
  .shop-footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .shop-header { min-height: 62px; grid-template-columns: 1fr auto; }
  .shop-brand span, .shop-nav { display: none; }
  .shop-brand img { width: 32px; height: 32px; }
  .shop-hero { min-height: auto; }
  .hero-copy { padding-top: 78px; }
  .hero-copy h1 { font-size: clamp(47px, 15vw, 74px); line-height: .89; }
  .hero-lede { margin-top: 28px; font-size: 16px; }
  .hero-actions { margin-top: 32px; }
  .hero-art { min-height: 430px; }
  .specimen-card { width: min(62%, 300px); }
  .specimen-card-back { left: 6%; }
  .specimen-card-front { right: 7%; }
  .hero-status { grid-template-columns: 1fr auto; min-height: 62px; }
  .hero-status span:last-child { display: none; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; margin-bottom: 38px; }
  .catalog-toolbar { align-items: flex-start; flex-direction: column; }
  .product-grid { grid-template-columns: 1fr; }
  .manifesto { grid-template-columns: 1fr; }
  .manifesto-index { display: none; }
  .manifesto-specs { grid-column: auto; }
  .join-section { grid-template-columns: 1fr; }
  .shop-footer { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand img { width: 170px; }
  .cart-line { grid-template-columns: 74px 1fr; }
  .cart-line img { width: 74px; height: 92px; }
  .cart-line-price { grid-column: 2; }
}

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