/* =============================================================================
   D'lux Suite - coming soon
   Palette is lifted straight from the shared plugin LookAndFeel so the site and
   the faceplates read as one object:
     cloth  #14110c   cream  #f2e4c6   gold  #e7b23a
     green  #2fbe77   coral  #e8786c   textLo #a89b7c
   Type is the same stack the plugins draw with: Helvetica Neue on macOS,
   Segoe UI on Windows. No web fonts, no third-party requests, nothing to block.
   ========================================================================== */

:root {
  --cloth:      #14110c;
  --cloth-2:    #1c1810;
  --cloth-3:    #221d13;
  --ink:        #0d0b07;
  --cream:      #f2e4c6;
  --gold:       #e7b23a;
  --gold-hi:    #fff0c4;
  --gold-lo:    #8a6a22;
  --green:      #2fbe77;
  --coral:      #e8786c;
  --dim:        #a89b7c;
  --dimmer:     #6f6650;
  --line:       rgba(231, 178, 58, 0.16);
  --line-soft:  rgba(231, 178, 58, 0.08);

  --accent:     var(--gold);

  --sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI Variable Text",
          "Segoe UI", Inter, Roboto, system-ui, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", "JetBrains Mono", Menlo,
          Consolas, "Liberation Mono", monospace;

  --wrap: 1220px;
  --gut: clamp(20px, 5vw, 56px);

  --ease: cubic-bezier(0.22, 0.68, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ------------------------------------------------------------------ reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cloth);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
h1, h2, h3 { margin: 0; font-weight: 300; letter-spacing: -0.02em; line-height: 1.06; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
code {
  font-family: var(--mono); font-size: 0.86em;
  background: rgba(231, 178, 58, 0.1); color: var(--gold);
  padding: 0.12em 0.4em; border-radius: 3px;
}
::selection { background: var(--gold); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gut); }
.defs { position: absolute; width: 0; height: 0; overflow: hidden; }
.vh {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
.skip {
  position: absolute; left: -9999px; top: 8px; z-index: 200;
  background: var(--gold); color: var(--ink); padding: 10px 18px;
  border-radius: 4px; font-size: 14px;
}
.skip:focus { left: 12px; }

/* ------------------------------------------------------- film grain layer */
.grain {
  position: fixed; inset: -50%; z-index: 90; pointer-events: none;
  opacity: 0.28; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
  animation: grainShift 6s steps(6) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  16%  { transform: translate(-2%, 1%); }
  33%  { transform: translate(1%, -2%); }
  50%  { transform: translate(-1%, 2%); }
  66%  { transform: translate(2%, 1%); }
  83%  { transform: translate(-2%, -1%); }
  100% { transform: translate(0, 0); }
}

/* ---------------------------------------------------------------- buttons */
.btn {
  --btn-bg: linear-gradient(178deg, var(--gold-hi) 0%, var(--gold) 34%, #c9932a 100%);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  background: var(--btn-bg); color: #1a1409;
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 13px 26px; border: 0; border-radius: 3px; cursor: pointer;
  position: relative; isolation: isolate; white-space: nowrap;
  box-shadow: 0 1px 0 rgba(255, 246, 214, 0.6) inset,
              0 -1px 0 rgba(90, 64, 12, 0.45) inset,
              0 6px 20px -8px rgba(231, 178, 58, 0.6);
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), filter 0.24s var(--ease);
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.06);
  box-shadow: 0 1px 0 rgba(255, 246, 214, 0.7) inset,
              0 -1px 0 rgba(90, 64, 12, 0.45) inset,
              0 14px 34px -10px rgba(231, 178, 58, 0.7); }
.btn:active { transform: translateY(0); filter: brightness(0.96); }
.btn-lg { padding: 16px 34px; font-size: 14px; }
.btn-sm { padding: 9px 18px; font-size: 12px; letter-spacing: 0.08em; }
.btn-ghost {
  background: transparent; color: var(--cream);
  box-shadow: 0 0 0 1px rgba(231, 178, 58, 0.34) inset;
}
.btn-ghost:hover { background: rgba(231, 178, 58, 0.08); filter: none;
  box-shadow: 0 0 0 1px rgba(231, 178, 58, 0.6) inset; }

/* ------------------------------------------------------------------- misc */
.eyebrow {
  font-size: 11px; font-weight: 400; letter-spacing: 0.34em;
  text-transform: uppercase; color: var(--dim);
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.eyebrow .x { color: var(--gold); font-style: normal; }
.eyebrow .dash {
  flex: 0 0 46px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* -------------------------------------------------------------------- nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease),
              backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
/* Opaque by default so the bar always reads; the translucent blur is an upgrade
   only where the browser can actually composite it. */
.nav.stuck { background: #100d09; border-bottom-color: var(--line); }
@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav.stuck {
    background: rgba(16, 13, 9, 0.82);
    -webkit-backdrop-filter: saturate(1.4) blur(16px);
    backdrop-filter: saturate(1.4) blur(16px);
  }
}
.nav-in { display: flex; align-items: center; gap: 28px; height: 68px; }
.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand-mk { width: 22px; height: 22px; color: var(--gold); flex: none;
  transition: transform 0.6s var(--ease); }
.brand:hover .brand-mk { transform: rotate(90deg); }
.brand-tx {
  font-size: 14px; font-weight: 500; letter-spacing: 0.2em;
  background: linear-gradient(100deg, var(--gold-lo), var(--gold-hi) 30%, var(--gold) 55%, var(--gold-hi));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.brand-tx em { font-style: normal; color: var(--dim); background: none;
  -webkit-text-fill-color: var(--dim); margin-left: 0.55em; font-weight: 300;
  letter-spacing: 0.22em; }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-size: 13px; letter-spacing: 0.09em; color: var(--dim);
  position: relative; padding: 4px 0; transition: color 0.24s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.34s var(--ease);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { transform: scaleX(1); }

/* ------------------------------------------------------------------- hero */
.hero {
  position: relative; padding: 134px 0 0; overflow: hidden;
  background:
    radial-gradient(120% 78% at 50% -12%, rgba(231, 178, 58, 0.16), transparent 62%),
    linear-gradient(180deg, var(--cloth) 0%, var(--cloth-2) 62%, var(--cloth) 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(231, 178, 58, 0.045) 0 1px, transparent 1px 92px);
  mask-image: linear-gradient(180deg, transparent, #000 22%, #000 62%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 22%, #000 62%, transparent);
}
.hero-wave { position: absolute; left: 0; right: 0; top: 34%; width: 100%; height: 320px;
  opacity: 0.5; pointer-events: none; }
.hero-glow {
  position: absolute; left: 50%; top: 5%; width: 900px; height: 620px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(231, 178, 58, 0.2), transparent 72%);
  filter: blur(24px); pointer-events: none;
  animation: breathe 9s ease-in-out infinite;
}
@keyframes breathe { 0%, 100% { opacity: 0.66; } 50% { opacity: 1; } }
.hero-in { position: relative; z-index: 2; text-align: center;
  display: flex; flex-direction: column; align-items: center; }
.hero .eyebrow { justify-content: center; }

/* wordmark ---------------------------------------------------------------- */
.wordmark { width: min(100%, 900px); margin: 26px 0 0; }
.wordmark svg { width: 100%; height: auto; overflow: visible; }
.wm-1 {
  font-family: var(--sans); font-size: 118px; font-weight: 200;
  letter-spacing: 0.03em; fill: url(#gGold);
}
.wm-2 {
  font-family: var(--sans); font-size: 27px; font-weight: 300;
  letter-spacing: 0.72em; fill: var(--dim);
}
.wm-sheen { animation: sheen 7s var(--ease) infinite; mix-blend-mode: overlay; }
@keyframes sheen {
  0%, 62%  { transform: translateX(0); }
  86%, 100% { transform: translateX(1420px); }
}

.lede {
  margin: 26px 0 0; max-width: 26ch;
  font-size: clamp(24px, 3.4vw, 40px); font-weight: 200; line-height: 1.22;
  letter-spacing: -0.02em; color: var(--cream);
  text-wrap: balance;   /* keeps "saturator --" off a line of its own */
}
.lede em { font-style: normal; color: var(--gold); display: block; }
.sub {
  margin: 20px 0 0; max-width: 58ch; color: var(--dim);
  font-size: clamp(15px, 1.5vw, 17px); line-height: 1.68;
  text-wrap: pretty;    /* no one-word last line */
}
.hero-cta { display: flex; gap: 14px; margin: 38px 0 0; flex-wrap: wrap;
  justify-content: center; }

.badges {
  display: flex; flex-wrap: wrap; gap: 9px 14px; justify-content: center;
  max-width: 860px; margin: 34px 0 0; font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--dimmer);
}
.badges li { position: relative; }
.badges li:not(.sep) { padding: 5px 12px; border: 1px solid var(--line-soft);
  border-radius: 2px; }
/* Forces a clean break: formats on one row, platforms on the next. */
.badges .sep { flex: 0 0 100%; height: 0; padding: 0; border: 0; margin: -3px 0; }

/* rack -------------------------------------------------------------------- */
.rack { margin: 58px auto -110px; padding: 0 var(--gut); max-width: 1400px;
  perspective: 1150px; perspective-origin: 50% 34%; }
.rack-stage {
  position: relative; height: clamp(280px, 34vw, 470px);
  transform-style: preserve-3d;
  transition: transform 0.6s var(--ease-out);
}
.plate { position: absolute; bottom: 0; transform-style: preserve-3d;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.75)); }
.plate svg { width: 100%; height: auto; }
.plate-c { left: 50%; width: 44%; z-index: 3;
  transform: translateX(-50%) translateZ(90px) rotateX(5deg); }
.plate-l { left: 0;  width: 38%; z-index: 2;
  transform: rotateY(34deg) rotateX(8deg) translateZ(-30px); transform-origin: right center; }
.plate-r { right: 0; width: 38%; z-index: 2;
  transform: rotateY(-34deg) rotateX(8deg) translateZ(-30px); transform-origin: left center; }

.p-body { stroke: rgba(255, 240, 196, 0.42); stroke-width: 1.5; }
.p-inner { fill: rgba(20, 17, 12, 0.1); stroke: rgba(90, 66, 20, 0.5); stroke-width: 1.5; }
.band { color: rgba(90, 66, 20, 0.62); }
.band use { color: inherit; }
.kente rect { fill: url(#kente); }
.pads .pd { stroke: rgba(255, 250, 232, 0.55); stroke-width: 1; }
.pads.live .pd { transition: fill 0.14s linear, filter 0.3s var(--ease); }
.pads .pd.hit { fill: var(--gold-hi); filter: drop-shadow(0 0 9px rgba(255, 240, 196, 0.9)); }
.knobs circle { fill: #241f16; stroke: rgba(231, 178, 58, 0.5); stroke-width: 2; }
.knobs.lg circle { fill: #201b13; stroke: rgba(231, 178, 58, 0.42); }
.knobs .ptr { stroke: var(--gold); stroke-width: 2.4; stroke-linecap: round; }
.knobs g { transform-box: fill-box; transform-origin: center; }
.sw { fill: #241f16; stroke: rgba(232, 120, 108, 0.7); stroke-width: 2; }
.scr-wave { stroke: #4d5666; stroke-width: 1.6; }
.chop-wave { stroke: var(--gold); stroke-width: 1.4; opacity: 0.85; }
.markers line { stroke: rgba(47, 190, 119, 0.85); stroke-width: 1.5; }
.markers.live line { transition: stroke 0.2s linear; }
.slices rect { fill: rgba(47, 190, 119, 0.24); stroke: rgba(47, 190, 119, 0.55); stroke-width: 1; }
.grid-line { stroke: rgba(231, 178, 58, 0.12); stroke-width: 1; }
.curve { stroke: var(--coral); stroke-width: 2.4; stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(232, 120, 108, 0.45)); }

.scroll-hint { position: relative; z-index: 4; height: 150px; margin: 0;
  display: flex; align-items: flex-end; justify-content: center; padding-bottom: 26px; }
.scroll-hint span {
  width: 1px; height: 46px;
  background: linear-gradient(180deg, transparent, var(--gold));
  animation: drop 2.4s var(--ease) infinite;
}
@keyframes drop {
  0% { opacity: 0; transform: scaleY(0.2); transform-origin: top; }
  40% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ----------------------------------------------------------------- ticker */
.ticker {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(231, 178, 58, 0.045), transparent);
  padding: 15px 0; overflow: hidden; position: relative; z-index: 4;
}
.ticker-row { display: flex; width: max-content; animation: roll 46s linear infinite; }
.ticker-set { display: flex; align-items: center; gap: 26px; padding-right: 26px; }
.ticker-set span {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--dim); white-space: nowrap;
}
.ticker-set i { width: 4px; height: 4px; background: var(--gold); border-radius: 50%;
  flex: none; opacity: 0.7; }
@keyframes roll { to { transform: translateX(-50%); } }

/* ------------------------------------------------------------- section hd */
.sec-head { max-width: 62ch; margin-bottom: clamp(44px, 5vw, 68px); }
.sec-head h2 {
  margin: 22px 0 0; font-size: clamp(34px, 5.2vw, 60px); font-weight: 200;
  letter-spacing: -0.032em;
}
.sec-sub { margin: 20px 0 0; color: var(--dim); font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.7; max-width: 56ch; }

/* ------------------------------------------------------------------ suite */
.suite { padding: clamp(90px, 12vw, 150px) 0; position: relative; }
.products { display: flex; flex-direction: column; gap: clamp(90px, 12vw, 160px); }

.prod {
  --accent: var(--gold);
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 6vw, 88px); align-items: center;
}
.prod[data-accent="green"] { --accent: var(--green); }
.prod[data-accent="coral"] { --accent: var(--coral); }
.prod:nth-child(even) .prod-media { order: 2; }

.prod-media { position: relative; }
.prod-media::before {
  content: ""; position: absolute; inset: -14% -10%;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--accent) 26%, transparent), transparent 74%);
  filter: blur(28px); opacity: 0; transition: opacity 0.9s var(--ease);
}
.prod.in .prod-media::before { opacity: 1; }
.prod-plate {
  position: relative;
  transform: perspective(1500px) rotateY(9deg) rotateX(4deg) translateY(24px);
  opacity: 0;
  filter: drop-shadow(0 34px 54px rgba(0, 0, 0, 0.66));
  transition: transform 1.1s var(--ease-out), opacity 0.8s var(--ease);
}
.prod:nth-child(even) .prod-plate { transform: perspective(1500px) rotateY(-9deg) rotateX(4deg) translateY(24px); }
.prod.in .prod-plate,
.prod.in:nth-child(even) .prod-plate {
  transform: perspective(1500px) rotateY(0deg) rotateX(0deg) translateY(0); opacity: 1;
}

.prod-copy { max-width: 54ch; }
.prod-idx {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.3em;
  color: var(--accent); margin-bottom: 16px;
}
.prod-copy h3 {
  font-size: clamp(38px, 5.4vw, 64px); font-weight: 200; letter-spacing: -0.035em;
  background: linear-gradient(96deg,
      color-mix(in srgb, var(--accent) 62%, #6a5220) 0%,
      color-mix(in srgb, var(--accent) 100%, #fff 0%) 34%,
      color-mix(in srgb, var(--accent) 40%, #fff) 58%,
      var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.prod-kicker {
  margin: 12px 0 0; font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--dim);
}
.prod-lede { margin: 24px 0 0; font-size: clamp(16px, 1.7vw, 19px); line-height: 1.62;
  color: var(--cream); }
.feats { margin: 30px 0 0; display: flex; flex-direction: column; }
.feats li {
  position: relative; padding: 15px 0 15px 26px; font-size: 15px; line-height: 1.6;
  color: var(--dim); border-top: 1px solid var(--line-soft);
}
.feats li:last-child { border-bottom: 1px solid var(--line-soft); }
.feats li::before {
  content: ""; position: absolute; left: 2px; top: 24px;
  width: 6px; height: 6px; background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 10px color-mix(in srgb, var(--accent) 70%, transparent);
}
.feats b { color: var(--cream); font-weight: 500; }

/* ------------------------------------------------------------------ craft */
.craft {
  padding: clamp(90px, 12vw, 150px) 0;
  border-top: 1px solid var(--line-soft);
  background:
    radial-gradient(90% 60% at 50% 0%, rgba(231, 178, 58, 0.07), transparent 66%),
    var(--cloth-2);
}
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line-soft); border: 1px solid var(--line-soft); }
.card {
  background: var(--cloth-2); padding: clamp(28px, 3vw, 40px);
  transition: background 0.4s var(--ease);
}
.card:hover { background: var(--cloth-3); }
.card-mk { width: 30px; height: 30px; color: var(--gold); opacity: 0.8; }
.card h3 { margin: 24px 0 0; font-size: 20px; font-weight: 400; letter-spacing: -0.01em; }
.card p { margin: 14px 0 0; font-size: 14.5px; line-height: 1.66; color: var(--dim); }

.pull {
  margin: clamp(64px, 8vw, 104px) auto 0; max-width: 40ch; text-align: center;
  border: 0; padding: 0;
}
.pull p {
  font-size: clamp(22px, 3vw, 32px); font-weight: 200; line-height: 1.36;
  letter-spacing: -0.022em; color: var(--cream);
}
.pull p::before, .pull p::after { color: var(--gold); }
.pull p::before { content: "\201C"; }
.pull p::after { content: "\201D"; }

/* ------------------------------------------------------------------ specs */
.specs { padding: clamp(90px, 12vw, 150px) 0; border-top: 1px solid var(--line-soft); }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 76px); }
.spec { margin: 0; }
.spec dt {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold); padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.spec dd { margin: 8px 0 20px; font-size: 15.5px; line-height: 1.56; color: var(--dim); }
.spec dd:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------- waitlist */
.waitlist {
  padding: clamp(90px, 12vw, 148px) 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(80% 100% at 50% 110%, rgba(231, 178, 58, 0.15), transparent 70%),
    var(--cloth);
}
.wl-in { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 84px);
  align-items: center; }
.wl-copy h2 { margin: 22px 0 0; font-size: clamp(34px, 5vw, 56px); font-weight: 200;
  letter-spacing: -0.032em; }
.wl-form { width: 100%; }
.field { display: flex; gap: 10px; }
.field input {
  flex: 1 1 auto; min-width: 0;
  background: rgba(10, 8, 5, 0.6); color: var(--cream);
  border: 1px solid var(--line); border-radius: 3px;
  padding: 16px 18px; font-family: var(--sans); font-size: 16px; font-weight: 300;
  transition: border-color 0.24s var(--ease), background 0.24s var(--ease);
}
.field input::placeholder { color: var(--dimmer); }
.field input:hover { border-color: rgba(231, 178, 58, 0.3); }
.field input:focus { outline: none; border-color: var(--gold);
  background: rgba(10, 8, 5, 0.9); box-shadow: 0 0 0 3px rgba(231, 178, 58, 0.12); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.wl-note { margin: 16px 0 0; font-size: 13px; color: var(--dimmer); letter-spacing: 0.02em; }
.wl-note.ok { color: var(--green); }
.wl-note.err { color: var(--coral); }
.wl-form.done .field { opacity: 0.35; pointer-events: none; }

/* ----------------------------------------------------------------- footer */
.foot { border-top: 1px solid var(--line-soft); padding: 52px 0 60px; }
.foot-in { display: flex; flex-direction: column; align-items: center; gap: 16px;
  text-align: center; }
.foot-brand { display: flex; align-items: center; gap: 10px; }
.foot-co { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--dim); }
.foot-co .x { color: var(--gold); }
.foot-legal { max-width: 62ch; font-size: 11.5px; line-height: 1.7; color: var(--dimmer); }

/* -------------------------------------------------------- reveal on scroll */
.rv { opacity: 0; transform: translateY(26px); }
.rv.in { opacity: 1; transform: none;
  transition: opacity 0.85s var(--ease), transform 0.95s var(--ease-out); }
.hero .rv:nth-of-type(1).in { transition-delay: 0.02s; }
.hero .rv:nth-of-type(2).in { transition-delay: 0.10s; }
.hero .rv:nth-of-type(3).in { transition-delay: 0.18s; }
.hero .rv:nth-of-type(4).in { transition-delay: 0.26s; }
.hero .rv:nth-of-type(5).in { transition-delay: 0.34s; }
.hero .rv:nth-of-type(6).in { transition-delay: 0.42s; }
.cards .card:nth-child(2).in { transition-delay: 0.08s; }
.cards .card:nth-child(3).in { transition-delay: 0.16s; }
.cards .card:nth-child(4).in { transition-delay: 0.24s; }

/* ------------------------------------------------------------ breakpoints */
@media (max-width: 1080px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .hero { padding-top: 132px; }
  .rack { margin-top: 56px; margin-bottom: -70px; perspective: 1100px; }
  .rack-stage { height: 40vw; min-height: 210px; }
  .plate-c { width: 56%; }
  .plate-l, .plate-r { width: 40%; opacity: 0.85; }
  .prod { grid-template-columns: 1fr; gap: 34px; }
  .prod:nth-child(even) .prod-media { order: 0; }
  .spec-grid, .wl-in { grid-template-columns: 1fr; }
  .wl-in { gap: 34px; }
}
@media (max-width: 600px) {
  .hero { padding-top: 116px; }
  /* Keep the company line on one row rather than stranding the "x". */
  .hero .eyebrow { font-size: 9px; letter-spacing: 0.2em; gap: 9px; }
  .wm-1 { font-size: 112px; }
  .wm-2 { font-size: 24px; letter-spacing: 0.6em; }
  .lede { max-width: 18ch; }
  .cards { grid-template-columns: 1fr; }
  .field { flex-direction: column; }
  .field .btn { width: 100%; }
  .badges { gap: 8px 12px; }
  .badges .sep { display: none; }
  .rack { margin-bottom: -40px; }
  .scroll-hint { height: 92px; }
  .hero-cta .btn { flex: 1 1 auto; }
}

/* ------------------------------------------------------- reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .rv { opacity: 1; transform: none; }
  .prod-plate { opacity: 1; transform: none; }
  .grain { animation: none; }
  .hero-wave { display: none; }
}

/* ------------------------------------------------------------------ print */
@media print {
  .grain, .nav, .hero-wave, .hero-glow, .rack, .ticker, .scroll-hint { display: none; }
  body { background: #fff; color: #000; }
}
