/* ============================================================
   WOT THE F*CK — presented by Vaughn Raceworks
   Shop-floor industrial: steel plate, hazard tape, riveted signage,
   stroke-outline signage type, dashboard telemetry motif
   ============================================================ */

:root {
  --ink: #0a0a0b;
  --steel: #16181b;
  --steel-2: #1e2124;
  --steel-3: #26292d;
  --line: #2d3134;
  --bone: #f1ece0;
  --bone-dim: #93968f;
  --hazard: #ff4713;
  --hazard-dim: #a83a10;
  --caution: #ffc700;

  --display: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
  --body: 'Barlow Semi Condensed', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'Titillium Web', 'Barlow Semi Condensed', sans-serif;
  --digits: 'IBM Plex Mono', 'JetBrains Mono', 'Courier New', monospace;
}

/* Racing labels lean italic — timing-tower type on every small caption */
.eyebrow, .section-eyebrow, .nav-links a, .footer-links a, .platform-card,
.episode-meta, .boost-label, .scroll-cue, .dash-key, .hero-hud, .ticker-track,
.section-link, .nav-cta, .nav-mark-sub { font-style: italic; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 2px solid var(--hazard); outline-offset: 2px; }

.star { color: var(--hazard); }

/* Stroke-only outline type — the page's signature type treatment */
.stroke-text {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--bone);
  text-stroke: 1.5px var(--bone);
}
.stroke-text.stroke-hazard { -webkit-text-stroke-color: var(--hazard); }

/* Film-grain overlay for texture across the whole page */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 500;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Diamond-plate texture — used sparingly on a few panels */
.plate-tex {
  background-image:
    radial-gradient(circle at 8px 8px, rgba(241,236,224,0.05) 1.5px, transparent 1.6px);
  background-size: 20px 20px;
}

/* Hazard tape divider — the shop-floor "caution line" that separates chapters */
.hazard-tape {
  height: 10px;
  background: repeating-linear-gradient(
    -45deg,
    var(--ink) 0, var(--ink) 12px,
    var(--caution) 12px, var(--caution) 24px
  );
}

/* Bolt / rivet corners, applied to stamped-plate elements */
.riveted { position: relative; }
.riveted::before,
.riveted::after,
.riveted .rivet-br,
.riveted .rivet-bl {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #55585c, #101112 75%);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.5);
}
.riveted::before { top: 10px; left: 10px; }
.riveted::after { top: 10px; right: 10px; }
.riveted .rivet-bl { bottom: 10px; left: 10px; }
.riveted .rivet-br { bottom: 10px; right: 10px; }

/* ---------------- Nav ---------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 56px);
  background: linear-gradient(to bottom, rgba(10,10,11,0.9), transparent);
}
.nav-mark {
  font-family: var(--display);
  font-weight: 800;
  font-style: italic;
  font-size: 26px;
  letter-spacing: 0.01em;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.nav-mark-sub {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--bone-dim);
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-dim);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::before { content: '// '; color: var(--hazard); opacity: 0; transition: opacity 0.2s; }
.nav-links a:hover { color: var(--bone); }
.nav-links a:hover::before { opacity: 1; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--hazard-dim);
  padding: 9px 16px;
  color: var(--hazard);
  transition: background 0.2s, color 0.2s;
}
.nav-cta::before { content: ''; width: 6px; height: 6px; background: var(--hazard); border-radius: 50%; box-shadow: 0 0 6px var(--hazard); }
.nav-cta:hover { background: var(--hazard); color: var(--ink); }
.nav-cta:hover::before { background: var(--ink); box-shadow: none; }
.nav-actions { display: flex; align-items: center; gap: 12px; }

/* Trunk (cart) button, lives in the nav on every page */
.nav-trunk {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(241,236,224,0.25);
  color: var(--bone);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.nav-trunk svg { width: 21px; height: 13px; }
.nav-trunk:hover, .nav-trunk:focus-visible { border-color: var(--hazard); color: var(--hazard); background: rgba(255,71,19,0.08); }
.nav-trunk-count {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--hazard);
  color: var(--ink);
  font-family: var(--digits);
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

/* Hamburger toggle — hidden on desktop, shown once nav links collapse */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(241,236,224,0.25);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--bone);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle:hover, .nav-toggle:focus-visible { border-color: var(--hazard); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-scrim {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,11,0.6);
  backdrop-filter: blur(2px);
  z-index: 98;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.nav-scrim.is-open { display: block; opacity: 1; }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    position: fixed;
    top: 0;
    right: 0;
    height: 100svh;
    width: min(78vw, 320px);
    margin: 0;
    padding: 90px 28px 40px;
    background: var(--steel);
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 99;
    overflow-y: auto;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
  }
  .nav-links a::before { display: none; }
}
@media (max-width: 420px) {
  .nav-mark-sub { display: none; }
  .nav-cta span.nav-cta-label { display: none; }
  .nav-cta { padding: 9px 12px; }
}
body.no-scroll { overflow: hidden; }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  z-index: 0;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.08) brightness(0.92);
}
.hero-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,71,19,0.10), transparent 55%),
    repeating-linear-gradient(115deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 42px),
    linear-gradient(180deg, #141416 0%, #0a0a0b 70%);
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to top, rgba(10,10,11,0.97) 0%, rgba(10,10,11,0.35) 42%, rgba(10,10,11,0.15) 62%, rgba(10,10,11,0.55) 100%);
}

/* Top telemetry strip — live-feel HUD readout across the top of the video */
.hero-hud {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  padding: 82px clamp(20px, 4vw, 56px) 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--bone-dim);
  text-transform: uppercase;
}
.hud-rec { display: flex; align-items: center; gap: 7px; color: var(--hazard); }
.hud-rec-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--hazard); animation: recblink 1.4s ease-in-out infinite; }
@keyframes recblink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
.hud-time { min-width: 78px; font-family: var(--digits); font-style: normal; letter-spacing: 0.02em; }
@media (max-width: 640px) { .hero-hud { display: none; } }

/* Oversized stroke-outline word floating behind the plate — the signature flair */
.hero-outline {
  position: absolute;
  z-index: 1;
  right: clamp(-10px, -1vw, 40px);
  top: 14vh;
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(140px, 22vw, 340px);
  line-height: 0.8;
  letter-spacing: -0.01em;
  white-space: nowrap;
  pointer-events: none;
  color: transparent;
  -webkit-text-stroke: 2px rgba(241,236,224,0.3);
  text-stroke: 2px rgba(241,236,224,0.3);
}
@media (max-width: 900px) { .hero-outline { display: none; } }

.hero-body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding: 40px clamp(20px, 4vw, 56px) 0;
}

/* Stamped steel plate holding the headline — the reformatted hero content block */
.hero-plate {
  background: rgba(22,24,27,0.72);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(241,236,224,0.12);
  padding: 40px clamp(24px, 3vw, 48px) 44px;
  max-width: 780px;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hazard);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ''; width: 18px; height: 1px; background: var(--hazard); }
.hero-title {
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(50px, 9vw, 118px);
  line-height: 0.86;
  letter-spacing: 0.005em;
  margin: 0 0 22px;
  text-transform: uppercase;
}
.hero-title .stroke-text { -webkit-text-stroke-width: 2px; }
.hero-sub {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.6;
  color: var(--bone-dim);
  max-width: 520px;
  margin: 0 0 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.15s ease, background 0.2s, color 0.2s, border-color 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--hazard); color: var(--ink); }
.btn-primary:hover { background: #ff5e2c; }
.btn-ghost {
  border: 1px solid rgba(241,236,224,0.3);
  color: var(--bone);
}
.btn-ghost:hover { border-color: var(--bone); background: rgba(241,236,224,0.06); }

/* Bottom dashboard strip — boost readout + scroll cue, consolidated */
.hero-dash {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 4vw, 56px);
  border-top: 1px solid rgba(241,236,224,0.12);
  background: rgba(10,10,11,0.5);
}
.boost-meter {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  max-width: 320px;
}
.boost-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--bone-dim);
  white-space: nowrap;
}
.boost-track {
  flex: 1;
  height: 4px;
  background: rgba(241,236,224,0.12);
  position: relative;
  overflow: hidden;
}
.boost-fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: linear-gradient(to right, var(--hazard-dim), var(--hazard));
  transition: width 1.4s cubic-bezier(.2,.8,.2,1);
}
.boost-fill.redline { background: linear-gradient(to right, var(--hazard), #ff2d2d); }
.boost-pct {
  font-family: var(--digits);
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  color: var(--bone);
  min-width: 34px;
}
.scroll-cue {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--bone-dim);
  white-space: nowrap;
}
.scroll-cue span {
  width: 22px;
  height: 1px;
  background: var(--hazard);
  animation: scrollpulse 1.8s ease-in-out infinite;
}
@keyframes scrollpulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
@media (max-width: 640px) {
  .hero-dash { flex-wrap: wrap; }
  .boost-meter { max-width: none; width: 100%; }
}

/* ---------------- Ticker ---------------- */
.ticker-wrap {
  background: var(--caution);
  color: var(--ink);
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  animation: ticker 32s linear infinite;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ticker-track .dot { opacity: 0.5; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------------- Section shell ---------------- */
main > section {
  padding: 100px clamp(20px, 4vw, 56px);
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
}
.section-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hazard);
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before { content: ''; width: 18px; height: 1px; background: var(--hazard); }
main > section h2 {
  font-family: var(--display);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: 0.005em;
  margin: 0 0 20px;
  max-width: 720px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.section-head h2 { margin-bottom: 0; }
.section-link {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hazard);
  white-space: nowrap;
}
.section-link:hover { text-decoration: underline; }

/* ---------------- About (spec plate flipped to the left) ---------------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
  border-top: 1px solid var(--line);
}
.about-dash {
  order: -1;
  background: var(--steel);
  border: 1px solid var(--line);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.dash-item { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; border-bottom: 1px dashed var(--line); padding-bottom: 16px; }
.dash-item:last-child { border-bottom: none; padding-bottom: 0; }
.dash-value {
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: 40px;
  color: var(--bone);
  line-height: 1;
}
.dash-key {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--bone-dim);
  text-transform: uppercase;
  text-align: right;
}
.about-copy p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--bone-dim);
  max-width: 560px;
}
@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; gap: 36px; }
  .about-dash { order: 0; }
}

/* ---------------- Hosts (director cards) ---------------- */
.hosts { border-top: 1px solid var(--line); }
.host-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.host-card {
  background: var(--steel);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.host-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,71,19,0.08), transparent 60%),
    var(--steel-2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.host-photo img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.host-initials {
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: 72px;
  color: transparent;
  -webkit-text-stroke: 2px rgba(241,236,224,0.22);
  text-stroke: 2px rgba(241,236,224,0.22);
  letter-spacing: 0.02em;
}
.host-card-body { padding: 24px 26px 28px; border-top: 1px solid var(--line); }
.host-role {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hazard);
}
.host-name {
  font-family: var(--display);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  font-size: 26px;
  margin: 6px 0 16px;
}
.host-specs { display: flex; flex-wrap: wrap; gap: 20px; margin: 0 0 16px; }
.host-specs div { min-width: 100px; }
.host-specs dt {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin: 0 0 4px;
}
.host-specs dd { margin: 0; font-size: 13px; font-weight: 600; }
.host-bio { font-size: 14px; line-height: 1.6; color: var(--bone-dim); margin: 0; }

/* ---------------- Episodes ---------------- */
.episodes { border-top: 1px solid var(--line); }
.episode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.episode-card {
  position: relative;
  background: var(--steel);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.episode-card:hover { border-color: var(--hazard-dim); transform: translateY(-3px); }
.episode-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--steel-2);
  overflow: hidden;
}
.episode-thumb img { width: 100%; height: 100%; object-fit: cover; }
.episode-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,11,0.2);
  opacity: 0;
  transition: opacity 0.2s;
}
.episode-card:hover .episode-play { opacity: 1; }
.episode-play svg { width: 42px; height: 42px; color: var(--hazard); filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6)); }
.episode-body { padding: 16px 18px 18px; border-top: 1px solid var(--line); }
.episode-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.episode-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--bone-dim);
  text-transform: uppercase;
}
.episode-skeleton {
  aspect-ratio: 16/9;
  background: linear-gradient(100deg, var(--steel) 30%, var(--steel-2) 50%, var(--steel) 70%);
  background-size: 200% 100%;
  animation: shimmer 1.6s ease-in-out infinite;
  border: 1px solid var(--line);
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.episode-empty {
  color: var(--bone-dim);
  font-size: 14px;
}

/* ---------------- Debates / warning-label tags ---------------- */
.debates { border-top: 1px solid var(--line); }
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}
.tag {
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 12px 20px;
  border: 1px dashed var(--line);
  font-size: 15px;
  color: var(--bone-dim);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.tag:hover { border-color: var(--hazard); border-style: solid; color: var(--hazard); background: rgba(255,71,19,0.06); }
.tag-lg { font-size: 20px; color: var(--bone); }

/* ---------------- Listen (switch-panel cards) ---------------- */
.listen { border-top: 1px solid var(--line); }
.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 36px;
}
.platform-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  background: var(--steel);
  border: 1px solid var(--line);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
}
.platform-card:hover { border-color: var(--hazard); background: var(--steel-2); }
.platform-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  color: var(--hazard);
}
.platform-card:hover .platform-icon { border-color: var(--hazard); }

/* ---------------- Shop tie-in ---------------- */
.shop {
  border-top: 1px solid var(--line);
  background: var(--steel);
  overflow: hidden;
}
.shop-outline {
  position: absolute;
  z-index: 0;
  right: -2vw;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(120px, 16vw, 260px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(241,236,224,0.06);
  text-stroke: 1.5px rgba(241,236,224,0.06);
  pointer-events: none;
  white-space: nowrap;
}
@media (max-width: 900px) { .shop-outline { display: none; } }
.shop-inner { max-width: 640px; position: relative; z-index: 1; }
.shop p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--bone-dim);
  margin-bottom: 28px;
}

/* ---------------- Footer ---------------- */
.site-footer {
  padding: 44px clamp(20px, 4vw, 56px) 32px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto 20px;
}
.footer-mark {
  font-family: var(--display);
  font-weight: 800;
  font-style: italic;
  font-size: 24px;
  letter-spacing: 0.01em;
}
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bone-dim);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--hazard); }
.footer-fine {
  max-width: 1240px;
  margin: 0 auto;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--bone-dim);
  opacity: 0.6;
}

/* ---------------- Shop page ---------------- */
.shop-hero {
  padding: 150px clamp(20px, 4vw, 56px) 60px;
  max-width: 1240px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.shop-hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.02;
  margin: 10px 0 16px;
}
.shop-hero p { font-size: 16px; line-height: 1.7; color: var(--bone-dim); max-width: 560px; margin: 0; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.product-card {
  background: var(--steel);
  border: 1px solid var(--line);
  overflow: hidden;
}
.product-thumb {
  aspect-ratio: 1 / 1;
  background:
    repeating-linear-gradient(-45deg, var(--steel-2) 0, var(--steel-2) 10px, var(--steel) 10px, var(--steel) 20px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-thumb-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.product-thumb { cursor: pointer; position: relative; }
.product-thumb-zoom {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,11,0.72);
  border: 1px solid rgba(241,236,224,0.25);
  color: var(--bone);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.product-thumb-zoom svg { width: 13px; height: 13px; }
.product-card:hover .product-thumb-zoom, .product-thumb:focus-visible + * .product-thumb-zoom { opacity: 1; }
.product-digital-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--hazard);
  border-radius: 3px;
  padding: 3px 7px;
}
.product-body { padding: 16px 18px 18px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 12px; }
.product-name {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  background: none;
  border: none;
  text-align: left;
  color: var(--bone);
  cursor: pointer;
  padding: 0;
}
.product-name:hover { color: var(--hazard); }
.product-price { font-family: var(--mono); font-size: 12px; color: var(--bone-dim); }
.product-actions { display: flex; gap: 8px; }
.product-view-btn, .product-trunk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
  padding: 10px 8px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(241,236,224,0.25);
  color: var(--bone);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.product-view-btn:hover { border-color: var(--bone); background: rgba(241,236,224,0.06); }
.product-trunk-btn { border-color: var(--hazard-dim); color: var(--hazard); }
.product-trunk-btn:hover { background: var(--hazard); color: var(--ink); border-color: var(--hazard); }
.product-trunk-btn svg { width: 19px; height: 12px; flex-shrink: 0; }
.product-trunk-btn.is-added { border-color: #3ecf6e; color: #3ecf6e; }
.product-trunk-btn.is-added:hover { background: #3ecf6e; color: var(--ink); }

.shop-empty {
  border: 1px dashed var(--line);
  padding: 60px 30px;
  text-align: center;
}
.shop-empty p {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin: 0;
}

/* ---------------- Product previewer (quick view modal) ---------------- */
.pv-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(10,10,11,0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.pv-overlay.is-open { opacity: 1; pointer-events: auto; }
.pv-modal {
  background: var(--steel);
  border: 1px solid var(--line);
  max-width: 720px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  transform: translateY(12px);
  transition: transform 0.25s ease;
}
.pv-overlay.is-open .pv-modal { transform: translateY(0); }
.pv-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  border: 1px solid var(--line);
  color: var(--bone);
  cursor: pointer;
  z-index: 2;
}
.pv-close:hover { border-color: var(--hazard); color: var(--hazard); }
.pv-close svg { width: 14px; height: 14px; }
.pv-media {
  aspect-ratio: 1 / 1;
  background: repeating-linear-gradient(-45deg, var(--steel-2) 0, var(--steel-2) 10px, var(--steel) 10px, var(--steel) 20px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pv-media img { width: 100%; height: 100%; object-fit: cover; }
.pv-media-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bone-dim); }
.pv-body { padding: 44px 28px 32px; display: flex; flex-direction: column; gap: 16px; }
.pv-eyebrow { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--hazard); margin: 0; }
.pv-name {
  font-family: var(--display);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.05;
  margin: 0;
}
.pv-price { font-family: var(--digits); font-size: 18px; color: var(--bone); }
.pv-desc { font-size: 14px; line-height: 1.7; color: var(--bone-dim); margin: 0; flex: 1; }
.pv-actions { display: flex; gap: 12px; margin-top: 4px; }
.pv-trunk-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--hazard);
  color: var(--ink);
  border: none;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s ease;
}
.pv-trunk-btn:hover { background: #ff5e2c; transform: translateY(-1px); }
.pv-trunk-btn svg { width: 22px; height: 14px; }
.pv-trunk-btn.is-added { background: #3ecf6e; }
@media (max-width: 640px) {
  .pv-modal { grid-template-columns: 1fr; }
  .pv-media { aspect-ratio: 16 / 10; }
  .pv-body { padding: 24px 22px 28px; }
}

/* ---------------- Trunk drawer ---------------- */
.trunk-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(10,10,11,0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.trunk-drawer-overlay.is-open { opacity: 1; pointer-events: auto; }
.trunk-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100svh;
  width: min(92vw, 380px);
  background: var(--steel);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 301;
}
.trunk-drawer-overlay.is-open .trunk-drawer { transform: translateX(0); }
.trunk-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.trunk-drawer-title { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 800; font-style: italic; text-transform: uppercase; font-size: 18px; margin: 0; }
.trunk-drawer-title svg { width: 24px; height: 15px; color: var(--hazard); }
.trunk-drawer-close { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: transparent; border: 1px solid var(--line); color: var(--bone); cursor: pointer; flex-shrink: 0; }
.trunk-drawer-close:hover { border-color: var(--hazard); color: var(--hazard); }
.trunk-drawer-close svg { width: 14px; height: 14px; }
.trunk-drawer-items { flex: 1; overflow-y: auto; padding: 6px 22px; display: flex; flex-direction: column; }
.trunk-item { display: flex; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.trunk-item-thumb {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: repeating-linear-gradient(-45deg, var(--steel-2) 0, var(--steel-2) 8px, var(--steel) 8px, var(--steel) 16px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trunk-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.trunk-item-body { flex: 1; display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.trunk-item-name { font-size: 13px; font-weight: 600; margin: 0; }
.trunk-item-price { font-family: var(--digits); font-size: 11px; color: var(--bone-dim); }
.trunk-item-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.trunk-qty { display: flex; align-items: center; border: 1px solid var(--line); }
.trunk-qty button { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; background: transparent; border: none; color: var(--bone); cursor: pointer; font-size: 13px; line-height: 1; }
.trunk-qty button:hover { color: var(--hazard); }
.trunk-qty span { width: 26px; text-align: center; font-family: var(--digits); font-size: 12px; }
.trunk-item-remove { font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--bone-dim); background: none; border: none; cursor: pointer; text-decoration: underline; padding: 0; }
.trunk-item-remove:hover { color: var(--hazard); }
.trunk-drawer-empty { padding: 50px 22px; text-align: center; font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--bone-dim); }
.trunk-drawer-foot { border-top: 1px solid var(--line); padding: 18px 22px 24px; display: flex; flex-direction: column; gap: 14px; }
.trunk-subtotal-row { display: flex; align-items: center; justify-content: space-between; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--bone-dim); }
.trunk-subtotal-value { font-family: var(--digits); font-size: 17px; color: var(--bone); }
.trunk-drawer-note { font-size: 11px; color: var(--bone-dim); margin: 0; line-height: 1.5; }
.trunk-item-tag { font-family: var(--mono); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--hazard); border: 1px solid currentColor; border-radius: 3px; padding: 1px 5px; margin-left: 6px; vertical-align: middle; }
.trunk-checkout-btn { width: 100%; padding: 13px 16px; border: none; border-radius: 4px; background: var(--hazard); color: var(--ink); font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; cursor: pointer; transition: opacity 0.15s ease; }
.trunk-checkout-btn:hover:not(:disabled) { opacity: 0.88; }
.trunk-checkout-btn:disabled { opacity: 0.4; cursor: not-allowed; }
#trunkCheckoutError { color: var(--hazard); }

/* ---------------- Toast ---------------- */
.toast {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translate(-50%, 12px);
  background: var(--steel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--hazard);
  color: var(--bone);
  padding: 12px 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
.toast svg { width: 18px; height: 11px; color: var(--hazard); flex-shrink: 0; }
