/* tokens.css */
/* ------------------------------------------------------------------
   SIGNAL — design tokens
   Near-black base, layered glass, acid accent, chrome highlights.
   Change these first; everything else reads from them.
   ------------------------------------------------------------------ */
:root {
  /* Palette */
  --bg: #09090b;
  --bg-2: #101013;
  --surface: #151518;
  --surface-2: #1c1c21;
  --fg: #f4f4f6;
  --fg-2: rgb(244 244 246 / 0.72);
  --fg-3: rgb(244 244 246 / 0.52);
  --line: rgb(255 255 255 / 0.10);
  --line-strong: rgb(255 255 255 / 0.22);

  --lime: #d8ff3f;
  --lime-ink: #101400;
  --blue: #5b7cff;
  --coral: #ff5c39;
  --violet: #b56cff;
  --cyan: #46e6ff;

  /* Glass */
  --glass: rgb(255 255 255 / 0.06);
  --glass-2: rgb(255 255 255 / 0.10);
  --glass-line: rgb(255 255 255 / 0.14);
  --glass-blur: 22px;
  --overlay: rgb(9 9 11 / 0.6);

  /* Chrome text gradient */
  --chrome: linear-gradient(180deg, #ffffff 0%, #d9d9e2 30%, #70707c 50%, #ecedf3 62%, #9a9aa6 100%);

  /* Typography */
  --font-display: "Bricolage Grotesque", "Inter Tight", system-ui, sans-serif;
  --font-body: "Bricolage Grotesque", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, Menlo, monospace;

  --text-xs: 0.6875rem;
  --text-sm: 0.8125rem;
  --text-base: 0.9375rem;
  --text-md: 1.0625rem;
  --text-lg: clamp(1.25rem, 1.05rem + 0.8vw, 1.75rem);
  --text-xl: clamp(1.75rem, 1.2rem + 2vw, 3rem);
  --text-2xl: clamp(2.5rem, 1.4rem + 4.4vw, 6rem);
  --text-display: clamp(3.25rem, 0.5rem + 8.8vw, 11rem);

  /* Spacing */
  --s-1: 0.25rem; --s-2: 0.5rem; --s-3: 0.75rem; --s-4: 1rem; --s-5: 1.5rem;
  --s-6: 2rem; --s-7: 3rem; --s-8: 4rem; --s-9: 6rem; --s-10: 8rem;
  --section: clamp(5rem, 3rem + 7vw, 11rem);
  --gutter: clamp(1rem, 0.5rem + 2.5vw, 3.5rem);
  --content-max: 1560px;

  /* Radii — app-like */
  --r-1: 8px;
  --r-2: 14px;
  --r-3: 22px;
  --r-4: 30px;
  --r-pill: 999px;

  /* Elevation & glow */
  --shadow-1: 0 1px 0 rgb(255 255 255 / 0.06) inset, 0 8px 30px rgb(0 0 0 / 0.35);
  --shadow-2: 0 1px 0 rgb(255 255 255 / 0.08) inset, 0 24px 60px rgb(0 0 0 / 0.5);
  --glow-lime: 0 0 0 1px rgb(216 255 63 / 0.35), 0 0 40px rgb(216 255 63 / 0.25);

  /* Motion */
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.83, 0, 0.17, 1);
  --t-instant: 120ms;
  --t-fast: 240ms;
  --t-base: 420ms;
  --t-slow: 800ms;
  --t-page: 1100ms;

  /* Layers */
  --z-sticky: 40; --z-nav: 60; --z-drawer: 80; --z-modal: 90; --z-toast: 100; --z-cursor: 200;

  /* Dock geometry: desktop dock floats at the top, phone dock sits at the bottom */
  --dock-top: 16px;
  --dock-h: 52px;
  --dock-h-m: 60px;
  --dock-gap-m: 14px;
  --page-top: calc(var(--dock-top) + var(--dock-h) + var(--s-6));
  --tap: 44px;
  color-scheme: dark;
}
@media (prefers-reduced-motion: reduce) {
  :root { --t-instant: 0ms; --t-fast: 0ms; --t-base: 0ms; --t-slow: 0ms; --t-page: 0ms; }
}

/* base.css */
/* SIGNAL — base */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.5;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  min-height: 100svh;
  font-variation-settings: "opsz" 14;
}
body.is-locked { overflow: hidden; }
/* film grain */
body::after {
  content: "";
  position: fixed; inset: -10%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
img, svg, picture, video { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; padding: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 0.96; letter-spacing: -0.03em; text-wrap: balance; font-variation-settings: "opsz" 96, "wdth" 100; }
p { text-wrap: pretty; max-width: 62ch; }
::selection { background: var(--lime); color: var(--lime-ink); }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; border-radius: var(--r-1); }
[hidden] { display: none !important; }

/* ---- Type ---- */
.t-display { font-size: var(--text-display); line-height: 0.86; letter-spacing: -0.045em; font-weight: 700; text-transform: uppercase; }
.t-2xl { font-size: var(--text-2xl); letter-spacing: -0.04em; font-weight: 600; }
.t-xl { font-size: var(--text-xl); letter-spacing: -0.03em; }
.t-lg { font-size: var(--text-lg); letter-spacing: -0.02em; font-weight: 500; }
.t-md { font-size: var(--text-md); }
.t-sm { font-size: var(--text-sm); }
.t-xs { font-size: var(--text-xs); }
.t-muted { color: var(--fg-2); }
.t-faint { color: var(--fg-3); }
.mono { font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
.chrome { background: var(--chrome); -webkit-background-clip: text; background-clip: text; color: transparent; }
.grad { background: linear-gradient(92deg, var(--lime), var(--cyan) 45%, var(--violet)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lime { color: var(--lime); }
.wdth { font-variation-settings: "opsz" 96, "wdth" var(--wdth, 100); }
.tnum { font-variant-numeric: tabular-nums; }

/* ---- Layout ---- */
.wrap { width: min(100% - 2 * var(--gutter), var(--content-max)); margin-inline: auto; }
.section { padding-block: var(--section); position: relative; }
.section--tight { padding-block: calc(var(--section) * 0.55); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.stack-2 { display: grid; gap: var(--s-2); }
.stack-4 { display: grid; gap: var(--s-4); }
@media (max-width: 899.98px) { .only-d { display: none !important; } }
@media (min-width: 900px) { .only-m { display: none !important; } }

/* The first section of an ordinary page clears the desktop dock; on phones the dock is at the bottom,
   so pages can start near the top. Pages that open with a hero set their own padding. */
main > .section:first-child { padding-top: calc(var(--section) * 0.5); }
@media (min-width: 900px) { main > .section:first-child { padding-top: max(calc(var(--section) * 0.55), var(--page-top)); } }
/* Bottom of the document keeps clear of the phone dock */
@media (max-width: 899.98px) { main { padding-bottom: 0; } }

/* ---- Glass primitive ---- */
.glass {
  background: var(--glass);
  border: 1px solid var(--glass-line);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.3);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.3);
  box-shadow: var(--shadow-1);
}

/* ---- Media ---- */
.media { position: relative; overflow: hidden; background: var(--surface-2); }
.media img { width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity var(--t-slow) var(--ease-out), transform 1.4s var(--ease-expo); }
.media img.is-loaded { opacity: 1; }
.media.mask-reveal > img, .mask-reveal > .media { transition: clip-path 1.2s var(--ease-expo), opacity var(--t-slow) var(--ease-out), transform 1.4s var(--ease-expo); }
.media--16x9 { aspect-ratio: 16 / 9; }
.media--3x2 { aspect-ratio: 3 / 2; }
.media--4x5 { aspect-ratio: 4 / 5; }
.media--sq { aspect-ratio: 1; }

/* ---- Reveals ---- */
.split .w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.split .w > span { display: inline-block; transform: translateY(110%) rotate(3deg); transition: transform var(--t-page) var(--ease-expo); transition-delay: calc(var(--i) * 45ms + var(--d, 0ms)); }
.split.is-in .w > span { transform: none; }
.fade { opacity: 0; transform: translateY(24px); transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-expo); transition-delay: var(--d, 0ms); }
.fade.is-in, .fade:focus-within { opacity: 1; transform: none; }
.skip:focus-visible { position: fixed; top: 12px; left: 12px; width: auto; height: auto; margin: 0; padding: 10px 14px; overflow: visible; clip: auto; clip-path: none; white-space: normal; z-index: 1000; background: var(--lime); color: var(--lime-ink); border-radius: var(--r-pill); outline-offset: 2px; }
.mask-reveal > * { clip-path: inset(0 0 100% 0 round var(--r-3)); transition: clip-path 1.2s var(--ease-expo); transition-delay: var(--d, 0ms); }
.mask-reveal.is-in > * { clip-path: inset(0 0 0 0 round var(--r-3)); }
@media (prefers-reduced-motion: reduce) {
  .split .w > span, .fade, .mask-reveal > * { transform: none; opacity: 1; clip-path: none; transition: none; }
}

/* components.css */
/* SIGNAL — components */

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--fg); --fg-c: var(--bg);
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 1.4rem;
  font-weight: 600; font-size: var(--text-sm); letter-spacing: -0.01em;
  color: var(--fg-c); background: var(--bg);
  border-radius: var(--r-pill);
  white-space: nowrap;
  transition: transform var(--t-fast) var(--ease-out), box-shadow var(--t-base), background var(--t-fast), color var(--t-fast);
  will-change: transform;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: scale(0.97); }
.btn--lime { --bg: var(--lime); --fg-c: var(--lime-ink); }
.btn--lime:hover { box-shadow: var(--glow-lime); }
.btn--glass { --bg: var(--glass-2); --fg-c: var(--fg); border: 1px solid var(--glass-line); backdrop-filter: blur(12px); }
.btn--glass:hover { background: rgb(255 255 255 / 0.16); }
.btn--sm { min-height: 38px; padding: 0 1rem; font-size: var(--text-xs); }
.btn--wide { width: 100%; }
.btn .ic { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform var(--t-base) var(--ease-expo); flex: none; }
.btn:hover .ic { transform: translateX(3px); }
.btn .orb { width: 26px; height: 26px; display: grid; place-items: center; background: rgb(0 0 0 / 0.15); border-radius: 50%; margin-right: -8px; }
.btn .orb svg { width: 12px; height: 12px; }
.btn[disabled] { opacity: 0.45; pointer-events: none; }

.icon-btn { position: relative; display: inline-grid; place-items: center; width: var(--tap); height: var(--tap); border-radius: 50%; color: var(--fg); transition: background var(--t-fast), transform var(--t-fast) var(--ease-out); }
.icon-btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.icon-btn:hover { background: rgb(255 255 255 / 0.1); }
.icon-btn:active { transform: scale(0.92); }
.icon-btn .count { position: absolute; top: 4px; right: 2px; min-width: 18px; height: 18px; padding: 0 5px; display: grid; place-items: center; font-family: var(--font-mono); font-size: 10px; font-weight: 600; color: var(--lime-ink); background: var(--lime); border-radius: var(--r-pill); transform: scale(0); transition: transform var(--t-base) var(--ease-expo); }
.icon-btn .count.is-on { transform: scale(1); }
.icon-btn .count.bump { animation: bump 500ms var(--ease-expo); }
@keyframes bump { 30% { transform: scale(1.5); } }

/* Link with arrow */
.link { display: inline-flex; align-items: center; gap: 8px; font-size: var(--text-sm); font-weight: 600; color: var(--fg-2); transition: color var(--t-fast); }
.link:hover { color: var(--fg); }
.link .ic { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; transition: background var(--t-fast), transform var(--t-base) var(--ease-expo), color var(--t-fast); flex: none; }
.link .ic svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 2; }
.link:hover .ic { background: var(--lime); color: var(--lime-ink); border-color: var(--lime); transform: rotate(-45deg); }
.link--u { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--fg-3); }
.link--u:hover { text-decoration-color: var(--lime); }

/* ---------- Breadcrumbs ---------- */
.crumbs { display: flex; flex-wrap: wrap; gap: var(--s-2); align-items: center; color: var(--fg-3); font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: 0.08em; text-transform: uppercase; }
.crumbs a { display: inline-block; padding: 6px 0; transition: color var(--t-fast); }
.crumbs a:hover { color: var(--fg); }
.crumbs li + li::before { content: "/"; margin-right: var(--s-2); opacity: 0.5; }
.crumbs li[aria-current] { color: var(--fg); }
@media (pointer: coarse) { .crumbs a { display: inline-flex; align-items: center; min-height: var(--tap); margin-block: calc((var(--tap) - 28px) / -2); } }

/* ---------- Chips ---------- */
.chips { display: flex; gap: 6px; flex-wrap: wrap; }
.chip { position: relative; display: inline-flex; align-items: center; min-height: 36px; padding: 0 14px; font-size: var(--text-sm); font-weight: 500; color: var(--fg-2); border: 1px solid var(--line); border-radius: var(--r-pill); background: transparent; overflow: hidden; transition: color var(--t-fast), border-color var(--t-fast), transform var(--t-fast); isolation: isolate; white-space: nowrap; }
.chip::before { content: ""; position: absolute; inset: 0; background: var(--lime); transform: scaleX(0); transform-origin: left; transition: transform var(--t-base) var(--ease-expo); z-index: -1; border-radius: inherit; }
.chip:hover { color: var(--fg); border-color: var(--line-strong); }
.chip[aria-pressed="true"] { color: var(--lime-ink); border-color: var(--lime); }
.chip[aria-pressed="true"]::before { transform: scaleX(1); }
.chip:active { transform: scale(0.96); }
@media (pointer: coarse) { .chip { min-height: var(--tap); } }

/* Segmented (glass) */
.seg { position: relative; display: inline-grid; grid-auto-flow: column; grid-auto-columns: minmax(0, 1fr); padding: 4px; background: var(--glass); border: 1px solid var(--glass-line); border-radius: var(--r-pill); isolation: isolate; max-width: 100%; }
.seg__thumb { position: absolute; top: 4px; bottom: 4px; left: 4px; width: calc((100% - 8px) / var(--n, 2)); background: var(--fg); border-radius: var(--r-pill); transform: translateX(calc(var(--i, 0) * 100%)); transition: transform var(--t-base) var(--ease-expo); z-index: -1; }
.seg button { min-height: 36px; min-width: 0; padding: 0 16px; font-size: var(--text-sm); font-weight: 600; color: var(--fg-2); border-radius: var(--r-pill); white-space: nowrap; transition: color var(--t-fast); }
.seg button[aria-selected="true"] { color: var(--bg); }

/* Tabs (underline ink) */
.tabs__list { position: relative; display: flex; gap: var(--s-4); border-bottom: 1px solid var(--line); overflow-x: auto; scrollbar-width: none; }
.tabs__list::-webkit-scrollbar { display: none; }
.tabs__list [role="tab"] { padding: 12px 2px; font-size: var(--text-sm); font-weight: 600; color: var(--fg-3); white-space: nowrap; transition: color var(--t-fast); }
.tabs__list [role="tab"]:hover, .tabs__list [role="tab"][aria-selected="true"] { color: var(--fg); }
.tabs__ink { position: absolute; bottom: -1px; left: 0; width: 0; height: 2px; background: var(--lime); transition: left var(--t-base) var(--ease-expo), width var(--t-base) var(--ease-expo); }
.tabs__panel { padding-top: var(--s-5); }

/* Switch */
.switch { --w: 46px; --h: 26px; position: relative; flex: none; width: var(--w); height: var(--h); background: rgb(255 255 255 / 0.15); border: 1px solid var(--glass-line); border-radius: var(--r-pill); transition: background var(--t-base); }
.switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: calc(var(--h) - 8px); height: calc(var(--h) - 8px); background: var(--fg); border-radius: 50%; transition: transform var(--t-base) var(--ease-expo), background var(--t-base); }
.switch[aria-checked="true"] { background: var(--lime); }
.switch[aria-checked="true"]::after { transform: translateX(calc(var(--w) - var(--h))); background: var(--lime-ink); }

/* ---------- Forms ---------- */
.input { width: 100%; min-height: 50px; padding: 0 1.2rem; background: var(--glass); border: 1px solid var(--glass-line); border-radius: var(--r-pill); color: var(--fg); transition: border-color var(--t-fast), box-shadow var(--t-fast); min-width: 0; }
.input::placeholder { color: var(--fg-3); }
.input:focus-visible { outline: none; border-color: var(--lime); box-shadow: 0 0 0 4px rgb(216 255 63 / 0.15); }
.textarea { width: 100%; min-height: 140px; padding: 1rem 1.2rem; background: var(--glass); border: 1px solid var(--glass-line); border-radius: var(--r-3); color: var(--fg); resize: vertical; transition: border-color var(--t-fast), box-shadow var(--t-fast); }
.textarea::placeholder { color: var(--fg-3); }
.textarea:focus-visible { outline: none; border-color: var(--lime); box-shadow: 0 0 0 4px rgb(216 255 63 / 0.15); }
.select { position: relative; display: inline-flex; align-items: center; }
.select select { appearance: none; min-height: 36px; padding: 0 2.2rem 0 1rem; font-size: var(--text-sm); font-weight: 500; color: var(--fg); background: var(--glass); border: 1px solid var(--glass-line); border-radius: var(--r-pill); cursor: pointer; }
.select select option { color: #000; }
.select select:focus-visible { outline: none; border-color: var(--lime); box-shadow: 0 0 0 4px rgb(216 255 63 / 0.15); }
.select svg { position: absolute; right: 12px; width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; pointer-events: none; }
.select--block { display: grid; }
.select--block select { width: 100%; min-height: 50px; padding: 0 2.6rem 0 1.2rem; font-size: var(--text-base); font-weight: 400; }
.select--block svg { top: 50%; right: 16px; transform: translateY(-50%); }
.field { display: grid; gap: var(--s-2); align-content: start; }
.field label { font-size: var(--text-sm); color: var(--fg-2); }
.field__hint { font-size: var(--text-xs); color: var(--fg-3); }
.field.is-invalid .input, .field.is-invalid .textarea, .field.is-invalid .select select { border-color: var(--coral); box-shadow: 0 0 0 4px rgb(255 92 57 / 0.15); }
.field.is-invalid .field__hint, .field.is-invalid label { color: var(--coral); }
.form-grid { display: grid; gap: var(--s-4); }
@media (min-width: 640px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } .form-grid .span-2 { grid-column: 1 / -1; } }
.check { position: relative; display: flex; align-items: center; gap: var(--s-3); min-height: var(--tap); padding: 4px 0; font-size: var(--text-sm); color: var(--fg-2); cursor: pointer; transition: color var(--t-fast); }
.check:hover { color: var(--fg); }
.check input { position: absolute; opacity: 0; width: 0; height: 0; }
.check__box { flex: none; width: 20px; height: 20px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 6px; background: var(--glass); transition: background var(--t-fast), border-color var(--t-fast); }
.check__box svg { width: 12px; height: 12px; stroke: var(--lime-ink); fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 20; stroke-dashoffset: 20; transition: stroke-dashoffset var(--t-base) var(--ease-out); }
.check input:checked + .check__box { background: var(--lime); border-color: var(--lime); }
.check input:checked + .check__box svg { stroke-dashoffset: 0; }
.check input:focus-visible + .check__box { outline: 2px solid var(--lime); outline-offset: 2px; }
.check--radio .check__box { border-radius: 50%; }
.check--radio .check__box::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--lime-ink); transform: scale(0); transition: transform var(--t-fast) var(--ease-out); }
.check--radio input:checked + .check__box::after { transform: scale(1); }
.check--row { justify-content: space-between; }
/* Option card: delivery methods, payment methods */
.opt { position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: var(--s-3); padding: var(--s-4); background: var(--glass); border: 1px solid var(--line); border-radius: var(--r-2); cursor: pointer; transition: border-color var(--t-fast), background var(--t-fast); }
.opt:hover { border-color: var(--line-strong); }
.opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.opt:has(input:checked) { border-color: var(--lime); background: rgb(216 255 63 / 0.06); }
.opt:has(input:focus-visible) { outline: 2px solid var(--lime); outline-offset: 2px; }
.opt__radio { width: 18px; height: 18px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; transition: border-color var(--t-fast); }
.opt__radio::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--lime); transform: scale(0); transition: transform var(--t-fast) var(--ease-out); }
.opt input:checked + .opt__radio { border-color: var(--lime); }
.opt input:checked + .opt__radio::after { transform: scale(1); }
.opt__body { display: grid; gap: 2px; min-width: 0; }
.opt__body strong { font-weight: 600; font-size: var(--text-sm); }
.opt__body small { color: var(--fg-3); font-size: var(--text-xs); }
.opt__price { font-family: var(--font-mono); font-size: var(--text-sm); white-space: nowrap; }

/* Stepper */
.stepper { display: inline-grid; grid-template-columns: 40px 40px 40px; align-items: center; height: 46px; background: var(--glass); border: 1px solid var(--glass-line); border-radius: var(--r-pill); }
.stepper button { height: 100%; font-size: 18px; color: var(--fg-2); transition: color var(--t-fast); }
.stepper button:hover { color: var(--fg); }
.stepper output { text-align: center; font-family: var(--font-mono); font-size: var(--text-sm); }
.stepper output.tick { animation: tick var(--t-fast) var(--ease-out); }
@keyframes tick { 50% { transform: translateY(-4px); opacity: 0.4; } }

/* Swatches */
.swatches { display: flex; gap: 8px; flex-wrap: wrap; }
.swatch { width: 30px; height: 30px; padding: 3px; border-radius: 50%; border: 1px solid transparent; transition: border-color var(--t-fast), transform var(--t-fast) var(--ease-out); }
.swatch span { display: block; width: 100%; height: 100%; border-radius: 50%; background: var(--sw); box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.15); }
.swatch:hover { transform: scale(1.1); }
.swatch[aria-checked="true"] { border-color: var(--fg); }
@media (pointer: coarse) { .swatch { width: 36px; height: 36px; } }

/* ---------- Tag / pill labels ---------- */
.tag { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg); background: rgb(9 9 11 / 0.45); border: 1px solid var(--glass-line); border-radius: var(--r-pill); backdrop-filter: blur(10px); white-space: nowrap; }
.tag--lime { color: var(--lime-ink); background: var(--lime); border-color: var(--lime); }
.tag--coral { color: #09090b; background: var(--coral); border-color: var(--coral); }
.tag .pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 0 rgb(216 255 63 / 0.6); animation: pulse 1.8s ease-out infinite; }
.tag--lime .pulse { background: var(--lime-ink); animation: none; }
@keyframes pulse { to { box-shadow: 0 0 0 8px rgb(216 255 63 / 0); } }
@media (prefers-reduced-motion: reduce) { .tag .pulse { animation: none; } }

/* ---------- Product card ---------- */
.card { position: relative; display: grid; gap: var(--s-3); }
.card__media { position: relative; aspect-ratio: 4 / 5; border-radius: var(--r-3); overflow: hidden; background: var(--surface-2); }
.card__link { position: absolute; inset: 0; display: block; }
.card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-expo), opacity var(--t-slow); }
.card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgb(9 9 11 / 0.75)); pointer-events: none; }
@media (hover: hover) { .card:hover .card__media img { transform: scale(1.06); } }
.card--sold .card__media img { opacity: 0.55; }
.card__top { position: absolute; top: 12px; left: 12px; right: 12px; display: flex; justify-content: space-between; align-items: center; z-index: 1; pointer-events: none; }
.card__top > * { pointer-events: auto; }
.card__fav { width: 36px; height: 36px; display: grid; place-items: center; background: rgb(9 9 11 / 0.35); border: 1px solid var(--glass-line); border-radius: 50%; backdrop-filter: blur(10px); transition: transform var(--t-fast) var(--ease-out), background var(--t-fast); }
.card__fav svg { width: 16px; height: 16px; fill: transparent; stroke: var(--fg); stroke-width: 1.8; transition: fill var(--t-fast); }
.card__fav:hover { transform: scale(1.1); }
.card__fav[aria-pressed="true"] svg { fill: var(--lime); stroke: var(--lime); animation: bump 480ms var(--ease-expo); }
.card__cta { position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 1; display: flex; gap: 8px; transform: translateY(12px); opacity: 0; transition: transform var(--t-base) var(--ease-expo), opacity var(--t-fast); }
.card__cta .btn { flex: 1; min-height: 42px; }
@media (hover: hover) { .card:hover .card__cta, .card:focus-within .card__cta { transform: none; opacity: 1; } }
@media (hover: none) { .card__cta { transform: none; opacity: 1; } }
.card__meta { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 2px 12px; align-items: baseline; padding-inline: 4px; }
.card__name { font-weight: 600; letter-spacing: -0.01em; }
.card__name:hover { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--fg-3); }
.card__price { font-family: var(--font-mono); font-size: var(--text-sm); }
.card__sub { grid-column: 1 / -1; color: var(--fg-3); font-size: var(--text-sm); }
@media (max-width: 400px) { .card__cta .btn--sm { padding: 0 0.6rem; font-size: 10px; } }

/* Skeleton */
.skeleton { display: grid; gap: var(--s-3); }
.skeleton__b { background: linear-gradient(100deg, var(--surface) 20%, var(--surface-2) 50%, var(--surface) 80%); background-size: 200% 100%; animation: shimmer 1.4s linear infinite; border-radius: var(--r-3); }
@keyframes shimmer { to { background-position: -200% 0; } }

/* ---------- Dock nav ---------- */
.dock { position: fixed; z-index: var(--z-nav); left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 4px; padding: 6px; border-radius: var(--r-pill); }
@media (min-width: 900px) { .dock { top: var(--dock-top); } }
@media (max-width: 899.98px) { .dock { bottom: max(var(--dock-gap-m), env(safe-area-inset-bottom)); width: min(100% - 24px, 460px); justify-content: space-between; } }
.dock__brand { display: inline-flex; align-items: center; gap: 8px; padding: 0 12px 0 10px; height: 40px; font-weight: 700; letter-spacing: 0.14em; font-size: var(--text-xs); text-transform: uppercase; }
.dock__brand i { width: 8px; height: 8px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 12px var(--lime); }
.dock__nav { position: relative; display: flex; gap: 2px; isolation: isolate; }
.dock__nav a { position: relative; display: inline-flex; align-items: center; gap: 6px; height: 40px; padding: 0 14px; font-size: var(--text-sm); font-weight: 500; color: var(--fg-2); border-radius: var(--r-pill); transition: color var(--t-fast); z-index: 1; }
.dock__nav a:hover, .dock__nav a.is-active { color: var(--fg); }
.dock__nav a svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.dock__ind { position: absolute; top: 0; bottom: 0; left: var(--x, 0px); width: var(--w, 0px); background: rgb(255 255 255 / 0.12); border-radius: var(--r-pill); opacity: var(--o, 0); transition: left var(--t-base) var(--ease-expo), width var(--t-base) var(--ease-expo), opacity var(--t-fast); }
.dock__actions { display: flex; gap: 2px; }
.dock__actions .icon-btn { width: 40px; height: 40px; }
@media (max-width: 899.98px) {
  .dock__brand { display: none; }
  .dock__nav a { padding: 0 10px; flex-direction: column; gap: 2px; height: 48px; font-size: 10px; }
  .dock__nav a span { font-family: var(--font-mono); letter-spacing: 0.06em; text-transform: uppercase; }
  .dock__nav a.is-active { background: rgb(255 255 255 / 0.1); }
  .dock__actions .icon-btn { width: 48px; height: 48px; }
}
@media (max-width: 359.98px) { .dock__nav a { padding: 0 7px; } .dock__actions .icon-btn { width: 44px; } }
@media (min-width: 900px) { .dock__nav a svg { display: none; } }
.dock__menu { display: inline-flex; align-items: center; gap: 8px; height: 40px; padding: 0 14px 0 12px; font-size: var(--text-sm); font-weight: 600; background: var(--fg); color: var(--bg); border-radius: var(--r-pill); transition: transform var(--t-fast) var(--ease-out), background var(--t-fast); }
.dock__menu:hover { background: var(--lime); }
.dock__menu .lines { position: relative; width: 14px; height: 10px; }
.dock__menu .lines::before, .dock__menu .lines::after { content: ""; position: absolute; left: 0; width: 100%; height: 2px; background: currentColor; border-radius: 2px; transition: transform var(--t-base) var(--ease-expo), top var(--t-base) var(--ease-expo); top: 0; }
.dock__menu .lines::after { top: 8px; }
.dock__menu[aria-expanded="true"] .lines::before { top: 4px; transform: rotate(45deg); }
.dock__menu[aria-expanded="true"] .lines::after { top: 4px; transform: rotate(-45deg); }
@media (max-width: 899.98px) { .dock__menu .lbl { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; } .dock__menu { position: relative; width: 48px; height: 48px; padding: 0; justify-content: center; border-radius: 50%; } }
@media (max-width: 359.98px) { .dock__menu { width: 44px; } }

/* Full-screen menu */
.menu { position: fixed; inset: 0; z-index: calc(var(--z-nav) - 1); display: grid; grid-template-rows: 1fr auto; padding: calc(var(--s-8) + 40px) var(--gutter) var(--s-6); background: rgb(9 9 11 / 0.82); backdrop-filter: blur(30px) saturate(1.4); -webkit-backdrop-filter: blur(30px) saturate(1.4); opacity: 0; visibility: hidden; transition: opacity var(--t-base) var(--ease-out), visibility 0s linear var(--t-base); overflow: auto; }
.menu.is-open { opacity: 1; visibility: visible; transition-delay: 0s; }
.menu__links { display: grid; align-content: center; gap: 0; }
.menu__links a { position: relative; display: flex; align-items: baseline; gap: var(--s-4); padding: 0.1em 0; font-family: var(--font-display); font-size: clamp(2.2rem, 7vw, 6rem); line-height: 1; letter-spacing: -0.04em; font-weight: 700; text-transform: uppercase; color: var(--fg-2); font-variation-settings: "opsz" 96, "wdth" 100; transition: color var(--t-fast), font-variation-settings var(--t-base) var(--ease-out), padding-left var(--t-base) var(--ease-expo); overflow: hidden; }
.menu__links a > span { display: inline-block; transform: translateY(110%); transition: transform var(--t-slow) var(--ease-expo); transition-delay: calc(var(--i) * 60ms); }
.menu.is-open .menu__links a > span { transform: none; }
.menu__links a small { font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: 0.1em; color: var(--fg-3); }
.menu__links a:hover { color: var(--fg); font-variation-settings: "opsz" 96, "wdth" 80; padding-left: 0.2em; }
.menu__foot { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: var(--s-4); color: var(--fg-3); }
.menu__search { display: inline-flex; align-items: center; gap: 8px; min-height: 40px; padding: 0 14px; font: inherit; color: var(--fg); border: 1px solid var(--glass-line); border-radius: var(--r-pill); background: var(--glass); }
.menu__search svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }
@media (max-width: 899.98px) { .menu { padding: var(--s-7) var(--gutter) calc(var(--dock-h-m) + var(--s-7)); } .menu__links a { font-size: clamp(2rem, 9vw, 3.4rem); } }

/* ---------- Drawers / sheets ---------- */
.scrim { position: fixed; inset: 0; z-index: var(--z-drawer); background: var(--overlay); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity var(--t-base); }
.scrim.is-open { opacity: 1; pointer-events: auto; }
.sheet { position: fixed; z-index: calc(var(--z-drawer) + 1); display: grid; grid-template-rows: auto 1fr auto; background: rgb(21 21 24 / 0.86); backdrop-filter: blur(30px) saturate(1.3); -webkit-backdrop-filter: blur(30px) saturate(1.3); border: 1px solid var(--glass-line); box-shadow: var(--shadow-2); visibility: hidden; transition: transform var(--t-slow) var(--ease-expo), opacity var(--t-base), visibility 0s linear var(--t-slow); }
.sheet.is-open { visibility: visible; transform: none; opacity: 1; transition-delay: 0s; }
.sheet__head { display: flex; align-items: center; justify-content: space-between; padding: var(--s-4) var(--s-4) var(--s-4) var(--s-5); border-bottom: 1px solid var(--line); }
.sheet__head h2 { font-size: var(--text-md); font-weight: 600; letter-spacing: -0.01em; }
.sheet__body { overflow: auto; padding: var(--s-5); overscroll-behavior: contain; }
.sheet__foot { padding: var(--s-4) var(--s-5) max(var(--s-4), env(safe-area-inset-bottom)); border-top: 1px solid var(--line); }
.sheet__foot--split { display: grid; grid-template-columns: auto 1fr; gap: var(--s-3); }
@media (min-width: 641px) {
  .sheet { top: 12px; right: 12px; bottom: 12px; width: min(100% - 24px, 440px); border-radius: var(--r-4); transform: translateX(calc(100% + 24px)); }
  .sheet--wide { width: min(100% - 24px, 820px); }
  .sheet--center { top: 50%; left: 50%; right: auto; bottom: auto; width: min(100% - 24px, 860px); max-height: calc(100svh - 24px); transform: translate(-50%, -48%) scale(0.96); opacity: 0; }
  .sheet--center.is-open { transform: translate(-50%, -50%); }
}
@media (max-width: 640px) {
  .sheet { left: 0; right: 0; bottom: 0; max-height: 92svh; border-radius: 26px 26px 0 0; border-bottom: 0; transform: translateY(105%); }
  .sheet__head { position: relative; padding-top: var(--s-5); }
  .sheet__head::before { content: ""; position: absolute; top: 8px; left: 50%; width: 40px; height: 4px; background: var(--line-strong); border-radius: var(--r-pill); transform: translateX(-50%); }
  .sheet__body, .sheet__foot { padding-inline: var(--s-4); }
}

/* Filter groups (filters sheet) */
.filter-group { display: grid; gap: var(--s-3); padding-block: var(--s-4); border-bottom: 1px solid var(--line); }
.filter-group:first-child { padding-top: 0; }
.filter-group:last-child { border-bottom: 0; }
.filter-group h4 { color: var(--fg-3); }
.range { display: grid; gap: var(--s-2); }
.range input[type="range"] { width: 100%; accent-color: var(--lime); }
.range__vals { display: flex; justify-content: space-between; font-size: var(--text-sm); color: var(--fg-3); }
.range__vals strong { color: var(--fg); font-family: var(--font-mono); font-weight: 500; }

/* Cart line */
.cart-line { display: grid; grid-template-columns: 80px 1fr; gap: var(--s-4); padding-block: var(--s-4); border-bottom: 1px solid var(--line); }
.cart-line .media { aspect-ratio: 4/5; border-radius: var(--r-2); display: block; }
.cart-line__top { display: flex; justify-content: space-between; gap: var(--s-3); }
.cart-line__name { font-weight: 600; font-size: var(--text-sm); }
.cart-line__row { display: flex; justify-content: space-between; align-items: center; margin-top: var(--s-3); gap: var(--s-3); }
.cart-line .stepper { height: 34px; grid-template-columns: 30px 32px 30px; }
.cart-line__remove { padding: 8px 0; font-size: var(--text-xs); color: var(--fg-3); text-decoration: underline; text-underline-offset: 3px; }
.cart-line__remove:hover { color: var(--fg); }
.cart-line--large { grid-template-columns: 110px 1fr; gap: var(--s-5); padding-block: var(--s-5); }
@media (min-width: 720px) { .cart-line--large { grid-template-columns: 150px 1fr; } .cart-line--large .cart-line__name { font-size: var(--text-md); } .cart-line--large .stepper { height: 46px; grid-template-columns: 40px 40px 40px; } }
.cart-empty { display: grid; justify-items: center; text-align: center; gap: var(--s-3); padding: var(--s-8) 0; color: var(--fg-2); }
.cart-empty .orb { width: 72px; height: 72px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, var(--violet), var(--blue) 50%, var(--bg-2) 75%); box-shadow: 0 0 60px rgb(91 124 255 / 0.4); margin-bottom: var(--s-2); }
.cart-total { display: flex; justify-content: space-between; font-weight: 600; margin-bottom: var(--s-2); }
.cart-total span:last-child { font-family: var(--font-mono); }

/* Quick view */
.qv { display: grid; gap: var(--s-5); }
@media (min-width: 720px) { .qv { grid-template-columns: 1.1fr 1fr; gap: var(--s-6); } }
.qv__media { position: relative; aspect-ratio: 4/5; border-radius: var(--r-3); overflow: hidden; background: var(--surface-2); }
.qv__media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity var(--t-base); }
.qv__media > img.is-active { opacity: 1; }
.qv__thumbs { position: absolute; left: 12px; bottom: 12px; display: flex; gap: 6px; }
.qv__thumbs button { width: 44px; height: 54px; border-radius: 10px; overflow: hidden; border: 1px solid var(--glass-line); opacity: 0.6; transition: opacity var(--t-fast), transform var(--t-fast); }
.qv__thumbs button[aria-selected="true"] { opacity: 1; border-color: var(--fg); }
.qv__thumbs img { width: 100%; height: 100%; object-fit: cover; }
.qv__info { display: grid; gap: var(--s-4); align-content: start; }
.qv__price { font-family: var(--font-mono); font-size: var(--text-lg); }
.qv__row { display: grid; gap: var(--s-2); }
.qv__row .lbl { display: flex; justify-content: space-between; font-size: var(--text-sm); color: var(--fg-2); }
.qv__actions { display: grid; grid-template-columns: auto 1fr; gap: var(--s-3); }
.spec { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s-3); }
.spec div { padding: 10px 12px; background: var(--glass); border: 1px solid var(--line); border-radius: var(--r-2); min-width: 0; }
.spec .mono { color: var(--fg-3); display: block; margin-bottom: 2px; }
.spec strong { font-size: var(--text-sm); font-weight: 600; display: block; overflow-wrap: anywhere; }
@media (max-width: 400px) { .spec { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ---------- Accordion ---------- */
.acc { display: grid; gap: 8px; }
.acc__item { background: var(--glass); border: 1px solid var(--line); border-radius: var(--r-2); transition: border-color var(--t-fast), background var(--t-fast); }
.acc__item.is-open { border-color: var(--line-strong); background: var(--glass-2); }
.acc__trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--s-4); padding: var(--s-4) var(--s-5); text-align: left; font-weight: 500; font-size: var(--text-md); letter-spacing: -0.01em; }
.acc__trigger .plus { position: relative; width: 28px; height: 28px; flex: none; border: 1px solid var(--line-strong); border-radius: 50%; transition: transform var(--t-base) var(--ease-expo), background var(--t-fast); }
.acc__trigger .plus::before, .acc__trigger .plus::after { content: ""; position: absolute; left: 50%; top: 50%; width: 10px; height: 1.5px; background: currentColor; transform: translate(-50%, -50%); }
.acc__trigger .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.acc__trigger[aria-expanded="true"] .plus { transform: rotate(135deg); background: var(--lime); color: var(--lime-ink); border-color: var(--lime); }
.acc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--t-base) var(--ease-expo); }
.acc__panel > div { overflow: hidden; }
.acc__panel p, .acc__panel ul, .acc__panel dl { padding: 0 var(--s-5) var(--s-5); color: var(--fg-2); }
.acc__item.is-open .acc__panel { grid-template-rows: 1fr; }

/* ---------- Toast ---------- */
.toasts { position: fixed; left: 50%; bottom: max(20px, env(safe-area-inset-bottom)); z-index: var(--z-toast); width: min(100% - 2rem, 380px); display: grid; gap: 8px; transform: translateX(-50%); pointer-events: none; }
@media (max-width: 899.98px) { .toasts { bottom: auto; top: 14px; } }
.toast { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; padding: 10px 12px 10px 14px; font-size: var(--text-sm); border-radius: var(--r-pill); pointer-events: auto; animation: toastIn var(--t-slow) var(--ease-expo); }
.toast .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 10px var(--lime); }
.toast button { font-size: var(--text-xs); font-weight: 600; color: var(--lime); padding: 6px; }
.toast.is-leaving { animation: toastOut var(--t-fast) var(--ease-in-out) forwards; }
@keyframes toastIn { from { opacity: 0; transform: translateY(16px) scale(0.96); } }
@keyframes toastOut { to { opacity: 0; transform: translateY(8px); } }

/* Tooltip */
[data-tip] { position: relative; }
[data-tip]::after { content: attr(data-tip); position: absolute; left: 50%; top: calc(100% + 8px); padding: 5px 9px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; color: var(--bg); background: var(--fg); border-radius: 6px; transform: translate(-50%, -4px); opacity: 0; pointer-events: none; transition: opacity var(--t-fast), transform var(--t-base) var(--ease-expo); }
[data-tip]:hover::after, [data-tip]:focus-visible::after { opacity: 1; transform: translate(-50%, 0); }

/* Scroll progress */
.progress { position: fixed; top: 0; left: 0; height: 2px; width: 100%; z-index: var(--z-nav); transform-origin: left; transform: scaleX(var(--p, 0)); background: linear-gradient(90deg, var(--lime), var(--cyan)); pointer-events: none; }

/* Custom cursor (desktop, fine pointer only) */
.cursor { position: fixed; left: 0; top: 0; z-index: var(--z-cursor); width: 12px; height: 12px; margin: -6px 0 0 -6px; border-radius: 50%; background: var(--lime); pointer-events: none; mix-blend-mode: difference; transform: translate(var(--x, -100px), var(--y, -100px)) scale(var(--s, 1)); transition: transform 80ms linear, width var(--t-base), height var(--t-base); display: none; }
.cursor.has-label { width: 72px; height: 72px; margin: -36px 0 0 -36px; display: grid; place-items: center; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lime-ink); mix-blend-mode: normal; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } body.has-cursor a, body.has-cursor button { cursor: none; } }

/* ---------- Command palette (search) ---------- */
.cmd { position: fixed; inset: 0; z-index: var(--z-modal); display: grid; align-items: start; justify-items: center; padding: max(10vh, var(--s-8)) var(--gutter) var(--s-6); background: rgb(9 9 11 / 0.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); opacity: 0; visibility: hidden; transition: opacity var(--t-base), visibility 0s linear var(--t-base); }
.cmd.is-open { opacity: 1; visibility: visible; transition-delay: 0s; }
.cmd__box { width: min(100%, 640px); background: rgb(21 21 24 / 0.92); border: 1px solid var(--glass-line); border-radius: var(--r-3); box-shadow: var(--shadow-2); overflow: hidden; transform: translateY(12px) scale(0.98); transition: transform var(--t-base) var(--ease-expo); }
.cmd.is-open .cmd__box { transform: none; }
.cmd__input { display: flex; align-items: center; gap: var(--s-3); padding: 0 var(--s-4); border-bottom: 1px solid var(--line); }
.cmd__input svg { width: 18px; height: 18px; stroke: var(--fg-3); fill: none; stroke-width: 1.7; flex: none; }
.cmd__input input { flex: 1; min-height: 60px; border: 0; background: transparent; font-size: var(--text-md); color: var(--fg); min-width: 0; }
.cmd__input input:focus-visible { outline: none; }
.cmd__input input::placeholder { color: var(--fg-3); }
.cmd__input input::-webkit-search-cancel-button, .cmd__input input::-webkit-search-decoration { -webkit-appearance: none; appearance: none; }
.cmd__input kbd { font-family: var(--font-mono); font-size: 10px; padding: 3px 6px; border: 1px solid var(--line); border-radius: 4px; color: var(--fg-3); }
.cmd__list { max-height: min(50vh, 420px); overflow: auto; padding: var(--s-2); overscroll-behavior: contain; }
.cmd__group { padding: var(--s-3) var(--s-3) var(--s-1); color: var(--fg-3); }
.cmd__item { display: grid; grid-template-columns: 40px minmax(0, 1fr) auto; align-items: center; gap: var(--s-3); padding: 8px 10px; border-radius: var(--r-2); transition: background var(--t-fast); }
.cmd__item:hover, .cmd__item[aria-selected="true"] { background: rgb(255 255 255 / 0.08); }
.cmd__item .media { aspect-ratio: 4/5; width: 40px; border-radius: 8px; }
.cmd__item .ph { display: grid; place-items: center; width: 40px; height: 40px; background: var(--glass); border: 1px solid var(--line); border-radius: 10px; }
.cmd__item .ph svg { width: 16px; height: 16px; stroke: var(--fg-2); fill: none; stroke-width: 1.7; }
.cmd__item strong { display: block; font-size: var(--text-sm); font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cmd__item small { color: var(--fg-3); font-size: var(--text-xs); display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cmd__item .price { font-family: var(--font-mono); font-size: var(--text-sm); }
.cmd__empty { padding: var(--s-7) var(--s-4); text-align: center; color: var(--fg-3); }

/* ---------- Countdown ---------- */
.countdown { display: inline-flex; gap: 6px; align-items: center; font-family: var(--font-mono); font-size: var(--text-sm); font-variant-numeric: tabular-nums; }
.countdown b { padding: 4px 8px; background: var(--glass); border: 1px solid var(--line); border-radius: 8px; font-weight: 500; min-width: 40px; text-align: center; }
.countdown small { font-size: 10px; color: var(--fg-3); letter-spacing: 0.08em; text-transform: uppercase; }
.countdown--lg { font-size: var(--text-lg); gap: 8px; }
.countdown--lg b { padding: 8px 12px; min-width: 64px; border-radius: 12px; }

/* ---------- Trust rows / facts ---------- */
.facts { display: grid; gap: var(--s-2); }
.facts li { display: flex; gap: var(--s-3); align-items: center; font-size: var(--text-sm); color: var(--fg-2); }
.facts svg { width: 18px; height: 18px; stroke: var(--lime); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* sections.css */
/* SIGNAL — sections */

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: grid; align-items: end; overflow: clip; isolation: isolate; padding-top: calc(var(--s-8) + 40px); }
.mesh { position: absolute; inset: 0; z-index: -2; overflow: hidden; background: radial-gradient(60% 50% at 50% 100%, rgb(216 255 63 / 0.08), transparent 70%); }
.mesh i { position: absolute; width: 46vmax; height: 46vmax; border-radius: 50%; filter: blur(90px); opacity: 0.75; will-change: transform; animation: drift var(--dur, 18s) ease-in-out infinite alternate; }
.mesh i:nth-child(1) { left: -12%; top: -18%; background: var(--blue); --dur: 22s; }
.mesh i:nth-child(2) { right: -14%; top: 6%; background: var(--violet); --dur: 26s; animation-delay: -6s; }
.mesh i:nth-child(3) { left: 30%; bottom: -30%; background: var(--coral); --dur: 20s; animation-delay: -12s; opacity: 0.55; }
.mesh i:nth-child(4) { right: 20%; bottom: -10%; background: var(--cyan); --dur: 24s; animation-delay: -3s; opacity: 0.4; }
@keyframes drift { to { transform: translate(12%, 10%) scale(1.15); } }
@media (prefers-reduced-motion: reduce) { .mesh i { animation: none; } .hero .hero__scroll i::after { animation: none; } }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgb(9 9 11 / 0.2), rgb(9 9 11 / 0.55) 60%, var(--bg)); }
.hero__inner { position: relative; display: grid; gap: var(--s-6); padding-bottom: var(--s-8); }
@media (min-width: 900px) { .hero__inner { grid-template-columns: 1.3fr 1fr; align-items: end; padding-bottom: var(--s-9); } }
.hero__top { display: flex; flex-wrap: wrap; gap: var(--s-3); align-items: center; }
.hero__title { position: relative; z-index: 1; margin-top: var(--s-4); }
.hero__title .line { display: block; }
.hero__title .thin { font-weight: 300; font-variation-settings: "opsz" 96, "wdth" 100; }
.hero__lede { max-width: 40ch; color: var(--fg-2); font-size: var(--text-md); }
.hero__ctas { display: flex; gap: var(--s-3); flex-wrap: wrap; margin-top: var(--s-2); }
.hero__side { position: relative; max-width: 460px; margin-left: auto; width: 100%; will-change: transform; }
.hero__media { position: relative; aspect-ratio: 4/5; border-radius: var(--r-4); overflow: hidden; width: 100%; }
/* The hero image is the largest paint on the page, so its fade and mask reveal are CSS animations that start
   on parse instead of waiting for the modules to load (LCP stays independent of JS). motion.js still adds
   .is-loaded / .is-in afterwards; both match the animations' end state. */
.hero__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.1) translateY(calc(var(--sy, 0) * -0.06px)); animation: hero-img 1.2s var(--ease-out) both; }
.hero__media.mask-reveal > img { animation: hero-img 1.2s var(--ease-out) both, hero-mask 1.2s var(--ease-expo) both; }
@keyframes hero-img { from { opacity: 0; } to { opacity: 1; } }
@keyframes hero-mask { from { clip-path: inset(0 0 100% 0 round var(--r-3)); } to { clip-path: inset(0 0 0 0 round var(--r-3)); } }
@media (prefers-reduced-motion: reduce) { .hero__media img, .hero__media.mask-reveal > img { animation: none; opacity: 1; clip-path: none; } }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgb(9 9 11 / 0.7)); }
.hero__chip { position: absolute; z-index: 2; display: grid; gap: 2px; padding: 12px 14px; border-radius: var(--r-2); min-width: 128px; will-change: transform; }
.hero__chip .mono { color: var(--fg-3); }
.hero__chip strong { font-size: var(--text-lg); font-weight: 600; letter-spacing: -0.02em; }
.hero__chip--a { left: -10%; top: 12%; }
.hero__chip--b { right: -8%; top: 46%; }
.hero__chip--c { left: 8%; bottom: 8%; }
@media (max-width: 899px) { .hero__side { max-width: none; } .hero__chip--a { left: 12px; top: 12px; } .hero__chip--b { right: 12px; top: auto; bottom: 12px; } .hero__chip--c { display: none; } }
.hero__scroll { position: absolute; left: var(--gutter); bottom: var(--s-6); display: none; align-items: center; gap: 10px; color: var(--fg-3); }
.hero__scroll i { width: 40px; height: 1px; background: var(--fg-3); overflow: hidden; position: relative; }
.hero__scroll i::after { content: ""; position: absolute; inset: 0; background: var(--lime); transform: translateX(-100%); animation: scan 2s var(--ease-in-out) infinite; }
@keyframes scan { to { transform: translateX(100%); } }
@media (min-width: 900px) { .hero__scroll { display: flex; } }

/* Ticker */
.ticker { overflow: hidden; border-block: 1px solid var(--line); padding: 14px 0; background: var(--bg-2); }
.ticker__track { display: flex; gap: var(--s-8); width: max-content; animation: ticker 36s linear infinite; }
.ticker__track span { display: inline-flex; align-items: center; gap: var(--s-4); font-family: var(--font-display); font-size: var(--text-lg); font-weight: 600; letter-spacing: -0.02em; text-transform: uppercase; white-space: nowrap; }
.ticker__track span i { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); }
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } }

/* Section heads */
.head { display: grid; gap: var(--s-4); margin-bottom: var(--s-7); align-items: end; }
@media (min-width: 800px) { .head--split { grid-template-columns: 1fr auto; } }
.head p { color: var(--fg-2); max-width: 48ch; }
.head .crumbs { margin-bottom: var(--s-2); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--fg-3); }
.eyebrow::before { content: ""; width: 6px; height: 6px; background: var(--lime); border-radius: 50%; }

/* Page head: crumbs + title + lede for ordinary pages */
.page-head { display: grid; gap: var(--s-3); margin-bottom: var(--s-6); }
.page-head h1 { margin-top: var(--s-3); }
.page-head p { color: var(--fg-2); max-width: 52ch; }
.page-head--split { align-items: end; }
@media (min-width: 800px) { .page-head--split { grid-template-columns: 1fr auto; } .page-head--split p { max-width: 40ch; } }

/* ---------- Bento ---------- */
.bento { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: minmax(150px, auto); gap: 12px; }
@media (min-width: 800px) { .bento { grid-template-columns: repeat(6, minmax(0, 1fr)); grid-auto-rows: 170px; gap: 14px; } }
.cell { position: relative; overflow: hidden; border-radius: var(--r-3); background: var(--surface); border: 1px solid var(--line); padding: var(--s-5); display: grid; align-content: end; gap: 6px; isolation: isolate; transition: transform var(--t-base) var(--ease-expo), border-color var(--t-fast); }
.cell::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), rgb(216 255 63 / 0.7), transparent 60%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity var(--t-base); pointer-events: none; z-index: 2; }
.cell::after { content: ""; position: absolute; inset: 0; background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), rgb(255 255 255 / 0.06), transparent 60%); opacity: 0; transition: opacity var(--t-base); pointer-events: none; z-index: 1; }
@media (hover: hover) { .cell:hover { transform: translateY(-3px); } .cell:hover::before, .cell:hover::after { opacity: 1; } }
.cell .media { position: absolute; inset: 0; z-index: -1; border-radius: 0; }
.cell .media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgb(9 9 11 / 0.05) 30%, rgb(9 9 11 / 0.8)); }
.cell:hover .media img { transform: scale(1.05); }
.cell h3 { font-size: var(--text-lg); font-weight: 600; letter-spacing: -0.02em; }
.cell p { color: var(--fg-2); font-size: var(--text-sm); }
.cell .mono { color: var(--fg-3); }
.cell--hero { grid-column: span 2; grid-row: span 2; }
.cell--tall { grid-row: span 2; }
.cell--wide { grid-column: span 2; }
@media (min-width: 800px) { .cell--hero { grid-column: span 3; grid-row: span 2; } .cell--wide { grid-column: span 2; } .cell--tall { grid-column: span 1; grid-row: span 2; } .cell--sq { grid-column: span 1; } .cell--2 { grid-column: span 2; } }
.cell--lime { background: var(--lime); color: var(--lime-ink); border-color: var(--lime); }
.cell--lime p, .cell--lime .mono { color: rgb(16 20 0 / 0.7); }
.cell__big { font-family: var(--font-display); font-size: clamp(2.6rem, 2rem + 3vw, 4.5rem); font-weight: 700; letter-spacing: -0.05em; line-height: 0.9; font-variation-settings: "opsz" 96; font-variant-numeric: tabular-nums; }
.cell__top { position: absolute; top: var(--s-4); left: var(--s-5); right: var(--s-5); display: flex; justify-content: space-between; z-index: 1; }
.eq { display: flex; align-items: flex-end; gap: 4px; height: 56px; }
.eq i { width: 6px; background: var(--lime); border-radius: 3px; height: 20%; animation: eq 1.1s ease-in-out infinite alternate; animation-delay: calc(var(--i) * -0.13s); transform-origin: bottom; }
@keyframes eq { 0% { height: 15%; } 100% { height: 100%; } }
.cell--muted .eq i { animation-play-state: paused; height: 12%; background: var(--fg-3); }
@media (prefers-reduced-motion: reduce) { .eq i { animation: none; height: 60%; } }
.cell .media.tint::before { content: ""; position: absolute; inset: 0; background: var(--tint, transparent); mix-blend-mode: color; transition: background var(--t-slow); z-index: 1; }
.cell__row { display: flex; justify-content: space-between; align-items: center; gap: var(--s-3); }

/* ---------- Horizontal drops (home) ---------- */
.drops { position: relative; }
.drops__pin { position: sticky; top: 0; height: 100svh; display: grid; grid-template-columns: minmax(0, 1fr); align-content: center; overflow: hidden; gap: var(--s-6); } /* explicit column: without it Chromium sizes the implicit column to the track's min-content (every card side by side) and clips the header link */
.drops__head { display: flex; justify-content: space-between; align-items: end; gap: var(--s-4); flex-wrap: wrap; }
.drops__track { display: flex; gap: 16px; padding-inline: var(--gutter); will-change: transform; }
.drops__spacer { height: 250vh; }
@media (max-width: 899px) { .drops__pin { position: static; height: auto; overflow: visible; } .drops__spacer { display: none; } .drops__track { overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter); padding-bottom: var(--s-3); scrollbar-width: none; } .drops__track::-webkit-scrollbar { display: none; } .drops__track .card { scroll-snap-align: start; } }
.drops__track .card { flex: 0 0 min(72vw, 340px); }
@media (min-width: 900px) { .drops__track .card { flex-basis: 360px; } }
.drops__side { display: grid; gap: var(--s-3); justify-items: end; }
.drops__progress { height: 2px; background: var(--line); border-radius: 2px; overflow: hidden; }
.drops__progress i { display: block; height: 100%; width: 100%; background: var(--lime); transform-origin: left; transform: scaleX(var(--hp, 0)); }

/* ---------- Text mask statement ---------- */
.statement { position: relative; text-align: center; padding-block: var(--section); }
.statement h2 { font-size: clamp(3rem, 1rem + 11vw, 12rem); line-height: 0.88; letter-spacing: -0.05em; font-weight: 800; text-transform: uppercase; }
.statement .fill { background-size: cover; background-position: center calc(50% + var(--sy, 0) * 0.05px); -webkit-background-clip: text; background-clip: text; color: transparent; }
.statement p { margin: var(--s-6) auto 0; color: var(--fg-2); max-width: 44ch; }
.statement .marks { display: flex; justify-content: center; gap: var(--s-3); flex-wrap: wrap; margin-top: var(--s-6); }

/* ---------- Expanding gallery ---------- */
.expand { display: flex; gap: 10px; height: clamp(360px, 60vh, 640px); }
.expand__item { position: relative; flex: 1; overflow: hidden; border-radius: var(--r-3); cursor: pointer; transition: flex 0.8s var(--ease-expo); isolation: isolate; }
.expand__item .media { position: absolute; inset: 0; border-radius: 0; }
.expand__item .media img { transform: scale(1.02); }
.expand__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgb(9 9 11 / 0.85)); }
.expand__item.is-active, .expand__item:hover { flex: 3.2; }
.expand__cap { position: absolute; left: var(--s-5); right: var(--s-5); bottom: var(--s-5); z-index: 1; display: grid; gap: 4px; }
.expand__cap h3 { font-size: var(--text-xl); font-weight: 600; letter-spacing: -0.03em; white-space: nowrap; }
.expand__cap p { color: var(--fg-2); font-size: var(--text-sm); max-width: 34ch; opacity: 0; transform: translateY(8px); transition: opacity var(--t-base), transform var(--t-base) var(--ease-expo); }
.expand__item:not(.is-active):not(:hover) .expand__cap p { display: none; }
.expand__item.is-active .expand__cap p, .expand__item:hover .expand__cap p { opacity: 1; transform: none; transition-delay: 200ms; }
.expand__num { position: absolute; top: var(--s-4); left: var(--s-5); z-index: 1; color: var(--fg-2); }
@media (max-width: 799px) { .expand { flex-direction: column; height: auto; } .expand__item { flex: none; height: 84px; transition: height 0.7s var(--ease-expo); } .expand__item.is-active, .expand__item:hover { flex: none; height: 360px; } .expand__cap { left: var(--s-4); right: var(--s-4); bottom: var(--s-4); } .expand__cap h3 { font-size: var(--text-lg); } .expand__num { display: none; } .expand__item:hover { flex: none; } }

/* ---------- Grid (shop) ---------- */
.toolbar { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: var(--s-3); margin-bottom: var(--s-6); }
.toolbar__left, .toolbar__right { display: flex; gap: var(--s-3); align-items: center; flex-wrap: wrap; }
.toolbar__count { font-family: var(--font-mono); font-size: var(--text-xs); color: var(--fg-3); letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; }
.toolbar .btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-5) var(--s-3); }
@media (min-width: 720px) { .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s-6) var(--s-4); } }
@media (min-width: 1200px) { .grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.grid .card { animation: up var(--t-slow) var(--ease-expo) both; animation-delay: calc(var(--i, 0) * 50ms); }
@keyframes up { from { opacity: 0; transform: translateY(24px); } }
@media (prefers-reduced-motion: reduce) { .grid .card { animation: none; } }
.grid__empty { grid-column: 1 / -1; text-align: center; padding: var(--s-9) 0; color: var(--fg-2); display: grid; gap: var(--s-3); justify-items: center; }
.grid--related { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 720px) { .grid--related { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* ---------- Channel (collection) hero ---------- */
.coll-hero { position: relative; overflow: clip; isolation: isolate; min-height: 52svh; display: grid; align-items: end; padding-top: var(--s-8); padding-bottom: var(--s-7); }
@media (min-width: 900px) { .coll-hero { padding-top: var(--page-top); } }
.coll-hero__media { position: absolute; inset: 0; z-index: -1; }
.coll-hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.06) translateY(calc(var(--sy, 0) * -0.05px)); transition: opacity 1.2s var(--ease-out); }
.coll-hero__media img.is-loaded { opacity: 0.55; }
.coll-hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgb(9 9 11 / 0.55), rgb(9 9 11 / 0.15) 40%, var(--bg)); }
.coll-hero__inner { display: grid; gap: var(--s-3); }
.coll-hero__inner p { max-width: 48ch; color: var(--fg-2); }
.coll-hero__inner .crumbs { margin-bottom: var(--s-3); }

/* ---------- Channel / drop tiles ---------- */
.coll-more { display: grid; gap: var(--s-4); }
@media (min-width: 720px) { .coll-more { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .coll-more { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.coll-tile { position: relative; display: block; border-radius: var(--r-3); overflow: hidden; background: var(--surface); border: 1px solid var(--line); isolation: isolate; transition: transform var(--t-base) var(--ease-expo), border-color var(--t-fast); }
.coll-tile .media { border-radius: 0; }
.coll-tile .media img { transform: scale(1.02); }
.coll-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgb(9 9 11 / 0.85)); pointer-events: none; }
@media (hover: hover) { .coll-tile:hover { transform: translateY(-3px); border-color: var(--line-strong); } .coll-tile:hover .media img { transform: scale(1.06); } }
.coll-tile__cap { position: absolute; left: var(--s-4); right: var(--s-4); bottom: var(--s-4); z-index: 1; display: flex; justify-content: space-between; align-items: end; gap: var(--s-3); }
.coll-tile__cap .mono { display: block; color: var(--fg-3); margin-bottom: 4px; }
.coll-tile__cap strong { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 600; letter-spacing: -0.02em; }
.coll-tile__cap .ic { width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; flex: none; transition: background var(--t-fast), color var(--t-fast), transform var(--t-base) var(--ease-expo); }
.coll-tile__cap .ic svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 2; }
.coll-tile:hover .coll-tile__cap .ic { background: var(--lime); color: var(--lime-ink); border-color: var(--lime); transform: rotate(-45deg); }

/* ---------- FAQ + newsletter ---------- */
.faq { display: grid; gap: var(--s-6); }
@media (min-width: 900px) { .faq { grid-template-columns: 1fr 1.3fr; gap: var(--s-9); } }
.join { position: relative; overflow: hidden; padding: clamp(2rem, 5vw, 4.5rem); border-radius: var(--r-4); display: grid; gap: var(--s-5); align-items: center; }
@media (min-width: 900px) { .join { grid-template-columns: 1.2fr 1fr; } }
.join .mesh { opacity: 0.55; }
.join form { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
@media (max-width: 480px) { .join form { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.footer { position: relative; margin-top: var(--section); padding-top: var(--s-8); border-top: 1px solid var(--line); overflow: hidden; }
.footer__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-6); padding-bottom: var(--s-8); }
@media (min-width: 900px) { .footer__grid { grid-template-columns: 2fr repeat(3, 1fr); } }
.footer__intro { grid-column: 1 / -1; display: grid; gap: var(--s-3); }
@media (min-width: 900px) { .footer__intro { grid-column: auto; } }
.footer__brand { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; letter-spacing: 0.14em; font-size: var(--text-xs); text-transform: uppercase; }
.footer__brand i { width: 8px; height: 8px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 12px var(--lime); }
.footer__intro p { color: var(--fg-2); font-size: var(--text-sm); max-width: 34ch; }
.footer h2 { font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-3); margin-bottom: var(--s-3); font-weight: 500; }
.footer li a { display: inline-block; padding: 4px 0; color: var(--fg-2); font-size: var(--text-sm); transition: color var(--t-fast), transform var(--t-fast) var(--ease-out); }
.footer li a:hover { color: var(--fg); transform: translateX(3px); }
.footer__word { display: block; text-align: center; font-family: var(--font-display); font-size: clamp(5rem, 24vw, 24rem); line-height: 0.8; letter-spacing: -0.06em; font-weight: 800; text-transform: uppercase; white-space: nowrap; transform: translateY(0.14em); user-select: none; }
.footer__bar { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--s-3); padding: var(--s-5) 0 calc(var(--s-5) + var(--dock-h-m) + var(--dock-gap-m)); border-top: 1px solid var(--line); color: var(--fg-3); }
@media (min-width: 900px) { .footer__bar { padding-bottom: var(--s-5); } }
.footer__bar div { display: flex; gap: var(--s-4); flex-wrap: wrap; }
.footer__bar a { display: inline-block; padding: 6px 0; }
.footer__bar a:hover { color: var(--fg); }
