/* pebble design system */

@property --spot { syntax: "<number>"; inherits: false; initial-value: 0; }

/* tokens */
:root {
  --bg:#050505; --bg-2:#0c0c0c; --surface:#121212; --surface-2:#1a1a1a; --line:#262626; --line-2:#333;
  --text:#f5f2ee; --muted:#9a948d; --dim:#5f5a55;
  --orange:#ff5a00; --orange-2:#ff7a1f; --amber:#ffb000; --ember:#c93a00; --glow:rgba(255,90,0,.45);
  --radius:18px; --radius-lg:28px; --maxw:1240px;
  --font-display:"Unbounded", sans-serif; --font-body:"Manrope", sans-serif; --font-mono:"JetBrains Mono", monospace;
  --ease:cubic-bezier(.2,.8,.2,1);
  --ease-out:cubic-bezier(.16,1,.3,1);
  --gutter:24px;
  --bar-h:76px;
  --announce-h:40px;
  --grid-line:rgba(255,255,255,.045);
  --hair:rgba(255,255,255,.08);
  --success:#4ade80;
  --danger:#ff4d4d;
  --noise:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  color-scheme: dark;
}
@media (max-width: 640px) {
  :root { --gutter:16px; --bar-h:64px; }
}

/* base */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%; text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--bar-h) + 24px);
  scrollbar-gutter: stable;
  scrollbar-color: #2b2b2b var(--bg);
  background: var(--bg);
  /* safety net: stray glows must never widen the mobile layout viewport */
  overflow-x: clip;
}
body {
  margin: 0;
  min-height: 100vh;
  background-color: var(--bg);
  background-image:
    radial-gradient(1100px 620px at 85% -8%, rgba(255,90,0,.14), transparent 62%),
    radial-gradient(820px 520px at -12% 34%, rgba(255,90,0,.06), transparent 60%);
  background-repeat: no-repeat;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
/* load curtain: pure css so it can never block */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 9500;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, var(--orange) 0 6px, rgba(255,90,0,.35) 7px, transparent 40px),
    linear-gradient(to top, var(--orange) 0 2px, var(--bg) 2px);
  animation: pb-curtain .6s var(--ease) .06s forwards;
}
@keyframes pb-curtain { to { transform: translate3d(0,-101%,0); visibility: hidden; } }
/* film grain */
body::after {
  content: "";
  position: fixed; inset: -120px; z-index: 9000;
  pointer-events: none;
  background-image: var(--noise);
  background-size: 180px 180px;
  opacity: .05;
  animation: pb-grain 1.1s steps(5) infinite;
}
@keyframes pb-grain {
  0% { transform: translate3d(0,0,0); }
  20% { transform: translate3d(-40px,24px,0); }
  40% { transform: translate3d(28px,-36px,0); }
  60% { transform: translate3d(-56px,-12px,0); }
  80% { transform: translate3d(44px,32px,0); }
  100% { transform: translate3d(0,0,0); }
}

::selection { background: var(--orange); color: #050505; }
a { color: inherit; text-decoration: none; }
img, video, canvas { display: block; max-width: 100%; }
svg { flex-shrink: 0; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-family: var(--font-display); font-weight: 800; line-height: 1.05; letter-spacing: -.02em; }
p { margin: 0; }
main { display: block; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.ico { width: 20px; height: 20px; flex: none; }

html.is-locked, html.is-locked body { overflow: hidden; }

.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 10000;
  padding: 10px 18px; border-radius: 999px;
  background: var(--orange); color: #050505; font-weight: 800; font-size: 14px;
  transform: translateY(-200%); transition: transform .3s var(--ease);
}
.skip-link:focus { transform: none; }

/* layout */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { position: relative; padding-block: 120px; }
.section--tight { padding-block: 72px; }
.grid-2, .grid-3, .grid-4 { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.grid-2 > *, .grid-3 > *, .grid-4 > * { min-width: 0; }
.stack { display: flex; flex-direction: column; gap: 16px; }
.row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.center { text-align: center; }
.row.center { justify-content: center; }
.center .lead, .center .section-head { margin-inline: auto; }
.section-head { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; max-width: 820px; margin-bottom: clamp(40px, 5vw, 72px); }
.section-head.center { align-items: center; }
@media (max-width: 1024px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 760px) {
  .grid-2 { grid-template-columns: minmax(0,1fr); }
}
@media (max-width: 640px) {
  .section { padding-block: 72px; }
  .section--tight { padding-block: 48px; }
  .grid-3, .grid-4 { grid-template-columns: minmax(0,1fr); }
  .grid-2, .grid-3, .grid-4 { gap: 16px; }
}

/* type */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font: 600 12px/1.2 var(--font-mono);
  text-transform: uppercase; letter-spacing: .2em;
  color: var(--orange);
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; flex: none;
  background: currentColor; box-shadow: 0 0 12px 2px var(--glow);
}
.eyebrow--plain::before { display: none; }
.display-xl, .display-l, .display-m {
  margin: 0; font-family: var(--font-display); overflow-wrap: break-word;
}
.display-xl { font-size: clamp(48px, 11vw, 140px); font-weight: 900; line-height: .9; letter-spacing: -.04em; }
.display-l { font-size: clamp(40px, 7.4vw, 96px); font-weight: 800; line-height: .94; letter-spacing: -.035em; }
.display-m { font-size: clamp(32px, 5vw, 64px); font-weight: 800; line-height: 1; letter-spacing: -.03em; }
.h3 { font-family: var(--font-display); font-size: clamp(20px, 2vw, 26px); font-weight: 600; line-height: 1.15; letter-spacing: -.015em; }
.lead { font-size: 20px; line-height: 1.55; color: var(--muted); max-width: 62ch; }
.muted { color: var(--muted); }
.mono { font-family: var(--font-mono); }
.text-orange { color: var(--orange); }
.text-gradient {
  background: linear-gradient(100deg, var(--orange) 0%, var(--orange-2) 38%, var(--amber) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.outline-text {
  color: transparent; -webkit-text-fill-color: transparent;
  -webkit-text-stroke: var(--stroke-w, 1px) var(--stroke, var(--text));
}
@media (max-width: 640px) {
  .lead { font-size: 17px; }
}
@media (max-width: 480px) {
  .display-xl, .display-l { hyphens: auto; -webkit-hyphens: auto; }
}

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--orange-2); font-weight: 700;
  transition: color .2s, gap .3s var(--ease);
}
.link-arrow .ico { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.link-arrow:hover { color: var(--amber); }
.link-arrow:hover .ico { transform: translateX(4px); }

/* buttons */
.btn {
  --btn-h: 50px;
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: var(--btn-h); padding: 0 24px;
  border-radius: 999px; border: 1px solid var(--line-2);
  background: transparent; color: var(--text);
  font: 700 15px/1 var(--font-body); letter-spacing: -.005em;
  white-space: nowrap; text-decoration: none; cursor: pointer; user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform .35s var(--ease), background-color .3s, border-color .3s, color .3s, box-shadow .45s var(--ease);
}
.btn .ico { width: 18px; height: 18px; }
.btn > .ico:last-child:not(:first-child) { transition: transform .35s var(--ease); }
.btn:hover > .ico:last-child:not(:first-child) { transform: translateX(3px); }
.btn::after {
  content: ""; position: absolute; top: -2px; bottom: -2px; left: -60%; width: 50%; z-index: -1;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg); opacity: 0; pointer-events: none;
}
.btn:hover::after { animation: pb-shine .9s var(--ease); }
@keyframes pb-shine {
  0% { opacity: 0; transform: skewX(-20deg) translateX(0); }
  15% { opacity: 1; }
  100% { opacity: 0; transform: skewX(-20deg) translateX(420%); }
}
.btn:hover { border-color: #4a4a4a; }
.btn:active { transform: translateY(1px) scale(.985); }
.btn--primary {
  background: linear-gradient(180deg, #ff6b17, var(--orange));
  border-color: rgba(255,140,60,.9);
  color: #0a0a0a;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 8px 30px -12px var(--glow);
}
.btn--primary:hover {
  border-color: #ff9a55;
  background: linear-gradient(180deg, #ff7c2e, #ff600a);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 0 0 4px rgba(255,90,0,.16), 0 14px 44px -8px var(--glow), 0 0 70px -12px var(--glow);
}
.btn--ghost { background: rgba(255,255,255,.01); border-color: var(--line-2); color: var(--text); }
.btn--ghost:hover { border-color: var(--orange); color: var(--orange-2); box-shadow: inset 0 0 24px -10px var(--glow), 0 0 30px -14px var(--glow); }
.btn--dark { background: var(--surface-2); border-color: var(--line-2); color: var(--text); }
.btn--dark:hover { background: #222; border-color: #474747; }
.btn--ghost::after, .btn--dark::after { background: linear-gradient(100deg, transparent, rgba(255,255,255,.14), transparent); }
.btn--lg { --btn-h: 60px; padding: 0 32px; font-size: 16px; }
.btn--sm { --btn-h: 38px; padding: 0 16px; font-size: 13.5px; gap: 8px; }
.btn--sm .ico { width: 16px; height: 16px; }
.btn--block { display: flex; width: 100%; }
.btn:disabled, .btn[aria-disabled="true"] { opacity: .45; pointer-events: none; box-shadow: none; }
.btn.is-loading { pointer-events: none; }
.btn.is-loading::before {
  content: ""; width: 14px; height: 14px; border-radius: 50%; flex: none;
  border: 2px solid currentColor; border-right-color: transparent;
  animation: pb-spin .7s linear infinite;
}
@keyframes pb-spin { to { transform: rotate(360deg); } }

.icon-btn {
  display: inline-grid; place-items: center; flex: none;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line-2); color: var(--text);
  transition: border-color .25s, color .25s, background-color .25s, transform .4s var(--ease);
}
.icon-btn:hover { border-color: var(--orange); color: var(--orange-2); background: rgba(255,90,0,.06); }
.icon-btn .ico { width: 18px; height: 18px; }

/* cards */
.card {
  position: relative; isolation: isolate;
  display: block;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  color: inherit;
  background:
    radial-gradient(520px circle at var(--mx, 50%) var(--my, 0px), rgb(255 90 0 / calc(var(--spot) * .09)), transparent 55%),
    linear-gradient(180deg, #141414, #0f0f0f);
  transition: transform .5s var(--ease), border-color .3s, box-shadow .5s var(--ease), --spot .45s;
}
.card:hover {
  --spot: 1;
  transform: translateY(-4px);
  border-color: var(--line-2);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.9);
}
.card--glow::before {
  content: ""; position: absolute; inset: -1px; z-index: 2;
  border-radius: inherit; padding: 1px; pointer-events: none;
  background:
    radial-gradient(280px circle at var(--mx, 50%) var(--my, 0px), var(--orange), transparent 70%),
    linear-gradient(160deg, rgba(255,122,31,.5), rgba(255,255,255,.04) 40%, rgba(255,255,255,.02) 60%, rgba(255,176,0,.35));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box exclude, linear-gradient(#000 0 0);
  opacity: 0; transition: opacity .45s var(--ease);
}
.card--glow:hover::before { opacity: 1; }
.card--glow:hover { border-color: rgba(255,90,0,.25); box-shadow: 0 30px 80px -34px var(--glow), 0 0 0 1px rgba(255,90,0,.08); }
[data-tilt] { position: relative; }
.card--tilt { transform-style: preserve-3d; transition: transform .7s var(--ease), border-color .3s, box-shadow .5s var(--ease), --spot .45s; }
[data-tilt].is-tilting { transition: transform .12s linear, border-color .3s, box-shadow .5s var(--ease), --spot .45s; }
.tilt-glare {
  position: absolute; inset: 0; z-index: 3; border-radius: inherit; pointer-events: none;
  background: radial-gradient(420px circle at var(--gx, 50%) var(--gy, 50%), rgba(255,255,255,.13), transparent 45%);
  opacity: 0; transition: opacity .4s;
}
[data-tilt].is-tilting .tilt-glare { opacity: 1; }
.glass {
  background: linear-gradient(180deg, rgba(30,30,30,.55), rgba(14,14,14,.42));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  backdrop-filter: blur(20px) saturate(150%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 24px 60px -30px rgba(0,0,0,.85);
}

/* chips + badges */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  height: 34px; padding: 0 14px;
  border-radius: 999px; border: 1px solid var(--line-2);
  background: rgba(255,255,255,.02); color: var(--muted);
  font: 600 12px/1 var(--font-mono); letter-spacing: .04em; white-space: nowrap;
  transition: color .2s, border-color .2s, background-color .2s, box-shadow .3s;
}
.chip .ico { width: 14px; height: 14px; }
a.chip:hover, button.chip:hover { color: var(--text); border-color: #555; }
.chip--orange { color: var(--orange-2); border-color: rgba(255,90,0,.45); background: rgba(255,90,0,.1); }
.chip.is-active, .chip[aria-pressed="true"] {
  color: #0a0a0a; background: var(--orange); border-color: var(--orange);
  box-shadow: 0 6px 22px -8px var(--glow);
}
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 9px; border-radius: 7px;
  font: 700 10.5px/1 var(--font-mono); letter-spacing: .12em; text-transform: uppercase;
  background: var(--surface-2); color: var(--text); border: 1px solid var(--line-2);
  white-space: nowrap;
}
.badge--new { background: var(--orange); color: #050505; border-color: transparent; box-shadow: 0 0 18px -4px var(--glow); }
.badge--live { color: var(--orange-2); background: rgba(255,90,0,.1); border-color: rgba(255,90,0,.35); }
.badge--live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); animation: pb-live 1.6s infinite;
}
@keyframes pb-live {
  0% { box-shadow: 0 0 0 0 rgba(255,90,0,.75); }
  70% { box-shadow: 0 0 0 7px rgba(255,90,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,90,0,0); }
}
.swatch {
  display: inline-block; flex: none;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--sw, #333);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 1px var(--line-2), inset 0 2px 4px rgba(255,255,255,.2), inset 0 -3px 6px rgba(0,0,0,.35);
  transition: box-shadow .25s, transform .3s var(--ease);
  cursor: pointer;
}
.swatch:hover { transform: scale(1.08); }
.swatch.is-active, .swatch[aria-pressed="true"], .swatch[aria-checked="true"] { box-shadow: 0 0 0 2px var(--orange), 0 0 18px -2px var(--glow), inset 0 2px 4px rgba(255,255,255,.2); }

/* forms */
.field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.field > label:not(.checkbox), .field__label {
  font: 600 11px/1.2 var(--font-mono); letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}
.field__hint { font-size: 12.5px; color: var(--dim); }
.field__error { font-size: 12.5px; color: #ff6b6b; }
.input, .textarea, .select {
  width: 100%; min-height: 50px; padding: 13px 16px;
  font: 500 16px/1.4 var(--font-body); color: var(--text);
  background: var(--bg-2);
  border: 1px solid var(--line-2); border-radius: 14px;
  outline: none; -webkit-appearance: none; appearance: none;
  transition: border-color .2s, box-shadow .25s, background-color .2s;
}
.input::placeholder, .textarea::placeholder { color: var(--dim); }
.input:hover, .textarea:hover, .select:hover { border-color: #474747; }
.input:focus, .textarea:focus, .select:focus {
  border-color: var(--orange); background: #0e0e0e;
  box-shadow: 0 0 0 4px rgba(255,90,0,.18), 0 0 30px -10px var(--glow);
}
.input[aria-invalid="true"], .textarea[aria-invalid="true"], .select[aria-invalid="true"] { border-color: var(--danger); }
.textarea { min-height: 140px; resize: vertical; }
.select {
  padding-right: 44px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff5a00' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; background-size: 16px;
}
.select option { background: #111; color: var(--text); }
.checkbox:not(input) {
  display: inline-flex; align-items: flex-start; gap: 12px;
  font-size: 15px; line-height: 1.45; color: var(--text); cursor: pointer;
}
input.checkbox, .checkbox input[type="checkbox"], .checkbox input[type="radio"] {
  -webkit-appearance: none; appearance: none;
  flex: none; display: inline-grid; place-items: center;
  width: 22px; height: 22px; margin: 0;
  border: 1px solid var(--line-2); border-radius: 7px;
  background: var(--bg-2); cursor: pointer;
  transition: background-color .2s, border-color .2s, box-shadow .25s;
}
.checkbox input[type="radio"] { border-radius: 50%; }
input.checkbox:hover, .checkbox:hover input { border-color: var(--orange); }
input.checkbox:checked, .checkbox input:checked {
  background: var(--orange); border-color: var(--orange);
  box-shadow: 0 0 16px -2px var(--glow);
}
input.checkbox:checked::after, .checkbox input[type="checkbox"]:checked::after {
  content: ""; width: 10px; height: 5px;
  border-left: 2px solid #050505; border-bottom: 2px solid #050505;
  transform: translateY(-1px) rotate(-45deg);
}
.checkbox input[type="radio"]:checked::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #050505; }

/* effects */
.marquee {
  --marquee-speed: 36s;
  position: relative; display: flex; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex; align-items: center; flex: none; width: max-content;
  animation: pb-marquee var(--marquee-speed) linear infinite;
}
.marquee__track > * { flex: none; padding-right: var(--marquee-gap, 48px); }
.marquee--reverse .marquee__track { animation-direction: reverse; }
.marquee--pause:hover .marquee__track { animation-play-state: paused; }
.marquee--big .marquee__track > * {
  font: 800 clamp(40px, 7vw, 96px)/1.1 var(--font-display); letter-spacing: -.04em;
}
.marquee--big .marquee__track > :nth-child(even) {
  color: transparent; -webkit-text-stroke: 1px var(--line-2);
}
@keyframes pb-marquee { to { transform: translate3d(-50%,0,0); } }

.glow-orb {
  position: absolute; z-index: 0; pointer-events: none;
  width: var(--size, 520px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,90,0,.9), rgba(255,90,0,.35) 35%, rgba(255,90,0,0) 70%);
  filter: blur(var(--blur, 50px));
  opacity: var(--o, .55);
  animation: pb-orb 16s ease-in-out infinite alternate;
}
.glow-orb--amber { background: radial-gradient(circle, rgba(255,176,0,.8), rgba(255,122,31,.3) 35%, transparent 70%); }
@keyframes pb-orb {
  0% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(4%,-6%,0) scale(1.08); }
  100% { transform: translate3d(-5%,4%,0) scale(.95); }
}
.grid-bg { position: relative; isolation: isolate; }
.grid-bg::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: linear-gradient(var(--grid-line) 1px, transparent 1px), linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: var(--grid-size, 64px) var(--grid-size, 64px);
  background-position: center top;
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 20%, transparent 80%);
  mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 20%, transparent 80%);
}
.noise { position: relative; isolation: isolate; }
.noise::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  background-image: var(--noise); background-size: 160px; opacity: .1;
}
.divider {
  display: block; height: 1px; width: 100%; border: 0; margin: 0;
  background: linear-gradient(90deg, transparent, var(--line-2) 18%, var(--line-2) 82%, transparent);
}
.divider--glow { background: linear-gradient(90deg, transparent, var(--orange) 50%, transparent); box-shadow: 0 0 18px var(--glow); }
.kbd {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 24px; height: 24px; padding: 0 7px;
  font: 600 11.5px/1 var(--font-mono); color: var(--text);
  background: var(--surface-2); border: 1px solid var(--line-2); border-bottom-width: 2px; border-radius: 6px;
}

/* reveal system (core.js adds .is-in) */
@keyframes rv-up { from { opacity: 0; transform: translate3d(0,32px,0); } }
@keyframes rv-left { from { opacity: 0; transform: translate3d(-48px,0,0); } }
@keyframes rv-right { from { opacity: 0; transform: translate3d(48px,0,0); } }
@keyframes rv-scale { from { opacity: 0; transform: scale(.92); } }
@keyframes rv-blur { from { opacity: 0; filter: blur(14px); transform: translate3d(0,12px,0); } }
@keyframes rv-word { from { transform: translate3d(0,112%,0); } }
@keyframes rv-show { to { opacity: 1; } }
[data-reveal]:not(.is-in), [data-reveal-stagger]:not(.is-in) > * { opacity: 0; }
[data-reveal].is-in { animation: rv-up .95s var(--ease-out) var(--reveal-delay, 0s) backwards; }
[data-reveal="left"].is-in { animation-name: rv-left; }
[data-reveal="right"].is-in { animation-name: rv-right; }
[data-reveal="scale"].is-in { animation-name: rv-scale; }
[data-reveal="blur"].is-in { animation-name: rv-blur; animation-duration: 1.1s; }
[data-reveal-stagger].is-in > * {
  animation: rv-up .85s var(--ease-out) backwards;
  animation-delay: calc(var(--i, 0) * var(--stagger, 70ms) + var(--reveal-delay, 0s));
}
[data-split] .split-word { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .14em; margin-bottom: -.14em; padding-right: .08em; margin-right: -.08em; }
[data-split] .split-inner { display: inline-block; }
[data-split]:not(.is-in) .split-inner { transform: translate3d(0,112%,0); }
[data-split].is-in .split-inner {
  animation: rv-word 1s var(--ease-out) backwards;
  animation-delay: calc(var(--i, 0) * 55ms + var(--reveal-delay, 0s));
}
/* failsafe when js never runs */
html:not(.pb-js) [data-reveal], html:not(.pb-js) [data-reveal-stagger] > * { animation: rv-show 0s 1.8s forwards; }
[data-count] { font-variant-numeric: tabular-nums; }

/* skeleton */
.skeleton {
  position: relative; overflow: hidden;
  min-height: 1em; border-radius: 10px;
  background: var(--surface-2);
  color: transparent !important;
}
.skeleton::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.06), rgba(255,122,31,.08), transparent);
  transform: translateX(-100%);
  animation: pb-shimmer 1.4s var(--ease) infinite;
}
.skeleton--text { height: .9em; margin: .45em 0; border-radius: 6px; }
.skeleton--circle { border-radius: 50%; }
@keyframes pb-shimmer { to { transform: translateX(100%); } }

/* page hero */
.page-hero {
  position: relative; isolation: isolate; overflow: clip;
  padding-block: clamp(72px, 10vw, 150px) clamp(56px, 7vw, 100px);
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: linear-gradient(var(--grid-line) 1px, transparent 1px), linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 64px 64px; background-position: center top;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, #000 25%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, #000 25%, transparent 75%);
}
.page-hero::after {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  width: min(780px, 130vw); aspect-ratio: 1; right: -12%; top: -45%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,90,0,.55), rgba(255,90,0,.14) 40%, transparent 70%);
  filter: blur(40px);
  animation: pb-orb 18s ease-in-out infinite alternate;
}
.page-hero .eyebrow { margin-bottom: 22px; }
.page-hero .lead { margin-top: 26px; max-width: 640px; }
.page-hero .row { margin-top: 36px; }

/* prose */
.prose { max-width: 72ch; font-size: 18px; line-height: 1.75; color: #d9d3cc; overflow-wrap: break-word; }
.prose > * + * { margin-top: 1.1em; }
.prose > :first-child { margin-top: 0; }
.prose h2 { font: 800 clamp(24px, 2.6vw, 32px)/1.15 var(--font-display); letter-spacing: -.02em; color: var(--text); margin-top: 2em; }
.prose h3 { font: 700 clamp(19px, 1.8vw, 22px)/1.25 var(--font-display); letter-spacing: -.01em; color: var(--text); margin-top: 1.7em; }
.prose h4 { font: 700 16px/1.3 var(--font-body); color: var(--text); text-transform: uppercase; letter-spacing: .06em; margin-top: 1.6em; }
.prose a { color: var(--orange-2); text-decoration: underline; text-decoration-color: rgba(255,122,31,.4); text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color .2s, text-decoration-color .2s; }
.prose a:hover { color: var(--amber); text-decoration-color: currentColor; }
.prose strong { color: var(--text); font-weight: 800; }
.prose em { color: var(--text); }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose ul { list-style: none; }
.prose li + li { margin-top: .45em; }
.prose ul > li { position: relative; }
.prose ul > li::before {
  content: ""; position: absolute; left: -1.15em; top: .72em;
  width: 6px; height: 6px; border-radius: 2px; background: var(--orange);
  box-shadow: 0 0 10px var(--glow);
}
.prose ol > li::marker { color: var(--orange); font-family: var(--font-mono); font-size: .85em; }
.prose code {
  font: 500 .86em/1.5 var(--font-mono);
  padding: .14em .45em; border-radius: 6px;
  background: var(--surface-2); border: 1px solid var(--line); color: var(--orange-2);
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
.prose pre {
  position: relative; margin-top: 1.4em; margin-bottom: 0;
  padding: 22px 22px; border-radius: 16px;
  background: linear-gradient(180deg, #0d0d0d, #080808); border: 1px solid var(--line);
  overflow-x: auto; font-size: 14px; line-height: 1.65; tab-size: 2;
}
.prose pre code { padding: 0; border: 0; background: none; color: #ebe5dd; font-size: inherit; line-height: inherit; }
.prose pre[data-lang]::before {
  content: attr(data-lang); position: absolute; top: 10px; right: 14px;
  font: 600 10px/1 var(--font-mono); letter-spacing: .14em; text-transform: uppercase; color: var(--dim);
}
.prose blockquote {
  margin: 1.6em 0 0; padding: 6px 0 6px 24px;
  border-left: 2px solid var(--orange);
  font-size: 1.12em; font-weight: 600; color: var(--text);
}
.prose blockquote > * + * { margin-top: .8em; }
.prose hr { border: 0; height: 1px; margin: 2.4em 0; background: linear-gradient(90deg, transparent, var(--line-2), transparent); }
.prose img { border-radius: var(--radius); border: 1px solid var(--line); }

/* table */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.01); }
.table { width: 100%; border-collapse: collapse; font-size: 15px; }
.table th, .table td { padding: 16px 20px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.table thead th {
  font: 600 11px/1.3 var(--font-mono); letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); background: var(--bg-2); white-space: nowrap;
}
.table tbody th { font-weight: 600; color: var(--muted); }
.table tbody tr { transition: background-color .2s; }
.table tbody tr:hover { background: rgba(255,90,0,.03); }
.table tr:last-child > * { border-bottom: 0; }
.table .is-highlight { color: var(--orange-2); }

/* tabs */
.tabs {
  display: inline-flex; gap: 4px; max-width: 100%;
  padding: 5px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255,255,255,.02);
  overflow-x: auto; scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  flex: none; height: 40px; padding: 0 18px; border-radius: 999px;
  font: 600 14px/1 var(--font-body); color: var(--muted);
  transition: color .2s, background-color .25s, box-shadow .3s;
}
.tab:hover { color: var(--text); background: rgba(255,255,255,.04); }
.tab.is-active, .tab[aria-selected="true"] { color: #0a0a0a; background: var(--orange); box-shadow: 0 6px 24px -8px var(--glow); }
[data-tab-panel].is-active { animation: rv-up .5s var(--ease-out); }

.stat__num { display: block; font: 900 clamp(40px, 5vw, 72px)/1 var(--font-display); letter-spacing: -.04em; }
.stat__label { display: block; margin-top: 10px; font: 600 11px/1.3 var(--font-mono); letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

/* ===== shell: header ===== */
#site-header, .site-header {
  position: relative; z-index: 100;
  display: block;
  height: calc(var(--bar-h) + var(--announce-h));
  transition: height .45s var(--ease);
}
#site-header.no-announce { --announce-h: 0px; }
.hdr { position: fixed; inset: 0 0 auto 0; z-index: 100; pointer-events: none; }
.hdr > * { pointer-events: auto; }

.announce {
  position: relative; overflow: hidden;
  height: var(--announce-h);
  display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 0 52px;
  background: linear-gradient(90deg, var(--ember), var(--orange) 45%, var(--orange-2));
  color: #0b0b0b;
  font: 700 13px/1 var(--font-body);
  white-space: nowrap;
  transition: height .45s var(--ease), opacity .3s;
}
.announce::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(100deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: pb-sweep 7s var(--ease) 1.2s infinite;
}
@keyframes pb-sweep { 0% { transform: translateX(-100%); } 30%, 100% { transform: translateX(100%); } }
.announce__pulse { width: 7px; height: 7px; border-radius: 50%; background: #0b0b0b; flex: none; animation: pb-blink 1.4s steps(2) infinite; }
@keyframes pb-blink { 50% { opacity: .25; } }
.announce__msg { overflow: hidden; text-overflow: ellipsis; }
.announce a { display: inline-flex; align-items: center; gap: 4px; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.announce a .ico { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.announce a:hover .ico { transform: translateX(3px); }
.announce__close {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center; color: #0b0b0b;
  transition: background-color .2s;
}
.announce__close:hover { background: rgba(0,0,0,.14); }
.announce__close .ico { width: 15px; height: 15px; }
.site-header.is-scrolled .announce, html.menu-open .announce { height: 0; opacity: 0; }
@media (max-width: 600px) {
  .announce { justify-content: flex-start; padding: 0 44px 0 16px; font-size: 12.5px; gap: 10px; }
  .announce__more { display: none; }
}

.hdr-bar {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: clamp(12px, 2vw, 28px);
  height: var(--bar-h);
  width: min(100%, var(--maxw));
  margin: 0 auto;
  padding-inline: var(--gutter);
  border: 1px solid transparent; border-radius: 0;
  transition: width .55s var(--ease), height .55s var(--ease), margin .55s var(--ease), border-radius .55s var(--ease), background-color .4s, border-color .4s, box-shadow .4s;
}
.site-header.is-scrolled .hdr-bar {
  width: min(calc(100% - 20px), calc(var(--maxw) - 24px));
  height: calc(var(--bar-h) - 14px);
  margin-top: 10px;
  border-radius: 18px;
  background: rgba(10,10,10,.66);
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 18px 50px -20px rgba(0,0,0,.9), inset 0 1px 0 rgba(255,255,255,.05);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
}
@media (max-width: 640px) {
  .site-header.is-scrolled .hdr-bar { width: calc(100% - 16px); margin-top: 8px; height: calc(var(--bar-h) - 8px); padding-inline: 12px; border-radius: 16px; }
}

.logo { display: inline-flex; align-items: center; flex: none; color: var(--text); }
.logo__svg { height: 25px; width: auto; overflow: visible; }
.logo__dot { transform-box: fill-box; transform-origin: center; filter: drop-shadow(0 0 6px rgba(255,90,0,.8)); }
.logo:hover .logo__dot { animation: pb-dot .7s var(--ease); }
@keyframes pb-dot { 0% { transform: scale(1); } 35% { transform: scale(1.8); } 70% { transform: scale(.8); } 100% { transform: scale(1); } }
@media (max-width: 640px) { .logo__svg { height: 21px; } }

.nav { margin-inline: auto; }
.nav__list { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav__item { position: static; }
.nav__link {
  position: relative;
  display: inline-flex; align-items: center; gap: 6px;
  height: 40px; padding: 0 14px; border-radius: 999px;
  font: 600 14px/1 var(--font-body); color: var(--muted);
  transition: color .2s, background-color .2s;
}
.nav__link .ico { width: 14px; height: 14px; transition: transform .35s var(--ease); }
.nav__link:hover, .nav__item.is-open > .nav__link { color: var(--text); background: rgba(255,255,255,.05); }
.nav__link[aria-expanded="true"] .ico { transform: rotate(180deg); }
.nav__link.is-active { color: var(--text); }
.nav__link.is-active::after {
  content: ""; position: absolute; left: 50%; bottom: 3px;
  width: 4px; height: 4px; margin-left: -2px; border-radius: 50%;
  background: var(--orange); box-shadow: 0 0 8px var(--orange);
}
.nav__trigger.is-active::after { margin-left: -9px; }

.mega {
  position: absolute; top: calc(100% + 8px); left: 50%;
  display: grid; grid-template-columns: auto 240px; gap: 8px;
  width: max-content; max-width: calc(100vw - 32px);
  padding: 8px; border-radius: 22px;
  background: linear-gradient(180deg, #121212, #0b0b0b);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.95), 0 0 80px -40px var(--glow);
  opacity: 0; visibility: hidden;
  transform: translate(-50%, 10px) scale(.985); transform-origin: top center;
  transition: opacity .25s var(--ease), transform .4s var(--ease), visibility 0s linear .4s;
}
.mega::before { content: ""; position: absolute; left: 0; right: 0; top: -30px; height: 30px; }
.mega::after {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,122,31,.55), rgba(255,255,255,.03) 45%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box exclude, linear-gradient(#000 0 0);
}
.nav__item.is-open .mega { opacity: 1; visibility: visible; transform: translate(-50%, 0) scale(1); transition-delay: 0s; }
.mega__links { list-style: none; margin: 0; padding: 4px; display: grid; grid-template-columns: repeat(2, 262px); gap: 2px; align-content: start; }
.mega--one .mega__links { grid-template-columns: 262px; }
.mega__link {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px; border-radius: 14px;
  transition: background-color .2s;
}
.mega__link:hover, .mega__link:focus-visible { background: rgba(255,255,255,.045); }
.mega__link:focus-visible { outline-offset: -2px; }
.mega__icon {
  flex: none; display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 12px;
  color: var(--orange);
  background: rgba(255,90,0,.1); border: 1px solid rgba(255,90,0,.22);
  transition: background-color .25s, color .25s, box-shadow .3s, transform .4s var(--ease);
}
.mega__icon .ico { width: 20px; height: 20px; }
.mega__link:hover .mega__icon { background: var(--orange); color: #050505; box-shadow: 0 0 26px -4px var(--glow); transform: rotate(-6deg) scale(1.05); }
.mega__text { min-width: 0; }
.mega__text strong { display: flex; align-items: center; gap: 8px; font: 700 14.5px/1.3 var(--font-body); color: var(--text); }
.mega__text small { display: block; margin-top: 4px; font-size: 12.5px; line-height: 1.45; color: var(--muted); }
.mega__link.is-active strong::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 8px var(--orange); }
.mega__feature {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 8px;
  min-height: 210px; padding: 20px; border-radius: 16px;
  background:
    radial-gradient(300px circle at var(--mx, 80%) var(--my, 0px), rgba(255,90,0,.38), transparent 60%),
    linear-gradient(160deg, #1b1b1b, #0d0d0d);
  border: 1px solid var(--line);
  transition: border-color .3s;
}
.mega__feature::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image: linear-gradient(var(--grid-line) 1px, transparent 1px), linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 80%);
  mask-image: linear-gradient(180deg, #000, transparent 80%);
}
.mega__feature:hover { border-color: rgba(255,90,0,.4); }
.mega__art { position: absolute; top: 16px; right: 16px; width: 64px; height: 64px; color: var(--orange); filter: drop-shadow(0 0 16px var(--glow)); transition: transform .6s var(--ease); }
.mega__art .ico { width: 100%; height: 100%; stroke-width: 1.2; }
.mega__feature:hover .mega__art { transform: rotate(-10deg) scale(1.06); }
.mega__feature .eyebrow { font-size: 10.5px; }
.mega__feature strong { font: 800 20px/1.1 var(--font-display); letter-spacing: -.02em; }
.mega__feature > span:not(.eyebrow):not(.mega__art):not(.link-arrow) { font-size: 13px; line-height: 1.45; color: var(--muted); }
.mega__feature .link-arrow { font-size: 13px; margin-top: 4px; }

.hdr-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
@media (min-width: 1081px) { .hdr-actions { margin-left: 0; } }
.hdr-link {
  display: inline-flex; align-items: center; gap: 8px;
  height: 40px; padding: 0 12px; border-radius: 999px;
  font: 600 13.5px/1 var(--font-body); color: var(--muted);
  transition: color .2s, background-color .2s;
}
.hdr-link .ico { width: 17px; height: 17px; }
.hdr-link:hover, .hdr-link.is-active { color: var(--text); background: rgba(255,255,255,.05); }
.cart-btn {
  position: relative; flex: none;
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line-2); color: var(--text);
  transition: border-color .25s, color .25s, box-shadow .3s, background-color .25s;
}
.cart-btn .ico { width: 19px; height: 19px; }
.cart-btn:hover { border-color: var(--orange); color: var(--orange-2); box-shadow: 0 0 24px -8px var(--glow); }
.cart-badge {
  position: absolute; top: -5px; right: -6px;
  min-width: 20px; height: 20px; padding: 0 6px; border-radius: 999px;
  background: var(--orange); color: #050505;
  font: 700 11px/20px var(--font-mono); text-align: center;
  box-shadow: 0 0 0 3px var(--bg), 0 0 16px var(--glow);
  transition: transform .35s var(--ease);
}
.cart-badge.is-empty { transform: scale(0); }
.cart-badge.is-bump { animation: pb-bump .55s var(--ease); }
@keyframes pb-bump { 0% { transform: scale(1); } 30% { transform: scale(1.5); } 60% { transform: scale(.88); } 100% { transform: scale(1); } }

.burger {
  display: none; position: relative; flex: none;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line-2);
  transition: border-color .25s;
}
.burger:hover { border-color: var(--orange); }
.burger span {
  position: absolute; left: 13px; right: 13px; height: 1.5px; border-radius: 2px;
  background: var(--text);
  transition: transform .45s var(--ease), top .45s var(--ease), background-color .2s;
}
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 25px; }
html.menu-open .burger span:nth-child(1) { top: 21px; transform: rotate(45deg); background: var(--orange); }
html.menu-open .burger span:nth-child(2) { top: 21px; transform: rotate(-45deg); background: var(--orange); }

@media (max-width: 1080px) {
  .nav { display: none; }
  .burger { display: block; }
}
@media (max-width: 640px) {
  .hdr-link { display: none; }
  .hdr-actions { gap: 6px; }
}
@media (max-width: 359px) {
  .hdr-shop { display: none; }
}

/* mobile menu */
.mnav {
  position: fixed; inset: 0; z-index: 1;
  overflow-y: auto; overscroll-behavior: contain;
  padding: calc(var(--bar-h) + 28px) var(--gutter) 40px;
  background:
    radial-gradient(120% 60% at 100% 0%, rgba(255,90,0,.24), transparent 60%),
    radial-gradient(80% 40% at 0% 100%, rgba(255,90,0,.1), transparent 70%),
    var(--bg);
  clip-path: circle(0% at calc(100% - 44px) 36px);
  visibility: hidden;
  transition: clip-path .7s var(--ease), visibility 0s linear .7s;
}
.mnav::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(var(--grid-line) 1px, transparent 1px), linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 70%);
  mask-image: linear-gradient(180deg, #000, transparent 70%);
}
html.menu-open .mnav { clip-path: circle(150% at calc(100% - 44px) 36px); visibility: visible; transition: clip-path .85s var(--ease); }
.mnav__inner { position: relative; max-width: 640px; margin: 0 auto; }
.mnav__list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.mnav__list li { border-bottom: 1px solid var(--line); overflow: hidden; }
.mnav__link {
  display: flex; align-items: baseline; gap: 14px;
  padding: 14px 0;
  font: 800 clamp(28px, 8.4vw, 46px)/1.05 var(--font-display); letter-spacing: -.035em;
  color: var(--text);
  transform: translate3d(0,105%,0); opacity: 0;
  transition: transform .7s var(--ease), opacity .5s, color .2s;
  transition-delay: calc(var(--i, 0) * 55ms + 120ms);
}
.mnav__link small { font: 600 11px/1 var(--font-mono); letter-spacing: .1em; color: var(--orange); transform: translateY(-.9em); }
.mnav__link:hover, .mnav__link.is-active { color: var(--orange); }
html.menu-open .mnav__link { transform: none; opacity: 1; }
.mnav__label { margin: 30px 0 12px; font: 600 11px/1 var(--font-mono); letter-spacing: .2em; text-transform: uppercase; color: var(--dim); }
.mnav__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.mnav__chips .chip.is-active { color: #0a0a0a; }
.mnav__cta { display: grid; gap: 10px; margin-top: 30px; }
.mnav__label, .mnav__chips, .mnav__cta { opacity: 0; transform: translateY(16px); transition: opacity .5s, transform .6s var(--ease); }
html.menu-open .mnav__label, html.menu-open .mnav__chips, html.menu-open .mnav__cta { opacity: 1; transform: none; transition-delay: .5s; }
@media (min-width: 1081px) { .mnav { display: none; } }

/* scroll progress */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; z-index: 150;
  height: 2px; pointer-events: none;
  transform-origin: 0 50%; transform: scaleX(0);
  background: linear-gradient(90deg, var(--ember), var(--orange), var(--amber));
  box-shadow: 0 0 12px var(--glow);
}

/* cursor */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9100;
  pointer-events: none; border-radius: 50%;
  opacity: 0; will-change: transform;
}
.cursor-on .cursor-dot, .cursor-on .cursor-ring { opacity: 1; }
.cursor-dot { width: 6px; height: 6px; margin: -3px 0 0 -3px; background: var(--orange); box-shadow: 0 0 10px var(--orange); transition: opacity .3s, width .25s, height .25s, margin .25s; }
.cursor-ring {
  width: 36px; height: 36px; margin: -18px 0 0 -18px;
  border: 1px solid rgba(255,122,31,.55);
  display: grid; place-items: center;
  transition: opacity .3s, width .35s var(--ease), height .35s var(--ease), margin .35s var(--ease), background-color .3s, border-color .3s;
}
.cursor-ring.is-hover { width: 60px; height: 60px; margin: -30px 0 0 -30px; background: rgba(255,90,0,.08); border-color: var(--orange); }
.cursor-ring.is-label { width: 88px; height: 88px; margin: -44px 0 0 -44px; background: var(--orange); border-color: var(--orange); }
.cursor-ring.is-down { width: 26px; height: 26px; margin: -13px 0 0 -13px; }
.cursor-ring.is-text { opacity: 0 !important; }
.cursor-label { font: 700 10px/1 var(--font-mono); letter-spacing: .12em; text-transform: uppercase; color: #050505; opacity: 0; transition: opacity .2s; }
.cursor-ring.is-label .cursor-label { opacity: 1; }
.cursor-ring.is-label + .cursor-dot, .cursor-dot.is-hidden { opacity: 0; }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* cart drawer */
.drawer-scrim {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.62);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: opacity .45s var(--ease), visibility 0s linear .45s;
}
html.cart-open .drawer-scrim { opacity: 1; visibility: visible; transition: opacity .45s var(--ease); }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 210;
  width: min(460px, 100%);
  display: flex; flex-direction: column;
  background: linear-gradient(180deg, #101010, #070707);
  border-left: 1px solid var(--line);
  box-shadow: -40px 0 90px -20px rgba(0,0,0,.85);
  transform: translate3d(104%,0,0); visibility: hidden;
  transition: transform .6s var(--ease), visibility 0s linear .6s;
  overflow: hidden; isolation: isolate;
}
.drawer::before {
  content: ""; position: absolute; z-index: -1; top: -200px; right: -160px;
  width: 420px; height: 420px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(255,90,0,.28), transparent 65%);
  filter: blur(20px);
}
html.cart-open .drawer { transform: none; visibility: visible; transition: transform .6s var(--ease); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px 18px; border-bottom: 1px solid var(--line); }
.drawer__head .eyebrow { font-size: 10.5px; margin-bottom: 8px; }
.drawer__title { font: 800 24px/1 var(--font-display); letter-spacing: -.03em; }
.drawer__count { color: var(--orange); }
.drawer__ship { padding: 14px 24px 16px; border-bottom: 1px solid var(--line); font-size: 13.5px; color: var(--muted); }
.drawer__ship strong { color: var(--text); }
.ship-bar { position: relative; height: 4px; margin-top: 10px; border-radius: 4px; background: var(--surface-2); overflow: hidden; }
.ship-bar > span {
  position: absolute; inset: 0 auto 0 0; width: var(--p, 0%); border-radius: inherit;
  background: linear-gradient(90deg, var(--ember), var(--orange), var(--amber));
  box-shadow: 0 0 12px var(--glow);
  transition: width .6s var(--ease);
}
.drawer__body { flex: 1; min-height: 0; overflow-y: auto; overscroll-behavior: contain; padding: 4px 24px; }
.drawer__items { list-style: none; margin: 0; padding: 0; }
.drawer__warn { margin: 16px 0 4px; padding: 12px 14px; border-radius: 12px; border: 1px solid rgba(255,77,77,.3); background: rgba(255,77,77,.06); font-size: 13.5px; color: #ffb3b3; display: flex; gap: 10px; align-items: center; justify-content: space-between; }
.drawer__warn button { font-weight: 700; color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
.drawer__foot { padding: 18px 24px 24px; border-top: 1px solid var(--line); background: rgba(8,8,8,.9); display: grid; gap: 10px; }
.drawer__row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.drawer__row span { font: 600 11px/1 var(--font-mono); letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.drawer__row strong { font: 800 26px/1 var(--font-display); letter-spacing: -.03em; }
.drawer__note { font-size: 12.5px; color: var(--dim); margin-bottom: 6px; }
.drawer__empty { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; padding: 56px 8px 40px; }
.drawer__empty .muted { font-size: 14.5px; max-width: 30ch; margin-bottom: 10px; }
.empty-watch {
  position: relative; width: 74px; height: 88px; margin-bottom: 18px; border-radius: 20px;
  border: 1.5px dashed var(--line-2);
  display: grid; place-items: center;
  animation: pb-float 5s ease-in-out infinite;
}
.empty-watch::before, .empty-watch::after { content: ""; position: absolute; left: 18px; right: 18px; height: 26px; border: 1.5px dashed var(--line-2); }
.empty-watch::before { bottom: 100%; border-bottom: 0; border-radius: 10px 10px 0 0; }
.empty-watch::after { top: 100%; border-top: 0; border-radius: 0 0 10px 10px; }
.empty-watch span { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 14px var(--orange); animation: pb-blink 1.6s steps(2) infinite; }
@keyframes pb-float { 50% { transform: translateY(-8px) rotate(-3deg); } }

.ci { display: grid; grid-template-columns: 72px minmax(0,1fr) auto; gap: 16px; align-items: start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.ci:last-child { border-bottom: 0; }
.drawer__items.is-anim .ci { animation: rv-right .6s var(--ease-out) backwards; animation-delay: calc(var(--d, 0ms) + 120ms); }
.ci__thumb {
  position: relative; isolation: isolate;
  width: 72px; height: 72px; border-radius: 16px;
  display: grid; place-items: center; overflow: hidden;
  background: radial-gradient(circle at 30% 15%, rgba(255,90,0,.22), transparent 60%), var(--surface);
  border: 1px solid var(--line);
}
.ci__info { min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.ci__name { font-weight: 700; font-size: 15px; line-height: 1.3; transition: color .2s; }
.ci__name:hover { color: var(--orange-2); }
.ci__variant { font: 500 12px/1.3 var(--font-mono); color: var(--muted); display: inline-flex; align-items: center; gap: 7px; }
.ci__variant::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--sw, #444); box-shadow: 0 0 0 1px rgba(255,255,255,.2); }
.ci__ctrl { display: flex; align-items: center; gap: 14px; margin-top: 10px; flex-wrap: wrap; }
.ci__remove { font-size: 12.5px; font-weight: 600; color: var(--dim); text-decoration: underline; text-underline-offset: 3px; transition: color .2s; }
.ci__remove:hover { color: var(--danger); }
.ci__price { text-align: right; font: 700 15px/1.3 var(--font-body); white-space: nowrap; }
.ci__unit { display: block; margin-top: 4px; font: 500 11px/1.2 var(--font-mono); color: var(--dim); }
.ci--skeleton .skeleton { border-radius: 8px; }

.gl { position: relative; display: block; width: 30px; height: 36px; border-radius: 9px; background: var(--sw, #2a2a2a); box-shadow: inset 0 0 0 1px rgba(255,255,255,.2), 0 6px 14px -4px rgba(0,0,0,.8); }
.gl::before { content: ""; position: absolute; left: 6px; right: 6px; top: -18px; bottom: -18px; z-index: -1; border-radius: 5px; background: linear-gradient(90deg, #161616, #262626, #161616); }
.gl::after { content: ""; position: absolute; inset: 5px; border-radius: 4px; background: linear-gradient(135deg, #1d1d1d, #0a0a0a); box-shadow: inset 0 0 0 1px rgba(255,90,0,.4); }
.gl--round { width: 36px; height: 36px; border-radius: 50%; }
.gl--round::before { left: 9px; right: 9px; }
.gl--round::after { inset: 4px; border-radius: 50%; }
.gl--ring { width: 36px; height: 36px; border-radius: 50%; background: transparent; border: 7px solid var(--sw, #999); box-shadow: 0 0 0 1px rgba(255,255,255,.12), inset 0 0 0 1px rgba(0,0,0,.4), 0 8px 18px -6px rgba(0,0,0,.9); }
.gl--ring::before { display: none; }
.gl--ring::after { inset: auto; top: -9px; left: 50%; width: 8px; height: 4px; margin-left: -4px; border-radius: 2px; background: var(--orange); box-shadow: none; }
.gl--acc { width: 20px; height: 48px; border-radius: 7px; }
.gl--acc::before { display: none; }
.gl--acc::after { inset: auto; left: 3px; right: 3px; top: 14px; height: 10px; border-radius: 2px; background: none; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.55); }

.qty { display: inline-flex; align-items: center; height: 36px; border: 1px solid var(--line-2); border-radius: 999px; overflow: hidden; background: rgba(255,255,255,.02); }
.qty__btn { width: 34px; height: 100%; display: grid; place-items: center; color: var(--muted); transition: color .2s, background-color .2s; }
.qty__btn .ico { width: 15px; height: 15px; }
.qty__btn:hover { color: var(--text); background: rgba(255,255,255,.06); }
.qty__btn:disabled { opacity: .3; pointer-events: none; }
.qty__val { min-width: 26px; text-align: center; font: 600 13px/1 var(--font-mono); font-variant-numeric: tabular-nums; }

/* toasts */
.toasts {
  position: fixed; right: 20px; bottom: 20px; z-index: 300;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
  width: min(390px, calc(100vw - 32px));
  pointer-events: none;
}
.toast {
  pointer-events: auto; position: relative; overflow: hidden;
  display: flex; align-items: center; gap: 12px; width: 100%;
  padding: 12px 10px 12px 12px; border-radius: 16px;
  background: rgba(20,20,20,.92);
  -webkit-backdrop-filter: blur(16px) saturate(140%); backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 24px 50px -20px rgba(0,0,0,.9);
  font-size: 14px; line-height: 1.4; font-weight: 600;
  opacity: 0; transform: translate3d(0,18px,0) scale(.96);
  transition: opacity .35s var(--ease), transform .5s var(--ease);
}
.toast.is-in { opacity: 1; transform: none; }
.toast.is-out { opacity: 0; transform: translate3d(40px,0,0); }
.toast__icon { flex: none; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.07); color: var(--text); }
.toast__icon .ico { width: 16px; height: 16px; stroke-width: 2.2; }
.toast__msg { flex: 1; min-width: 0; overflow-wrap: anywhere; }
.toast__close { flex: none; display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; color: var(--dim); transition: color .2s, background-color .2s; }
.toast__close:hover { color: var(--text); background: rgba(255,255,255,.07); }
.toast__close .ico { width: 14px; height: 14px; }
.toast__bar { position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--muted); transform-origin: left; animation: pb-toastbar var(--dur, 4s) linear forwards; opacity: .6; }
@keyframes pb-toastbar { to { transform: scaleX(0); } }
.toast--success { border-color: rgba(255,90,0,.35); }
.toast--success .toast__icon { background: var(--orange); color: #050505; box-shadow: 0 0 18px -2px var(--glow); }
.toast--success .toast__bar { background: var(--orange); }
.toast--error { border-color: rgba(255,77,77,.4); }
.toast--error .toast__icon { background: rgba(255,77,77,.16); color: #ff7070; }
.toast--error .toast__bar { background: var(--danger); }
.toast--info .toast__icon { color: var(--amber); }
html.cart-open .toasts { right: calc(min(460px, 100%) + 20px); }
@media (max-width: 640px) {
  .toasts { left: 12px; right: 12px; bottom: 12px; width: auto; }
  html.cart-open .toasts { right: 12px; top: 12px; bottom: auto; }
}
@media (min-width: 641px) and (max-width: 900px) {
  html.cart-open .toasts { right: auto; left: 16px; width: min(390px, calc(100vw - 492px)); }
}

/* ===== shell: footer ===== */
.site-footer {
  position: relative; isolation: isolate; overflow: clip;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(900px 420px at 50% 110%, rgba(255,90,0,.24), transparent 70%),
    var(--bg);
}
.site-footer::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: linear-gradient(var(--grid-line) 1px, transparent 1px), linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(0deg, #000, transparent 55%);
  mask-image: linear-gradient(0deg, #000, transparent 55%);
}
.ft-top { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.55fr); gap: clamp(40px, 6vw, 88px); padding-block: clamp(64px, 9vw, 110px) 56px; }
.ft-news .display-m { font-size: clamp(30px, 3.4vw, 46px); margin: 18px 0 16px; }
.ft-news p.muted { max-width: 42ch; font-size: 15.5px; }
.ft-form {
  display: flex; gap: 6px; margin-top: 26px; padding: 6px;
  border-radius: 999px; border: 1px solid var(--line-2);
  background: rgba(255,255,255,.02);
  transition: border-color .25s, box-shadow .3s;
  max-width: 480px;
}
.ft-form:focus-within { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,90,0,.14), 0 0 40px -12px var(--glow); }
.ft-form .input { flex: 1; min-width: 0; min-height: 46px; border: 0; background: transparent; border-radius: 999px; padding: 10px 16px; box-shadow: none; }
.ft-form .input:focus { box-shadow: none; background: transparent; }
.ft-form .btn { flex: none; --btn-h: 46px; }
.ft-form.is-done { border-color: rgba(255,90,0,.5); }
.ft-fine { margin-top: 12px; font-size: 12px; color: var(--dim); }
.ft-cols { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 28px 20px; }
.ft-col h3 { margin-bottom: 18px; font: 600 11px/1.2 var(--font-mono); letter-spacing: .18em; text-transform: uppercase; color: var(--dim); }
.ft-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.ft-col a { position: relative; font-size: 14.5px; color: var(--muted); transition: color .2s; }
.ft-col a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 1px;
  background: var(--orange); transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.ft-col a:hover { color: var(--text); }
.ft-col a:hover::after { transform: scaleX(1); transform-origin: left; }
.ft-mid { display: grid; grid-template-columns: minmax(0,1.6fr) minmax(0,1fr); gap: 28px 48px; padding-block: 32px; border-top: 1px solid var(--line); }
.ft-label { margin-bottom: 14px; font: 600 11px/1.2 var(--font-mono); letter-spacing: .18em; text-transform: uppercase; color: var(--dim); }
.ft-pills { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.ft-pill {
  display: inline-flex; align-items: center; gap: 6px;
  height: 34px; padding: 0 12px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255,255,255,.015);
  font: 500 12.5px/1 var(--font-mono); color: var(--muted);
  transition: border-color .25s, color .25s, background-color .25s;
}
.ft-pill .ico { width: 13px; height: 13px; transition: transform .3s var(--ease); color: var(--orange); }
.ft-pill:hover { border-color: rgba(255,90,0,.5); color: var(--text); background: rgba(255,90,0,.06); }
.ft-pill:hover .ico { transform: translate(2px,-2px); }
.ft-social { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.social {
  display: inline-flex; align-items: center; gap: 9px;
  height: 40px; padding: 0 10px 0 12px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--muted);
  font-size: 13px; font-weight: 600;
  cursor: default;
  transition: border-color .25s, color .25s;
}
.social svg { width: 16px; height: 16px; fill: currentColor; }
.social:hover { color: var(--text); border-color: var(--line-2); }
.social__soon { padding: 4px 6px; border-radius: 6px; background: rgba(255,90,0,.12); color: var(--orange-2); font: 700 9.5px/1 var(--font-mono); letter-spacing: .12em; text-transform: uppercase; }
.ft-mark {
  display: block; margin: 0; padding-top: 12px;
  font: 900 min(19vw, 300px)/.8 var(--font-display); letter-spacing: -.06em;
  text-align: center; white-space: nowrap; user-select: none; cursor: default;
  color: transparent; -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.16);
  background: linear-gradient(0deg, var(--orange), var(--orange-2) 55%, var(--amber)) no-repeat 50% 100% / 100% 0%;
  -webkit-background-clip: text; background-clip: text;
  transition: background-size 1s var(--ease), -webkit-text-stroke-color .6s;
  transform: translateY(.1em);
}
.ft-mark:hover { background-size: 100% 100%; -webkit-text-stroke-color: var(--orange); }
.ft-bottom {
  position: relative;
  border-top: 1px solid var(--line);
  font: 500 12px/1.4 var(--font-mono); color: var(--dim);
  background: var(--bg);
}
.ft-bottom__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 24px; padding-block: 22px 28px; }
.ft-bottom a, .ft-bottom button { color: var(--muted); transition: color .2s; }
.ft-bottom a:hover, .ft-bottom button:hover { color: var(--orange-2); }
.ft-bottom__links { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.ft-top-btn { display: inline-flex; align-items: center; gap: 6px; font: inherit; }
.ft-top-btn .ico { width: 14px; height: 14px; }
@media (max-width: 1024px) {
  .ft-top { grid-template-columns: minmax(0,1fr); }
  .ft-cols { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .ft-mid { grid-template-columns: minmax(0,1fr); }
}
@media (max-width: 560px) {
  .ft-cols { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ft-form { flex-direction: column; border-radius: 22px; }
  .ft-form .btn { width: 100%; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    animation-delay: 0s !important;
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
  }
  body::before { display: none; }
  body::after { animation: none !important; }
  .marquee__track, .glow-orb, .page-hero::after { animation: none !important; }
  [data-reveal]:not(.is-in), [data-reveal-stagger]:not(.is-in) > * { opacity: 1; }
  [data-split]:not(.is-in) .split-inner { transform: none; }
}
