/* BACKPACA — the Backpack alpaca. Palette measured from the renders (art/sample_colors.py):
   dawn sky slate #6e7f95, apricot #f2cea1, pack red #97171f, fleece oat #c7b492, straw #a38c5c, night #0d1627.
   Rule: the red is ONLY the pack, the tag string and the primary Buy button. Never a surface.
   Motion: html.rm = reduced (soft fades only). Hidden-until-seen states are gated on html.js:not(.rm).
   No inline style="" anywhere: the CSP blocks it. Per-element values live here. */
:root {
  --frost: #e8ecf0;
  --frost-2: #d9e0e7;
  --frost-3: #c3ccd6;
  --slate: #46556a;
  --basalt: #1c2127;
  --basalt-2: #272e36;
  --night: #0d1627;
  --ink: #1c2127;
  --ink-soft: #46505c;
  --red: #b3161f;
  --red-deep: #8e1118;
  --oat: #c7b492;
  --straw: #a38c5c;
  --apricot: #f2cea1;
  --line: rgba(28, 33, 39, .16);
  --line-l: rgba(232, 236, 240, .22);
  --f-display: 'Poltawski Nowy', Georgia, serif;
  --f-cond: 'Alumni Sans', 'Arial Narrow', sans-serif;
  --f-body: 'Pathway Extreme', 'Segoe UI', sans-serif;
  --f-mono: 'Iosevka Charon Mono', Consolas, monospace;
  --gutter: clamp(16px, 4vw, 52px);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --spring: cubic-bezier(.34, 1.56, .64, 1);
}
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html.rm { scroll-behavior: auto; }
body { margin: 0; background: var(--frost); color: var(--ink); font: 400 17px/1.6 var(--f-body); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--ink); text-underline-offset: 3px; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 6px; }
em { font-style: italic; }
.wrap { width: min(1180px, 100% - 2 * var(--gutter)); margin-inline: auto; }
.skip { position: absolute; left: -999px; top: 8px; z-index: 100; background: var(--basalt); color: var(--frost); padding: 10px 14px; border-radius: 8px; }
.skip:focus { left: 12px; }
.red { color: var(--red-deep); }

/* ---------- type ---------- */
.kicker { font: 500 15px/1.2 var(--f-cond); letter-spacing: .22em; text-transform: uppercase; color: var(--slate); margin: 0 0 14px; }
.kicker i { font-style: normal; opacity: .6; margin: 0 .45em; }
h1, h2, h3 { font-family: var(--f-display); font-weight: 400; margin: 0; letter-spacing: -.01em; text-wrap: balance; }
h2 { font-size: clamp(34px, 4.8vw, 62px); line-height: 1.04; }
h2 em { font-style: italic; color: var(--ink-soft); }
.sec-head { margin-bottom: clamp(28px, 4vw, 48px); max-width: 780px; }
.lede { color: var(--ink-soft); margin: 16px 0 0; max-width: 640px; font-size: 18px; }
section { padding: clamp(84px, 12vh, 140px) 0; scroll-margin-top: 66px; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 12px 22px; border-radius: 999px; border: 1px solid transparent; cursor: pointer; text-decoration: none;
  font: 600 14px/1 var(--f-body); letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; position: relative; overflow: hidden; isolation: isolate;
  transition: transform .25s var(--ease), background-color .25s, border-color .25s, color .25s, box-shadow .25s; }
.btn img { flex: none; background: #fff; border-radius: 50%; padding: 3px; box-sizing: content-box; }
.btn.buy { background-color: var(--red); color: #fff; box-shadow: 0 10px 26px -12px rgba(179, 22, 31, .8); }
.btn.buy:hover { background-color: var(--red-deep); color: #fff; transform: translateY(-2px); }
.btn.buy::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, .35) 48%, transparent 66%); transform: translateX(-120%); }
html:not(.rm) .btn.buy:hover::after { transition: transform .8s var(--ease); transform: translateX(120%); }
.btn.ghost { border-color: rgba(28, 33, 39, .35); color: var(--ink); background: rgba(255, 255, 255, .55); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.btn.ghost:hover { border-color: var(--ink); background: #fff; transform: translateY(-2px); }
.btn.lg { min-height: 56px; padding: 16px 28px; font-size: 15px; }
.btn.sm { min-height: 38px; padding: 8px 14px; font-size: 12.5px; }

/* ---------- marquee band ---------- */
.band { background: var(--basalt); color: var(--frost); overflow: hidden; height: 36px; display: flex; align-items: center; }
.band-track { display: flex; align-items: center; gap: 22px; white-space: nowrap; padding-left: 22px; width: max-content; font: 500 16px/1 var(--f-cond); letter-spacing: .24em; text-transform: uppercase; }
.band-track i { width: 12px; height: 13px; border-radius: 4px 4px 3px 3px; background: var(--red); position: relative; flex: none; }
.band-track i::before { content: ''; position: absolute; left: 3px; right: 3px; top: -4px; height: 5px; border: 1.5px solid var(--red); border-bottom: 0; border-radius: 4px 4px 0 0; }
html:not(.rm) .band-track { animation: band 52s linear infinite; }
.band:hover .band-track { animation-play-state: paused; }
@keyframes band { to { transform: translateX(-50%); } }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 40; display: flex; align-items: center; gap: 18px; height: 66px; padding: 0 var(--gutter);
  background: rgba(232, 236, 240, .86); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); flex: none; min-height: 44px; }
.brand img { width: 40px; height: 40px; border-radius: 50%; box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--line); }
.brand span { font: 700 26px/1 var(--f-cond); letter-spacing: .12em; }
html:not(.rm) .brand:hover img { animation: nudge 1.2s var(--ease); }
@keyframes nudge { 30% { transform: rotate(-8deg); } 60% { transform: rotate(5deg); } }
.links { display: flex; gap: 24px; margin-left: auto; }
.links a { font: 500 16px/1 var(--f-cond); letter-spacing: .18em; text-transform: uppercase; color: var(--ink); text-decoration: none; padding: 8px 0; position: relative; }
.links a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 2px; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.links a:hover::after, .links a.on::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 10px; margin-left: 18px; }
.ico { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: #fff; box-shadow: 0 0 0 1px var(--line); color: var(--ink); transition: transform .25s var(--ease); }
.ico:hover { transform: translateY(-2px) rotate(-6deg); }
.motion-btn, .burger { display: inline-flex; align-items: center; gap: 8px; height: 40px; padding: 0 14px; border-radius: 999px; cursor: pointer; background: transparent; border: 1px solid rgba(28, 33, 39, .3); color: var(--ink);
  font: 500 15px/1 var(--f-cond); letter-spacing: .16em; text-transform: uppercase; }
.motion-btn:hover, .burger:hover { border-color: var(--ink); }
.motion-btn .dot { width: 8px; height: 8px; border-radius: 50%; background: #8a929c; }
.motion-btn[aria-pressed="true"] .dot { background: #2f9e57; box-shadow: 0 0 0 3px rgba(47, 158, 87, .22); }
.burger { display: none; }
.bars { width: 16px; height: 10px; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); position: relative; }
.bars::after { content: ''; position: absolute; left: 0; right: 0; top: 2px; border-top: 2px solid var(--ink); }
.menu { position: fixed; left: 0; right: 0; top: 102px; z-index: 39; background: var(--frost); border-bottom: 1px solid var(--line); padding: 18px var(--gutter) 26px; max-height: calc(100svh - 60px); overflow-y: auto; overscroll-behavior: contain; box-shadow: 0 20px 40px -24px rgba(0, 0, 0, .4); }
.menu nav { display: grid; gap: 4px; }
.menu nav a { font: 400 30px/1.3 var(--f-display); color: var(--ink); text-decoration: none; padding: 6px 0; }
.menu-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.motion-btn.in-menu { display: none; height: 46px; }

/* ---------- chips (official logos) ---------- */
.chip { display: inline-flex; align-items: center; gap: 10px; min-height: 48px; padding: 8px 18px 8px 8px; border-radius: 999px; text-decoration: none; background: #fff; color: var(--ink);
  font: 600 13px/1 var(--f-body); letter-spacing: .06em; text-transform: uppercase; box-shadow: 0 0 0 1px var(--line); transition: transform .25s var(--ease), box-shadow .25s; }
.chip img { width: 30px; height: 30px; padding: 4px; border-radius: 50%; background: var(--frost); }
.chip:hover { transform: translateY(-3px); box-shadow: 0 0 0 1px var(--ink), 0 14px 26px -16px rgba(0, 0, 0, .5); }

/* ---------- entrance + reveals ---------- */
html.js:not(.rm) .rise { opacity: 0; transform: translateY(18px); animation: rise 1s var(--ease) forwards; animation-delay: var(--d, 0s); }
@keyframes rise { to { opacity: 1; transform: none; } }
.kicker.rise { --d: .15s; } .hero h1.rise { --d: .3s; } .sub.rise { --d: .5s; } .ca-wrap.rise { --d: .65s; } .ctas.rise { --d: .75s; } .tally.rise { --d: .9s; } .drag-hint.rise { --d: 1.05s; }
html.js:not(.rm) .reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
html.js:not(.rm) .reveal.in { opacity: 1; transform: none; }

/* ---------- 01 HERO ---------- */
.hero { position: relative; padding: 0; overflow: hidden; background: var(--frost-2); min-height: max(560px, min(calc(100svh - 102px), 66vw)); display: flex; align-items: center; }
.scene { position: absolute; inset: 0; overflow: hidden; }
.scene .layer { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%; }
.scene .bare, .scene .pack { opacity: 0; }
.scene.dragging .full { opacity: 0; }
.scene.dragging .bare, .scene.dragging .pack { opacity: 1; }
.scene .pack { transform-origin: 50% 50%; will-change: transform; }
html:not(.rm) .scene .full { animation: kenburns 24s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.05) translateX(-1%); } }
.scene.dragging .full, .scene.dragging .bare { animation: none; }
.mist { position: absolute; left: -20%; right: -20%; height: 34%; pointer-events: none; opacity: .55; background: radial-gradient(60% 50% at 50% 50%, rgba(255, 255, 255, .7), transparent 70%); filter: blur(8px); }
.mist.m1 { bottom: 6%; }
.mist.m2 { bottom: 20%; opacity: .35; height: 26%; }
html:not(.rm) .mist.m1 { animation: drift 38s linear infinite; }
html:not(.rm) .mist.m2 { animation: drift 56s linear infinite reverse; }
@keyframes drift { 0% { transform: translateX(-8%); } 50% { transform: translateX(8%); } 100% { transform: translateX(-8%); } }
.pack-hit { position: absolute; z-index: 3; border: 0; padding: 0; background: transparent; cursor: grab; touch-action: none; border-radius: 30%; }
.pack-hit:focus-visible { outline: 3px solid var(--red); outline-offset: 4px; }
.scene.dragging .pack-hit { cursor: grabbing; }
.hero::before { content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, rgba(232, 236, 240, .92) 0%, rgba(232, 236, 240, .7) 34%, rgba(232, 236, 240, 0) 58%); }
.hero-in { position: relative; z-index: 2; margin-left: var(--gutter); padding: clamp(28px, 5vh, 56px) 0; width: min(560px, 46%); }
.hero h1 { font-size: clamp(40px, min(5.4vw, 7.6vh), 84px); line-height: .98; letter-spacing: -.025em; color: var(--ink); }
.hero h1 .l1, .hero h1 .l2 { display: block; }
.hero h1 em { color: var(--red-deep); }
.sub { margin: 18px 0 22px; color: var(--ink-soft); font-size: 18px; max-width: 470px; }
.ca-wrap { margin: 0 0 16px; }
.ca-chip { color: var(--ink); display: flex; align-items: center; gap: 12px; width: min(100%, 520px); padding: 10px 10px 10px 16px; border-radius: 14px; cursor: pointer; text-align: left;
  background: rgba(255, 255, 255, .8); border: 1px solid var(--line); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); transition: border-color .25s, transform .25s var(--ease); }
.ca-chip:hover { border-color: var(--ink); transform: translateY(-1px); }
.ca-lbl { font: 500 14px/1.2 var(--f-cond); letter-spacing: .16em; text-transform: uppercase; color: var(--slate); flex: none; }
.ca-text { font: 400 13.5px/1.35 var(--f-mono); color: var(--ink); overflow-wrap: anywhere; min-width: 0; flex: 1; }
.ca-hint { flex: none; font: 600 12px/1 var(--f-body); letter-spacing: .06em; text-transform: uppercase; color: #fff; background: var(--ink); padding: 8px 10px; border-radius: 999px; }
.ca-chip[aria-disabled="true"] { cursor: default; }
.ca-chip[aria-disabled="true"]:hover { transform: none; border-color: var(--line); }
.ca-chip[aria-disabled="true"] .ca-text { font-family: var(--f-display); font-style: italic; font-size: 17px; color: var(--ink-soft); }
.ca-chip[aria-disabled="true"] .ca-hint { background: none; color: var(--ink-soft); box-shadow: inset 0 0 0 1px var(--line); }
.ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.ctas .lk-pump[hidden] ~ .try { background-color: var(--ink); color: var(--frost); border-color: var(--ink); }
.ctas .lk-pump[hidden] ~ .try:hover { background-color: var(--basalt-2); color: #fff; }
.tally { display: flex; gap: 26px; margin: 24px 0 0; padding-top: 14px; border-top: 1px solid var(--line); max-width: 440px; }
.tally p { margin: 0; display: grid; gap: 2px; }
.t-lbl { font: 500 14px/1.1 var(--f-cond); letter-spacing: .16em; text-transform: uppercase; color: var(--slate); }
.t-num { font: 700 46px/1 var(--f-cond); color: var(--ink); font-variant-numeric: tabular-nums; }
#putDown.flick { color: var(--red); }
html:not(.rm) .t-num.bump { animation: bump .5s var(--spring); }
@keyframes bump { 0% { transform: translateY(-40%); opacity: .2; } 100% { transform: none; opacity: 1; } }
.drag-hint { margin: 10px 0 0; font: italic 400 16px/1.3 var(--f-display); color: var(--ink-soft); }

/* ---------- 02 MEMO ---------- */
.memo { background: var(--frost); }
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(14px, 2vw, 26px); }
.card { margin: 0; background: #fff; border-radius: 6px; overflow: hidden; box-shadow: 0 0 0 1px var(--line); transition: transform .4s var(--ease), box-shadow .4s; }
.card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.card figcaption { padding: 18px 20px 22px; }
.card h3 { font-size: 30px; line-height: 1.05; }
.card h3 em { color: var(--ink-soft); font-size: .72em; }
.card dl { margin: 14px 0 0; display: grid; gap: 8px; }
.card dl div { display: flex; justify-content: space-between; gap: 12px; border-top: 1px solid var(--line); padding-top: 8px; }
.card dt { font: 500 14px/1.3 var(--f-cond); letter-spacing: .14em; text-transform: uppercase; color: var(--slate); }
.card dd { margin: 0; font-weight: 500; text-align: right; }
.card.hot { box-shadow: 0 0 0 2px var(--ink); }
html:not(.rm) .card:hover { transform: translateY(-6px); box-shadow: 0 0 0 1px var(--ink), 0 24px 40px -26px rgba(0, 0, 0, .5); }
html.js:not(.rm) .card:nth-child(2) { transition-delay: .12s; }
html.js:not(.rm) .card:nth-child(3) { transition-delay: .24s; }

/* ---------- 03 THE LONG WALK ---------- */
.walk { padding: 0; height: 420vh; position: relative; background: var(--night); }
.walk-stage { position: sticky; top: 0; height: 100svh; overflow: hidden; }
.sky, .sky-i { position: absolute; inset: 0; width: 100%; height: 100%; }
.sky-i { object-fit: cover; opacity: 0; transition: opacity .9s linear; }
.sky-i.on { opacity: 1; }
.strip { position: absolute; left: 0; right: 0; background-repeat: repeat-x; background-size: auto 100%; background-position: 0 100%; pointer-events: none; }
.strip.far { bottom: 22%; height: 42%; background-image: url(/img/strip-far.webp); opacity: .95; }
.strip.mid { bottom: 0; height: 58%; background-image: url(/img/strip-mid.webp); }
.strip.near { bottom: -2%; height: 26%; background-image: url(/img/strip-near.webp); }
.walk-stage[data-t="1"] .strip.far, .walk-stage[data-t="1"] .strip.mid { filter: saturate(1.08) brightness(1.04); }
.walk-stage[data-t="2"] .strip { filter: sepia(.25) saturate(1.2) brightness(.82) hue-rotate(-8deg); }
.walk-stage[data-t="3"] .strip { filter: brightness(.34) saturate(.6) hue-rotate(185deg); }
.strip { transition: filter .9s linear; }
.walker { position: absolute; left: 50%; bottom: 17%; width: min(34vh, 42vw); aspect-ratio: 1; transform: translateX(-50%); }
.walker .step { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; opacity: 0; }
.walker .step.on { opacity: 1; }
.walker .shadow { position: absolute; left: 22%; right: 22%; bottom: 3%; height: 7%; border-radius: 50%; background: radial-gradient(closest-side, rgba(0, 0, 0, .35), transparent); z-index: -1; }
.walker.moving { animation: bob .44s ease-in-out infinite; }
html.rm .walker.moving { animation: none; }
@keyframes bob { 50% { transform: translateX(-50%) translateY(-2.5%); } }
.walk-stage[data-t="3"] .walker .step { filter: brightness(.55) saturate(.8); }
.walk-hud { position: absolute; left: var(--gutter); top: clamp(80px, 12vh, 120px); color: #fff; text-shadow: 0 2px 14px rgba(0, 0, 0, .45); }
.walk-hud p { margin: 0; }
.clock { font: 300 clamp(64px, 10vw, 140px)/.9 var(--f-cond); letter-spacing: .02em; font-variant-numeric: tabular-nums; }
.walk-cap { font: italic 400 clamp(24px, 3vw, 38px)/1.1 var(--f-display); margin-top: 6px !important; }
.km { margin-top: 14px !important; font: 500 16px/1 var(--f-cond); letter-spacing: .2em; text-transform: uppercase; }
.km i { font-style: normal; margin: 0 .4em; opacity: .7; }
html.rm .walk { height: auto; }
html.rm .walk-stage { position: relative; height: 86svh; min-height: 520px; }

/* ---------- 04 THE PAIR ---------- */
.pair { background: var(--frost-2); }
.pair-in { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 30px 60px; align-items: center; }
.pair-in .fine { grid-column: 1 / -1; }
.tag-wrap { display: grid; place-items: center; padding-top: 50px; }
.tag { position: relative; width: min(340px, 100%); padding: 56px 26px 24px; border-radius: 10px 10px 16px 16px; background: #f5efe2; color: var(--ink);
  box-shadow: 0 30px 50px -30px rgba(0, 0, 0, .55), inset 0 0 0 1px rgba(28, 33, 39, .12); transform-origin: 50% -46px; }
.tag::before { content: ''; position: absolute; left: 50%; top: -52px; width: 2px; height: 70px; background: var(--red); transform: translateX(-50%); border-radius: 2px; }
.tag-hole { position: absolute; left: 50%; top: 16px; width: 18px; height: 18px; margin-left: -9px; border-radius: 50%; background: var(--frost-2); box-shadow: inset 0 1px 3px rgba(0, 0, 0, .3), 0 0 0 3px #d8cdb4; }
html:not(.rm) .tag { animation: swing 5.5s ease-in-out infinite; }
html:not(.rm) .tag:hover { animation-duration: 1.4s; }
@keyframes swing { 0%, 100% { transform: rotate(-3.5deg); } 50% { transform: rotate(3.5deg); } }
.tag-title { margin: 0 0 12px; font: 700 20px/1 var(--f-cond); letter-spacing: .26em; text-transform: uppercase; text-align: center; color: var(--ink-soft); }
.tag dl { margin: 0; display: grid; gap: 8px; }
.tag dl div { display: flex; justify-content: space-between; gap: 10px; border-bottom: 1px dashed rgba(28, 33, 39, .3); padding-bottom: 6px; }
.tag dt { font: 500 14px/1.2 var(--f-cond); letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }
.tag dd { margin: 0; font: 400 14px/1.2 var(--f-mono); letter-spacing: .02em; }
.tag-ca { margin-top: 14px; width: 100%; border: 1px dashed rgba(28, 33, 39, .45); background: transparent; border-radius: 8px; padding: 10px; cursor: pointer; }
.tag-ca code { font: 400 12.5px/1.35 var(--f-mono); overflow-wrap: anywhere; color: var(--ink); }
.tag-ca[aria-disabled="true"] { cursor: default; }
.fine { margin: 0; font-size: 14.5px; color: var(--ink-soft); max-width: 760px; }

/* ---------- 05 PACK LIST ---------- */
.pack { background: var(--frost); }
.pack-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 30px 56px; align-items: center; }
.flatlay { position: relative; border-radius: 6px; overflow: hidden; box-shadow: 0 0 0 1px var(--line); }
.flatlay img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.spot { position: absolute; width: 38px; height: 38px; margin: -19px 0 0 -19px; border-radius: 50%; display: grid; place-items: center; background: #fff; color: var(--ink);
  font: 700 20px/1 var(--f-cond); box-shadow: 0 6px 16px -6px rgba(0, 0, 0, .5), 0 0 0 2px var(--ink); transition: transform .35s var(--spring), background-color .25s, color .25s; }
.spot.done { background: var(--ink); color: #fff; }
html:not(.rm) .spot.hover { transform: scale(1.25); }
.s1 { left: 33%; top: 55%; } .s2 { left: 61%; top: 55%; } .s3 { left: 33%; top: 81%; } .s4 { left: 61%; top: 81%; }
.packed { position: absolute; left: 50%; top: 42%; font: 700 clamp(46px, 7vw, 88px)/1 var(--f-cond); letter-spacing: .14em; text-transform: uppercase; color: var(--ink);
  border: 6px solid var(--ink); padding: 10px 22px 6px; border-radius: 10px; background: rgba(255, 255, 255, .78); transform: translate(-50%, -50%) rotate(-9deg) scale(1.5); opacity: 0; pointer-events: none; }
.packed.show { opacity: 1; transform: translate(-50%, -50%) rotate(-9deg) scale(1); transition: transform .45s var(--spring), opacity .2s; }
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.checklist label { display: grid; grid-template-columns: 30px 38px 1fr; gap: 14px; align-items: center; padding: 14px 16px; border-radius: 12px; background: #fff; box-shadow: 0 0 0 1px var(--line); cursor: pointer; transition: box-shadow .25s, transform .25s var(--ease); }
.checklist label:hover { box-shadow: 0 0 0 1px var(--ink); transform: translateX(3px); }
.checklist input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.checklist .box { width: 28px; height: 28px; border-radius: 7px; box-shadow: inset 0 0 0 2px var(--ink); position: relative; }
.checklist .box::after { content: ''; position: absolute; left: 9px; top: 3px; width: 8px; height: 15px; border: solid var(--red); border-width: 0 3.5px 3.5px 0; transform: rotate(45deg) scale(0); transform-origin: 50% 60%; transition: transform .3s var(--spring); }
.checklist input:checked + .box::after { transform: rotate(45deg) scale(1); }
.checklist input:focus-visible + .box { outline: 2px solid var(--red); outline-offset: 3px; }
.checklist img { width: 38px; height: 38px; padding: 5px; border-radius: 50%; background: var(--frost); }
.checklist .txt { font-size: 15.5px; color: var(--ink-soft); }
.checklist .txt b { color: var(--ink); font-weight: 600; }
.checklist .txt a { color: var(--ink); font-weight: 600; }
html.rm .packed.show { transition: none; }

/* ---------- 06 THE LOAD ---------- */
.load { background: var(--frost-2); }
.spec { margin: 0 0 34px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 48px; }
.spec div { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.spec dt { font: 500 16px/1.2 var(--f-cond); letter-spacing: .16em; text-transform: uppercase; color: var(--slate); }
.spec dd { margin: 0; font: 400 16px/1.3 var(--f-mono); text-align: right; display: inline-flex; gap: 8px; align-items: center; }
.spec dd img { background: #fff; border-radius: 50%; padding: 3px; box-sizing: content-box; }
.official { display: flex; flex-wrap: wrap; gap: 12px; min-width: 0; }
.official:not(:has(.chip:not([hidden]))) { display: none; }

/* ---------- 07 MEME KIT ---------- */
.kit { background: var(--frost); }
.kit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(14px, 2vw, 24px); }
.kit-card { display: block; position: relative; border-radius: 6px; overflow: hidden; text-decoration: none; color: #fff; box-shadow: 0 0 0 1px var(--line); }
.kit-card img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .8s var(--ease); }
.kit-card span { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 16px 14px; font: 500 20px/1.1 var(--f-cond); letter-spacing: .12em; text-transform: uppercase; background: linear-gradient(0deg, rgba(13, 22, 39, .85), transparent); }
.kit-card span::after { content: ' \2193'; opacity: .8; }
html:not(.rm) .kit-card:hover img { transform: scale(1.05); }
html.js:not(.rm) .kit-card:nth-child(2) { transition-delay: .12s; }
html.js:not(.rm) .kit-card:nth-child(3) { transition-delay: .24s; }

/* ---------- 08 NIGHT / FOOTER ---------- */
.foot { position: relative; overflow: hidden; color: #e8ecf0; background: var(--night); padding: clamp(90px, 14vh, 150px) 0 40px; text-align: center; }
.foot-plate { position: absolute; inset: 0; }
.foot-plate img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%; opacity: .72; }
.foot::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(13, 22, 39, .2) 0%, rgba(13, 22, 39, .55) 55%, rgba(13, 22, 39, .95) 100%); }
.foot-in { position: relative; z-index: 2; display: grid; justify-items: center; gap: 22px; }
.foot-logo { width: 104px; height: 104px; border-radius: 50%; box-shadow: 0 0 0 3px rgba(255, 255, 255, .85), 0 20px 40px -18px #000; }
html:not(.rm) .foot-logo { animation: breathe 5s ease-in-out infinite; }
@keyframes breathe { 50% { transform: translateY(-5px); } }
.foot-big { margin: 0; font: 400 clamp(40px, 6vw, 80px)/1 var(--f-display); color: #fff; text-shadow: 0 4px 30px rgba(0, 0, 0, .6); }
.foot-big em { color: var(--apricot); }
.foot-ca { width: min(560px, 100%); }
.foot-ca .ca-chip { width: 100%; }
.banner-strip { margin: 10px 0 0; width: min(760px, 100%); aspect-ratio: 16 / 7; border-radius: 6px; overflow: hidden; box-shadow: 0 0 0 1px var(--line-l); }
.banner-strip img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 50%; }
.disclaimer { max-width: 640px; margin: 0; font-size: 14px; color: #cfd6de; }
.colophon { margin: 0; font: 500 15px/1.4 var(--f-cond); letter-spacing: .16em; text-transform: uppercase; color: #cfd6de; }
.colophon a { color: #fff; display: inline-block; padding: 12px 4px; margin: -12px 0; }
.foot .official .chip { background: rgba(255, 255, 255, .95); }

/* ---------- toast + click puffs ---------- */
.toast { position: fixed; left: 50%; bottom: 22px; z-index: 60; background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 999px; font: 600 13px/1 var(--f-body); letter-spacing: .04em;
  box-shadow: 0 16px 30px -12px #000; pointer-events: none; transform: translate(-50%, 220%); opacity: 0; visibility: hidden; transition: transform .45s var(--ease), opacity .3s, visibility 0s .45s; }
.toast.show { transform: translate(-50%, 0); opacity: 1; visibility: visible; transition: transform .45s var(--ease), opacity .3s, visibility 0s; }
.puff { position: fixed; z-index: 70; width: 14px; height: 15px; border-radius: 5px 5px 4px 4px; background: var(--red); pointer-events: none; transform: translate(-50%, -50%); animation: puff .9s var(--ease) forwards; }
.puff::before { content: ''; position: absolute; left: 3px; right: 3px; top: -5px; height: 6px; border: 2px solid var(--red); border-bottom: 0; border-radius: 5px 5px 0 0; }
@keyframes puff { to { opacity: 0; transform: translate(-50%, -260%) rotate(-14deg) scale(.7); } }

/* ---------- reduced motion: no hover travel either ---------- */
html.rm .btn:hover, html.rm .chip:hover, html.rm .ico:hover, html.rm .ca-chip:hover, html.rm .checklist label:hover { transform: none; }
html.rm .checklist .box::after { transition: none; }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .links { display: none; }
  .burger { display: inline-flex; }
  .nav-right { margin-left: auto; }
  .nav .motion-btn:not(.in-menu) { display: none; }
  .motion-btn.in-menu { display: inline-flex; }
}
@media (max-width: 900px) {
  .hero { display: block; min-height: 0; }
  .scene { position: relative; inset: auto; aspect-ratio: 4 / 5; }
  .scene .layer { object-position: 72% 50%; }
  .hero::before { display: none; }
  .hero-in { margin-left: 0; width: auto; padding: 26px var(--gutter) 50px; background: var(--frost); }
  .pair-in, .pack-grid { grid-template-columns: minmax(0, 1fr); }
  .cards { grid-template-columns: minmax(0, 1fr); max-width: 520px; }
  .spec { grid-template-columns: minmax(0, 1fr); }
  .kit-grid { grid-template-columns: minmax(0, 1fr); max-width: 520px; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .nav { gap: 10px; height: 60px; }
  .nav-right .ico { display: none; }
  .brand span { font-size: 22px; }
  .brand img { width: 34px; height: 34px; }
  .burger-lbl { display: none; }
  .burger { min-width: 44px; height: 44px; justify-content: center; padding: 0; }
  .menu { top: 96px; }
  .hero h1 { font-size: clamp(36px, 10.5vw, 48px); }
  .ctas .btn { flex: 1 1 100%; }
  .ca-chip { flex-wrap: wrap; }
  .ca-lbl { width: 100%; }
  .t-num { font-size: 40px; }
  .walker { width: min(30vh, 62vw); bottom: 15%; }
  .clock { font-size: 64px; }
  .checklist label { grid-template-columns: 28px 34px 1fr; gap: 10px; padding: 12px; }
  .spot { width: 32px; height: 32px; margin: -16px 0 0 -16px; font-size: 17px; }
  .official .chip { flex: 0 1 auto; }
  .card h3 { font-size: 26px; }
}
@media (max-width: 360px) {
  .nav .btn.buy.sm { display: none !important; }
}
.menu .motion-lbl { display: inline; }
