:root {
  --ink: #050607;
  --ink-soft: #0a0c0f;
  --panel: #101216;
  --paper: #e7e5df;
  --paper-bright: #f6f5f1;
  --muted: #8a8f94;
  --line: rgba(222, 226, 229, 0.18);
  --line-dark: rgba(12, 14, 17, 0.14);
  --chrome: linear-gradient(
    118deg,
    #08090b 0%,
    #595e64 19%,
    #f1f2f3 32%,
    #393d42 40%,
    #0a0b0d 59%,
    #8e949a 77%,
    #f7f7f6 89%,
    #111317 100%
  );
  --shell: min(1440px, calc(100vw - 96px));
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: #060708;
  overscroll-behavior-y: none;
}

body {
  min-height: 100%;
  margin: 0;
  background: #060708;
  color: var(--ink);
  font-family:
    var(--font-geist-sans), "Helvetica Neue", Arial, system-ui, sans-serif;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

main {
  background: var(--paper);
}

body.modal-open {
  overflow: hidden;
}

::selection {
  color: var(--ink);
  background: #d9dde0;
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: 100%;
  height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 0 42px;
  color: #f4f4f1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(
    180deg,
    rgba(3, 4, 5, 0.82),
    rgba(3, 4, 5, 0.28)
  );
  backdrop-filter: blur(14px) saturate(120%);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  width: max-content;
}

.brand-mark {
  width: 39px;
  height: 29px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  display: flex;
  align-items: baseline;
  gap: 7px;
  line-height: 1;
}

.brand-name strong {
  font-size: 17px;
  font-weight: 780;
  letter-spacing: -0.05em;
}

.brand-name small {
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.3em;
  color: #959aa0;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.19em;
}

.desktop-nav a,
.header-order {
  transition:
    color 240ms ease,
    opacity 240ms ease;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.67);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: #fff;
}

.header-order {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.header-order svg,
.button svg,
.product-open svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
}

.header-order:hover svg,
.button:hover svg {
  transform: translateX(4px);
}

.header-order svg,
.button svg {
  transition: transform 220ms ease;
}

.hero {
  position: relative;
  min-height: 780px;
  height: 100svh;
  overflow: hidden;
  color: #f6f6f3;
  background:
    radial-gradient(circle at 66% 37%, rgba(92, 98, 105, 0.12), transparent 30%),
    var(--ink);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 5, 6, 0.98) 0%, rgba(4, 5, 6, 0.9) 38%, rgba(4, 5, 6, 0.2) 68%, rgba(4, 5, 6, 0.72) 100%),
    linear-gradient(180deg, rgba(4, 5, 6, 0.15), rgba(4, 5, 6, 0.72));
}

.hero-image {
  position: absolute;
  z-index: 1;
  inset: 0 0 0 31%;
  background-image: url("assets/images/hero-sleeve.jpg");
  background-position: center;
  background-size: cover;
  filter: grayscale(0.42) saturate(0.72) contrast(1.14) brightness(0.72);
  transform: scale(1.07);
  animation: hero-image-in 2.4s cubic-bezier(0.2, 0.74, 0.2, 1) both;
}

.hero-grid {
  position: absolute;
  z-index: 4;
  inset: 84px 0 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 11vw 11vw;
  mask-image: linear-gradient(90deg, #000, transparent 74%);
}

.hero-noise {
  position: absolute;
  z-index: 6;
  inset: 0;
  opacity: 0.13;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero-logo {
  position: absolute;
  z-index: 8;
  top: 19%;
  right: -1.8%;
  width: min(49vw, 760px);
  aspect-ratio: 1.34;
  display: grid;
  place-items: center;
  pointer-events: none;
  perspective: 1000px;
  opacity: 0;
  transform: translate3d(7%, 4%, 0) scale(0.84) rotateX(14deg) rotateY(-12deg);
  animation: hero-logo-in 1.85s 0.24s cubic-bezier(0.16, 0.84, 0.16, 1) forwards;
}

.hero-logo > img {
  position: relative;
  z-index: 2;
  width: 88%;
  filter:
    drop-shadow(0 30px 50px rgba(0, 0, 0, 0.9))
    drop-shadow(0 0 28px rgba(223, 228, 232, 0.12));
  transform: translateZ(30px);
  animation: logo-float 8s 2s ease-in-out infinite;
}

.hero-logo-halo {
  position: absolute;
  z-index: 0;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.24;
  filter: blur(35px);
  background: radial-gradient(circle, rgba(183, 190, 196, 0.28), transparent 66%);
  animation: halo-pulse 5s ease-in-out infinite;
}

.hero-logo-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(230, 233, 235, 0.15);
  border-radius: 50%;
}

.hero-logo-orbit::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 48%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #e4e6e7;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.8);
}

.orbit-one {
  width: 89%;
  height: 67%;
  transform: rotate(-9deg);
  animation: orbit-one 14s linear infinite;
}

.orbit-two {
  width: 68%;
  height: 92%;
  opacity: 0.55;
  transform: rotate(61deg);
  animation: orbit-two 19s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 12;
  width: min(62vw, 920px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 120px 0 102px 6.3vw;
}

.eyebrow {
  margin: 0 0 27px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  line-height: 1.3;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-eyebrow {
  color: #9ba0a5;
  opacity: 0;
  transform: translateY(15px);
  animation: hero-copy-in 0.8s 1.15s ease forwards;
}

.hero h1 {
  margin: 0;
  font-size: clamp(68px, 7.55vw, 132px);
  font-weight: 650;
  line-height: 0.78;
  letter-spacing: -0.078em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(42px);
  animation: hero-copy-in 1.1s 0.72s cubic-bezier(0.16, 0.84, 0.16, 1) forwards;
}

.hero h1 span {
  color: transparent;
  background: var(--chrome);
  background-size: 190% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  animation: chrome-text 7s 1.8s ease-in-out infinite;
}

.hero-copy {
  width: min(520px, 80%);
  margin: 38px 0 0;
  color: rgba(245, 245, 242, 0.68);
  font-size: clamp(14px, 1.18vw, 18px);
  line-height: 1.58;
  opacity: 0;
  transform: translateY(22px);
  animation: hero-copy-in 0.9s 1.38s ease forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-copy-in 0.9s 1.57s ease forwards;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  transition:
    color 240ms ease,
    background-color 240ms ease,
    border-color 240ms ease,
    transform 240ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #07080a;
  background: #f2f2ef;
}

.button-primary:hover {
  background: #fff;
}

.button-ghost {
  color: #e9e9e6;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(4, 5, 6, 0.22);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.07);
}

.hero-index {
  position: absolute;
  z-index: 12;
  top: 116px;
  right: 3.6vw;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.17em;
  opacity: 0;
  animation: fade-in 0.8s 1.9s ease forwards;
}

.hero-index i {
  width: 44px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}

.hero-meta {
  position: absolute;
  z-index: 12;
  right: 3.7vw;
  bottom: 42px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 35px;
  opacity: 0;
  animation: fade-in 0.8s 2s ease forwards;
}

.hero-meta div {
  min-width: 95px;
}

.hero-meta span,
.hero-meta strong {
  display: block;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.16em;
  font-style: normal;
}

.hero-meta span {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.35);
}

.hero-meta strong {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 500;
}

.scroll-cue {
  position: absolute;
  z-index: 12;
  bottom: 38px;
  left: 6.3vw;
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.45);
  opacity: 0;
  animation: fade-in 0.8s 2s ease forwards;
}

.scroll-cue i {
  position: relative;
  width: 70px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateX(-100%);
  animation: scroll-line 2.4s ease-in-out infinite;
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 17px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-label span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(9, 11, 14, 0.24);
  border-radius: 50%;
}

.section-label p {
  margin: 0;
}

.section-label.light span {
  border-color: rgba(255, 255, 255, 0.26);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.85s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.85s cubic-bezier(0.2, 0.7, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.manifesto {
  display: grid;
  grid-template-columns: 2fr 10fr;
  gap: 20px;
  padding-top: 150px;
  padding-bottom: 160px;
}

.manifesto-copy {
  padding-top: 4px;
}

.manifesto-copy .eyebrow {
  color: #777c80;
}

.manifesto h2,
.collection h2,
.delivery h2 {
  margin: 0;
  font-size: clamp(52px, 6.15vw, 103px);
  font-weight: 560;
  line-height: 0.92;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.manifesto h2 span,
.delivery h2 span {
  color: #838587;
}

.manifesto-text {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px;
  width: 66%;
  margin-top: 64px;
  margin-left: 17%;
}

.manifesto-text p {
  margin: 0;
  color: #464a4d;
  font-size: 15px;
  line-height: 1.7;
}

.collection {
  padding-bottom: 170px;
}

.collection-heading {
  display: grid;
  grid-template-columns: 2fr 6fr 4fr;
  align-items: end;
  gap: 20px;
  margin-bottom: 64px;
  padding-top: 42px;
  border-top: 1px solid var(--line-dark);
}

.collection-heading .eyebrow {
  margin-bottom: 15px;
  color: #74787b;
}

.collection h2 {
  font-size: clamp(50px, 5.2vw, 82px);
}

.collection-note {
  max-width: 385px;
  margin: 0 0 4px auto;
  color: #595d60;
  font-size: 14px;
  line-height: 1.65;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  grid-column: span 4;
}

.product-card:nth-child(2) {
  grid-column: span 5;
}

.product-card-featured {
  grid-column: span 7;
}

.product-card-button {
  width: 100%;
  display: block;
  padding: 0;
  color: inherit;
  text-align: left;
  text-decoration: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(10, 12, 15, 0.16);
  background:
    radial-gradient(circle at 48% 33%, #31363b, #0d0f12 67%),
    #0c0e11;
  box-shadow: 0 20px 45px rgba(18, 20, 22, 0.07);
}

.product-card-featured .product-media {
  aspect-ratio: 1.44 / 1;
}

.product-media::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: 0.72;
  pointer-events: none;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.1), transparent 22%, transparent 72%, rgba(255, 255, 255, 0.07)),
    linear-gradient(180deg, transparent 55%, rgba(4, 5, 6, 0.72));
}

.product-media::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: -65%;
  left: -35%;
  width: 35%;
  height: 220%;
  opacity: 0;
  transform: rotate(17deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition:
    left 900ms cubic-bezier(0.16, 0.84, 0.16, 1),
    opacity 300ms ease;
}

.product-card-button:hover .product-media::after,
.product-card-button:focus-visible .product-media::after {
  left: 120%;
  opacity: 0.68;
}

.product-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.68) contrast(1.09) brightness(0.84);
  transition:
    transform 850ms cubic-bezier(0.16, 0.84, 0.16, 1),
    filter 500ms ease;
}

.product-card-button:hover .product-media > img,
.product-card-button:focus-visible .product-media > img {
  transform: scale(1.045);
  filter: saturate(0.92) contrast(1.08) brightness(0.92);
}

.product-media-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.14);
}

.product-number,
.product-state {
  position: absolute;
  z-index: 5;
  top: 18px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.17em;
  color: rgba(255, 255, 255, 0.65);
}

.product-number {
  left: 18px;
}

.product-state {
  right: 18px;
}

.corner {
  position: absolute;
  z-index: 5;
  width: 22px;
  height: 22px;
  pointer-events: none;
}

.corner-top-left {
  top: 36px;
  left: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  border-left: 1px solid rgba(255, 255, 255, 0.34);
}

.corner-bottom-right {
  right: 18px;
  bottom: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.34);
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

.product-info {
  padding: 20px 2px 0;
}

.product-info > p {
  margin: 0 0 10px;
  color: #777b7f;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.18em;
}

.product-info h3 {
  margin: 0;
  font-size: clamp(23px, 2.25vw, 35px);
  font-weight: 590;
  line-height: 1;
  letter-spacing: -0.048em;
}

.product-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line-dark);
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.product-price strong {
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
  font-weight: 550;
}

.product-price del {
  color: #8a8d8f;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.product-open {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(7, 9, 12, 0.24);
  border-radius: 50%;
  transition:
    color 250ms ease,
    background-color 250ms ease,
    transform 250ms ease;
}

.product-open svg {
  width: 15px;
}

.product-card-button:hover .product-open,
.product-card-button:focus-visible .product-open {
  color: #f5f5f2;
  background: #090a0c;
  transform: rotate(-35deg);
}

.code-section {
  position: relative;
  min-height: 940px;
  overflow: hidden;
  color: #f2f2ef;
  background: var(--ink);
}

.code-backdrop,
.code-overlay {
  position: absolute;
  inset: 0;
}

.code-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.62) saturate(0.5) contrast(1.18) brightness(0.65);
}

.code-overlay {
  background:
    linear-gradient(90deg, rgba(4, 5, 6, 0.97) 0%, rgba(4, 5, 6, 0.88) 43%, rgba(4, 5, 6, 0.15) 100%),
    linear-gradient(180deg, rgba(4, 5, 6, 0.18), rgba(4, 5, 6, 0.92));
}

.code-inner {
  position: relative;
  z-index: 2;
  min-height: 940px;
  display: grid;
  grid-template-columns: 2fr 6fr 4fr;
  grid-template-rows: auto 1fr auto;
  gap: 20px;
  padding-top: 100px;
  padding-bottom: 75px;
}

.code-copy {
  grid-column: 2 / 4;
  align-self: center;
}

.code-copy .eyebrow {
  color: #858b90;
}

.code-copy h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(62px, 7.6vw, 122px);
  font-weight: 560;
  line-height: 0.87;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.code-copy > p:last-child {
  max-width: 520px;
  margin: 42px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.7;
}

.code-values {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.19);
}

.code-values article {
  min-height: 180px;
  padding: 26px 32px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.code-values article + article {
  padding-left: 32px;
}

.code-values article:last-child {
  border-right: 0;
}

.code-values span {
  color: #737980;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.16em;
}

.code-values h3 {
  margin: 25px 0 13px;
  font-size: 24px;
  font-weight: 540;
  letter-spacing: -0.04em;
}

.code-values p {
  max-width: 270px;
  margin: 0;
  color: rgba(255, 255, 255, 0.47);
  font-size: 12px;
  line-height: 1.6;
}

.delivery {
  display: grid;
  grid-template-columns: 2fr 6fr 4fr;
  gap: 20px;
  padding-top: 155px;
  padding-bottom: 150px;
}

.delivery-main {
  grid-column: 2 / 4;
}

.delivery-main .eyebrow {
  color: #74787c;
}

.delivery-main h2 {
  font-size: clamp(58px, 6.75vw, 108px);
}

.delivery-main > p:not(.eyebrow) {
  max-width: 545px;
  margin: 45px 0 0;
  color: #52565a;
  font-size: 15px;
  line-height: 1.7;
}

.button-dark {
  margin-top: 35px;
  color: #f5f5f2;
  background: #08090b;
}

.button-dark:hover {
  background: #22262a;
}

.delivery-steps {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 105px;
  border-top: 1px solid var(--line-dark);
}

.delivery-steps article {
  min-height: 180px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  padding: 30px 28px 0 0;
  border-right: 1px solid var(--line-dark);
}

.delivery-steps article + article {
  padding-left: 28px;
}

.delivery-steps article:last-child {
  border-right: 0;
}

.delivery-steps article > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(9, 11, 14, 0.23);
  border-radius: 50%;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.delivery-steps h3 {
  margin: 2px 0 14px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.delivery-steps p {
  max-width: 235px;
  margin: 0;
  color: #62666a;
  font-size: 12px;
  line-height: 1.6;
}

.site-footer {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: 76px 5vw 34px;
  color: #f1f1ee;
  background:
    radial-gradient(circle at 50% 110%, #292d32, transparent 41%),
    #060708;
}

.footer-mark {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: min(72vw, 950px);
  opacity: 0.24;
  transform: translate(-50%, -47%);
  filter: blur(0.2px);
}

.footer-top,
.footer-bottom {
  position: relative;
  z-index: 2;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.footer-title span {
  display: block;
  font-size: clamp(74px, 10.7vw, 176px);
  font-weight: 690;
  line-height: 0.68;
  letter-spacing: -0.09em;
}

.footer-title strong {
  display: block;
  margin: 23px 0 0 8px;
  color: #858a8f;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.55em;
}

.footer-top > p {
  margin: 6px 0 0;
  color: #73787e;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.23em;
}

.footer-bottom {
  position: absolute;
  right: 5vw;
  bottom: 34px;
  left: 5vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #757a80;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.17em;
}

.footer-bottom a:nth-child(2) {
  justify-self: center;
}

.footer-bottom a:last-child {
  justify-self: end;
  color: #d4d6d7;
}

.modal-backdrop {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(3, 4, 5, 0.86);
  backdrop-filter: blur(18px) saturate(85%);
  animation: modal-backdrop-in 250ms ease both;
}

.product-modal {
  position: relative;
  width: min(1320px, 100%);
  height: min(860px, calc(100svh - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1.13fr) minmax(440px, 0.87fr);
  overflow: hidden;
  color: #ecece9;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #0b0d10;
  box-shadow: 0 45px 130px rgba(0, 0, 0, 0.62);
  animation: modal-in 380ms cubic-bezier(0.16, 0.84, 0.16, 1) both;
}

.modal-close {
  position: absolute;
  z-index: 8;
  top: 19px;
  right: 19px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #e8e8e6;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(6, 7, 9, 0.66);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition:
    color 200ms ease,
    background-color 200ms ease,
    transform 200ms ease;
}

.modal-close:hover {
  color: #08090b;
  background: #f2f2ef;
  transform: rotate(90deg);
}

.modal-close svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

.modal-gallery {
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 50% 34%, #32373d, #0c0e11 68%),
    #0c0e11;
}

.modal-main-image {
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.modal-main-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 28%),
    linear-gradient(180deg, transparent 66%, rgba(3, 4, 5, 0.5));
}

.modal-main-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.06) brightness(0.9);
}

.modal-main-image > span {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 18px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.17em;
}

.modal-thumbnails {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  scrollbar-width: thin;
}

.modal-thumbnails button {
  flex: 0 0 78px;
  height: 72px;
  padding: 0;
  overflow: hidden;
  opacity: 0.48;
  border: 1px solid transparent;
  background: #14171b;
  cursor: pointer;
  transition:
    opacity 200ms ease,
    border-color 200ms ease;
}

.modal-thumbnails button.is-active,
.modal-thumbnails button:hover {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.55);
}

.modal-thumbnails img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-content {
  min-width: 0;
  overflow-y: auto;
  padding: 54px 56px 48px;
  scrollbar-width: thin;
  scrollbar-color: #555a60 #111318;
}

.modal-heading > p {
  margin: 0 0 18px;
  color: #737980;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.17em;
}

.modal-heading h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(36px, 3.5vw, 58px);
  font-weight: 560;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.modal-price {
  display: flex;
  align-items: baseline;
  gap: 13px;
  margin-top: 25px;
}

.modal-price strong {
  font-family: var(--font-geist-mono), monospace;
  font-size: 14px;
  font-weight: 550;
}

.modal-price del {
  color: #6c7278;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.modal-lead {
  margin: 42px 0 0;
  color: #e7e7e4;
  font-size: 16px;
  line-height: 1.5;
}

.modal-description {
  margin: 16px 0 0;
  color: #888e94;
  font-size: 13px;
  line-height: 1.72;
}

.variant-group {
  margin: 30px 0 0;
  padding: 24px 0 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.variant-group legend {
  float: left;
  width: 100%;
  margin-bottom: 15px;
  color: #7a8086;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.variant-group legend + * {
  clear: both;
}

.variant-buttons,
.size-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.variant-buttons button,
.size-buttons button {
  min-height: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 14px;
  color: #9ba0a5;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: transparent;
  cursor: pointer;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  transition:
    color 200ms ease,
    border-color 200ms ease,
    background-color 200ms ease;
}

.size-buttons button {
  min-width: 43px;
}

.variant-buttons button.is-active,
.size-buttons button.is-active {
  color: #090a0c;
  border-color: #f2f2ef;
  background: #f2f2ef;
}

.variant-buttons i {
  width: 9px;
  height: 9px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: #090a0c;
}

.variant-buttons i.swatch-white {
  background: #efefec;
}

.variant-buttons button.is-active i {
  border-color: rgba(0, 0, 0, 0.48);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 18px;
  margin: 30px 0 0;
  padding: 26px 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #a2a7ac;
  font-size: 10px;
  line-height: 1.45;
}

.feature-list li span {
  flex: 0 0 auto;
  width: 4px;
  height: 4px;
  margin-top: 5px;
  border-radius: 50%;
  background: #d9dcde;
}

.spec-list {
  margin: 0;
}

.spec-list div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.spec-list dt,
.spec-list dd {
  margin: 0;
  font-size: 10px;
}

.spec-list dt {
  color: #666c72;
}

.spec-list dd {
  color: #a9aeb2;
}

.modal-order {
  width: 100%;
  margin-top: 32px;
  color: #08090b;
  background: #f1f1ee;
}

.modal-order:hover {
  background: #fff;
}

.modal-order-note {
  margin: 11px 0 0;
  text-align: center;
  color: #5e646a;
  font-size: 9px;
}

@keyframes hero-image-in {
  from {
    opacity: 0;
    transform: scale(1.18);
  }
  to {
    opacity: 1;
    transform: scale(1.07);
  }
}

@keyframes hero-logo-in {
  0% {
    opacity: 0;
    filter: blur(18px);
    transform: translate3d(7%, 4%, 0) scale(0.84) rotateX(14deg)
      rotateY(-12deg);
  }
  65% {
    opacity: 1;
  }
  100% {
    opacity: 0.9;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1) rotateX(0) rotateY(0);
  }
}

@keyframes hero-copy-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  to {
    opacity: 1;
  }
}

@keyframes logo-float {
  0%,
  100% {
    transform: translate3d(0, 0, 30px) rotate(-0.35deg);
  }
  50% {
    transform: translate3d(0, -13px, 48px) rotate(0.45deg);
  }
}

@keyframes halo-pulse {
  0%,
  100% {
    opacity: 0.17;
    transform: scale(0.92);
  }
  50% {
    opacity: 0.36;
    transform: scale(1.07);
  }
}

@keyframes orbit-one {
  to {
    transform: rotate(351deg);
  }
}

@keyframes orbit-two {
  to {
    transform: rotate(-299deg);
  }
}

@keyframes chrome-text {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes scroll-line {
  0% {
    transform: translateX(-100%);
  }
  50%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes modal-backdrop-in {
  from {
    opacity: 0;
  }
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
  }
}

@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 56px, 1180px);
  }

  .site-header {
    padding: 0 28px;
  }

  .hero h1 {
    font-size: clamp(64px, 8.4vw, 105px);
  }

  .hero-logo {
    right: -8%;
    width: 56vw;
  }

  .manifesto,
  .delivery {
    grid-template-columns: 1.5fr 10.5fr;
  }

  .manifesto-copy,
  .delivery-main,
  .delivery-steps {
    grid-column: 2;
  }

  .collection-heading {
    grid-template-columns: 1.5fr 6fr 4.5fr;
  }

  .code-inner {
    grid-template-columns: 1.5fr 7fr 3.5fr;
  }

  .product-modal {
    grid-template-columns: 1fr minmax(400px, 0.82fr);
  }

  .modal-content {
    padding: 48px 40px 44px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: calc(100vw - 34px);
  }

  .site-header {
    height: 70px;
    grid-template-columns: 1fr auto;
    padding: 0 17px;
  }

  .desktop-nav {
    display: none;
  }

  .header-order {
    font-size: 8px;
  }

  .hero {
    min-height: 760px;
    height: 100svh;
    max-height: 920px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(4, 5, 6, 0.26), rgba(4, 5, 6, 0.99) 76%),
      linear-gradient(90deg, rgba(4, 5, 6, 0.8), rgba(4, 5, 6, 0.1));
  }

  .hero-image {
    inset: 0;
    background-position: 58% center;
    transform: scale(1.05);
  }

  .hero-grid {
    inset: 70px 0 0;
    background-size: 25vw 25vw;
    mask-image: linear-gradient(180deg, #000, transparent 67%);
  }

  .hero-logo {
    top: 14%;
    right: -13%;
    width: 82vw;
    opacity: 0;
  }

  .hero-content {
    width: 100%;
    justify-content: flex-end;
    padding: 120px 17px 116px;
  }

  .hero-eyebrow {
    margin-bottom: 19px;
    font-size: 8px;
  }

  .hero h1 {
    font-size: clamp(52px, 15vw, 76px);
    line-height: 0.83;
  }

  .hero-copy {
    width: 92%;
    margin-top: 27px;
    font-size: 13px;
  }

  .hero-actions {
    width: 100%;
    gap: 8px;
    margin-top: 25px;
  }

  .hero-actions .button {
    flex: 1;
    min-height: 48px;
    padding: 0 14px;
    font-size: 8px;
    letter-spacing: 0.1em;
  }

  .hero-actions .button-ghost {
    display: none;
  }

  .hero-index,
  .hero-meta {
    display: none;
  }

  .scroll-cue {
    bottom: 30px;
    left: 17px;
  }

  .manifesto {
    display: block;
    padding-top: 92px;
    padding-bottom: 100px;
  }

  .manifesto-copy {
    margin-top: 54px;
  }

  .manifesto h2,
  .delivery h2 {
    font-size: clamp(42px, 12.3vw, 68px);
    line-height: 0.94;
  }

  .manifesto-text {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 42px 0 0;
  }

  .collection {
    padding-bottom: 100px;
  }

  .collection-heading {
    display: block;
    margin-bottom: 38px;
    padding-top: 25px;
  }

  .collection-heading > div:nth-child(2) {
    margin-top: 48px;
  }

  .collection h2 {
    font-size: 50px;
  }

  .collection-note {
    margin: 28px 0 0;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .product-card,
  .product-card:nth-child(2),
  .product-card-featured {
    grid-column: auto;
  }

  .product-card-featured .product-media,
  .product-media {
    aspect-ratio: 4 / 4.7;
  }

  .product-info h3 {
    font-size: 28px;
  }

  .code-section,
  .code-inner {
    min-height: 900px;
  }

  .code-overlay {
    background:
      linear-gradient(180deg, rgba(4, 5, 6, 0.83), rgba(4, 5, 6, 0.98)),
      linear-gradient(90deg, rgba(4, 5, 6, 0.4), transparent);
  }

  .code-inner {
    display: block;
    padding-top: 74px;
    padding-bottom: 54px;
  }

  .code-copy {
    margin-top: 120px;
  }

  .code-copy h2 {
    font-size: clamp(50px, 14vw, 74px);
  }

  .code-copy > p:last-child {
    margin-top: 28px;
  }

  .code-values {
    grid-template-columns: 1fr;
    margin-top: 74px;
  }

  .code-values article,
  .code-values article + article {
    min-height: 0;
    padding: 24px 0 26px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .code-values h3 {
    margin-top: 17px;
  }

  .delivery {
    display: block;
    padding-top: 90px;
    padding-bottom: 95px;
  }

  .delivery-main {
    margin-top: 56px;
  }

  .delivery-main > p:not(.eyebrow) {
    margin-top: 30px;
  }

  .delivery-steps {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }

  .delivery-steps article,
  .delivery-steps article + article {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .site-footer {
    min-height: 420px;
    padding: 58px 17px 28px;
  }

  .footer-top {
    display: block;
  }

  .footer-title span {
    font-size: 25vw;
  }

  .footer-top > p {
    margin-top: 32px;
  }

  .footer-bottom {
    right: 17px;
    bottom: 28px;
    left: 17px;
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom a:nth-child(2) {
    display: none;
  }

  .footer-bottom a:last-child {
    justify-self: end;
  }

  .modal-backdrop {
    align-items: end;
    padding: 0;
  }

  .product-modal {
    width: 100%;
    height: 94svh;
    grid-template-columns: 1fr;
    grid-template-rows: 44svh 1fr;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
  }

  .modal-close {
    top: 13px;
    right: 13px;
  }

  .modal-gallery {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .modal-content {
    padding: 32px 19px 38px;
  }

  .modal-heading h2 {
    font-size: 38px;
  }

  .modal-lead {
    margin-top: 32px;
  }
}

@media (max-width: 420px) {
  .brand-name small {
    display: none;
  }

  .hero h1 {
    font-size: 13.7vw;
  }

  .hero-actions .button {
    flex: 0 0 100%;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
