/* Onshock 998 — v4. Mobile first. Teal-black night, one bright orange, quiet motion. */
:root {
  --void: #06080d; --ink: #0b1016; --s1: #0f171e; --s2: #152029; --s3: #1b2833;
  --line: rgba(170, 200, 215, .12); --line2: rgba(170, 200, 215, .24);
  --bone: #eef0ea; --mist: #a9b8c1; --fog: #7b8d98;
  --orange: #ff7a1a; --orange-hi: #ffb35c; --orange-deep: #d95f0e;
  --serif: "Lora", Georgia, serif; --sans: "Poppins", system-ui, sans-serif;
  --pad: 20px; --safe-b: env(safe-area-inset-bottom, 0px); --radius: 22px;
  /* legacy token names used by scripts and the pack stage */
  --moon: var(--bone); --lantern: var(--orange); --ember: var(--orange-hi);
  color-scheme: dark;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--void); }
body { margin: 0; font: 400 1rem/1.55 var(--sans); color: var(--mist); background: var(--void); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; padding: 0; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 12px; }
svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: none; }
svg .fill { fill: currentColor; stroke: none; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; margin: 0; letter-spacing: -.02em; color: var(--bone); }
h2 { font-size: clamp(1.85rem, 6.4vw, 2.6rem); line-height: 1.08; }
h3 { font-size: 1.28rem; }
p { margin: 0 0 1em; }
.skip { position: fixed; left: -999px; top: 10px; z-index: 99; background: var(--orange); color: var(--ink); padding: 12px 18px; border-radius: 999px; }
.skip:focus { left: 12px; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.eyebrow, .kicker, .pack-kicker { font: 500 .74rem/1.3 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--orange); margin: 0 0 12px; }
.head { padding: 0 var(--pad); margin-bottom: 22px; }
.head p { color: var(--mist); max-width: 34ch; margin: 10px 0 0; }

/* ---------- buttons: one bright lantern, nothing fussy ---------- */
.btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 56px; padding: 0 26px;
  border-radius: 999px; font: 500 1rem/1 var(--sans); letter-spacing: .005em; white-space: nowrap; user-select: none; overflow: hidden;
  transition: transform .2s cubic-bezier(.2, .8, .2, 1), box-shadow .3s, background .2s, border-color .2s; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
.btn:active { transform: scale(.97); }
.primary { color: #1a0a02; background: linear-gradient(180deg, #ff9a3c 0%, var(--orange) 55%, #f56a06 100%);
  box-shadow: inset 0 1px 0 rgba(255, 235, 200, .55), 0 10px 28px -8px rgba(255, 122, 26, .55); animation: lantern 4s ease-in-out infinite; }
.primary:hover, .primary:focus-visible { transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255, 235, 200, .6), 0 16px 34px -8px rgba(255, 122, 26, .7); }
.primary:active { transform: translateY(0) scale(.98); }
.primary::after { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(110deg, transparent 42%, rgba(255, 255, 255, .28) 50%, transparent 58%) no-repeat; background-size: 240% 100%; background-position: 160% 0;
  animation: sheen 6s ease-in-out 3s infinite; }
@keyframes sheen { 0% { background-position: 160% 0; } 20%, 100% { background-position: -60% 0; } }
@keyframes lantern { 0%, 100% { box-shadow: inset 0 1px 0 rgba(255, 235, 200, .55), 0 10px 28px -8px rgba(255, 122, 26, .5); } 50% { box-shadow: inset 0 1px 0 rgba(255, 235, 200, .55), 0 12px 34px -8px rgba(255, 122, 26, .8); } }
.primary .dl-ico { width: 18px; height: 18px; transition: transform .3s; }
.primary:hover .dl-ico { transform: translateY(2px); }
.ghost { color: var(--bone); background: rgba(255, 255, 255, .05); border: 1px solid var(--line2); backdrop-filter: blur(8px); }
.ghost:hover, .ghost:focus-visible { border-color: rgba(255, 122, 26, .6); background: rgba(255, 122, 26, .08); }
.quiet { min-height: 48px; color: var(--mist); font-size: .95rem; }
.quiet:hover { color: var(--bone); }
.icon-btn { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 999px; color: var(--bone); }
.icon-btn.solid { width: 56px; height: 56px; background: rgba(255, 255, 255, .06); border: 1px solid var(--line2); backdrop-filter: blur(8px); }
.ripple { position: absolute; width: 10px; height: 10px; margin: -5px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(255, 255, 255, .5), rgba(255, 255, 255, 0) 70%); animation: ripple .7s ease-out forwards; }
@keyframes ripple { to { transform: scale(40); opacity: 0; } }

/* ---------- floating bar ---------- */
.bar { position: fixed; z-index: 40; top: calc(env(safe-area-inset-top, 0px) + 10px); left: 50%; transform: translateX(-50%); width: calc(100% - 2 * var(--pad)); max-width: 1180px;
  display: flex; align-items: center; justify-content: space-between; padding: 8px 8px 8px 18px; border-radius: 999px;
  background: rgba(10, 15, 21, .62); border: 1px solid var(--line); backdrop-filter: blur(16px) saturate(1.3); -webkit-backdrop-filter: blur(16px) saturate(1.3); }
.mark { display: inline-flex; align-items: center; }
.mark .logo { height: 18px; width: auto; }
.bar nav { display: flex; align-items: center; gap: 6px; }
.bar nav a:not(.icon-btn) { display: none; padding: 10px 14px; border-radius: 999px; font-size: .9rem; color: var(--mist); }
.bar nav a:not(.icon-btn):hover { color: var(--bone); background: rgba(255, 255, 255, .06); }

/* ---------- hero ---------- */
.hero { --x: 55%; --y: 34%; --rad: 42vmax; position: relative; min-height: 640px; height: 100svh; overflow: hidden; isolation: isolate; }
.backdrop { display: none; }
.portal { position: absolute; inset: 0; overflow: hidden; }
.scene { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.dim { filter: brightness(.3) saturate(.75) contrast(1.05); }
.lit { filter: brightness(1.15) saturate(1.1);
  -webkit-mask-image: radial-gradient(circle var(--rad) at var(--x) var(--y), #000 0%, rgba(0, 0, 0, .55) 30%, transparent 70%);
  mask-image: radial-gradient(circle var(--rad) at var(--x) var(--y), #000 0%, rgba(0, 0, 0, .55) 30%, transparent 70%); }
.glow { position: absolute; inset: 0; pointer-events: none; mix-blend-mode: screen;
  background: radial-gradient(circle calc(var(--rad) * .55) at var(--x) var(--y), rgba(255, 170, 90, .18), transparent 70%); }
.fog { position: absolute; inset: -5%; pointer-events: none; background: url(img/fog.webp) repeat 0 0; }
.f1 { background-size: 1600px 700px; opacity: .38; animation: drift1 110s linear infinite; }
.f2 { background-size: 2400px 1050px; opacity: .24; animation: drift2 170s linear infinite reverse; }
@keyframes drift1 { to { background-position: 1600px 0; } }
@keyframes drift2 { to { background-position: 2400px 0; } }
.rain { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 2; }
.flash { position: absolute; inset: 0; z-index: 3; pointer-events: none; opacity: 0; mix-blend-mode: screen;
  background: radial-gradient(ellipse at var(--fx, 60%) 0%, rgba(200, 225, 255, .95), rgba(120, 160, 200, .35) 45%, rgba(40, 60, 90, 0) 80%); }
.hero.strike .scene.lit { -webkit-mask-image: none; mask-image: none; opacity: 1; }
.portal::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to bottom, rgba(6, 8, 13, .55) 0%, transparent 18%, transparent 38%, rgba(6, 8, 13, .88) 68%, var(--void) 100%); }
.hero-copy { position: absolute; z-index: 5; left: 0; right: 0; bottom: 0; padding: 0 var(--pad) calc(var(--safe-b) + 18px); display: grid; }
.hero h1 { font-size: clamp(2.6rem, 11.5vw, 4.4rem); line-height: 1; letter-spacing: -.03em; margin: 0 0 14px; }
.hero h1 em { font-style: normal; color: var(--orange); }
.lede { font-size: 1.02rem; color: var(--mist); max-width: 34ch; margin: 0 0 22px; }
.hero-copy .primary { width: 100%; min-height: 60px; font-size: 1.05rem; }
.hero-copy .quiet { justify-self: center; margin-top: 4px; }
.proof { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 10px 0 0; font-size: .82rem; color: var(--fog); }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 10px 2px rgba(255, 122, 26, .6); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: .55; } }

/* ---------- sections ---------- */
section { position: relative; padding: 64px 0; }
.free { padding-top: 40px; }
.pack { display: grid; gap: 22px; padding: 0 var(--pad); }
.stage { position: relative; display: block; width: 100%; aspect-ratio: 1 / 1.02; border-radius: var(--radius); overflow: hidden; touch-action: manipulation;
  background: radial-gradient(ellipse at 50% 78%, rgba(255, 140, 60, .14), transparent 60%), linear-gradient(180deg, #0c161c, #08111a); border: 1px solid var(--line); }
.halo { position: absolute; left: 50%; bottom: 20%; width: 80%; aspect-ratio: 1; translate: -50% 0; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 150, 70, .4), rgba(255, 120, 40, .08) 45%, transparent 68%); filter: blur(6px); animation: halo 4.5s ease-in-out infinite; }
@keyframes halo { 50% { opacity: .65; scale: .94; } }
.env-back, .env-front { position: absolute; left: 12%; right: 12%; bottom: 6%; height: 28%; border-radius: 10px; }
.env-back { background: linear-gradient(180deg, #15252c, #0d1a20); box-shadow: inset 0 0 0 1px rgba(200, 215, 240, .08); }
.flap { position: absolute; left: 0; right: 0; bottom: 100%; height: 78%; background: linear-gradient(0deg, #15252c, #1d3139); clip-path: polygon(0 100%, 50% 0, 100% 100%); transform-origin: 50% 100%; }
.env-front { z-index: 6; background: linear-gradient(180deg, #1b2d35, #0f1d23 70%); clip-path: polygon(0 18%, 50% 46%, 100% 18%, 100% 100%, 0 100%); box-shadow: 0 30px 40px -20px #000; }
.env-label { position: absolute; left: 0; right: 0; bottom: 7%; text-align: center; font: italic 400 .8rem/1 var(--serif); color: rgba(238, 240, 234, .45); }
.wax { position: absolute; left: 50%; top: 62%; width: 16%; translate: -50% -50%; filter: drop-shadow(0 4px 6px rgba(0, 0, 0, .6)); }
.wax svg { width: 100%; height: auto; display: block; }
.wax circle { fill: #b2460f; stroke: #e37737; stroke-width: 3; stroke-dasharray: 5 2.5; }
.wax text { font: italic 600 19px var(--serif); fill: #ffd2a8; }
.float { position: absolute; z-index: 3; display: block; will-change: transform; }
.float img { display: block; width: 100%; height: auto; }
.phone { display: block; width: 100%; aspect-ratio: 9 / 19.5; padding: 5px; border-radius: 22px; background: linear-gradient(160deg, #3a4452, #12161d); box-shadow: 0 30px 40px -18px #000, inset 0 0 0 1px rgba(255, 255, 255, .12); }
.screen { position: relative; display: block; height: 100%; border-radius: 18px; overflow: hidden; background: #000; }
.screen img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
.lock { position: absolute; top: 10%; left: 0; right: 0; text-align: center; color: #fff; text-shadow: 0 2px 12px rgba(0, 0, 0, .6); }
.lock .date { display: block; font-size: 8px; opacity: .9; }
.lock .time { display: block; font: 300 30px/1 var(--sans); letter-spacing: -.02em; }
.island { position: absolute; top: 4%; left: 50%; width: 32%; height: 4%; translate: -50% 0; border-radius: 999px; background: #000; }
.glint { position: absolute; inset: 0; background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, .22) 50%, transparent 60%); translate: -120% 0; }
.pack.in .glint { animation: glint 1.2s ease 1.6s both; }
@keyframes glint { to { translate: 120% 0; } }
.f-phone { left: 34%; bottom: 27%; width: 30%; z-index: 7; }
.f-phone .phone { transform: rotate(-3deg); }
.f-page { right: 11%; bottom: 30%; width: 32%; }
.f-page img { aspect-ratio: 210 / 297; object-fit: cover; background: #fff; border-radius: 3px; transform: rotate(10deg); box-shadow: 0 24px 30px -16px #000; }
.f-st1 { left: 7%; bottom: 46%; width: 25%; z-index: 5; } .f-st2 { left: 14%; bottom: 29%; width: 24%; } .f-st3 { right: 5%; bottom: 58%; width: 20%; z-index: 5; }
.f-st1 img, .f-st2 img, .f-st3 img { filter: drop-shadow(0 12px 12px rgba(0, 0, 0, .55)); }
.f-st1 img { rotate: -12deg; } .f-st2 img { rotate: 8deg; } .f-st3 img { rotate: 14deg; }
.js .pack .float { opacity: 0; translate: 0 38%; }
.pack.in .float { animation: emerge 1.1s cubic-bezier(.2, .9, .2, 1) forwards, hover 5.2s ease-in-out infinite; }
.pack.in .f-phone { animation-delay: .15s, 1.3s; } .pack.in .f-page { animation-delay: .3s, 1.9s; animation-duration: 1.1s, 6.1s; }
.pack.in .f-st1 { animation-delay: .5s, 1.6s; animation-duration: 1.1s, 4.6s; } .pack.in .f-st2 { animation-delay: .62s, 2.2s; animation-duration: 1.1s, 5.6s; } .pack.in .f-st3 { animation-delay: .74s, 1.4s; animation-duration: 1.1s, 4.2s; }
@keyframes emerge { to { opacity: 1; translate: 0 0; } }
@keyframes hover { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.js .pack .flap { transform: rotateX(90deg); }
.pack.in .flap { transition: transform .9s cubic-bezier(.3, 1.3, .5, 1) .05s; transform: none; }
.pack-copy { display: grid; gap: 14px; }
.contents { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.contents li, .u-item { display: flex; align-items: center; gap: 12px; padding: 10px; border-radius: 16px; background: var(--s1); border: 1px solid var(--line); }
.contents img, .u-item img { width: 44px; height: 54px; object-fit: cover; border-radius: 8px; flex: none; background: #1b2230; }
img.contain { object-fit: contain; padding: 3px; }
.contents span, .u-item > span:not(.pill) { display: grid; font-size: .82rem; color: var(--mist); line-height: 1.35; text-align: left; }
.contents b, .u-item b { font: 400 1.05rem var(--serif); color: var(--bone); }
.pack-copy .primary { width: 100%; }
.fine { margin: 0; font-size: .78rem; color: var(--fog); text-align: center; }
.fine a { color: var(--mist); text-decoration: underline; text-underline-offset: 2px; }

/* the streets of 998 */
.scene-row { display: grid; grid-auto-flow: column; grid-auto-columns: min(70vw, 300px); gap: 12px; overflow-x: auto; padding: 4px var(--pad) 22px;
  scroll-snap-type: x mandatory; scrollbar-width: none; outline: none; }
.scene-row::-webkit-scrollbar { display: none; }
.scene-card { position: relative; display: block; border-radius: 20px; overflow: hidden; scroll-snap-align: center; aspect-ratio: 3 / 4; background: var(--s1); border: 1px solid var(--line);
  transition: transform .5s cubic-bezier(.2, .8, .2, 1); }
.scene-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2, .8, .2, 1), filter .6s; filter: brightness(.86); }
.scene-card span { position: absolute; left: 14px; bottom: 12px; font: 400 1.05rem var(--serif); color: var(--bone); text-shadow: 0 2px 12px #000; }
.scene-card::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 40%), rgba(255, 170, 90, .16), transparent 45%), linear-gradient(transparent 60%, rgba(6, 8, 13, .8)); }
.scene-card:hover img, .scene-card:focus-visible img { transform: scale(1.06); filter: brightness(1); }

/* editions (the things for sale, soon) */
.editions { display: grid; grid-auto-flow: column; grid-auto-columns: min(82vw, 340px); gap: 14px; overflow-x: auto; padding: 4px var(--pad) 26px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.editions::-webkit-scrollbar { display: none; }
.edition { position: relative; scroll-snap-align: center; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3 / 4.15; background: var(--s1); border: 1px solid var(--line); display: flex; flex-direction: column; justify-content: flex-end; }
.edition > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s cubic-bezier(.2, .8, .2, 1); }
.edition:hover > img { transform: scale(1.05); }
.edition::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6, 8, 13, .96) 0%, rgba(6, 8, 13, .78) 34%, rgba(6, 8, 13, .05) 62%, transparent); }
.e-body { position: relative; padding: 18px 18px 16px; display: grid; gap: 6px; }
.e-no { font: 500 .72rem/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--orange); }
.e-body h3 { font-size: 1.55rem; line-height: 1.1; }
.e-meta { font-size: .86rem; color: var(--mist); margin: 0; }
.e-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 10px; }
.e-price { font: 400 1.2rem var(--serif); color: var(--bone); }
.e-price small { display: block; font: 400 .72rem var(--sans); color: var(--fog); letter-spacing: .04em; text-transform: uppercase; }
.vote { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 0 16px 0 12px; border-radius: 999px; background: rgba(255, 255, 255, .07); border: 1px solid var(--line2);
  color: var(--bone); font-size: .88rem; position: relative; overflow: visible; transition: background .25s, border-color .25s; }
.vote .v-ico { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--line2); transition: background .25s, border-color .25s; }
.vote .v-ico svg { width: 12px; height: 12px; stroke-width: 2.4; stroke-dasharray: 20; stroke-dashoffset: 20; transition: stroke-dashoffset .35s ease .05s; }
.vote[aria-pressed="true"] { background: rgba(255, 122, 26, .16); border-color: rgba(255, 122, 26, .6); }
.vote[aria-pressed="true"] .v-ico { background: var(--orange); border-color: var(--orange); color: var(--ink); }
.vote[aria-pressed="true"] .v-ico svg { stroke-dashoffset: 0; }
.vote .ember { position: absolute; left: var(--ox); top: var(--oy); width: 4px; height: 4px; border-radius: 50%; background: var(--orange-hi); box-shadow: 0 0 6px 1px rgba(255, 140, 60, .8); animation: ember .8s ease-out forwards; pointer-events: none; }
@keyframes ember { to { transform: translate(var(--dx), var(--dy)); opacity: 0; } }
.e-note { padding: 0 var(--pad); font-size: .8rem; color: var(--fog); margin: 0; }

/* stories */
.stories { padding-top: 40px; }
.story-row { display: grid; grid-auto-flow: column; grid-auto-columns: min(72vw, 280px); gap: 12px; overflow-x: auto; padding: 4px var(--pad) 22px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.story-row::-webkit-scrollbar { display: none; }
.story { position: relative; display: block; scroll-snap-align: center; border-radius: 20px; overflow: hidden; aspect-ratio: 3 / 4; background: var(--s1); border: 1px solid var(--line); }
.story img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.7) saturate(.9); transition: transform 1.2s cubic-bezier(.2, .8, .2, 1), filter .6s; }
.story:hover img { transform: scale(1.05); filter: brightness(.85); }
.story-txt { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px; background: linear-gradient(transparent, rgba(6, 8, 13, .9) 45%); }
.story-txt .e-no { margin-bottom: 6px; }
.story-txt h3 { font-size: 1.35rem; line-height: 1.12; }
.story-txt p { font-size: .82rem; color: var(--mist); margin: 6px 0 0; }
.story.soon .story-txt h3 { color: var(--mist); }
.story .tag { position: absolute; top: 12px; left: 12px; padding: 5px 10px; border-radius: 999px; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; background: rgba(6, 8, 13, .7); border: 1px solid var(--line2); color: var(--bone); backdrop-filter: blur(6px); }
.story .tag.now { background: var(--orange); color: var(--ink); border-color: var(--orange); }
.stories-cta { padding: 4px var(--pad) 0; display: grid; gap: 10px; }

/* follow, faq, footer */
.follow { padding: 60px var(--pad); }
.follow h2 em { font-style: italic; color: var(--orange); }
.definition { font: 400 1.05rem/1.5 var(--serif); color: var(--bone); border-left: 2px solid var(--orange); padding-left: 14px; margin: 20px 0; }
.definition i { color: var(--fog); font-size: .9rem; }
.follow-actions { display: grid; gap: 10px; margin-top: 8px; }
.faq { padding: 20px var(--pad) 60px; }
.faq h2 { margin-bottom: 8px; }
details { border-top: 1px solid var(--line); }
details:last-of-type { border-bottom: 1px solid var(--line); }
summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 0; font-weight: 500; color: var(--bone); }
summary::-webkit-details-marker { display: none; }
summary::after { content: ""; width: 9px; height: 9px; border-right: 1.5px solid var(--fog); border-bottom: 1.5px solid var(--fog); transform: rotate(45deg); transition: transform .3s; flex: none; margin-right: 6px; }
details[open] summary::after { transform: rotate(-135deg); }
details p { margin: 0 0 16px; color: var(--mist); font-size: .95rem; }
details a { color: var(--orange); }
.foot { padding: 30px var(--pad) calc(var(--safe-b) + 110px); text-align: center; border-top: 1px solid var(--line); }
.foot-logo .logo-big { width: min(100%, 520px); height: auto; margin: 10px auto 18px; }
.foot p { color: var(--fog); font-size: .9rem; }
.foot-row nav { display: flex; justify-content: center; gap: 22px; font-size: .84rem; color: var(--fog); }
.foot-row a:hover { color: var(--bone); }

/* sticky dock */
.dock { position: fixed; z-index: 30; left: 0; right: 0; bottom: 0; padding: 12px var(--pad) calc(var(--safe-b) + 12px); display: flex; gap: 10px; align-items: center;
  background: linear-gradient(transparent, rgba(6, 8, 13, .92) 40%); transform: translateY(110%); transition: transform .35s cubic-bezier(.2, .8, .2, 1); }
.dock.show { transform: none; }
.dock .primary { flex: 1; min-height: 56px; }

/* sheets */
.sheet { border: 0; padding: 0; margin: auto 0 0; width: 100%; max-width: 100%; background: var(--s1); color: inherit; border-radius: 26px 26px 0 0; box-shadow: 0 -20px 60px rgba(0, 0, 0, .6); }
.sheet::backdrop { background: rgba(3, 5, 9, .7); backdrop-filter: blur(4px); }
.sheet[open] { animation: up .4s cubic-bezier(.2, .8, .2, 1); }
@keyframes up { from { transform: translateY(40px); opacity: 0; } }
.grab { width: 40px; height: 4px; border-radius: 999px; background: var(--line2); margin: 12px auto 0; }
.close { position: absolute; top: 12px; right: 12px; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; color: var(--bone); background: rgba(255, 255, 255, .06); }
.sheet-body { padding: 14px var(--pad) calc(var(--safe-b) + 22px); display: grid; gap: 14px; }
#sheet-img { width: 100%; max-height: 42svh; object-fit: contain; border-radius: 16px; background: var(--void); }
.sheet-copy { display: grid; gap: 10px; }
.sheet-copy h2 { font-size: 1.6rem; }
.sheet-note { color: var(--mist); margin: 0; }
.sheet-copy .btn { width: 100%; }
.sheet-hint { font-size: .82rem; color: var(--fog); text-align: center; margin: 0; }
.sheet-hint.ig { display: none; padding: 10px 12px; border-radius: 12px; background: rgba(255, 122, 26, .1); color: var(--bone); }
.claim-body[hidden] { display: none; }
.claim-body { padding: 8px var(--pad) calc(var(--safe-b) + 22px); display: grid; gap: 12px; }
.claim-art { position: relative; height: 150px; margin: 4px auto 0; width: 220px; }
.claim-art img { position: absolute; bottom: 0; border-radius: 6px; box-shadow: 0 16px 24px -12px #000; }
.ca-page { width: 90px; right: 18px; rotate: 9deg; background: #fff; }
.ca-wall { width: 82px; left: 64px; bottom: 6px; rotate: -3deg; border-radius: 12px; z-index: 2; border: 2px solid #2a3140; }
.ca-st { width: 70px; left: 8px; bottom: 34px; rotate: -12deg; box-shadow: none; filter: drop-shadow(0 8px 10px rgba(0, 0, 0, .5)); z-index: 3; }
.claim h2 { font-size: 1.7rem; line-height: 1.12; text-align: center; }
.claim .sheet-note { text-align: center; }
#claim-form { display: grid; gap: 12px; margin-top: 4px; }
.field input { width: 100%; min-height: 58px; padding: 0 20px; border-radius: 16px; border: 1.5px solid var(--line2); background: var(--void); color: var(--bone); font: 500 16px var(--sans); outline: none; transition: border-color .2s, box-shadow .2s; }
.field input::placeholder { color: #5d6a80; }
.field input:focus { border-color: rgba(255, 122, 26, .7); box-shadow: 0 0 0 4px rgba(255, 122, 26, .14); }
.field.bad input { border-color: #ff5f45; animation: shake .35s; }
@keyframes shake { 25% { translate: -6px 0; } 75% { translate: 6px 0; } }
.hp { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.check { display: flex; align-items: flex-start; gap: 12px; min-height: 48px; padding: 6px 2px; font-size: .86rem; color: var(--mist); cursor: pointer; line-height: 1.45; }
.check input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.check .box { flex: none; width: 24px; height: 24px; margin-top: 1px; border-radius: 7px; border: 1.5px solid var(--line2); background: var(--void); transition: background .2s, border-color .2s; }
.check input:checked + .box { background: var(--orange) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.5l2.5 2.5L12 5.5' fill='none' stroke='%231a0a02' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 16px no-repeat; border-color: var(--orange); }
.check input:focus-visible + .box { outline: 2px solid var(--orange); outline-offset: 3px; }
.form-error { min-height: 1.2em; margin: -4px 0 0; font-size: .85rem; color: #ff8a70; text-align: center; }
#claim-submit .spin { display: none; width: 18px; height: 18px; border-radius: 50%; border: 2px solid rgba(26, 10, 2, .3); border-top-color: #1a0a02; animation: spin .7s linear infinite; }
#claim-submit.busy .label { opacity: .6; } #claim-submit.busy .spin { display: inline-block; }
@keyframes spin { to { rotate: 360deg; } }
.unlocked { justify-self: center; margin: 12px 0 0; padding: 6px 14px; border-radius: 999px; font-size: .78rem; color: var(--orange); background: rgba(255, 122, 26, .1); border: 1px solid rgba(255, 122, 26, .35); animation: pop .5s cubic-bezier(.3, 1.8, .5, 1); }
@keyframes pop { from { scale: .6; opacity: 0; } }
#claim-done-title { outline: none; }
.unlock-list { display: grid; gap: 8px; }
.u-item { min-height: 72px; padding: 10px 12px 10px 10px; }
.u-item > span:not(.pill) { flex: 1; }
.pill { display: inline-flex; align-items: center; min-height: 40px; padding: 0 16px; border-radius: 999px; background: var(--orange); color: #1a0a02; font-weight: 500; font-size: .9rem; }
.js .unlock-list .u-item { opacity: 0; translate: 0 10px; }
#claim-done-view:not([hidden]) .u-item { animation: emerge .5s ease forwards; }
#claim-done-view:not([hidden]) .u-item:nth-child(2) { animation-delay: .1s; } #claim-done-view:not([hidden]) .u-item:nth-child(3) { animation-delay: .2s; }
#claim-zip { width: 100%; }
.proto-note { margin: 0; font-size: .74rem; color: var(--fog); text-align: center; opacity: .8; }
.toast { position: fixed; z-index: 60; left: 50%; bottom: calc(var(--safe-b) + 90px); transform: translate(-50%, 20px); opacity: 0; padding: 12px 18px; border-radius: 999px;
  background: var(--s3); color: var(--bone); font-size: .9rem; box-shadow: 0 10px 30px rgba(0, 0, 0, .5); transition: opacity .3s, transform .3s; pointer-events: none; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* motion */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .8, .2, 1); }
.reveal.in { opacity: 1; transform: none; }
.rise { opacity: 0; transform: translateY(14px); animation: rise .8s cubic-bezier(.2, .8, .2, 1) forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }
.hero-copy .rise:nth-child(1) { animation-delay: .15s; } .hero-copy .rise:nth-child(2) { animation-delay: .25s; }
.hero-copy .rise:nth-child(3) { animation-delay: .38s; } .hero-copy .rise:nth-child(4) { animation-delay: .5s; }
.hero-copy .rise:nth-child(5), .hero-copy .rise:nth-child(6) { animation-delay: .62s; }
.primary.rise { animation: rise .8s cubic-bezier(.2, .8, .2, 1) .5s forwards, lantern 4s ease-in-out 1.5s infinite; }

/* ---------- desktop ---------- */
@media (min-width: 900px) {
  :root { --pad: 40px; }
  .mark .logo { height: 22px; }
  .bar nav a:not(.icon-btn) { display: inline-block; }
  .hero { --rad: 26vmax; height: 100vh; min-height: 720px; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 4vw; padding: 0 max(40px, calc((100vw - 1180px) / 2 + 40px)); }
  .backdrop { display: block; position: absolute; inset: -6%; z-index: -1; background: url(img/hero-backdrop.webp) center / cover; filter: brightness(.28) saturate(.8); }
  .portal { position: relative; inset: auto; order: 2; justify-self: center; height: min(calc(100vh - 170px), 860px); aspect-ratio: 3 / 4; border-radius: 300px 300px 28px 28px; border: 1px solid var(--line); }
  .portal::after { background: linear-gradient(to bottom, transparent 70%, rgba(6, 8, 13, .5)); }
  .hero-copy { position: relative; order: 1; padding: 0; display: block; }
  .hero h1 { font-size: clamp(3.6rem, 5.6vw, 5.4rem); max-width: 10ch; }
  .lede { font-size: 1.1rem; max-width: 38ch; }
  .hero-copy .primary { width: auto; padding: 0 32px; }
  .hero-copy .quiet { margin-left: 14px; }
  .proof { justify-content: flex-start; }
  section { padding: 96px 0; }
  .head, .pack, .follow, .faq, .e-note, .stories-cta { max-width: 1180px; margin-left: auto; margin-right: auto; }
  .head { margin-bottom: 30px; }
  .pack { grid-template-columns: 1.1fr .9fr; align-items: center; gap: 40px; }
  .scene-row, .editions, .story-row { max-width: 1180px; margin: 0 auto; grid-auto-flow: row; grid-template-columns: repeat(4, 1fr); overflow: visible; padding: 4px var(--pad) 10px; }
  .editions { grid-template-columns: repeat(3, 1fr); gap: 20px; } .story-row { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .follow-actions { grid-auto-flow: column; justify-content: start; }
  .faq { columns: 2; column-gap: 40px; } .faq h2 { column-span: all; }
  .sheet { margin: auto; width: min(560px, 92vw); border-radius: 26px; } .sheet-body, .claim-body { padding: 24px 28px 28px; }
  .dock { display: none; }
  .foot { padding-bottom: 60px; }
}
@media (prefers-reduced-motion: reduce) {
  .rise, .reveal, .pack .float, .flap, .u-item { opacity: 1 !important; transform: none !important; translate: none !important; animation: none !important; transition: none !important; }
  .fog, .halo, .dot, .primary, .primary::after, .rain, .flash { animation: none !important; }
  .rain, .flash { display: none; }
}

/* ---------- book page ---------- */
.book-page main { padding-top: 0; }
.book-hero { position: relative; min-height: 78svh; display: grid; align-items: end; overflow: hidden; padding: 0; }
.book-art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; filter: brightness(.85); }
.book-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(6, 8, 13, .5), transparent 25%, transparent 45%, rgba(6, 8, 13, .92) 75%, var(--void)); }
.book-copy { position: relative; z-index: 2; padding: 0 var(--pad) 36px; }
.book-copy h1 { font-size: clamp(2.6rem, 11vw, 4.6rem); line-height: 1; letter-spacing: -.03em; margin: 0 0 14px; }
.chapters { padding-top: 40px; }
.chapter-grid { grid-auto-columns: min(46vw, 200px); }
.chapter-grid .story-txt h3 { font-size: 1.1rem; }
.page { display: grid; gap: 22px; padding: 30px var(--pad) 80px; }
.page-art img { width: 100%; border-radius: var(--radius); border: 1px solid var(--line); }
.page-txt h2 { margin-bottom: 18px; }
.page-txt p { font: 400 1.1rem/1.75 var(--serif); color: var(--bone); margin: 0 0 1.1em; max-width: 60ch; }
.page-txt p em { color: var(--orange); font-style: italic; }
.page-txt .last { font-size: 1.35rem; margin-top: 1.6em; }
.page-nav { display: grid; gap: 12px; margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); }
.page-count { font-size: .82rem; color: var(--fog); letter-spacing: .06em; text-transform: uppercase; }
@media (min-width: 900px) {
  .book-hero { min-height: 82vh; }
  .book-copy { max-width: 1180px; margin: 0 auto; width: 100%; padding-bottom: 70px; }
  .book-copy .lede { max-width: 46ch; }
  .chapter-grid { grid-template-columns: repeat(6, 1fr); gap: 14px; }
  .page { grid-template-columns: .9fr 1.1fr; align-items: start; gap: 48px; max-width: 1180px; margin: 0 auto; }
  .page-art { position: sticky; top: 100px; }
  .page-nav { grid-auto-flow: column; justify-content: space-between; align-items: center; }
}
/* readable over bright artwork (sticker sheet, line art) */
.edition > img { filter: brightness(.82) saturate(.95); }
.edition::before { background: linear-gradient(to top, rgba(6, 8, 13, .98) 0%, rgba(6, 8, 13, .9) 30%, rgba(6, 8, 13, .55) 52%, rgba(6, 8, 13, 0) 72%); }
.e-body h3, .e-body .e-meta, .e-price { text-shadow: 0 2px 14px rgba(0, 0, 0, .7); }
.page-art img { max-height: 72svh; object-fit: cover; }
.edition > img { z-index: 0; } .edition::before { z-index: 1; } .e-body { z-index: 2; }

/* ---------- the offer: a product shot, not a collage ---------- */
.stage { aspect-ratio: 1 / 1.08; background: radial-gradient(ellipse at 50% 100%, rgba(255, 122, 26, .18), transparent 55%), linear-gradient(180deg, #0d1820 0%, #070c12 100%); }
.stage-light { position: absolute; left: 50%; top: 50%; width: 110%; aspect-ratio: 1; translate: -50% -50%; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(255, 150, 70, .16), transparent 60%); filter: blur(10px); }
.badge-free { position: absolute; top: 14px; left: 14px; z-index: 9; padding: 7px 12px; border-radius: 999px; background: var(--orange); color: #1a0a02; font: 600 .72rem/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; }
.item { position: absolute; display: block; will-change: transform; }
.item img { display: block; width: 100%; height: auto; }
.it-phone { left: 50%; top: 9%; width: 42%; translate: -50% 0; z-index: 6; }
.it-phone .phone { transform: rotate(-4deg); }
.it-phone .screen img { height: 100%; object-fit: cover; object-position: 50% 40%; }
.it-card { width: 34%; border-radius: 12px; overflow: hidden; box-shadow: 0 24px 36px -16px rgba(0, 0, 0, .8); }
.it-card img { width: 100%; }
.it-card-a { left: 5%; top: 34%; z-index: 5; transform: rotate(-12deg); }
.it-card-b { left: 11%; top: 26%; z-index: 2; transform: rotate(-24deg); filter: brightness(.85); }
.it-page { right: 5%; top: 24%; width: 36%; z-index: 3; transform: rotate(10deg); }
.it-page img { aspect-ratio: 210 / 297; object-fit: cover; background: #fff; border-radius: 4px; box-shadow: 0 24px 36px -16px rgba(0, 0, 0, .8); }
.js .pack .item { opacity: 0; translate: 0 28px; }
.pack.in .item { animation: emerge .9s cubic-bezier(.2, .9, .2, 1) forwards; }
.pack.in .it-phone { translate: -50% 0; animation: emerge-phone .9s cubic-bezier(.2, .9, .2, 1) forwards, hover 5.4s ease-in-out 1.4s infinite; }
@keyframes emerge-phone { from { opacity: 0; translate: -50% 28px; } to { opacity: 1; translate: -50% 0; } }
.pack.in .it-card-a { animation-delay: .18s; } .pack.in .it-card-b { animation-delay: .3s; } .pack.in .it-page { animation-delay: .24s; }
.stage:active .item { scale: 1.02; transition: scale .2s; }

/* ---------- the reader: a real book ---------- */
.reader { position: fixed; inset: 0; z-index: 80; background: radial-gradient(ellipse at 50% 30%, #1a2630, #06080d 70%); display: grid; grid-template-rows: auto 1fr auto; outline: none; }
.reader[hidden] { display: none; }
.reader-bar { display: flex; align-items: center; gap: 12px; padding: calc(env(safe-area-inset-top, 0px) + 10px) var(--pad) 8px; color: var(--mist); font-size: .9rem; }
.reader-title { flex: 1; font: 400 1.05rem var(--serif); color: var(--bone); }
.reader-count { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--fog); }
.book-wrap { display: grid; place-items: center; padding: 6px var(--pad); min-height: 0; }
.book { --w: min(calc(100vw - 2 * var(--pad)), 420px); position: relative; width: var(--w); aspect-ratio: 3 / 4.3; perspective: 2200px; transform-style: preserve-3d; cursor: pointer; }
.leaf { position: absolute; inset: 0; transform-origin: 0 50%; transform-style: preserve-3d; transition: transform .95s cubic-bezier(.35, .1, .25, 1); }
.leaf.flipped { transform: rotateY(-180deg); }
.no-anim .leaf { transition: none; }
.face { position: absolute; inset: 0; backface-visibility: hidden; -webkit-backface-visibility: hidden; border-radius: 4px 14px 14px 4px; overflow: hidden; box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .8); }
.face.back { transform: rotateY(180deg); border-radius: 14px 4px 4px 14px; }
.pg { position: absolute; inset: 0; background: #f6f2e8; color: #1d1a16; }
.pg::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(0, 0, 0, .14), transparent 12%, transparent 88%, rgba(0, 0, 0, .06)); }
.face.back .pg::after { background: linear-gradient(270deg, rgba(0, 0, 0, .14), transparent 12%, transparent 88%, rgba(0, 0, 0, .06)); }
.pg.words { padding: 30px 26px 40px; font: 400 clamp(.98rem, 3.9vw, 1.12rem)/1.62 var(--serif); overflow: hidden; }
.pg.words p { margin: 0 0 .95em; }
.pg.words em { color: #b8500a; }
.pg.words .end { display: block; margin-top: 1.4em; font-style: italic; color: #6b645a; }
.pg .ch { font: 500 .68rem/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: #b8500a; margin: 0 0 16px; }
.pg.plate { padding: 18px; }
.pg.plate img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; }
.folio { position: absolute; bottom: 14px; left: 0; right: 0; text-align: center; font: 400 .72rem var(--sans); color: #8a8378; }
.pg.cover { background: linear-gradient(160deg, #101c24, #0a1218); color: var(--bone); padding: 34px 28px; display: flex; flex-direction: column; justify-content: center; }
.pg.cover .ch { color: var(--orange); }
.pg.cover h2 { font-size: 2.2rem; line-height: 1.05; color: var(--bone); margin: 0 0 14px; }
.pg.cover .hint { font-size: .85rem; color: var(--mist); }
.pg.cover .hint a { color: var(--orange); text-decoration: underline; }
.pg.blank { background: #f6f2e8; }
.reader-nav { display: grid; grid-template-columns: 1fr 1.6fr; gap: 10px; padding: 10px var(--pad) calc(env(safe-area-inset-bottom, 0px) + 14px); }
@media (min-width: 900px) {
  .book { --w: min(calc(100vw - 2 * var(--pad)), 1040px); width: var(--w); aspect-ratio: 3 / 2.05; }
  .book .leaf { left: 50%; width: 50%; }
  .book.closed .leaf:first-child { transition: transform .95s cubic-bezier(.35, .1, .25, 1); }
  .reader-nav { grid-template-columns: auto auto; justify-content: center; }
}
.book.single .leaf { transform-origin: 50% 50%; }
.book.single .face, .book.single .face.back { border-radius: 14px; }
.leaf[hidden] { display: none; }
@media (min-width: 900px) { .pg.words { padding: 44px 40px; font-size: 1.22rem; line-height: 1.7; } .face { box-shadow: 0 24px 50px -24px rgba(0, 0, 0, .7); } }

.chip { display: inline-flex; align-items: center; min-height: 34px; padding: 0 12px; border-radius: 999px; background: rgba(255, 255, 255, .07); border: 1px solid var(--line2); color: var(--mist); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.e-cta { display: grid; gap: 10px; padding: 0 var(--pad); }
.e-cta .btn { width: 100%; }
@media (min-width: 900px) { .e-cta { max-width: 1180px; margin: 0 auto; grid-auto-flow: column; justify-content: start; align-items: center; gap: 20px; } .e-cta .btn { width: auto; } }
.foot-logo .logo-big { width: min(100%, 560px); }

/* ---------- iPhone mockup ---------- */
.phone { padding: 4px; border-radius: 18% / 8.3%; background: linear-gradient(160deg, #2c3138, #0c0f14); box-shadow: 0 30px 40px -18px #000, inset 0 0 0 1.5px rgba(255, 255, 255, .14), inset 0 0 0 4px #0a0c10; }
.phone::before, .phone::after { content: ""; position: absolute; width: 2px; border-radius: 2px; background: #1c2128; }
.phone::before { left: -3px; top: 21%; height: 9%; box-shadow: 0 14% 0 0 #1c2128; }
.phone::after { right: -3px; top: 27%; height: 14%; }
.screen { border-radius: 16% / 7.4%; }
.island { top: 2.2%; width: 30%; height: 3.6%; border-radius: 999px; background: #000; }
.lock { top: 9.5%; }
.lock .date { font-size: 8px; letter-spacing: .01em; opacity: .95; }
.lock .time { font: 200 34px/1 var(--sans); letter-spacing: -.03em; margin-top: 2px; }
.screen::before, .screen::after { content: ""; position: absolute; bottom: 4.5%; width: 12%; aspect-ratio: 1; border-radius: 50%; background: rgba(0, 0, 0, .55); backdrop-filter: blur(6px); border: 1px solid rgba(255, 255, 255, .12); }
.screen::before { left: 12%; } .screen::after { right: 12%; }
.f-phone .screen::before, .it-phone .screen::before { background: rgba(0, 0, 0, .55) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round'%3E%3Cpath d='M9 4h6l1 4-2 2v10H10V10L8 8z'/%3E%3C/svg%3E") center / 45% no-repeat; }
.f-phone .screen::after, .it-phone .screen::after { background: rgba(0, 0, 0, .55) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round'%3E%3Crect x='3' y='7' width='18' height='13' rx='3'/%3E%3Ccircle cx='12' cy='13.5' r='3.5'/%3E%3Cpath d='M8 7l1.5-2h5L16 7'/%3E%3C/svg%3E") center / 45% no-repeat; }

/* header: the branch logo needs a little more height to show its cracks */
.mark .logo { height: 30px; } @media (min-width: 900px) { .mark .logo { height: 34px; } }

/* ---------- v5 tweaks ---------- */
/* a brighter flashlight: the lit circle is stronger and wider, with more warm glow */
.lit { filter: brightness(1.5) saturate(1.22) contrast(1.05);
  -webkit-mask-image: radial-gradient(circle var(--rad) at var(--x) var(--y), #000 0%, rgba(0, 0, 0, .8) 36%, transparent 72%);
  mask-image: radial-gradient(circle var(--rad) at var(--x) var(--y), #000 0%, rgba(0, 0, 0, .8) 36%, transparent 72%); }
.glow { background: radial-gradient(circle calc(var(--rad) * .6) at var(--x) var(--y), rgba(255, 175, 95, .32), transparent 70%); }
/* slimmer menu bar that stays out of the picture on phones */
.bar { padding: 4px 4px 4px 14px; transition: background .35s, border-color .35s, backdrop-filter .35s; }
.bar .icon-btn { width: 40px; height: 40px; }
.mark .logo { height: 30px; margin-top: -6px; }
.bar:not(.solid) { background: transparent; border-color: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
.bar:not(.solid) .logo { filter: drop-shadow(0 1px 8px rgba(0, 0, 0, .8)); }
@media (min-width: 900px) { .bar { padding: 6px 6px 6px 20px; } .mark .logo { height: 38px; margin-top: -8px; } .bar .icon-btn { width: 44px; height: 44px; } }
.book-page .bar { background: rgba(10, 15, 21, .62); border-color: var(--line); }

/* the Onshock mascot as the account icon: in the menu bar and as the hero byline */
.avatar { display: block; width: 30px; height: 30px; border-radius: 50%; object-fit: cover; flex: none; box-shadow: 0 0 0 1.5px rgba(255, 122, 26, .7), 0 2px 10px rgba(0, 0, 0, .6); }
.mark { gap: 10px; }
.byline { display: flex; align-items: center; gap: 10px; margin: 0 0 12px; font-size: .88rem; color: var(--mist); }
.byline .avatar { width: 34px; height: 34px; }
.byline b { color: var(--bone); font-weight: 500; }
@media (min-width: 900px) { .avatar { width: 34px; height: 34px; } .byline { font-size: .95rem; } }

/* hero without the paragraph: a little more air between the headline, byline and button */
.hero .byline { margin: 4px 0 22px; }
@media (min-width: 900px) { .hero .byline { margin: 8px 0 30px; } }
