:root {
  --black: #070707;
  --bone: #e8e4dc;
  --mute: #8a8680;
  --line: rgba(232, 228, 220, 0.14);
  --white: #f4f4f4;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { background: var(--black); color: var(--bone); }
body {
  font-family: "Space Grotesk", system-ui, sans-serif;
  line-height: 1.5;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; background: none; border: 0; }

.ticker {
  background: #f4f4f4;
  color: #111;
  overflow: hidden;
  white-space: nowrap;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 10px 0;
}
.ticker-track { display: inline-block; animation: tick 28s linear infinite; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.nav {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 18px 28px;
  background: rgba(7,7,7,0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.wordmark { font-weight: 700; letter-spacing: 0.22em; font-size: 15px; }
.nav-links {
  display: flex; align-items: center; gap: 28px; list-style: none;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute);
}
.nav-links a:hover, .nav-links a.is-active { color: var(--bone); }
.nav-cta {
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  border: 1px solid var(--bone); padding: 10px 14px;
}
.nav-cta:hover { background: var(--bone); color: var(--black); }
.wrap { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 88px 0 72px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-film,
.hero-veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-film { object-fit: cover; }
.hero-veil {
  background:
    linear-gradient(180deg, rgba(7,7,7,0.35) 0%, rgba(7,7,7,0.72) 45%, #070707 100%);
}
.hero .wrap { position: relative; z-index: 5; }

.vhs-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(125%) brightness(55%) saturate(70%) grayscale(35%);
  opacity: 0.55;
}
.vhs-overlay {
  position: absolute; inset: 0; pointer-events: none; z-index: 3;
  background:
    linear-gradient(rgba(7,7,7,0) 50%, rgba(0,0,0,0.35) 50%),
    linear-gradient(90deg, rgba(232,228,220,0.03), rgba(0,0,0,0), rgba(180,160,110,0.04));
  background-size: 100% 3px, 5px 100%;
}
.vhs-overlay::before {
  content: "";
  position: absolute; left: 0; right: 0; height: 18%;
  background: linear-gradient(rgba(7,7,7,0), rgba(232,228,220,0.07), rgba(7,7,7,0));
  animation: vhs-scan 9s linear infinite;
}
.vhs-osd {
  position: absolute; inset: 0; padding: 22px 28px;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bone);
  text-shadow: 0 0 8px rgba(232,228,220,0.25);
  pointer-events: none; z-index: 4;
  display: flex; flex-direction: column; justify-content: space-between;
}
.osd-row { display: flex; justify-content: space-between; width: 100%; }
.osd-play { animation: blink 1.4s steps(2, start) infinite; }
.vhs-title {
  position: relative;
  display: inline-block;
}
.vhs-title::before,
.vhs-title::after {
  content: attr(data-text);
  position: absolute; top: 0; left: 0; width: 100%;
  color: var(--white);
  clip: rect(0,0,0,0);
}
.vhs-title::before {
  left: 2px; text-shadow: -2px 0 rgba(180,150,80,0.55);
  animation: glitch-1 3s infinite linear alternate-reverse;
}
.vhs-title::after {
  left: -2px; text-shadow: 2px 0 rgba(232,228,220,0.35);
  animation: glitch-2 2.4s infinite linear alternate-reverse;
}
@keyframes blink { to { opacity: 0; } }
@keyframes vhs-scan { 0% { top: -20%; } 100% { top: 120%; } }
@keyframes glitch-1 {
  0% { clip: rect(12px,9999px,28px,0); }
  40% { clip: rect(60px,9999px,80px,0); }
  100% { clip: rect(30px,9999px,48px,0); }
}
@keyframes glitch-2 {
  0% { clip: rect(70px,9999px,90px,0); }
  50% { clip: rect(18px,9999px,36px,0); }
  100% { clip: rect(50px,9999px,66px,0); }
}
.hero-kicker {
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--mute); margin-bottom: 28px;
}
.hero h1 {
  font-weight: 700;
  font-size: clamp(42px, 8.4vw, 104px);
  line-height: 0.9; letter-spacing: -0.03em; color: var(--white); max-width: 16ch;
}
.hero-lede { margin-top: 28px; max-width: 44ch; color: #b7b2a8; font-size: 17px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 14px 18px; border: 1px solid var(--bone);
}
.btn-fill { background: var(--white); color: #111; border-color: var(--white); }
.btn-fill:hover { background: transparent; color: var(--bone); }
.btn-ghost:hover { background: var(--bone); color: var(--black); }

.capsule-head {
  display: flex; justify-content: space-between; align-items: end; gap: 24px;
  padding: 56px 0 28px;
}
.capsule-head h2 {
  font-size: clamp(32px, 6vw, 56px); font-weight: 700;
  letter-spacing: -0.03em; line-height: 0.95; color: var(--white);
}
.capsule-meta {
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute);
}

.product {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px;
  align-items: start; padding: 48px 0; border-top: 1px solid var(--line);
}
.shots { display: grid; gap: 12px; }
.shots img { width: 100%; background: #111; }
.lookbook {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto 48px;
  border: 1px solid var(--line);
}
.lookbook img { width: 100%; height: auto; display: block; }
.product h3 {
  font-size: clamp(28px, 4vw, 40px); font-weight: 700;
  letter-spacing: -0.03em; color: var(--white); margin: 8px 0 16px;
}
.product .lede { color: #b7b2a8; max-width: 42ch; }
.verse-pull {
  margin-top: 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic; font-size: 20px; line-height: 1.4; color: var(--bone);
}
.held { margin-top: 8px; padding: 36px 0 56px; border-top: 1px solid var(--line); color: var(--mute); }
.held h3 { color: var(--white); font-size: 22px; margin: 0 0 8px; }

.stand { padding: 80px 0; border-top: 1px solid var(--line); }
.stand > .lede {
  font-size: clamp(22px, 3vw, 32px); line-height: 1.25;
  max-width: 28ch; color: var(--white); margin-bottom: 48px;
}
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.pillars article h3 { font-size: 22px; color: var(--white); margin: 8px 0 12px; }
.pillars p { color: #b7b2a8; }

.page-hero { padding: 72px 0 40px; }
.page-hero h1 {
  font-size: clamp(40px, 8vw, 88px); font-weight: 700;
  letter-spacing: -0.03em; line-height: 0.92; color: var(--white);
}
.stack { display: grid; gap: 28px; padding-bottom: 72px; }
.verse {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic; font-size: clamp(22px, 3vw, 30px);
  line-height: 1.35; color: var(--white); max-width: 28ch;
}
.block h2 { color: var(--white); font-size: 26px; margin-bottom: 10px; }
.block p { color: #b7b2a8; max-width: 56ch; }

.wait { padding: 80px 0 100px; border-top: 1px solid var(--line); }
.wait h2 {
  font-size: clamp(32px, 5vw, 52px); color: var(--white);
  letter-spacing: -0.03em; margin: 8px 0 16px;
}
.form { display: flex; gap: 8px; margin-top: 28px; max-width: 480px; }
.form input { flex: 1; border: 1px solid var(--line); padding: 14px 16px; background: #101010; }
.form button {
  background: var(--white); color: #111; padding: 14px 18px; cursor: pointer;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
}
.note { margin-top: 14px; font-size: 12px; color: var(--mute); }
.ok { display: none; margin-top: 14px; color: var(--bone); }
.ok.show { display: block; }
.status {
  display: inline-block; margin-top: 22px;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  border: 1px solid var(--line); padding: 8px 10px; color: var(--mute);
}

footer {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 22px 28px 28px; border-top: 1px solid var(--line);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute);
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .product, .pillars { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 48px; }
  .form { flex-direction: column; }
}

.street-hero {
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  min-height: 90vh;
  padding: 0;
  border-bottom: 2px solid var(--bone);
}
.street-hero .bg-video,
.street-hero .vhs-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(80%) contrast(150%) brightness(60%);
  opacity: 0.5;
}
.film-grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background:
    repeating-linear-gradient(0deg, rgba(0,0,0,0.18), rgba(0,0,0,0.18) 1px, transparent 1px, transparent 3px),
    radial-gradient(circle, transparent 55%, #000 100%);
}
.cam-hud {
  position: absolute; inset: 0; padding: 18px 22px;
  pointer-events: none; z-index: 5;
  display: flex; flex-direction: column; justify-content: space-between;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--bone);
}
.hud-top, .hud-bottom { display: flex; justify-content: space-between; align-items: center; }
.rec-box { color: #c44; display: flex; align-items: center; gap: 8px; animation: flash 1s infinite alternate; }
.rec-dot { width: 8px; height: 8px; background: #c44; border-radius: 50%; display: inline-block; }
.cam-crosshair {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 36px; height: 36px; border: 1px dashed rgba(232,228,220,0.28);
}
.hero-center {
  position: relative; z-index: 4; margin: auto; text-align: center;
  padding: 80px 20px 40px; max-width: 1100px;
}
.sticker-tag {
  display: inline-block;
  background: var(--bone); color: #111;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 12px; transform: rotate(-2deg);
  margin-bottom: 18px;
}
.street-hero .hero-title {
  font-family: Syne, "Space Grotesk", sans-serif;
  font-size: clamp(48px, 12vw, 120px);
  font-weight: 800; text-transform: uppercase;
  line-height: 0.85; letter-spacing: -0.04em;
  color: #fff; max-width: none;
}
.outline-text {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
}
.hero-meta {
  margin-top: 18px;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute);
}
.cta-group { margin-top: 28px; display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }
.btn-street {
  background: #fff; color: #111; font-family: "Space Mono", ui-monospace, monospace;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 14px 20px; border: 2px solid #fff;
}
.btn-street:hover { background: var(--bone); border-color: var(--bone); }
.btn-outline { background: transparent; color: #fff; border-color: #555; }
.btn-outline:hover { background: #fff; color: #111; border-color: #fff; }
.caution {
  position: relative; z-index: 5;
  background: var(--bone); color: #111;
  overflow: hidden; white-space: nowrap;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 8px 0;
}
.caution-track { display: inline-block; animation: tick 22s linear infinite; }
.caution-track span { padding: 0 28px; }
@keyframes flash { 50% { opacity: 0.25; } }

.archive-hero {
  min-height: 92vh;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  padding: 0;
}
.hero-media {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(140%) brightness(50%);
  opacity: 0.55; z-index: 1;
}
.grid-scaffold {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(7,7,7,0.25) 0%, rgba(7,7,7,0.82) 100%),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    linear-gradient(0deg, var(--line) 1px, transparent 1px);
  background-size: 100% 100%, 16% 100%, 100% 33.333%;
}
.hero-core {
  position: relative; z-index: 4;
  padding: 48px 32px 32px;
  margin-top: auto;
  width: min(1200px, 100%);
}
.tag-row { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; flex-wrap: wrap; }
.pill-badge {
  background: var(--bone); color: #111;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 6px 12px;
}
.barcode {
  font-family: "Libre Barcode 128 Text", cursive;
  font-size: 36px; line-height: 1; color: rgba(232,228,220,0.7);
}
.headline {
  font-family: Anton, "Space Grotesk", sans-serif;
  font-size: clamp(56px, 14vw, 168px);
  line-height: 0.88; text-transform: uppercase;
  letter-spacing: -0.02em; color: #fff;
  font-weight: 400; max-width: none;
}
.headline .outline {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.75);
}
.hero-footer-content {
  display: flex; justify-content: space-between; align-items: end;
  gap: 28px; flex-wrap: wrap; margin-top: 28px;
}
.desc-box { max-width: 440px; color: #b7b2a8; font-size: 16px; }
.action-group { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-streetwear {
  padding: 16px 22px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
}
.btn-solid { background: #fff; color: #111; }
.btn-solid:hover { background: var(--bone); }
.btn-streetwear.btn-outline {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-streetwear.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.infinite-ticker {
  position: relative; z-index: 5;
  background: #070707;
  border-top: 1px solid var(--line);
  overflow: hidden; white-space: nowrap;
  padding: 12px 0;
}
.ticker-wrapper { display: inline-flex; animation: tick 22s linear infinite; }
.ticker-item {
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mute); padding: 0 28px;
  display: inline-flex; align-items: center; gap: 12px;
}
.ticker-item i { color: var(--bone); font-style: normal; }
@media (max-width: 768px) {
  .hero-core { padding: 32px 20px 24px; }
  .hero-footer-content { flex-direction: column; align-items: start; }
  .action-group { width: 100%; }
  .btn-streetwear { width: 100%; text-align: center; justify-content: center; }
}
