/* ==========================================================================
   PARTNERCORD - Neo-Brutalist underground vinyl shop
   Display: Bagel Fat One. Mono accent: Press Start 2P. Body: Space Grotesk.
   Late-night dub-plate cutter register. Hard borders. Hard offset shadows.
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  --ink:      #0A0810;
  --paper:    #1A1622;
  --paper-2:  #251D2F;
  --paper-3:  #2F2540;
  --acid:     #C9F23F;
  --hot:      #FF3D87;
  --cobalt:   #3D5BFF;
  --mustard:  #FFC93D;
  --cyan:     #5DE5FF;
  --text:     #F2EAFA;
  --text-dim: #B8A6CC;

  --display: "Bagel Fat One", "Bowlby One", system-ui, sans-serif;
  --mono:    "Press Start 2P", "VT323", ui-monospace, monospace;
  --body:    "Space Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;

  --bw: 2.5px;
  --shadow-1: 6px 6px 0 var(--ink);
  --shadow-2: 9px 9px 0 var(--ink);
  --shadow-acid: 6px 6px 0 var(--acid);
  --shadow-hot: 6px 6px 0 var(--hot);
  --shadow-cobalt: 6px 6px 0 var(--cobalt);

  --container: 1240px;
}

body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--text);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Noise texture overlay - copy verbatim from playbook */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.4;
  mix-blend-mode: multiply;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

::selection { background: var(--acid); color: var(--ink); }

/* ==========================================================================
   NAV
   ========================================================================== */

.nav {
  position: sticky;
  top: 18px;
  z-index: 50;
  margin: 18px auto 0;
  width: calc(100% - 56px);
  max-width: var(--container);
  padding: 0;
}
.nav-inner {
  background: var(--paper-2);
  border: var(--bw) solid var(--ink);
  border-radius: 999px;
  box-shadow: var(--shadow-1);
  padding: 10px 14px 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--text);
}
.nav-logo svg { display: block; }
.nav-links {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--text);
  transition: color .15s ease;
  position: relative;
}
.nav-links a:hover { color: var(--acid); }
.nav-links a:focus-visible { outline: 2px solid var(--acid); outline-offset: 4px; border-radius: 4px; }

.nav-toggle {
  display: none;
  background: var(--ink);
  border: var(--bw) solid var(--ink);
  border-radius: 999px;
  color: var(--acid);
  padding: 10px 14px;
  cursor: pointer;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1px;
}
.nav-toggle:hover { background: var(--paper-3); }

.nav-drawer {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 100;
  padding: 90px 28px 40px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.7,0,.3,1);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.nav-drawer.is-open { transform: translateX(0); }
.nav-drawer a {
  font-family: var(--display);
  font-size: 38px;
  color: var(--text);
  border-bottom: var(--bw) solid var(--paper-3);
  padding: 14px 0;
}
.nav-drawer a:nth-child(2) { color: var(--acid); }
.nav-drawer a:nth-child(3) { color: var(--hot); }
.nav-drawer a:nth-child(4) { color: var(--cobalt); }
.nav-drawer a:nth-child(5) { color: var(--mustard); }
.nav-drawer a:nth-child(6) { color: var(--cyan); }
.nav-drawer-close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--acid);
  color: var(--ink);
  border: var(--bw) solid var(--ink);
  border-radius: 999px;
  padding: 10px 18px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: var(--shadow-1);
}

/* ==========================================================================
   BUTTONS / PILL CONTROLS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--acid);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.4px;
  padding: 14px 24px;
  border: var(--bw) solid var(--ink);
  border-radius: 999px;
  box-shadow: var(--shadow-1);
  cursor: pointer;
  text-transform: uppercase;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-2);
}
.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
}
.btn:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-full { width: 100%; }
.btn-hot   { background: var(--hot); color: var(--text); }
.btn-cobalt { background: var(--cobalt); color: var(--text); }
.btn-cyan  { background: var(--cyan); color: var(--ink); }
.btn-mustard { background: var(--mustard); color: var(--ink); }
.btn-ghost {
  background: var(--paper);
  color: var(--text);
}

/* ==========================================================================
   EYEBROW + STICKER + UNDERLINE PRIMITIVES
   ========================================================================== */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--acid);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  padding: 9px 14px;
  border: var(--bw) solid var(--ink);
  border-radius: 999px;
  text-transform: uppercase;
}
.eyebrow .dot {
  width: 8px;
  height: 8px;
  background: var(--acid);
  border-radius: 50%;
  animation: blink 1.4s ease infinite;
  flex-shrink: 0;
}
@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0.2; }
}

.sticker {
  display: inline-block;
  background: var(--acid);
  color: var(--ink);
  border: var(--bw) solid var(--ink);
  border-radius: 12px;
  box-shadow: 4px 4px 0 var(--ink);
  padding: 0 .35em;
  transform: rotate(-3deg);
  font-family: var(--display);
}
.sticker.hot { background: var(--hot); color: var(--text); transform: rotate(4deg); }
.sticker.cobalt { background: var(--cobalt); color: var(--text); transform: rotate(-2deg); }
.sticker.mustard { background: var(--mustard); transform: rotate(3deg); }
.sticker.cyan { background: var(--cyan); transform: rotate(-4deg); }

.underline-it {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.underline-it svg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  width: 100%;
  height: 14px;
  pointer-events: none;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle, rgba(61,91,255,0.18) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 50%;
  height: 70%;
  background: radial-gradient(circle, rgba(255,61,135,0.14) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 7.4vw, 108px);
  line-height: 0.95;
  letter-spacing: -2px;
  margin: 22px 0 28px;
  color: var(--text);
}
.hero-title .line { display: block; }
.hero-title .sticker {
  font-size: 0.9em;
  padding: 0 .25em;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 0 32px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 50px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 540px;
}
.hero-stat {
  background: var(--paper-2);
  border: var(--bw) solid var(--ink);
  border-radius: 14px;
  box-shadow: 4px 4px 0 var(--ink);
  padding: 16px 14px;
}
.hero-stat strong {
  display: block;
  font-family: var(--mono);
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--acid);
  line-height: 1;
  margin-bottom: 8px;
}
.hero-stat:nth-child(2) strong { color: var(--hot); }
.hero-stat:nth-child(3) strong { color: var(--cyan); }
.hero-stat span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--text-dim);
  text-transform: uppercase;
  font-weight: 600;
}

/* ==========================================================================
   DRUM SEQUENCER (hero widget)
   ========================================================================== */

.sequencer {
  background: var(--paper-2);
  border: var(--bw) solid var(--ink);
  border-radius: 18px;
  box-shadow: var(--shadow-2);
  padding: 22px 22px 18px;
  position: relative;
  transform: rotate(0.8deg);
}
.sequencer::before {
  content: "PARTNERCORD MK-1";
  position: absolute;
  top: -14px;
  left: 22px;
  background: var(--hot);
  color: var(--text);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 2px;
  padding: 6px 10px;
  border: var(--bw) solid var(--ink);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-3deg);
}
.seq-screen {
  background: var(--ink);
  border-radius: 10px;
  padding: 16px 14px;
  border: var(--bw) solid var(--ink);
  position: relative;
  overflow: hidden;
}
.seq-row {
  display: grid;
  grid-template-columns: 60px repeat(16, 1fr);
  gap: 4px;
  align-items: center;
  margin-bottom: 8px;
}
.seq-row:last-child { margin-bottom: 0; }
.seq-label {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 1px;
  color: var(--text-dim);
  text-align: left;
  padding-right: 6px;
}
.seq-cell {
  aspect-ratio: 1 / 1;
  background: var(--paper-3);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.seq-cell.beat-mark { background: #3a2f4d; }
.seq-cell.on::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 3px;
  background: var(--cell-color, var(--acid));
  box-shadow: 0 0 8px var(--cell-color, var(--acid));
  animation: cell-pulse 2s steps(16) infinite;
  animation-delay: var(--cell-delay, 0s);
  opacity: 0;
}
@keyframes cell-pulse {
  0%, 5.99% { opacity: 1; transform: scale(1); }
  6%, 100% { opacity: 0.15; transform: scale(0.85); }
}

.seq-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  margin-top: 14px;
  border-top: 2px dashed var(--paper-3);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1px;
}
.seq-foot .bpm {
  display: inline-flex;
  gap: 6px;
  align-items: baseline;
  color: var(--acid);
}
.seq-foot .bpm b { font-size: 14px; }
.seq-foot .bar {
  color: var(--cyan);
}
.seq-foot .track {
  color: var(--mustard);
}

/* Animated playhead (vertical sweeping line) */
.seq-playhead {
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 0;
  width: 6%;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(201,242,63,0) 0%, rgba(201,242,63,0.18) 50%, rgba(201,242,63,0) 100%);
  animation: sweep 2s linear infinite;
}
@keyframes sweep {
  0% { left: 4.5%; }
  100% { left: 96%; }
}

/* ==========================================================================
   MARQUEE
   ========================================================================== */

.marquee {
  background: var(--ink);
  border-top: var(--bw) solid var(--ink);
  border-bottom: var(--bw) solid var(--ink);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  gap: 0;
}
.marquee span {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -1px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  color: var(--text);
}
.marquee span::after {
  content: "*";
  color: var(--acid);
  font-size: 0.7em;
}
.marquee span:nth-child(6n+1) { color: var(--acid); }
.marquee span:nth-child(6n+2) { color: var(--hot); }
.marquee span:nth-child(6n+3) { color: var(--cobalt); }
.marquee span:nth-child(6n+4) { color: var(--mustard); }
.marquee span:nth-child(6n+5) { color: var(--cyan); }
.marquee span:nth-child(6n+6) { color: var(--text); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */

section { padding: 90px 0; position: relative; z-index: 2; }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1;
  letter-spacing: -1.5px;
  margin: 18px 0 18px;
  color: var(--text);
}
.section-sub {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 620px;
  margin: 0;
}

/* ==========================================================================
   PRODUCTS GRID (staircase)
   ========================================================================== */

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 28px;
}
.product-card {
  background: var(--paper-2);
  border: var(--bw) solid var(--ink);
  border-radius: 18px;
  box-shadow: var(--shadow-1);
  padding: 16px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
}
.product-card:nth-child(2) { transform: translateY(20px); }
.product-card:nth-child(3) { transform: translateY(40px); }
.product-card:nth-child(4) { transform: translateY(60px); }

.product-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-2);
}
.product-card:nth-child(2):hover { transform: translate(-3px, 17px); }
.product-card:nth-child(3):hover { transform: translate(-3px, 37px); }
.product-card:nth-child(4):hover { transform: translate(-3px, 57px); }

.product-art {
  aspect-ratio: 4 / 3;
  border: var(--bw) solid var(--ink);
  border-radius: 12px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card:nth-child(5n+1) .product-art { background: var(--cobalt); }
.product-card:nth-child(5n+2) .product-art { background: var(--hot); }
.product-card:nth-child(5n+3) .product-art { background: var(--mustard); }
.product-card:nth-child(5n+4) .product-art { background: var(--cyan); }
.product-card:nth-child(5n+5) .product-art { background: var(--acid); }

.product-art .vinyl {
  width: 70%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--ink) 18%, transparent 19%, transparent 22%, var(--ink) 23%, var(--ink) 100%);
  position: relative;
  box-shadow: inset 0 0 0 4px var(--ink);
  animation: spin 9s linear infinite;
}
.product-art .vinyl::before {
  content: "";
  position: absolute;
  inset: 28%;
  border-radius: 50%;
  background: var(--paper-2);
  border: 3px solid var(--ink);
}
.product-art .vinyl::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--ink);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.product-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--ink);
  color: var(--acid);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 1px;
  padding: 5px 8px;
  border-radius: 6px;
  border: 2px solid var(--ink);
  z-index: 2;
}

.product-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.product-pill {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 1px;
  padding: 5px 9px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  color: var(--text);
}
.product-pill.acid { background: var(--acid); color: var(--ink); }
.product-pill.hot { background: var(--hot); color: var(--text); }

.product-name {
  font-family: var(--display);
  font-size: 26px;
  line-height: 1;
  margin: 4px 0 10px;
  color: var(--text);
  letter-spacing: -0.5px;
}
.product-desc {
  font-size: 14px;
  color: var(--text-dim);
  margin: 0 0 18px;
  flex-grow: 1;
  line-height: 1.5;
}
.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}
.product-price {
  font-family: var(--display);
  font-size: 30px;
  color: var(--text);
  letter-spacing: -0.5px;
}
.product-price small {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--text-dim);
  margin-left: 4px;
  letter-spacing: 1px;
}
.product-buy {
  background: var(--ink);
  color: var(--acid);
  border: var(--bw) solid var(--ink);
  border-radius: 999px;
  padding: 10px 16px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform .15s ease, box-shadow .15s ease;
  cursor: pointer;
  white-space: nowrap;
}
.product-buy:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
  background: var(--acid);
  color: var(--ink);
}

/* one-shot card sits on its own row, full-width */
.products-grid .one-shot-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
  padding: 0;
  overflow: hidden;
  transform: translateY(0) !important;
}
.products-grid .one-shot-card:hover {
  transform: translate(-3px, -3px) !important;
}
.one-shot-art {
  border-right: var(--bw) solid var(--ink);
  background: var(--acid);
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 4px;
  padding: 22px;
  min-height: 280px;
}
.one-shot-art .pad {
  background: var(--ink);
  border-radius: 4px;
  position: relative;
}
.one-shot-art .pad.lit {
  background: var(--hot);
  animation: pad-blink 1.6s ease infinite;
}
.one-shot-art .pad:nth-child(13).lit { background: var(--cobalt); }
.one-shot-art .pad:nth-child(27).lit { background: var(--cyan); }
.one-shot-art .pad:nth-child(41).lit { background: var(--mustard); }
@keyframes pad-blink {
  0%, 60% { opacity: 1; }
  70%, 100% { opacity: 0.3; }
}
.one-shot-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ==========================================================================
   VAULT BUNDLE BLOCK
   ========================================================================== */

.vault {
  background: var(--ink);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.vault::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--paper-3) 1px, transparent 1px),
    linear-gradient(90deg, var(--paper-3) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.18;
  pointer-events: none;
}
.vault-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.vault-title {
  font-family: var(--display);
  font-size: clamp(48px, 6.6vw, 96px);
  line-height: 0.95;
  letter-spacing: -2px;
  margin: 22px 0 24px;
  color: var(--text);
}
.vault-title .one-price {
  color: var(--acid);
}
.vault-list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  border: var(--bw) solid var(--text);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--hot);
  overflow: hidden;
}
.vault-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 2px dashed var(--paper-3);
  font-size: 15px;
}
.vault-list li:last-child { border-bottom: none; }
.vault-list li span:first-child { color: var(--text); font-weight: 500; }
.vault-list li span:last-child {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--acid);
  letter-spacing: 1px;
}
.vault-price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 22px 0 22px;
  flex-wrap: wrap;
}
.vault-price-now {
  font-family: var(--display);
  font-size: 64px;
  color: var(--text);
  letter-spacing: -1.5px;
  line-height: 1;
}
.vault-price-was {
  font-family: var(--display);
  font-size: 30px;
  color: var(--text-dim);
  text-decoration: line-through;
}
.vault-save {
  background: var(--hot);
  color: var(--text);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  padding: 6px 11px;
  border: var(--bw) solid var(--text);
  border-radius: 999px;
  text-transform: uppercase;
  transform: rotate(-3deg);
}

/* spinning record art for vault */
.vault-art {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 460px;
  margin: 0 auto;
}
.vault-disc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--ink) 14%, transparent 14.5%, transparent 17%, var(--ink) 17.5%, var(--ink) 18%, transparent 18.5%, transparent 19%, var(--ink) 19.5%, var(--ink) 20%, transparent 20.5%, transparent 22%, var(--ink) 22.5%, var(--ink) 23%, transparent 23.5%, transparent 26%, var(--ink) 26.5%, var(--ink) 27%, transparent 27.5%, transparent 31%, var(--ink) 31.5%, var(--ink) 32%, transparent 32.5%, transparent 100%),
    conic-gradient(from 0deg, #1f1729, #2a1f3b, #1f1729, #2a1f3b, #1f1729, #2a1f3b, #1f1729);
  border: var(--bw) solid var(--text);
  box-shadow: var(--shadow-acid);
  animation: spin 14s linear infinite;
}
.vault-disc::before {
  content: "";
  position: absolute;
  inset: 38%;
  border-radius: 50%;
  background: var(--acid);
  border: var(--bw) solid var(--ink);
}
.vault-disc::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--ink);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* ==========================================================================
   STUDIO / PROCESS NUMBERED CARDS
   ========================================================================== */

.studio { padding: 90px 0; }
.studio-head { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: end; margin-bottom: 56px; }

.studio-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.studio-card {
  background: var(--paper-2);
  border: var(--bw) solid var(--ink);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: var(--shadow-1);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
}
.studio-card:hover {
  transform: translate(-3px, -3px);
}
.studio-card:nth-child(3n+1) .studio-num { color: var(--acid); }
.studio-card:nth-child(3n+2) .studio-num { color: var(--hot); }
.studio-card:nth-child(3n+3) .studio-num { color: var(--cyan); }
.studio-card:nth-child(3n+1) { box-shadow: 6px 6px 0 var(--acid); }
.studio-card:nth-child(3n+2) { box-shadow: 6px 6px 0 var(--hot); }
.studio-card:nth-child(3n+3) { box-shadow: 6px 6px 0 var(--cyan); }
.studio-card:nth-child(3n+1):hover { box-shadow: 9px 9px 0 var(--acid); }
.studio-card:nth-child(3n+2):hover { box-shadow: 9px 9px 0 var(--hot); }
.studio-card:nth-child(3n+3):hover { box-shadow: 9px 9px 0 var(--cyan); }

.studio-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 18px;
  display: inline-block;
}
.studio-card h3 {
  font-family: var(--display);
  font-size: 30px;
  line-height: 1;
  margin: 0 0 14px;
  letter-spacing: -0.5px;
  color: var(--text);
}
.studio-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-dim);
  margin: 0;
}

/* ==========================================================================
   REVIEWS (polaroid)
   ========================================================================== */

.reviews { padding: 90px 0; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.review {
  background: var(--paper-2);
  border: var(--bw) solid var(--ink);
  border-radius: 8px;
  padding: 22px 22px 26px;
  box-shadow: var(--shadow-1);
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.review:nth-child(6n+1) { transform: rotate(-2deg); }
.review:nth-child(6n+2) { transform: rotate(1deg); }
.review:nth-child(6n+3) { transform: rotate(-1deg); }
.review:nth-child(6n+4) { transform: rotate(2deg); }
.review:nth-child(6n+5) { transform: rotate(-1.5deg); }
.review:nth-child(6n+6) { transform: rotate(1.5deg); }
.review:hover {
  transform: rotate(0deg) translate(-3px, -3px);
  box-shadow: var(--shadow-2);
}

.review-tape {
  position: absolute;
  top: -14px;
  left: 50%;
  width: 110px;
  height: 28px;
  transform: translateX(-50%) rotate(-4deg);
  border: 2px solid var(--ink);
  z-index: 3;
  opacity: 0.92;
}
.review:nth-child(6n+1) .review-tape { background: var(--acid); }
.review:nth-child(6n+2) .review-tape { background: var(--hot); transform: translateX(-50%) rotate(3deg); }
.review:nth-child(6n+3) .review-tape { background: var(--cobalt); transform: translateX(-50%) rotate(-2deg); }
.review:nth-child(6n+4) .review-tape { background: var(--mustard); transform: translateX(-50%) rotate(2deg); }
.review:nth-child(6n+5) .review-tape { background: var(--cyan); transform: translateX(-50%) rotate(-3deg); }
.review:nth-child(6n+6) .review-tape { background: var(--text); transform: translateX(-50%) rotate(4deg); }

.review-stars {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--mustard);
  margin: 8px 0 14px;
}
.review-text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  margin: 0 0 18px;
}
.review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
  border-top: 2px dashed var(--paper-3);
  padding-top: 12px;
}
.review-meta strong {
  font-family: var(--display);
  font-weight: 400;
  font-size: 18px;
  color: var(--text);
  letter-spacing: -0.3px;
}
.review-meta span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */

.contact { padding: 90px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact-details {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--paper-2);
  border: var(--bw) solid var(--ink);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 15px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border: var(--bw) solid var(--ink);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ink);
}
.contact-details li:nth-child(1) .contact-icon { background: var(--acid); }
.contact-details li:nth-child(2) .contact-icon { background: var(--hot); color: var(--text); }
.contact-details li:nth-child(3) .contact-icon { background: var(--cyan); }
.contact-details li:nth-child(4) .contact-icon { background: var(--mustard); }
.contact-details a { color: var(--text); font-weight: 600; }
.contact-details a:hover { color: var(--acid); }

.contact-form {
  background: var(--paper-2);
  border: var(--bw) solid var(--ink);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.form-group input, .form-group textarea {
  background: var(--paper);
  border: var(--bw) solid var(--ink);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--text);
  transition: box-shadow .15s ease, transform .15s ease;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  box-shadow: 4px 4px 0 var(--acid);
  transform: translate(-2px, -2px);
}
.form-group textarea { min-height: 130px; resize: vertical; }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background: var(--ink);
  border-top: var(--bw) solid var(--ink);
  padding: 60px 0 0;
  position: relative;
  z-index: 2;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand {
  max-width: 360px;
}
.footer-wordmark {
  font-family: var(--display);
  font-size: 36px;
  color: var(--text);
  letter-spacing: -1px;
  display: block;
  margin-bottom: 14px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.55;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 2px;
  margin: 0 0 18px;
  text-transform: uppercase;
}
.footer-col:nth-child(2) h4 { color: var(--acid); }
.footer-col:nth-child(3) h4 { color: var(--hot); }
.footer-col:nth-child(4) h4 { color: var(--cyan); }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  transition: color .15s;
}
.footer-col a:hover { color: var(--acid); }

.footer-marquee {
  border-top: var(--bw) solid var(--paper-3);
  padding: 22px 0;
  overflow: hidden;
}
.footer-marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 110px);
  letter-spacing: -2px;
  line-height: 1;
}
.footer-marquee-track span {
  padding: 0 28px;
  color: var(--text);
}
.footer-marquee-track span:nth-child(5n+1) { color: var(--acid); }
.footer-marquee-track span:nth-child(5n+2) { color: var(--hot); }
.footer-marquee-track span:nth-child(5n+3) { color: var(--cobalt); }
.footer-marquee-track span:nth-child(5n+4) { color: var(--mustard); }
.footer-marquee-track span:nth-child(5n+5) { color: var(--cyan); }

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  border-top: var(--bw) solid var(--paper-3);
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom-inner p { margin: 0; }
.footer-legal-links {
  list-style: none;
  display: flex;
  gap: 22px;
  padding: 0;
  margin: 0;
}
.footer-legal-links a:hover { color: var(--acid); }

.footer-minimal { padding-top: 0; }

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */

.legal-page { padding: 100px 0 90px; position: relative; z-index: 2; }
.legal-content {
  max-width: 760px;
  background: var(--paper-2);
  border: var(--bw) solid var(--ink);
  border-radius: 18px;
  box-shadow: var(--shadow-1);
  padding: 46px 50px;
}
.legal-content h1 {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -1px;
  margin: 0 0 8px;
  color: var(--text);
}
.legal-content h2 {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: -0.4px;
  margin: 32px 0 14px;
  color: var(--acid);
  font-weight: 400;
}
.legal-content h2:nth-of-type(3n+2) { color: var(--hot); }
.legal-content h2:nth-of-type(3n+3) { color: var(--cyan); }
.legal-content p, .legal-content li {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}
.legal-content a {
  color: var(--acid);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-content a:hover { color: var(--text); }
.legal-updated {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  text-transform: uppercase;
  margin: 0 0 28px;
}
.legal-content ul, .legal-content ol { padding-left: 22px; }
.legal-content li { margin-bottom: 6px; }

/* ==========================================================================
   RESULT PAGE (success / cancel)
   ========================================================================== */

.result-page {
  padding: 110px 0 90px;
  position: relative;
  z-index: 2;
}
.result-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--paper-2);
  border: var(--bw) solid var(--ink);
  border-radius: 18px;
  box-shadow: var(--shadow-acid);
  padding: 50px 40px;
}
.result-icon { margin-bottom: 28px; display: inline-block; }
.result-content h1 {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -1.2px;
  margin: 0 0 18px;
  color: var(--text);
}
.result-sub {
  font-size: 17px;
  color: var(--text-dim);
  margin: 0 0 30px;
}
.result-details {
  text-align: left;
  background: var(--paper);
  border: var(--bw) solid var(--ink);
  border-radius: 14px;
  padding: 22px 24px;
  margin: 0 0 30px;
}
.result-detail-row {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--acid);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.result-steps { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.result-steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text);
}
.step-num {
  width: 32px;
  height: 32px;
  background: var(--ink);
  color: var(--acid);
  border: 2px solid var(--ink);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  flex-shrink: 0;
}
.result-steps li:nth-child(2) .step-num { color: var(--hot); }
.result-steps li:nth-child(3) .step-num { color: var(--cyan); }
.result-steps li:nth-child(4) .step-num { color: var(--mustard); }
.result-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.7,0,.3,1);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav .btn-sm { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .vault-grid { grid-template-columns: 1fr; gap: 40px; }
  .vault-art { max-width: 360px; }
  .contact-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .studio-cards { grid-template-columns: 1fr; }
  .studio-head { grid-template-columns: 1fr; gap: 20px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .product-card,
  .product-card:nth-child(2),
  .product-card:nth-child(3),
  .product-card:nth-child(4) { transform: translateY(0); }
  .product-card:hover,
  .product-card:nth-child(2):hover,
  .product-card:nth-child(3):hover,
  .product-card:nth-child(4):hover { transform: translate(-3px, -3px); }
  .products-grid .one-shot-card { grid-template-columns: 1fr; }
  .one-shot-art { border-right: 0; border-bottom: var(--bw) solid var(--ink); min-height: 220px; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }
  .hero { padding: 40px 0 60px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 40px; }
  .legal-content { padding: 32px 24px; }
  .container { padding: 0 22px; }
  .nav { width: calc(100% - 32px); top: 12px; }
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
  .hero-stat { padding: 12px 10px; }
  .hero-stat strong { font-size: 14px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .hero-title { letter-spacing: -1px; }
  .seq-row { grid-template-columns: 44px repeat(16, 1fr); gap: 2px; }
  .seq-label { font-size: 7px; padding-right: 4px; }
  .sequencer { transform: scale(0.95) rotate(0.4deg); transform-origin: top center; padding: 18px 14px 14px; }
  .seq-screen { padding: 12px 8px; }
  .seq-foot { font-size: 8px; flex-wrap: wrap; gap: 6px; }
  .vault-list li { padding: 12px 14px; font-size: 14px; }
  .footer-marquee-track { animation-duration: 50s; }
  .marquee-track { animation-duration: 42s; }
  .hero-stats { grid-template-columns: 1fr; }
}

@media (max-width: 414px) {
  .legal-content { padding: 26px 20px; }
  .result-content { padding: 36px 24px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
