:root {
  --black: #090909;
  --ink: #121212;
  --white: #f5f5f1;
  --paper: #ecece7;
  --purple: #7847f4;
  --acid: #96ff72;
  --border: rgba(10, 10, 10, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }

.announcement {
  position: relative;
  z-index: 30;
  height: 34px;
  overflow: hidden;
  color: var(--black);
  background: var(--acid);
  border-bottom: 1px solid var(--black);
  font: 600 12px/34px "IBM Plex Mono", monospace;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker { display: inline-flex; gap: 28px; min-width: max-content; animation: marquee 22s linear infinite; }
.ticker i { font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.site-header {
  position: absolute;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 20;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.35);
}
.brand { width: 152px; height: 54px; overflow: hidden; display: flex; align-items: center; }
.brand img { width: 152px; height: auto; }
.desktop-nav { display: flex; gap: 44px; font: 500 14px "IBM Plex Mono", monospace; text-transform: uppercase; }
.desktop-nav a { position: relative; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 100%; height: 2px; background: var(--acid); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.desktop-nav a:hover::after { transform: scaleX(1); }
.menu-button, .mobile-nav { display: none; }

.hero { position: relative; min-height: calc(100vh - 34px); color: white; background: black; overflow: hidden; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 54%; filter: contrast(1.08); transform: scale(1.015); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.74) 0%, rgba(0,0,0,.18) 52%, rgba(0,0,0,.23) 100%), linear-gradient(0deg, rgba(0,0,0,.65), transparent 52%); }
.hero-copy { position: relative; z-index: 2; min-height: calc(100vh - 34px); display: flex; flex-direction: column; justify-content: flex-end; padding: 150px 4vw 6vh; }
.eyebrow { margin: 0 0 18px; font: 600 12px/1.3 "IBM Plex Mono", monospace; letter-spacing: .13em; text-transform: uppercase; }
.hero h1, .drop h2, .manifesto h2, .lookbook h2, .closing h2, .product-copy h3 {
  margin: 0;
  font-family: "Archivo Black", Impact, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -.055em;
}
.hero h1 { max-width: 1000px; font-size: clamp(4.2rem, 10.6vw, 10.5rem); line-height: .79; }
.hero-bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-top: 38px; }
.hero-bottom p { margin: 0; font-size: 16px; line-height: 1.5; }
.photo-index { position: absolute; right: 4vw; top: 138px; z-index: 2; margin: 0; font: 500 11px "IBM Plex Mono", monospace; writing-mode: vertical-rl; }

.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: space-between; gap: 32px; padding: 0 20px; border: 1px solid; border-radius: 0; text-transform: uppercase; font: 600 13px "IBM Plex Mono", monospace; cursor: pointer; transition: background .2s, color .2s, transform .2s; }
.button:hover { transform: translateY(-2px); }
.button-light { min-width: 230px; color: var(--black); background: var(--white); border-color: var(--white); }
.button-light:hover { background: var(--acid); border-color: var(--acid); }
.button-dark { width: 100%; color: white; background: var(--black); border-color: var(--black); }
.button-dark:hover { color: var(--black); background: var(--acid); }

.drop, .lookbook { padding: 110px 4vw; }
.section-heading { display: grid; grid-template-columns: 1fr minmax(260px, 420px); gap: 50px; align-items: end; margin-bottom: 54px; }
.section-heading h2, .lookbook h2 { font-size: clamp(3.5rem, 8vw, 8rem); line-height: .82; }
.section-note { margin: 0; max-width: 420px; font-size: 17px; line-height: 1.55; }
.product-feature { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(330px, .65fr); min-height: 720px; border: 1px solid var(--black); }
.product-visual { position: relative; display: grid; place-items: center; min-height: 680px; overflow: hidden; background: var(--purple); border-right: 1px solid var(--black); }
.product-visual::after { content: ""; position: absolute; inset: 0; opacity: .12; pointer-events: none; background-image: radial-gradient(var(--acid) .8px, transparent .8px); background-size: 8px 8px; mix-blend-mode: multiply; }
.product-visual img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
.sticker { position: absolute; z-index: 2; right: 24px; bottom: 24px; width: 104px; height: 104px; display: grid; place-items: center; text-align: center; color: var(--black); background: var(--acid); border: 2px solid var(--black); border-radius: 50%; transform: rotate(-12deg); font: 700 13px/1.1 "IBM Plex Mono", monospace; }
.product-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(32px, 5vw, 76px); background: var(--white); }
.product-code { margin: 0 0 28px; font: 500 12px "IBM Plex Mono", monospace; }
.product-copy h3 { font-size: clamp(3rem, 5.6vw, 6rem); line-height: .86; }
.product-description { max-width: 540px; margin: 34px 0; font-size: 16px; line-height: 1.6; }
.specs { margin: 0 0 32px; border-top: 1px solid var(--border); }
.specs div { display: flex; justify-content: space-between; gap: 24px; padding: 13px 0; border-bottom: 1px solid var(--border); font: 500 13px "IBM Plex Mono", monospace; }
.specs dt { text-transform: uppercase; opacity: .55; }
.specs dd { margin: 0; text-align: right; }
.microcopy { margin: 12px 0 0; color: #666; font: 12px/1.4 "IBM Plex Mono", monospace; }

.manifesto { position: relative; min-height: 760px; display: flex; flex-direction: column; justify-content: center; padding: 110px 4vw; color: var(--white); background: var(--black); overflow: hidden; }
.manifesto::before { content: ""; position: absolute; right: -10vw; top: -20vw; width: 64vw; height: 64vw; border: 8vw solid var(--purple); border-radius: 50%; opacity: .85; }
.manifesto > * { position: relative; z-index: 1; }
.manifesto h2 { max-width: 1100px; font-size: clamp(3.7rem, 9.2vw, 9rem); line-height: .84; }
.manifesto > p:last-of-type { max-width: 560px; margin: 42px 0 0 auto; font-size: 19px; line-height: 1.55; }
.manifesto-stamp { position: absolute; right: 5vw; bottom: 44px; padding: 14px 20px; color: var(--black); background: var(--acid); transform: rotate(-3deg); font: 700 13px "IBM Plex Mono", monospace; }

.lookbook { background: var(--paper); }
.lookbook-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.lookbook-card { position: relative; margin: 0; min-height: 70vh; overflow: hidden; background: #bbb; }
.lookbook-card--wide { grid-column: 1 / -1; min-height: 80vh; }
.lookbook-card img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; filter: grayscale(1) contrast(1.06); transition: transform .7s ease, filter .5s ease; }
.lookbook-card:hover img { transform: scale(1.025); filter: grayscale(0) contrast(1); }
.lookbook-card figcaption { position: absolute; left: 16px; right: 16px; bottom: 16px; display: flex; justify-content: space-between; padding: 12px 14px; color: white; background: rgba(0,0,0,.8); font: 500 12px "IBM Plex Mono", monospace; text-transform: uppercase; }

.closing { min-height: 680px; display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; padding: 78px 4vw 46px; color: var(--black); background: var(--purple); }
.closing > p, .closing > a { margin: 0; font: 600 12px "IBM Plex Mono", monospace; text-transform: uppercase; }
.closing h2 { font-size: clamp(4.4rem, 12.5vw, 13rem); line-height: .77; }
.closing h2 em { color: var(--acid); font-style: normal; }
.closing a { border-bottom: 1px solid; padding-bottom: 5px; }

footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; padding: 46px 4vw; color: white; background: var(--black); border-top: 1px solid #333; font: 12px "IBM Plex Mono", monospace; text-transform: uppercase; }
footer img { width: 150px; }
footer p { margin: 0; }

.toast { position: fixed; z-index: 50; left: 50%; bottom: 24px; width: min(520px, calc(100% - 32px)); padding: 16px 18px; color: var(--black); background: var(--acid); border: 1px solid var(--black); box-shadow: 8px 8px 0 var(--purple); transform: translate(-50%, 150%); opacity: 0; transition: transform .3s ease, opacity .3s ease; font: 600 13px/1.45 "IBM Plex Mono", monospace; }
.toast.show { transform: translate(-50%, 0); opacity: 1; }

@media (max-width: 820px) {
  .site-header { height: 72px; padding: 0 20px; }
  .brand, .brand img { width: 126px; }
  .desktop-nav { display: none; }
  .menu-button { display: flex; align-items: center; gap: 12px; padding: 10px 0; color: white; background: transparent; border: 0; text-transform: uppercase; font: 600 12px "IBM Plex Mono", monospace; }
  .menu-button b { color: var(--acid); font-size: 22px; transition: transform .2s; }
  .menu-button[aria-expanded="true"] b { transform: rotate(45deg); }
  .mobile-nav { position: absolute; top: 72px; left: 0; right: 0; display: grid; max-height: 0; overflow: hidden; color: white; background: var(--black); transition: max-height .3s ease; }
  .mobile-nav.open { max-height: 230px; border-bottom: 1px solid #444; }
  .mobile-nav a { padding: 18px 20px; border-top: 1px solid #333; font: 500 14px "IBM Plex Mono", monospace; text-transform: uppercase; }
  .hero { min-height: 820px; }
  .hero-image { object-position: 62% center; }
  .hero-copy { min-height: 820px; padding: 130px 20px 34px; }
  .hero h1 { font-size: clamp(4rem, 20vw, 6.2rem); }
  .hero-bottom { align-items: stretch; flex-direction: column; margin-top: 30px; }
  .hero-bottom p { font-size: 14px; }
  .button-light { width: 100%; }
  .photo-index { display: none; }
  .drop, .lookbook { padding: 80px 20px; }
  .section-heading { grid-template-columns: 1fr; gap: 26px; margin-bottom: 38px; }
  .section-note { font-size: 15px; }
  .product-feature { grid-template-columns: 1fr; }
  .product-visual { min-height: 480px; border-right: 0; border-bottom: 1px solid var(--black); }
  .product-copy { padding: 42px 24px; }
  .manifesto { min-height: 670px; padding: 80px 20px; }
  .manifesto::before { right: -30vw; top: 4vw; width: 90vw; height: 90vw; }
  .manifesto > p:last-of-type { margin: 40px 0 0; font-size: 16px; }
  .manifesto-stamp { right: 20px; bottom: 30px; }
  .lookbook-grid { grid-template-columns: 1fr; }
  .lookbook-card, .lookbook-card--wide { grid-column: auto; min-height: 62vh; }
  .lookbook-card--wide:first-child { min-height: 76vh; }
  .closing { min-height: 590px; padding: 60px 20px 36px; }
  .closing h2 { font-size: clamp(4.2rem, 21vw, 7rem); }
  footer { align-items: flex-start; flex-direction: column; padding: 40px 20px; }
}

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