/* ───────── fonts (self-hosted) ───────── */
@font-face { font-family: "Geist"; src: url(assets/fonts/geist.woff2) format("woff2-variations"), url(assets/fonts/geist.woff2) format("woff2"); font-weight: 100 900; font-style: normal; font-display: swap; }
@font-face { font-family: "Silkscreen"; src: url(assets/fonts/silkscreen.woff2) format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }

/* ───────── tokens ───────── */
:root {
  --bg: #0e0f11;
  --bg-2: #15171a;
  --bg-3: #1c1f23;
  --line: rgba(255, 255, 255, .08);
  --line-2: rgba(255, 255, 255, .15);
  --fg: #eeeff1;
  --muted: #8c9099;
  --dim: #5d616a;
  --white: #f7f7f8;
  --live: #43d17a;
  --blurple: #5865f2;

  --k-thumbnail: #f2b544;
  --k-thread: #6ea8ff;
  --k-banner: #e5708a;

  --font: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --pixel: "Silkscreen", "Geist", ui-monospace, monospace;

  --wrap: 1240px;
  --pad: clamp(20px, 4vw, 40px);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --radius: 14px;

  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
h1, h2, h3, p { margin: 0; }
::selection { background: rgba(255,255,255,.18); }
:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; border-radius: 8px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }
.px { font-family: var(--pixel); font-weight: 400; letter-spacing: 0; }
.i { width: 18px; height: 18px; flex: none; }
.skip { position: absolute; left: -999px; top: 8px; z-index: 100; background: var(--white); color: #000; padding: 8px 12px; border-radius: 8px; }
.skip:focus { left: 8px; }

/* ───────── buttons ───────── */
.btn {
  --h: 46px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: var(--h); padding: 0 20px;
  border-radius: 999px;
  font-weight: 550; font-size: 15px; letter-spacing: -.01em;
  text-decoration: none; white-space: nowrap;
  transition: transform .35s var(--ease), background-color .25s, border-color .25s, box-shadow .35s var(--ease), color .25s;
  will-change: transform;
}
.btn:active { transform: scale(.97); }
.btn-primary {
  background: var(--white); color: #0b0b0c;
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 8px 24px -10px rgba(255,255,255,.35);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 14px 34px -12px rgba(255,255,255,.5); }
.btn-primary .i { color: var(--blurple); }
.btn-ghost { border: 1px solid var(--line-2); color: var(--fg); background: rgba(255,255,255,.02); }
.btn-ghost:hover { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.06); }
.btn-sm { --h: 38px; padding: 0 15px; font-size: 14px; }
.btn-sm .i { width: 16px; height: 16px; }
.btn-lg { --h: 54px; padding: 0 26px; font-size: 16px; }

/* ───────── nav ───────── */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 50;
  padding-top: env(safe-area-inset-top, 0px);
  transition: background-color .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(14, 15, 17, .72);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom-color: var(--line);
}
.nav-inner { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); height: 68px; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 650; letter-spacing: -.02em; font-size: 17px; }
.brand img { width: 28px; height: 28px; }
.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: 14.5px; padding: 8px 12px; border-radius: 999px; transition: color .2s, background-color .2s; }
.nav-links a:hover { color: var(--fg); background: rgba(255,255,255,.05); }
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-inner > .btn { margin-left: auto; }
}

/* ───────── hero ───────── */
.hero { position: relative; padding: calc(128px + env(safe-area-inset-top, 0px)) 0 40px; overflow: hidden; }
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 60% at 30% 20%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 30% 20%, #000 20%, transparent 75%);
}
.hero::before {
  content: ""; position: absolute; left: 50%; top: -340px; width: 1100px; height: 700px; transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(255,255,255,.07), transparent);
  pointer-events: none;
}
.hero-copy { position: relative; }
.hero-title {
  font-size: clamp(42px, 6.4vw, 88px);
  line-height: .98; letter-spacing: -.055em; font-weight: 650;
}
@media (min-width: 720px) { .hero-title .line { white-space: nowrap; } }
.hero-title .line { display: block; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
.hero-title .line > span { display: inline-block; }
.hero-title .line:nth-child(2) > span { color: var(--muted); }
.hero-sub { margin-top: 26px; max-width: 54ch; font-size: clamp(16px, 1.6vw, 19px); color: var(--muted); line-height: 1.55; }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { margin-top: 18px; font-size: 14px; color: var(--dim); }

/* page-load sequence */
.js .hero-title .line > span,
.js .hero-sub, .js .hero-actions, .js .hero-note, .js .reel { opacity: 0; }
.js.ready .hero-title .line > span { animation: lift 1.1s var(--ease) both; }
.js.ready .hero-title .line:nth-child(1) > span { animation-delay: .12s; }
.js.ready .hero-title .line:nth-child(2) > span { animation-delay: .22s; }
.js.ready .hero-sub { animation: rise .9s var(--ease) .38s both; }
.js.ready .hero-actions { animation: rise .9s var(--ease) .48s both; }
.js.ready .hero-note { animation: rise .9s var(--ease) .56s both; }
.js.ready .reel { animation: reelIn 1.4s var(--ease) .5s both; }
@keyframes lift { from { opacity: 0; transform: translateY(105%); } to { opacity: 1; transform: none; } }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes reelIn { from { opacity: 0; transform: translateY(40px) scale(.98); } to { opacity: 1; transform: none; } }

/* reel (tilted marquee) */
.reel {
  position: relative; margin-top: clamp(36px, 5vw, 64px);
  height: clamp(300px, 34vw, 420px);
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}
.reel-tilt { position: absolute; left: -10%; right: -10%; top: 50%; transform: translateY(-50%) rotate(-4deg); display: grid; gap: 16px; }
.reel-row { overflow: hidden; }
.reel-track { display: flex; gap: 16px; width: max-content; animation: marquee var(--dur, 70s) linear infinite; }
.reel-row[data-row="1"] .reel-track { animation-direction: reverse; }
.reel:hover .reel-track, .reel.off .reel-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.reel-item {
  position: relative; flex: none; height: clamp(120px, 14vw, 170px);
  border-radius: 10px; overflow: hidden; background: var(--bg-3);
  box-shadow: 0 0 0 1px var(--line), 0 20px 40px -20px rgba(0,0,0,.8);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.reel-item:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 0 0 1px var(--line-2), 0 26px 50px -20px rgba(0,0,0,.9); }
.reel-item img { height: 100%; width: auto; }

/* ───────── sections ───────── */
.section { padding: clamp(80px, 10vw, 130px) 0 0; }
h2 { font-size: clamp(32px, 4.4vw, 52px); letter-spacing: -.045em; line-height: 1.02; font-weight: 650; }
h2 sup { font-size: 13px; color: var(--muted); vertical-align: top; margin-left: 6px; position: relative; top: .5em; letter-spacing: 0; }
.lead { margin-top: 12px; color: var(--muted); font-size: 16.5px; max-width: 60ch; }

/* ───────── work controls ───────── */
.work-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 34px; }
.controls { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.seg, .sort {
  position: relative; display: flex; padding: 4px; gap: 2px;
  border: 1px solid var(--line); border-radius: 999px; background: var(--bg-2);
}
.seg button, .sort button {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 7px;
  height: 36px; padding: 0 14px; border-radius: 999px;
  font-size: 14px; color: var(--muted); white-space: nowrap;
  transition: color .25s;
}
.seg button:hover, .sort button:hover { color: var(--fg); }
.seg button[aria-pressed="true"] { color: #0b0b0c; }
.seg button .px { font-size: 10px; opacity: .7; }
.seg-pill {
  position: absolute; z-index: 0; top: 4px; left: 0; height: 36px; width: 0;
  background: var(--white); border-radius: 999px;
  transition: transform .5s var(--ease), width .5s var(--ease);
}
.sort button[aria-pressed="true"] { color: var(--fg); background: var(--bg-3); }
.sort .i { width: 15px; height: 15px; }
@media (max-width: 640px) {
  .controls { width: 100%; }
  .seg { width: 100%; overflow-x: auto; scrollbar-width: none; }
  .seg::-webkit-scrollbar { display: none; }
  .seg button { padding: 0 11px; font-size: 13.5px; }
}

/* ───────── masonry ───────── */
.masonry { position: relative; min-height: 400px; transition: height .6s var(--ease); }
.more-wrap { display: flex; justify-content: center; margin-top: 8px; }
.more-wrap .btn[hidden] { display: none; }
.card {
  position: absolute; top: 0; left: 0;
  transition: transform .75s var(--ease), opacity .45s var(--ease);
}
.masonry.no-anim, .masonry.no-anim .card { transition: none; }
.card.is-hidden { opacity: 0; pointer-events: none; }
.card.is-hidden .card-in { transform: scale(.94); }
.card-in { transition: transform .6s var(--ease), opacity .6s var(--ease); }
.js .card:not(.in) .card-in { opacity: 0; transform: translateY(24px); }

.card-hit { display: block; width: 100%; text-align: left; border-radius: var(--radius); }
.frame {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--bg-2);
  box-shadow: 0 0 0 1px var(--line);
  transition: box-shadow .45s var(--ease), transform .45s var(--ease);
}
.frame::before { /* loading shimmer */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(255,255,255,.04) 50%, transparent 70%);
  background-size: 200% 100%; animation: shimmer 1.6s linear infinite;
}
.frame.loaded::before { display: none; }
@keyframes shimmer { from { background-position: 150% 0; } to { background-position: -50% 0; } }
.frame img {
  width: 100%; height: auto; opacity: 0; object-fit: cover; object-position: top;
  transition: opacity .6s var(--ease), transform .8s var(--ease);
}
.frame.loaded img { opacity: 1; }
.card-hit:hover .frame, .card-hit:focus-visible .frame { box-shadow: 0 0 0 1px var(--line-2), 0 30px 60px -30px rgba(0,0,0,.9); }
.card-hit:hover .frame img { transform: scale(1.025); }
.card-hit:focus-visible { outline: none; }
.card-hit:focus-visible .frame { outline: 2px solid var(--white); outline-offset: 3px; }

.frame.capped::after { /* tall threads: fade the cut */
  content: ""; position: absolute; inset: auto 0 0; height: 30%;
  background: linear-gradient(to bottom, rgba(14,15,17,0), rgba(14,15,17,.85));
  pointer-events: none;
}
.more {
  position: absolute; left: 50%; bottom: 16px; z-index: 3; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 550; color: var(--fg);
  padding: 7px 13px; border-radius: 999px;
  background: rgba(20,22,25,.75); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line-2);
  transition: background-color .25s, color .25s;
}
.card-hit:hover .more { background: var(--white); color: #0b0b0c; border-color: transparent; }

/* protection layer */
.protect, .protect img {
  -webkit-user-select: none; user-select: none;
  -webkit-user-drag: none; -webkit-touch-callout: none;
}
.protect img { pointer-events: none; }
.shield { position: absolute; inset: 0; z-index: 2; background: transparent; }
.chip-copy {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  font-size: 11px; font-weight: 550; letter-spacing: .01em; color: rgba(255,255,255,.92);
  padding: 4px 9px; border-radius: 999px;
  background: rgba(10,11,13,.62); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  opacity: 0; transform: translateY(-4px);
  transition: opacity .3s, transform .3s var(--ease);
  pointer-events: none;
}
.card-hit:hover .chip-copy, .card-hit:focus-visible .chip-copy { opacity: 1; transform: none; }
@media (hover: none) { .card .chip-copy { opacity: 1; transform: none; } }

.cap { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 12px 4px 0; height: 62px; }
.cap-text { min-width: 0; }
.cap h3 { font-size: 15px; font-weight: 600; letter-spacing: -.015em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cap p { font-size: 13.5px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 1px; }
.kind { display: inline-flex; align-items: center; gap: 7px; flex: none; font-family: var(--pixel); font-size: 10px; color: var(--muted); }
.k { display: inline-block; width: 8px; height: 8px; border-radius: 2px; background: var(--muted); flex: none; }
.k-thumbnail { background: var(--k-thumbnail); }
.k-thread { background: var(--k-thread); }
.k-banner { background: var(--k-banner); }

.empty { position: absolute; inset: 0; display: grid; place-items: center; color: var(--muted); }

.work-cta {
  margin-top: 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding: 22px 24px; border-radius: 18px; border: 1px solid var(--line); background: var(--bg-2);
}
.work-cta p { font-size: 17px; font-weight: 550; letter-spacing: -.015em; }

/* ───────── pricing ───────── */
.prices { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.price { padding: 30px 30px 32px 0; }
.price + .price { padding-left: 30px; border-left: 1px solid var(--line); }
.price h3 { display: flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 600; letter-spacing: -.015em; }
.amount { display: flex; align-items: baseline; gap: 10px; margin: 20px 0 16px; }
.amount .from { color: var(--muted); font-size: 14px; }
.amount .px { font-size: clamp(40px, 4.6vw, 56px); line-height: 1; color: var(--white); }
.price > p:last-child { color: var(--muted); font-size: 15px; max-width: 34ch; }
.price-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 26px; border-top: 1px solid var(--line);
}
.price-foot p { display: inline-flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 550; }
.price-foot .i { color: var(--live); }
@media (max-width: 860px) {
  .prices { grid-template-columns: 1fr; }
  .price, .price + .price { padding: 26px 0; border-left: 0; }
  .price + .price { border-top: 1px solid var(--line); }
}

/* ───────── process ───────── */
.steps { list-style: none; margin: 44px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; counter-reset: s; }
.steps li { position: relative; padding-top: 22px; border-top: 1px solid var(--line); }
.steps li .px { font-size: 12px; color: var(--muted); }
.steps h3 { margin-top: 14px; font-size: 17px; font-weight: 600; letter-spacing: -.015em; }
.steps p { margin-top: 6px; color: var(--muted); font-size: 15px; }
.steps li::before { /* progress tick on the rule */
  content: ""; position: absolute; top: -1px; left: 0; width: 28px; height: 1px; background: var(--white);
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ───────── contact ───────── */
.contact { margin-top: clamp(90px, 11vw, 140px); padding: clamp(80px, 10vw, 120px) 0; position: relative; overflow: hidden; border-top: 1px solid var(--line); }
.contact::before {
  content: ""; position: absolute; left: 50%; bottom: -420px; width: 1200px; height: 700px; transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(88,101,242,.16), transparent);
  pointer-events: none;
}
.contact-inner { position: relative; text-align: center; display: flex; flex-direction: column; align-items: center; }
.contact h2 { max-width: 17ch; font-size: clamp(36px, 5.6vw, 68px); }
.contact .lead { margin-top: 16px; }
.contact-actions { margin-top: 34px; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.copy-user { margin-top: 22px; font-size: 14px; color: var(--muted); display: inline-flex; gap: 6px; align-items: center; padding: 6px 10px; border-radius: 999px; }
.copy-user strong { color: var(--fg); font-weight: 550; }
.copy-hint { font-size: 12px; padding: 2px 8px; border-radius: 999px; border: 1px solid var(--line-2); transition: background-color .2s, color .2s; }
.copy-user:hover .copy-hint { background: var(--white); color: #0b0b0c; border-color: transparent; }

/* ───────── footer ───────── */
.footer { border-top: 1px solid var(--line); padding: 36px 0 44px; }
.footer-inner { display: grid; gap: 18px; }
.footer-store { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 14.5px; color: var(--muted); }
.footer-store a { color: var(--fg); text-underline-offset: 3px; text-decoration-color: var(--line-2); }
.footer-store a:hover { text-decoration-color: var(--fg); }
.footer-links { display: flex; gap: 18px; }
.footer-links a { text-decoration: none; color: var(--muted); }
.footer-links a:hover { color: var(--fg); }
.legal { font-size: 13px; color: var(--dim); max-width: 80ch; }

/* ───────── floating CTA ───────── */
.float-cta {
  position: fixed; right: 20px; bottom: calc(20px + env(safe-area-inset-bottom, 0px)); z-index: 40;
  display: inline-flex; align-items: center; gap: 9px;
  height: 50px; padding: 0 20px; border-radius: 999px;
  background: var(--white); color: #0b0b0c; text-decoration: none; font-weight: 600; font-size: 15px;
  box-shadow: 0 18px 40px -12px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.4) inset;
  transform: translateY(140%); opacity: 0;
  transition: transform .6s var(--ease), opacity .4s;
}
.float-cta .i { color: var(--blurple); }
.float-cta.show { transform: none; opacity: 1; }
.float-cta:hover { transform: translateY(-2px); }

/* ───────── lightbox ───────── */
.lb {
  width: 100vw; height: 100dvh; max-width: none; max-height: none;
  margin: 0; padding: 0; border: 0; background: transparent; color: var(--fg);
}
.lb::backdrop { background: rgba(6,7,8,.86); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.lb[open] { animation: lbIn .45s var(--ease); }
.lb[open]::backdrop { animation: fade .35s ease; }
.lb.closing { animation: lbOut .25s ease forwards; }
@keyframes lbIn { from { opacity: 0; transform: scale(.975); } to { opacity: 1; transform: none; } }
@keyframes lbOut { to { opacity: 0; transform: scale(.985); } }
@keyframes fade { from { opacity: 0; } }

.lb-shell { position: relative; display: grid; grid-template-columns: 1fr 340px; height: 100%; }
.lb-progress { position: absolute; z-index: 5; top: 0; left: 0; right: 340px; height: 2px; pointer-events: none; opacity: 0; transition: opacity .3s; }
.lb-progress.on { opacity: 1; }
.lb-progress span { display: block; height: 100%; background: var(--white); transform-origin: left; transform: scaleX(0); }
.lb-stage {
  position: relative; overflow: auto; overscroll-behavior: contain;
  display: grid; place-items: center;
  padding: max(28px, env(safe-area-inset-top, 0px)) 28px 28px;
  scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.2) transparent;
}
.lb-stage.tall { place-items: start center; }
.lb-media { position: relative; border-radius: 12px; overflow: hidden; box-shadow: 0 0 0 1px var(--line-2), 0 40px 90px -30px rgba(0,0,0,.9); transition: opacity .3s var(--ease), transform .45s var(--ease); }
.lb-media.swap { opacity: 0; transform: translateY(8px); }
.lb-media img { width: 100%; height: auto; }
.lb-media .chip-copy { opacity: 1; transform: none; top: 12px; right: 12px; }

.lb-side {
  display: flex; flex-direction: column; gap: 22px;
  padding: max(22px, env(safe-area-inset-top, 0px)) 24px 24px;
  border-left: 1px solid var(--line); background: var(--bg);
}
.lb-top { display: flex; justify-content: space-between; align-items: center; }
.lb-count { font-size: 11px; color: var(--muted); }
.icon-btn {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 999px;
  border: 1px solid var(--line-2); transition: background-color .2s, border-color .2s, transform .25s var(--ease);
}
.icon-btn:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.3); }
.icon-btn:active { transform: scale(.94); }
.lb-meta h3 { font-size: 24px; letter-spacing: -.035em; font-weight: 650; line-height: 1.15; margin-top: 12px; }
.lb-meta p { color: var(--muted); font-size: 15px; margin-top: 8px; }
.lb-meta .kind { margin-top: 0; font-size: 10px; }
.lb-meta .lb-date { font-size: 13.5px; color: var(--dim); }
.lb-cta { margin-top: auto; padding: 18px; border-radius: 16px; background: var(--bg-2); border: 1px solid var(--line); }
.lb-cta p { font-size: 15px; font-weight: 550; margin-bottom: 14px; }
.lb-cta .btn { width: 100%; }
.lb-legal { font-size: 12.5px; color: var(--dim); }
.lb-nav { display: flex; gap: 8px; }
.lb-link { margin-left: auto; }

@media (max-width: 900px) {
  .lb-shell { grid-template-columns: 1fr; grid-template-rows: 1fr auto; }
  .lb-stage { padding: calc(64px + env(safe-area-inset-top, 0px)) 14px 14px; }
  .lb-side {
    border-left: 0; border-top: 1px solid var(--line);
    display: grid; grid-template-columns: 1fr auto; gap: 12px 16px; align-items: center;
    padding: 14px 16px calc(14px + env(safe-area-inset-bottom, 0px));
  }
  .lb-top { position: fixed; top: calc(12px + env(safe-area-inset-top, 0px)); left: 16px; right: 16px; }
  .lb-meta h3 { font-size: 18px; margin-top: 6px; }
  .lb-meta #lb-info, .lb-meta .lb-date, .lb-legal, .lb-cta p { display: none; }
  .lb-cta { grid-column: 1 / -1; grid-row: 2; padding: 0; background: none; border: 0; margin: 0; }
  .lb-nav { grid-column: 2; grid-row: 1; }
  .lb-link { margin-left: 0; }
  .lb-progress { right: 0; top: env(safe-area-inset-top, 0px); }
}

/* ───────── toast ───────── */
.toast {
  position: fixed; left: 50%; bottom: calc(28px + env(safe-area-inset-bottom, 0px)); z-index: 2000;
  transform: translate(-50%, 20px); opacity: 0; pointer-events: none;
  padding: 11px 18px; border-radius: 999px; font-size: 14px; font-weight: 500;
  background: #f7f7f8; color: #0b0b0c;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,.6);
  transition: transform .45s var(--ease), opacity .3s;
  max-width: calc(100vw - 32px); text-align: center;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }

/* skip rendering work for off-screen sections */
#pricing, #process, .contact, .footer { content-visibility: auto; contain-intrinsic-size: auto 700px; }

/* ───────── motion / print ───────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reel-track { animation: none !important; }
}
@media print {
  img, .reel, .masonry, .lb { display: none !important; }
  body::after { content: "Artwork is copyrighted material and is not available for printing."; }
}
