:root {
  --ink: #0b0d0c;
  --ink-soft: #121512;
  --paper: #efeee8;
  --paper-2: #d8d8d0;
  --muted: #9b9d95;
  --line: rgba(239, 238, 232, 0.18);
  --acid: #c8ff38;
  --pink: #ff3f8f;
  --mono: "DM Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", Helvetica Neue, Arial, sans-serif;
  --page-pad: clamp(20px, 3vw, 54px);
  --radius: clamp(22px, 2vw, 34px);
  --header-h: 128px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
::selection { background: var(--pink); color: var(--paper); }
:focus-visible { outline: 2px solid var(--acid); outline-offset: 3px; border-radius: 3px; }
.button:focus-visible, .nav-cta:focus-visible, .system-tab:focus-visible { outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--acid);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-loader { display: none; }
.js .site-loader {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 42%, rgba(200,255,56,.08), transparent 42%), var(--ink);
  transition: opacity .55s ease, visibility .55s ease;
}
.js .site-loader::before {
  content: "";
  position: absolute;
  inset: -14%;
  pointer-events: none;
  opacity: .18;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='ln'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23ln)'/%3E%3C/svg%3E");
  background-size: 260px 260px;
  animation: loader-grain .42s steps(2) infinite;
}
@keyframes loader-grain {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-3%, 2.4%); }
  100% { transform: translate(2.6%, -2%); }
}
.site-loader img { position: relative; z-index: 1; width: min(230px, 46vw); animation: loader-logo 2.6s ease-in-out infinite; }
@keyframes loader-logo { 0%, 100% { transform: scale(1); opacity: .92; } 50% { transform: scale(1.028); opacity: 1; } }
.site-loader span {
  position: absolute;
  bottom: 9vh;
  width: min(240px, 52vw);
  height: 1px;
  background: rgba(255,255,255,.15);
  overflow: hidden;
}
.site-loader span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--acid);
  transform: translateX(-100%);
  animation: loader-line 1s cubic-bezier(.7,0,.3,1) forwards;
}
.loaded .site-loader { opacity: 0; visibility: hidden; }
@keyframes loader-line { to { transform: translateX(0); } }

.cursor-dot, .cursor-ring {
  position: fixed;
  z-index: 9997;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  will-change: transform;
}
.cursor-dot { width: 6px; height: 6px; background: var(--acid); }
.cursor-ring { width: 34px; height: 34px; border: 1px solid rgba(200,255,56,.8); transition: width .2s ease, height .2s ease, border-color .2s ease; }
.cursor-active .cursor-ring { width: 54px; height: 54px; border-color: var(--pink); }
@media (hover:hover) and (pointer:fine) {
  .has-cursor .cursor-dot, .has-cursor .cursor-ring { opacity: 1; }
  .has-cursor, .has-cursor a, .has-cursor button { cursor: none; }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 200;
  background: linear-gradient(90deg, var(--acid), var(--pink));
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.site-header {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  padding: 0 var(--page-pad);
  transition: background .35s ease, border-color .35s ease, height .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 220%;
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  transition: opacity .45s ease;
  background: linear-gradient(to bottom, rgba(11,13,12,.94) 0%, rgba(11,13,12,.78) 34%, rgba(11,13,12,.42) 62%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 32%, transparent 82%);
  mask-image: linear-gradient(to bottom, #000 32%, transparent 82%);
}
.site-header.is-scrolled::before { opacity: 1; backdrop-filter: blur(13px); -webkit-backdrop-filter: blur(13px); }
.brand { margin-right: auto; margin-left: 2px; z-index: 1; }
.brand img { height: clamp(62px, 6vw, 84px); width: auto; filter: drop-shadow(0 2px 14px rgba(0,0,0,.35)); transition: height .35s ease; }
.desktop-nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 40px); font-size: 15px; font-weight: 700; letter-spacing: -.01em; }
.desktop-nav a { transition: color .2s ease; }
.desktop-nav a:hover { color: var(--acid); }
.desktop-nav a::before { font-family: var(--mono); font-size: 9px; font-weight: 400; color: var(--muted); margin-right: 7px; vertical-align: 4px; letter-spacing: 0; transition: color .2s ease; }
.desktop-nav a:nth-child(1)::before { content: "01"; }
.desktop-nav a:nth-child(2)::before { content: "02"; }
.desktop-nav a:nth-child(3)::before { content: "03"; }
.desktop-nav a:hover::before { color: var(--pink); }
.desktop-nav a, .nav-cta { position: relative; }
.desktop-nav a::after, .nav-cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.desktop-nav a:hover::after, .nav-cta:hover::after, .desktop-nav a.is-current::after { transform: scaleX(1); transform-origin: left; }
.desktop-nav a.is-current { color: var(--paper); }
.desktop-nav a.is-current::before { color: var(--acid); }
.nav-cta { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.nav-cta span { color: var(--acid); }
.cart-button { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; margin-left: 4px; padding: 0; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--paper); cursor: pointer; transition: border-color .2s ease, color .2s ease; }
.cart-button:hover { border-color: var(--acid); color: var(--acid); }
.cart-button svg { width: 20px; height: 20px; }
.cart-count { position: absolute; top: -5px; right: -5px; min-width: 18px; height: 18px; padding: 0 4px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; background: var(--acid); color: var(--ink); font-family: var(--mono); font-size: 9px; font-weight: 700; line-height: 1; }
.cart-count[data-empty="true"] { display: none; }
.menu-toggle { display: none; border: 0; background: transparent; width: 40px; height: 40px; padding: 10px; }
.menu-toggle span { display: block; width: 100%; height: 1px; background: currentColor; margin: 6px 0; transition: transform .3s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  z-index: 110;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: calc(var(--header-h) + 50px) var(--page-pad) 32px;
  background: var(--ink);
  color: var(--paper);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
}
.mobile-menu.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { display: flex; align-items: baseline; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(239,238,232,.16); font-size: clamp(42px, 12vw, 82px); font-weight: 700; letter-spacing: -.05em; transition: color .2s ease; }
.mobile-menu nav a:hover, .mobile-menu nav a:focus-visible { color: var(--acid); }
.mobile-menu nav a:hover span { color: var(--acid); }
.mobile-menu nav span { font-family: var(--mono); font-size: 11px; letter-spacing: 0; color: var(--muted); }
.mobile-menu-meta { display: flex; justify-content: space-between; gap: 20px; font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.mobile-menu-meta a { transition: color .2s ease; }
.mobile-menu-meta a:hover { color: var(--acid); }
.mobile-menu-meta p { margin: 0; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 32px) var(--page-pad) clamp(38px, 5vw, 72px);
}
.hero-media, .hero-shade, .hero-grain { position: absolute; inset: 0; }
.hero-media { z-index: -4; will-change: transform; }
.hero-media img { position: absolute; inset: 0; width: 100%; height: 112%; object-fit: cover; transform: scale(1.035); filter: brightness(1.12); }
.hero-img-a { object-position: 56% 46%; animation: hero-cross-a 18s ease-in-out infinite; }
.hero-img-b { object-position: 50% 38%; opacity: 0; animation: hero-cross-b 18s ease-in-out infinite; }
@keyframes hero-cross-a { 0%, 40% { opacity: 1; } 50%, 90% { opacity: 0; } 100% { opacity: 1; } }
@keyframes hero-cross-b { 0%, 40% { opacity: 0; } 50%, 90% { opacity: 1; } 100% { opacity: 0; } }
.hero-shade {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(7,8,7,.6) 0%, rgba(7,8,7,.28) 43%, rgba(7,8,7,.04) 73%),
    linear-gradient(0deg, rgba(7,8,7,.62) 0%, transparent 52%, rgba(7,8,7,.22) 100%);
}
.hero-grain { z-index: -2; opacity: .17; mix-blend-mode: soft-light; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.48'/%3E%3C/svg%3E"); }
.hero-topline { position: absolute; top: calc(var(--header-h) + 26px); left: var(--page-pad); right: var(--page-pad); display: flex; justify-content: space-between; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 10px; line-height: 1.4; text-transform: uppercase; letter-spacing: .11em; }
.eyebrow i { display: inline-block; width: 28px; height: 1px; background: var(--acid); }
.micro { font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.hero-content { width: min(1120px, 88vw); }
.hero-kicker { margin: 0 0 18px; font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--acid); }
.hero h1 { margin: 0; font-size: clamp(60px, 9.5vw, 150px); line-height: .96; letter-spacing: -.055em; font-weight: 700; }
.hero h1 span { display: block; }
.hero h1 span:last-child { margin-left: clamp(0px, 5vw, 78px); color: var(--paper); }
.hero-bottom { width: min(780px, 100%); margin-top: clamp(34px, 5vw, 68px); margin-left: clamp(0px, 5vw, 78px); display: grid; grid-template-columns: minmax(240px, 1fr) auto; align-items: end; gap: 42px; }
.hero-bottom > p { margin: 0; max-width: 455px; color: rgba(239,238,232,.76); font-size: clamp(16px, 1.4vw, 21px); line-height: 1.45; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 54px; padding: 0 26px; border: 1px solid transparent; border-radius: 999px; font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease; }
.button span { display: inline-block; font-size: 1.45em; line-height: 1; transition: transform .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-acid { background: var(--acid); color: var(--ink); }
.button-acid:hover { box-shadow: 0 12px 34px rgba(200,255,56,.3); }
.button-acid:hover span { transform: translate(2px, -2px); }
.button-ghost { background: var(--ink); color: var(--paper); border-color: transparent; }
.button-ghost span { color: var(--acid); }
.button-ghost:hover { background: #1c201c; box-shadow: 0 12px 30px rgba(0,0,0,.35); }
.button-ghost:hover span { transform: translateY(3px); }
.text-link { display: inline-flex; gap: 18px; align-items: center; font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.text-link span { color: var(--acid); transition: transform .25s ease; }
.text-link:hover span { transform: translate(3px, 3px); }
.hero-index { position: absolute; right: var(--page-pad); bottom: clamp(38px, 5vw, 72px); display: flex; gap: 34px; transform: rotate(-90deg) translateX(100%); transform-origin: right bottom; font-family: var(--mono); font-size: 9px; letter-spacing: .11em; }
.hero-index span:last-child { color: var(--pink); }


.section { padding: clamp(96px, 12vw, 190px) var(--page-pad); }
.section-meta { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: 9px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.display-heading { margin: 0; font-size: clamp(48px, 7vw, 112px); line-height: .96; letter-spacing: -.055em; font-weight: 700; }
.display-heading em { font-style: normal; font-weight: 500; color: var(--acid); }
.vision-grid { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(270px, .65fr); gap: clamp(50px, 9vw, 150px); padding-top: clamp(48px, 7vw, 94px); align-items: end; }
.vision-copy { max-width: 490px; font-size: clamp(18px, 1.6vw, 24px); line-height: 1.45; color: var(--paper-2); }
.vision-copy p { margin: 0 0 1.15em; }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: clamp(80px, 10vw, 150px); background: var(--line); border-block: 1px solid var(--line); }
.principles article { background: var(--ink); padding: 28px 30px 32px; min-height: 230px; display: flex; flex-direction: column; }
.principles span { font-family: var(--mono); font-size: 9px; color: var(--acid); }
.principles h3 { margin: auto 0 12px; font-size: clamp(25px, 2.6vw, 40px); letter-spacing: -.04em; }
.principles p { max-width: 290px; margin: 0; color: var(--muted); line-height: 1.5; }

.systems { position: relative; background: #000; }
.systems > * { position: relative; z-index: 1; }
.systems-intro { display: grid; grid-template-columns: 1.5fr .5fr; align-items: end; gap: 70px; padding: clamp(48px, 7vw, 94px) 0 clamp(55px, 7vw, 90px); }
.systems-intro > p { margin: 0 0 6px; color: var(--muted); font-size: clamp(17px, 1.4vw, 21px); line-height: 1.5; }
.system-tabs { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.system-tab { position: relative; display: flex; justify-content: space-between; align-items: baseline; padding: 22px 20px; border: 0; border-bottom: 1px solid var(--line); background: #000; color: var(--muted); font-size: clamp(22px, 3vw, 44px); letter-spacing: -.04em; text-align: left; transition: color .25s ease, background .25s ease; }
.system-tab:first-child { border-right: 1px solid var(--line); }
.system-tab sup { font-family: var(--mono); font-size: 9px; letter-spacing: .08em; }
.system-tab::after { content: ""; position: absolute; left: 0; bottom: -1px; height: 2px; width: 100%; background: var(--acid); transform: scaleX(0); transform-origin: right; transition: transform .35s ease; }
.system-tab.is-active { color: var(--paper); background: #000; }
.system-tab.is-active::after { transform: scaleX(1); transform-origin: left; }
.system-stage { padding-top: clamp(40px, 5vw, 68px); }
.system-panel { animation: panel-in .55s cubic-bezier(.2,.7,.2,1); }
.system-panel[hidden] { display: none; }
@keyframes panel-in { from { opacity: 0; transform: translateY(12px); } }
.image-code { position: absolute; left: 14px; top: 14px; padding: 8px 12px; border-radius: 999px; background: rgba(11,13,12,.72); backdrop-filter: blur(12px); font-family: var(--mono); font-size: 9px; letter-spacing: .12em; color: var(--acid); }

.status-pill {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(11,13,12,.62);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--paper);
  white-space: nowrap;
}
.status-pill i { width: 6px; height: 6px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 4px rgba(255,63,143,.14); animation: pulse 2s infinite; }
.status-pill-top { left: clamp(16px, 2vw, 24px); top: clamp(16px, 2vw, 24px); }
.status-pill-bottom { right: clamp(16px, 2vw, 24px); bottom: clamp(16px, 2vw, 24px); }
.system-banner { position: relative; overflow: hidden; height: clamp(320px, 40vw, 480px); border-radius: var(--radius); background: #000; }
.system-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 1s cubic-bezier(.2,.7,.2,1); }
.system-panel:hover .system-banner img { transform: scale(1.03); }
.system-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,8,7,.82) 0%, rgba(7,8,7,.15) 46%, transparent 66%); }
.system-banner .image-code { z-index: 2; }
.system-banner-copy { position: absolute; z-index: 2; left: clamp(20px, 3vw, 40px); bottom: clamp(22px, 3vw, 40px); right: clamp(20px, 3vw, 40px); }
.system-banner-copy h3 { margin: 14px 0 0; font-size: clamp(38px, 4.4vw, 68px); line-height: .96; letter-spacing: -.05em; font-weight: 700; }
.system-intro { max-width: 620px; margin: clamp(26px, 3vw, 40px) 0 0; color: var(--muted); font-size: clamp(17px, 1.4vw, 21px); line-height: 1.5; }

/* Standalone shop sections (Shorts, Accessories) reuse the product-card grid. */
.shop-section { position: relative; background: #000; }
/* The product sections (Systems, Shorts, Accessories) read as one continuous area,
   so tighten the vertical padding where they meet (two-class specificity holds on mobile). */
.systems.section { padding-bottom: clamp(32px, 4vw, 64px); }
.shop-section.section { padding-top: clamp(32px, 4vw, 64px); }
.shop-section.section#shorts { padding-bottom: clamp(32px, 4vw, 64px); }
.shop-intro { display: grid; grid-template-columns: 1.5fr .5fr; align-items: end; gap: clamp(30px, 5vw, 70px); padding-top: clamp(38px, 5vw, 72px); }
.shop-intro h2 { margin: 0; }
.shop-intro > p { margin: 0 0 6px; color: var(--muted); font-size: clamp(17px, 1.4vw, 21px); line-height: 1.5; }
.shop-section .product-grid { margin-top: clamp(38px, 5vw, 60px); }

/* Fastest Alive lookbook — the capsule worn in the field, between the intro and the grid. */
.capsule-lookbook { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(18px, 2vw, 30px); margin-top: clamp(34px, 4vw, 54px); }
.capsule-lookbook figure { position: relative; margin: 0; height: clamp(300px, 34vw, 460px); overflow: hidden; border-radius: var(--radius); background: #14150f; }
.capsule-lookbook figure img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.7,.2,1); }
.capsule-lookbook figure:hover img { transform: scale(1.03); }
.capsule-lookbook figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,8,7,.74) 0%, rgba(7,8,7,.08) 44%, transparent 62%); }
.capsule-lookbook .image-code { z-index: 2; }
.capsule-lookbook figcaption { position: absolute; z-index: 2; left: clamp(16px, 2vw, 24px); right: clamp(16px, 2vw, 24px); bottom: clamp(14px, 1.6vw, 20px); display: flex; justify-content: space-between; gap: 14px; font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; color: var(--paper); }
/* Keep the runners in frame under the wide crop. */
.lookbook-wide img { object-position: center 48%; }
.lookbook-rest img { object-position: center 45%; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 30px); margin: clamp(44px, 5vw, 68px) 0 34px; }
.product-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); background: var(--ink-soft); overflow: hidden; transition: border-color .25s ease, transform .25s ease; }
.product-card:hover { border-color: rgba(200,255,56,.4); transform: translateY(-3px); }

.product-media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: linear-gradient(135deg, #c8c7c0 0%, #b7b6ae 100%); }
.product-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.product-card:hover .product-media img { transform: scale(1.04); }

.product-info { display: flex; flex-direction: column; gap: 16px; padding: clamp(18px, 1.8vw, 24px); }
.product-head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.product-head h4 { margin: 0; font-size: clamp(18px, 1.5vw, 22px); font-weight: 700; letter-spacing: -.02em; line-height: 1.1; }
.product-head .price { font-family: var(--mono); font-size: 14px; font-weight: 500; color: var(--acid); white-space: nowrap; }
.product-spec { margin: -6px 0 2px; color: var(--muted); font-family: var(--mono); font-size: 9px; letter-spacing: .04em; text-transform: uppercase; }

.size-select { display: flex; flex-wrap: wrap; gap: 8px; }
.size-select button { min-width: 42px; padding: 9px 12px; border: 1px solid var(--line); border-radius: 10px; background: transparent; color: var(--paper); font-family: var(--mono); font-size: 11px; letter-spacing: .04em; cursor: pointer; transition: border-color .2s ease, background .2s ease, color .2s ease; }
.size-select button:hover { border-color: rgba(255,255,255,.42); }
.size-select button[aria-checked="true"] { background: var(--acid); border-color: var(--acid); color: var(--ink); font-weight: 700; }

.product-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 2px; }
.product-actions .button { width: 100%; min-height: 48px; }

/* Ready-to-go kit bundle — full-width strip below the 3 cards. */
.kit-bundle { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: clamp(24px, 4vw, 56px); padding: clamp(24px, 3vw, 40px); margin-top: 6px; border-color: rgba(200,255,56,.42); background: radial-gradient(140% 180% at 0% 0%, rgba(200,255,56,.07), transparent 58%), var(--ink-soft); }
.kit-bundle:hover { transform: none; border-color: rgba(200,255,56,.6); }
.kit-bundle-info { display: flex; flex-direction: column; gap: 10px; max-width: 520px; }
.kit-badge { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--acid); }
.kit-badge i { width: 22px; height: 1px; background: var(--acid); }
.kit-bundle-info h4 { margin: 0; font-size: clamp(24px, 2.4vw, 36px); font-weight: 700; letter-spacing: -.03em; line-height: 1.05; }
.kit-bundle-info p { margin: 0; color: var(--muted); font-family: var(--mono); font-size: 10px; letter-spacing: .05em; text-transform: uppercase; }
.kit-bundle-buy { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; min-width: 260px; }
.kit-price { display: flex; align-items: baseline; gap: 12px; }
.kit-was { font-family: var(--mono); font-size: 14px; color: var(--muted); text-decoration: line-through; }
.kit-now { font-size: clamp(26px, 2.6vw, 34px); font-weight: 700; letter-spacing: -.02em; color: var(--paper); }
.kit-save { font-family: var(--mono); font-size: 9px; letter-spacing: .07em; text-transform: uppercase; color: var(--ink); background: var(--acid); padding: 5px 10px; border-radius: 999px; }
.kit-bundle .product-actions { flex-direction: row; flex-wrap: wrap; gap: 12px; margin-top: 0; }
.kit-bundle .product-actions .button { width: auto; flex: 1 1 auto; }

.development-note { display: block; font-family: var(--mono); font-size: 8px; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); }

.editorial { position: relative; overflow: hidden; background: var(--paper); color: var(--ink); }
.editorial-print {
  position: absolute;
  z-index: 0;
  top: clamp(-90px, -4.5vw, -30px);
  right: clamp(-110px, -5vw, -40px);
  width: min(1240px, 82%);
  height: auto;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: .6;
  transform: rotate(6deg);
}

/* ---- Trail-dust texture: scattered varied-size speckle, tone set per surface ---- */
.editorial::after, .early-access::after, .systems::after, .vision::after, .manifesto::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='420'%3E%3Cfilter id='d'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.16' numOctaves='4' seed='4' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.5 0 0 0 0 0.5 0 0 0 0 0.5 0 0 0 1 0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='discrete' tableValues='0 0 0 0 0 0 0 1 1'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23d)'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='420'%3E%3Cfilter id='d'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.35' numOctaves='3' seed='11' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.5 0 0 0 0 0.5 0 0 0 0 0.5 0 0 0 1 0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='discrete' tableValues='0 0 0 0 0 0 0 1'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23d)'/%3E%3C/svg%3E");
  background-size: 460px 460px, 240px 240px;
  background-position: 0 0, 110px 150px;
}
.editorial::after { mix-blend-mode: multiply; opacity: .12; }
.early-access::after { mix-blend-mode: multiply; opacity: .07; }
.systems::after, .vision::after, .manifesto::after { mix-blend-mode: screen; opacity: .1; }

/* ---- Soft gray gradient wash for depth ---- */
.editorial::before, .early-access::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(130% 100% at 50% -12%, rgba(11,13,12,.06), transparent 56%);
}
.systems::before, .vision::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(130% 100% at 28% -14%, rgba(255,255,255,.022), transparent 58%);
}
.vision { position: relative; border-top: 3px solid var(--acid); }
.vision > * { position: relative; z-index: 1; }
.editorial-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: auto auto; gap: clamp(18px, 2.2vw, 34px); }
.editorial figure { margin: 0; overflow: hidden; border-radius: var(--radius); background: #c8c7c0; }
.editorial figure img { height: 100%; object-fit: cover; transition: transform 1s ease; }
.editorial figure:hover img { transform: scale(1.025); }
.editorial-large { grid-row: 1 / 3; min-height: min(880px, 88vw); position: relative; }
.editorial-large figcaption { position: absolute; left: 22px; right: 22px; bottom: 20px; display: flex; justify-content: space-between; font-family: var(--mono); font-size: 9px; color: white; text-transform: uppercase; letter-spacing: .08em; }
.editorial-copy { min-height: 410px; padding: clamp(34px, 5vw, 76px); border: 1px solid rgba(11,13,12,.2); border-radius: var(--radius); display: flex; flex-direction: column; align-items: flex-start; }
.eyebrow-dark i { background: var(--ink); }
.editorial-copy h2 { margin: auto 0 24px; font-size: clamp(48px, 6vw, 92px); line-height: .92; letter-spacing: -.055em; font-weight: 700; }
.editorial-copy p { max-width: 520px; margin: 0 0 34px; font-size: clamp(18px, 1.5vw, 23px); line-height: 1.42; }
.dark-link span { color: var(--pink); }
.editorial-small { min-height: 460px; position: relative; }
.editorial-small figcaption { position: absolute; top: 20px; left: 20px; padding: 8px 11px; background: var(--pink); color: var(--paper); border-radius: 999px; font-family: var(--mono); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }

.manifesto { position: relative; min-height: 980px; overflow: hidden; background: #0d100e; }
.manifesto-logo-wrap { position: absolute; inset: 50% auto auto 50%; width: min(1500px, 130vw); transform: translate(-50%, -50%) rotate(-7deg); opacity: .07; pointer-events: none; }
.manifesto-inner { position: relative; z-index: 1; display: flex; flex-direction: column; min-height: 980px; }
.manifesto blockquote { margin: auto 0; max-width: 1260px; font-size: clamp(48px, 7.5vw, 122px); line-height: .96; letter-spacing: -.045em; font-weight: 700; }
.manifesto blockquote::before { content: "“"; color: var(--pink); }
.manifesto-footer { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; padding-top: 40px; border-top: 1px solid var(--line); }
.manifesto-footer p { margin: 0; color: var(--muted); font-family: var(--mono); font-size: 10px; line-height: 1.7; text-transform: uppercase; letter-spacing: .07em; }
.manifesto-mark { width: 88px; height: 88px; border: 1px solid var(--acid); border-radius: 50%; display: grid; place-content: center; text-align: center; font-family: var(--mono); font-size: 9px; line-height: 1.5; color: var(--acid); }

.early-access { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(26px, 5vw, 84px); background: var(--acid); color: var(--ink); }
.early-access > * { position: relative; z-index: 1; }
.early-access-image { min-height: 680px; overflow: hidden; border-radius: var(--radius); }
.early-access-image img { height: 100%; object-fit: cover; object-position: 59% center; filter: saturate(.76) contrast(1.04); }
.early-access-copy { display: flex; flex-direction: column; justify-content: center; padding-right: clamp(0px, 3vw, 54px); }
.early-access-copy h2 { margin: 34px 0 26px; font-size: clamp(48px, 7vw, 112px); line-height: .96; letter-spacing: -.055em; font-weight: 700; color: var(--ink); }
.early-access-copy > p { max-width: 600px; margin: 0; font-size: clamp(18px, 1.6vw, 24px); line-height: 1.42; }
.signup-form { margin-top: clamp(50px, 7vw, 92px); }
.input-wrap { display: grid; grid-template-columns: 1fr auto; align-items: stretch; gap: 10px; padding: 10px 10px 10px 20px; border: 2px solid var(--ink); border-radius: var(--radius); background: rgba(11,13,12,.04); }
.input-wrap input { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; color: var(--ink); padding: 16px 0; border-radius: 0; font-family: var(--mono); font-size: clamp(14px, 1.3vw, 17px); letter-spacing: .06em; }
.input-wrap input::placeholder { color: rgba(11,13,12,.65); opacity: 1; }
.input-wrap button { border: 0; background: var(--ink); color: var(--paper); font-family: var(--mono); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 16px 28px; border-radius: calc(var(--radius) - 6px); cursor: pointer; transition: background .2s ease; }
.input-wrap button:hover { background: var(--ink-soft); }
.input-wrap button span { display: inline-block; margin-left: 10px; transition: transform .2s ease; }
.input-wrap button:hover span { transform: translate(3px,-3px); }
.consent { display: flex; align-items: flex-start; gap: 11px; margin-top: 20px; font-family: var(--mono); font-size: 12px; line-height: 1.5; text-transform: uppercase; letter-spacing: .04em; }
.consent input { accent-color: var(--ink); margin: 0; width: 17px; height: 17px; flex-shrink: 0; }
.form-message { min-height: 20px; margin: 14px 0 0; font-family: var(--mono); font-size: 9px; text-transform: uppercase; letter-spacing: .05em; }

.site-footer { padding: clamp(80px, 10vw, 140px) var(--page-pad) 26px; background: var(--ink); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; padding-bottom: clamp(65px, 9vw, 120px); }
.footer-brand { width: min(560px, 48vw); }
.footer-top > p { margin: 0; color: var(--muted); font-size: clamp(16px, 1.4vw, 21px); line-height: 1.45; text-align: right; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr .8fr; gap: 40px; padding: 30px 0 60px; border-top: 1px solid var(--line); }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-grid a, .footer-grid p { margin: 0; font-size: 17px; line-height: 1.55; }
.footer-grid a:hover { color: var(--acid); }
.footer-grid a[data-placeholder-link] { color: var(--acid); text-decoration: none; }
.footer-grid a[data-placeholder-link]:hover, .footer-grid a[data-placeholder-link]:focus-visible { text-decoration: underline; text-underline-offset: 3px; }
.footer-label { margin-bottom: 15px; font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .11em; color: var(--muted); }
.status-dot { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 5px rgba(255,63,143,.12); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 10px rgba(255,63,143,0); } }
.footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; padding-top: 20px; border-top: 1px solid var(--line); font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.footer-bottom a { position: relative; justify-self: end; align-self: center; color: var(--paper); font-family: var(--sans); font-size: 15px; font-weight: 700; letter-spacing: -.01em; text-transform: none; }
.footer-bottom a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.footer-bottom a:hover::after, .footer-bottom a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.toast { position: fixed; z-index: 500; left: 50%; bottom: 28px; transform: translate(-50%, 20px); padding: 13px 17px; border-radius: 999px; background: var(--paper); color: var(--ink); box-shadow: 0 18px 60px rgba(0,0,0,.28); font-family: var(--mono); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; opacity: 0; visibility: hidden; transition: opacity .25s ease, transform .25s ease, visibility .25s ease; }
.toast.is-visible { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1024px) {
  :root { --header-h: 96px; }
  .desktop-nav, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .hero-content { width: 94%; }
  .hero-bottom { grid-template-columns: 1fr; gap: 26px; }
  .hero-index { display: none; }
  .vision-grid, .systems-intro, .shop-intro { grid-template-columns: 1fr; }
  .vision-copy { margin-left: auto; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .capsule-lookbook { grid-template-columns: 1fr; }
  .capsule-lookbook figure { height: clamp(260px, 52vw, 420px); }
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-large { grid-row: auto; min-height: 110vw; }
  .editorial-copy { min-height: 500px; }
  .editorial-small { min-height: 70vw; }
  .early-access { grid-template-columns: 1fr; }
  .early-access-copy { padding: 36px 0 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  :root { --page-pad: 18px; --radius: 20px; }
  .brand { width: 92px; }
  .hero { min-height: 92svh; padding-bottom: 28px; }
  .hero-media img { object-position: 60% center; height: 100%; }
  .hero-shade { background: linear-gradient(0deg, rgba(7,8,7,.7) 0%, rgba(7,8,7,.12) 72%, rgba(7,8,7,.3) 100%); }
  .hero-topline { top: calc(var(--header-h) + 18px); }
  .hero-topline .micro { display: none; }
  .hero h1 { font-size: clamp(58px, 19vw, 88px); line-height: .96; }
  .hero h1 span:last-child { margin-left: 0; }
  .hero-kicker { max-width: 260px; }
  .hero-bottom { margin-left: 0; margin-top: 30px; }
  .hero-bottom > p { font-size: 16px; max-width: 330px; }
  .button { min-height: 50px; padding: 0 20px; gap: 10px; }
  .section { padding-top: 92px; padding-bottom: 92px; }
  .section-meta span:last-child { text-align: right; }
  .vision-grid { gap: 42px; padding-top: 42px; }
  .display-heading { font-size: clamp(46px, 14vw, 70px); }
  .vision-copy { font-size: 17px; }
  .principles { grid-template-columns: 1fr; margin-top: 68px; }
  .principles article { min-height: 190px; }
  .systems-intro { gap: 26px; }
  .system-tab { padding: 17px 12px; font-size: 21px; }
  .system-banner { height: 62vw; }
  .system-banner-copy h3 { font-size: 40px; }
  .product-grid { grid-template-columns: 1fr; margin-top: 42px; }
  .capsule-lookbook { margin-top: 34px; gap: 14px; }
  .capsule-lookbook figure { height: 62vw; }
  .kit-bundle { flex-direction: column; align-items: flex-start; }
  .kit-bundle-buy { width: 100%; }
  .kit-bundle .product-actions .button { flex: 1 1 100%; }
  .editorial-large { min-height: 125vw; }
  .editorial-copy { min-height: 440px; padding: 28px; }
  .editorial-copy h2 { font-size: 52px; }
  .editorial-small { min-height: 90vw; }
  .manifesto, .manifesto-inner { min-height: 800px; }
  .manifesto blockquote { font-size: 48px; }
  .manifesto-footer { align-items: flex-end; }
  .manifesto-mark { width: 72px; height: 72px; flex: 0 0 auto; }
  .early-access-image { min-height: 115vw; }
  .early-access-copy h2 { font-size: 64px; }
  .footer-top { align-items: flex-start; flex-direction: column; }
  .footer-brand { width: min(330px, 82vw); }
  .footer-top > p { text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .footer-bottom { grid-template-columns: 1fr auto; }
  .footer-bottom span:nth-child(2) { display: none; }
}

@media (max-width: 420px) {
  .hero-actions .button { flex: 1 1 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-menu-meta { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .js .reveal { opacity: 1; transform: none; }
  .cursor-dot, .cursor-ring { display: none; }
}
