/* ============================================
   DUMPSTER JUICE — Punk Zine Aesthetic v2
   ============================================ */

:root {
  --black: #06070a;
  --dark: #0c0d11;
  --panel: #111318;
  --panel2: #181b22;
  --line: #2a2e38;
  --text: #e8e9ed;
  --muted: #8b8f9c;
  --orange: #ff5a1f;
  --orange-dim: #cc4818;
  --acid: #d4ff4f;
  --acid-dim: #a8cc3f;
  --pink: #ff3a6e;
  --cream: #f5f0e8;
  --font-display: 'Dela Gothic One', cursive;
  --font-body: 'Barlow Condensed', sans-serif;
  --font-typewriter: 'Special Elite', cursive;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--black);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

/* ---- TEXTURE OVERLAYS ---- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.018) 3px,
    rgba(0,0,0,0.018) 4px
  );
}

/* ---- SKIP LINK ---- */
.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 10000;
}
.skip-link:focus {
  left: 10px;
  top: 10px;
  background: var(--acid);
  color: var(--black);
  padding: 8px 16px;
  font-weight: 700;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announce-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--acid);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 40px 8px 16px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  animation: slideDown 0.4s ease;
}
.announce-bar a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.announce-bar a:hover { color: var(--orange); }
.announce-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--black);
  font-size: 1.1rem;
  line-height: 1;
  padding: 4px;
  opacity: 0.6;
  transition: opacity 0.15s;
}
.announce-close:hover { opacity: 1; }
@keyframes slideDown {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}

/* Offset header when announce bar is present */
.announce-bar + .site-header {
  top: 33px;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(6,7,10,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--orange);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: 0.08em;
  transition: transform 0.2s;
}
.logo:hover { transform: scale(1.04); }
.logo-dumpster {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text);
}
.logo-juice {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--orange);
  margin-top: -2px;
}
.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  padding: 8px 14px;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--orange);
  color: var(--black);
}
.nav-links a.nav-active {
  color: var(--orange);
  position: relative;
}
.nav-links a.nav-active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--orange);
}
.nav-cta {
  background: var(--orange) !important;
  color: var(--black) !important;
  font-weight: 900 !important;
}
.nav-cta:hover {
  background: var(--acid) !important;
}

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 2px solid var(--orange);
  padding: 8px 10px;
  border-radius: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--orange);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 700px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(6,7,10,0.97);
    border-bottom: 2px solid var(--orange);
    padding: 0 20px;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }
  .nav-links.open {
    max-height: 320px;
    padding: 16px 20px;
    gap: 4px;
  }
  .nav-links a {
    padding: 12px 16px;
    font-size: 1rem;
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .nav-links.open a {
    opacity: 1;
    transform: translateX(0);
  }
  .nav-links.open li:nth-child(1) a { transition-delay: 0.05s; }
  .nav-links.open li:nth-child(2) a { transition-delay: 0.1s; }
  .nav-links.open li:nth-child(3) a { transition-delay: 0.12s; }
  .nav-links.open li:nth-child(4) a { transition-delay: 0.14s; }
  .nav-links.open li:nth-child(5) a { transition-delay: 0.16s; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  position: relative;
}
.btn-primary {
  background: var(--orange);
  color: var(--black);
  transform: skewX(-4deg);
}
.btn-primary:hover {
  background: var(--acid);
  color: var(--black);
  transform: skewX(-4deg) translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,90,31,0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--orange);
  transform: skewX(-4deg);
}
.btn-ghost:hover {
  background: var(--orange);
  color: var(--black);
  transform: skewX(-4deg) translateY(-2px);
}
.btn:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 3px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 24px 40px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  position: absolute;
  object-fit: cover;
  filter: brightness(0.25) contrast(1.3) saturate(0.5);
}
.hero-img-1 {
  right: -5%;
  top: 0;
  height: 100%;
  width: 55%;
  object-position: center;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  animation: heroFloat1 20s ease-in-out infinite;
}
.hero-img-2 {
  left: -5%;
  bottom: -10%;
  width: 40%;
  height: 70%;
  object-position: top;
  opacity: 0.35;
  clip-path: polygon(0 0, 100% 15%, 85% 100%, 0 85%);
  animation: heroFloat2 25s ease-in-out infinite;
}
.hero-img-3 {
  right: 8%;
  bottom: 8%;
  width: 20%;
  height: 30%;
  opacity: 0.2;
  object-position: center;
  transform: rotate(-3deg);
  animation: heroFloat3 18s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,7,10,0.4) 0%, transparent 25%, transparent 55%, rgba(6,7,10,0.95) 100%),
    linear-gradient(90deg, rgba(6,7,10,0.85) 0%, transparent 55%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-tag {
  font-family: var(--font-typewriter);
  font-size: 0.85rem;
  color: var(--acid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeSlideUp 0.6s 0.2s forwards;
}
.hero-title {
  font-family: var(--font-display);
  line-height: 0.95;
  margin-bottom: 20px;
}
.hero-line-1 {
  display: block;
  font-size: clamp(2.5rem, 8vw, 5rem);
  color: var(--text);
  opacity: 0;
  animation: fadeSlideUp 0.6s 0.4s forwards;
}
.hero-line-2 {
  display: block;
  font-size: clamp(3.5rem, 12vw, 8rem);
  color: var(--orange);
  text-shadow:
    0 0 60px rgba(255,90,31,0.25),
    4px 4px 0 rgba(255,90,31,0.12),
    -1px -1px 0 rgba(255,90,31,0.08);
  letter-spacing: -0.02em;
  transform: rotate(-1.5deg);
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.6s forwards, heroGlitch 8s 2s infinite;
  position: relative;
}
@keyframes heroGlitch {
  0%, 92%, 100% { text-shadow: 0 0 60px rgba(255,90,31,0.25), 4px 4px 0 rgba(255,90,31,0.12), -1px -1px 0 rgba(255,90,31,0.08); }
  93% { text-shadow: -3px 0 var(--acid), 3px 0 var(--pink), 0 0 60px rgba(255,90,31,0.4); transform: rotate(-1.5deg) translate(-2px, 0); }
  94% { text-shadow: 2px 0 var(--pink), -2px 0 var(--acid), 0 0 60px rgba(255,90,31,0.4); transform: rotate(-1.5deg) translate(2px, 1px); }
  95% { text-shadow: -3px 0 var(--acid), 3px 0 var(--pink), 0 0 60px rgba(255,90,31,0.4); transform: rotate(-1.5deg) translate(-1px, -1px); }
  96% { text-shadow: 0 0 60px rgba(255,90,31,0.25), 4px 4px 0 rgba(255,90,31,0.12); transform: rotate(-1.5deg); }
}
.hero-sub {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--muted);
  max-width: 50ch;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeSlideUp 0.6s 0.85s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.6s 1.05s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 28px;
  right: 30px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll span {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--muted);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: var(--orange);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-strip {
  overflow: hidden;
  background: var(--orange);
  padding: 10px 0;
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  transform: rotate(-0.5deg) scale(1.02);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}
.marquee-reverse .marquee-track {
  animation-direction: reverse;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--black);
  white-space: nowrap;
  padding: 0 4px;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
  padding: 80px 20px;
}
.section-header {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  letter-spacing: 0.02em;
  color: var(--text);
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  display: block;
  width: 60%;
  height: 4px;
  background: var(--orange);
  margin: 8px auto 0;
  transform: skewX(-12deg);
}
.section-sub {
  font-family: var(--font-typewriter);
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.6;
}

/* ============================================
   BUILDS / JACKETS
   ============================================ */
.builds-section {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255,90,31,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(212,255,79,0.04) 0%, transparent 50%),
    var(--dark);
}
.builds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.build-card {
  perspective: 1200px;
  cursor: pointer;
}
.build-flipper {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 14;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.15, 1);
}
.build-card.flipped .build-flipper {
  transform: rotateY(180deg);
}
.build-front,
.build-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  border: 3px solid var(--line);
  background: var(--panel);
}
.build-front img,
.build-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.build-card:hover .build-front img,
.build-card:hover .build-back img {
  transform: scale(1.04);
}
.build-back {
  transform: rotateY(180deg);
}
.flip-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-family: var(--font-typewriter);
  font-size: 0.7rem;
  color: var(--acid);
  background: rgba(6,7,10,0.85);
  padding: 5px 12px;
  letter-spacing: 0.1em;
  pointer-events: none;
  transition: opacity 0.3s;
}
.build-card:hover .flip-hint {
  opacity: 1;
}
.build-info {
  padding: 16px 4px 0;
}
.build-info h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--orange);
  margin-bottom: 4px;
}
.build-info p {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 400;
}
.build-tag {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-typewriter);
  font-size: 0.7rem;
  color: var(--acid);
  border: 1px solid var(--acid-dim);
  padding: 2px 10px;
  letter-spacing: 0.15em;
}
.builds-note {
  text-align: center;
  margin-top: 40px;
  font-family: var(--font-typewriter);
  font-size: 0.9rem;
  color: var(--muted);
}
.builds-note a {
  color: var(--orange);
  border-bottom: 1px dashed var(--orange);
  transition: color 0.15s;
}
.builds-note a:hover {
  color: var(--acid);
  border-color: var(--acid);
}

/* ============================================
   RIP DIVIDER
   ============================================ */
.rip-divider {
  height: 24px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.rip-divider::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg width='1200' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 15 Q30 0 60 12 Q90 20 120 8 Q150 0 180 14 Q210 20 240 6 Q270 0 300 10 Q330 20 360 5 Q390 0 420 15 Q450 20 480 8 Q510 0 540 12 Q570 20 600 6 Q630 0 660 14 Q690 20 720 5 Q750 0 780 15 Q810 20 840 8 Q870 0 900 12 Q930 20 960 6 Q990 0 1020 14 Q1050 20 1080 5 Q1110 0 1140 15 Q1170 20 1200 8' fill='none' stroke='%23ff5a1f' stroke-width='2'/%3E%3C/svg%3E") repeat-x;
}

/* ============================================
   PATCHES
   ============================================ */
.patches-section {
  background: var(--black);
}
.patches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.patch-item {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--line);
  background: var(--panel);
  cursor: pointer;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.patch-item:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255,90,31,0.12);
}
.patch-img-wrap {
  position: relative;
  overflow: hidden;
}
.patch-img-wrap img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.4s ease;
  background: var(--panel2);
}
.build-front img,
.build-back img {
  background: var(--panel2);
}
.patch-item:hover .patch-img-wrap img {
  transform: scale(1.06);
}
.patch-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6,7,10,0.7);
  font-family: var(--font-typewriter);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--acid);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.patch-item:hover .patch-overlay {
  opacity: 1;
}
.patch-item figcaption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--panel);
  border-top: 1px solid var(--line);
}
.patch-item figcaption span {
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* ============================================
   PATCH FILTERS
   ============================================ */
.patch-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto 28px;
}
.patch-filter {
  background: var(--panel);
  border: 2px solid var(--line);
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  padding: 8px 18px;
  cursor: pointer;
  transition: all 0.2s;
}
.patch-filter:hover {
  border-color: var(--orange);
  color: var(--text);
}
.patch-filter.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--black);
}
.patch-item.filter-hidden {
  display: none;
  animation: filterOut 0.25s ease forwards;
}
@keyframes filterIn {
  from { opacity: 0; transform: scale(0.92) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.patch-item:not(.filter-hidden) {
  animation: filterIn 0.35s ease forwards;
}

/* ============================================
   ABOUT
   ============================================ */
.about-section {
  background:
    linear-gradient(135deg, rgba(255,90,31,0.04) 0%, transparent 40%),
    var(--dark);
  overflow: hidden;
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
.about-images {
  position: relative;
  height: 500px;
}
.about-img {
  position: absolute;
  border: 3px solid var(--line);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: transform 0.4s ease;
}
.about-img-1 {
  width: 65%;
  top: 0;
  left: 0;
  transform: rotate(-3deg);
  z-index: 1;
}
.about-img-1:hover { transform: rotate(-1deg) scale(1.02); }
.about-img-2 {
  width: 55%;
  bottom: 0;
  right: 0;
  transform: rotate(2deg);
  z-index: 2;
}
.about-img-2:hover { transform: rotate(0deg) scale(1.02); }
.about-text .section-title {
  text-align: left;
}
.about-text .section-title::after {
  margin: 8px 0 0;
}
.about-body {
  font-size: 1.05rem;
  color: var(--muted);
  margin-top: 16px;
  max-width: 50ch;
  font-weight: 400;
}
.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--orange);
}
.stat-label {
  font-family: var(--font-typewriter);
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .about-layout { grid-template-columns: 1fr; }
  .about-images { height: 350px; }
}

/* ============================================
   PROCESS
   ============================================ */
.process-section {
  background: var(--black);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  height: 4px;
  background: var(--orange);
  opacity: 0.2;
  z-index: 0;
}
@media (min-width: 900px) {
  .process-steps::before {
    left: calc(12.5% + 12px);
    right: calc(12.5% + 12px);
    top: 0;
  }
}
.step {
  padding: 28px 24px;
  border: 2px solid var(--line);
  border-top: 4px solid var(--orange);
  background: var(--panel);
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.step:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--panel2);
  position: absolute;
  top: 10px;
  right: 16px;
  line-height: 1;
  -webkit-text-stroke: 1px var(--line);
}
.step h3 {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 6px;
}
.step p {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 400;
}

/* ============================================
   PRICING
   ============================================ */
.pricing-section {
  background: var(--dark);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.price-card {
  padding: 32px 24px;
  border: 2px solid var(--line);
  background: var(--panel);
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.price-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}
.price-card-featured {
  border-color: var(--orange);
  background: linear-gradient(180deg, rgba(255,90,31,0.08), var(--panel));
  position: relative;
}
.price-card-featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  padding: 3px 14px;
}
.price-card h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.price-range {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--orange);
  margin-bottom: 10px;
}
.price-card p:not(.price-range) {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 400;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: var(--black);
  overflow: hidden;
}
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial {
  padding: 28px 24px;
  background: var(--panel);
  border: 2px solid var(--line);
  border-left: 4px solid var(--orange);
  position: relative;
}
.testimonial blockquote {
  font-family: var(--font-typewriter);
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 12px;
}
.testimonial cite {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}
@media (max-width: 768px) {
  .testimonials-track { grid-template-columns: 1fr; }
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  background: var(--black);
}
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--panel);
  border: 2px solid var(--line);
  padding: 0;
  transition: border-color 0.2s;
}
.faq-item[open] {
  border-color: var(--orange);
}
.faq-item summary {
  padding: 16px 20px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}
.faq-item summary:hover {
  color: var(--orange);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--orange);
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq-item[open] .faq-answer {
  grid-template-rows: 1fr;
}
.faq-item .faq-answer-inner {
  overflow: hidden;
}
.faq-item p {
  padding: 0 20px 16px;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.6;
}

/* ============================================
   ORDER
   ============================================ */
.order-section {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255,90,31,0.08) 0%, transparent 50%),
    var(--dark);
}
.order-layout {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.order-text .section-title {
  text-align: left;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
}
.order-text .section-title::after {
  margin: 8px 0 0;
}
.order-text p {
  margin-top: 12px;
  font-family: var(--font-typewriter);
  font-size: 0.95rem;
  color: var(--muted);
}
.order-note {
  font-size: 0.8rem !important;
  color: #6b6f7a !important;
  margin-top: 16px !important;
  line-height: 1.5;
  border-left: 2px solid var(--line);
  padding-left: 12px;
}
.order-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form-field span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-full {
  grid-column: 1 / -1;
}
input, textarea {
  background: var(--panel);
  border: 2px solid var(--line);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border-radius: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,90,31,0.1);
}
input::placeholder, textarea::placeholder {
  color: #4a4e5a;
}
.btn-submit {
  align-self: flex-start;
  margin-top: 6px;
}
.form-msg {
  font-family: var(--font-typewriter);
  font-size: 0.9rem;
  color: var(--acid);
  min-height: 1.2em;
}

@media (max-width: 700px) {
  .order-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  padding: 48px 20px 40px;
  border-top: 2px solid var(--orange);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,90,31,0.06) 0%, transparent 60%),
    var(--black);
}
.footer-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  margin-bottom: 20px;
}
.footer-logo-dumpster {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text);
  letter-spacing: 0.1em;
}
.footer-logo-juice {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--orange);
  margin-top: -1px;
  letter-spacing: 0.1em;
}
.footer-social {
  margin-bottom: 20px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border: 2px solid var(--line);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.social-link:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
.social-link svg {
  flex-shrink: 0;
}
.footer-copy {
  font-family: var(--font-typewriter);
  font-size: 0.72rem;
  color: #555960;
  letter-spacing: 0.06em;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(6,7,10,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: zoom-out;
  opacity: 0;
  animation: lightboxIn 0.25s ease forwards;
}
.lightbox[hidden] { display: none; }
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: 2px solid var(--line);
  color: var(--text);
  font-size: 1.6rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  transition: border-color 0.15s, color 0.15s;
}
.lightbox-close:hover {
  color: var(--orange);
  border-color: var(--orange);
}
.lightbox-img {
  max-width: 75vw;
  max-height: 85vh;
  object-fit: contain;
  border: 3px solid var(--line);
  cursor: default;
  animation: lightboxImgIn 0.3s ease forwards;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(6,7,10,0.85);
  border: 2px solid var(--line);
  color: var(--text);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  z-index: 2;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover,
.lightbox-next:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255,90,31,0.1);
}
.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-typewriter);
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.15em;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 44px;
  height: 44px;
  background: var(--orange);
  border: none;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--acid);
  transform: translateY(-2px);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes lightboxIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes lightboxImgIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes heroFloat1 {
  0%, 100% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.03) translate(-5px, 3px); }
}
@keyframes heroFloat2 {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04) translate(4px, -4px); }
}
@keyframes heroFloat3 {
  0%, 100% { transform: rotate(-3deg) scale(1); }
  50% { transform: rotate(-1deg) scale(1.05); }
}

/* Scroll reveal */
.build-card,
.patch-item,
.step,
.price-card,
.faq-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.build-card.visible,
.patch-item.visible,
.step.visible,
.price-card.visible,
.faq-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays */
.build-card:nth-child(2), .patch-item:nth-child(2), .step:nth-child(2) { transition-delay: 0.07s; }
.build-card:nth-child(3), .patch-item:nth-child(3), .step:nth-child(3) { transition-delay: 0.14s; }
.build-card:nth-child(4), .patch-item:nth-child(4), .step:nth-child(4) { transition-delay: 0.21s; }
.build-card:nth-child(5), .patch-item:nth-child(5) { transition-delay: 0.28s; }
.patch-item:nth-child(6)  { transition-delay: 0.06s; }
.patch-item:nth-child(7)  { transition-delay: 0.12s; }
.patch-item:nth-child(8)  { transition-delay: 0.18s; }
.patch-item:nth-child(9)  { transition-delay: 0.24s; }
.patch-item:nth-child(10) { transition-delay: 0.06s; }
.patch-item:nth-child(11) { transition-delay: 0.12s; }
.patch-item:nth-child(12) { transition-delay: 0.18s; }
.patch-item:nth-child(13) { transition-delay: 0.06s; }
.patch-item:nth-child(14) { transition-delay: 0.12s; }
.patch-item:nth-child(15) { transition-delay: 0.18s; }
.patch-item:nth-child(16) { transition-delay: 0.06s; }
.patch-item:nth-child(17) { transition-delay: 0.12s; }
.patch-item:nth-child(18) { transition-delay: 0.18s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 500px) {
  .hero { padding: 100px 16px 40px; }
  .hero-img-1 { width: 80%; clip-path: none; opacity: 0.25; }
  .hero-img-2, .hero-img-3 { display: none; }
  .builds-grid { grid-template-columns: 1fr; max-width: 380px; }
  .patches-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .about-images { height: 280px; }
  .about-img-1 { width: 70%; }
  .about-img-2 { width: 60%; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }
  .lightbox-prev { left: 6px; width: 40px; height: 40px; }
  .lightbox-next { right: 6px; width: 40px; height: 40px; }
  .lightbox-img { max-width: 92vw; }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none !important; }
  .hero-img { animation: none !important; }
  .hero-line-2 { animation: fadeSlideUp 0.01ms 0s forwards !important; }
  .build-card, .patch-item, .step, .price-card, .faq-item {
    opacity: 1 !important;
    transform: none !important;
  }
  html { scroll-behavior: auto; }
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
@media (pointer: fine) {
  body { cursor: crosshair; }
  a, button, summary, .build-card, .patch-item { cursor: pointer; }
}
