/* China Catalogue — public storefront.
   Monochrome system on /shared/theme.css tokens: white paper, near-black ink,
   grey structure. The only accent is the solid ink button; the sealed-contact
   panel is the one deliberate dark moment. Golos Text everywhere. */

/* Two-row header below 900px: brand row + always-rendered section row (the
   row exists even on a fresh DB, so --nav-h never depends on content). */
:root { --navbar-h: 60px; --navrow-h: 48px; --nav-h: calc(var(--navbar-h) + var(--navrow-h)); }
@media (min-width: 900px) { :root { --navbar-h: 68px; --nav-h: var(--navbar-h); } }

html { height: 100%; scroll-padding-top: calc(var(--nav-h) + 12px); }
a { text-decoration: none; }
button { background: none; border: 0; cursor: pointer; padding: 0; }
.hidden { display: none !important; }

.wrap {
  max-width: var(--content-w);
  margin-inline: auto;
  padding-inline: var(--pad);
}
main.wrap { min-height: 62vh; padding-bottom: 48px; }

.kicker {
  font-size: 11.5px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink-3);
}

/* ───────────────────────── top nav ───────────────────────── */
.topnav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250, 250, 249, .88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding-top: env(safe-area-inset-top);
}
.nav-in {
  max-width: var(--content-w); margin-inline: auto; padding-inline: var(--pad);
  height: var(--navbar-h); display: flex; align-items: center; gap: 20px;
}
.wordmark {
  font-size: 17px; font-weight: 700; letter-spacing: -.02em; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0;
}
.nav-links { display: none; }
@media (min-width: 900px) {
  .nav-links { display: flex; gap: 2px; margin-left: auto; }
  .nav-links a {
    display: inline-flex; align-items: center; min-height: 40px; padding: 0 14px;
    border-radius: var(--r-s); font-size: 14.5px; font-weight: 500; color: var(--ink-2);
    transition: background var(--t-fast), color var(--t-fast);
  }
  .nav-links a:hover { background: var(--surface-2); color: var(--ink); }
  .nav-links a[aria-current="page"] { color: var(--ink); font-weight: 600; }
}
/* mobile section row — chips-style horizontal scroller, hidden scrollbar */
.nav-row {
  display: flex; align-items: center; gap: 4px;
  height: var(--navrow-h);
  max-width: var(--content-w); margin-inline: auto; padding-inline: var(--pad);
  overflow-x: auto; scrollbar-width: none;
}
.nav-row::-webkit-scrollbar { display: none; }
.nav-row a {
  flex: none; display: inline-flex; align-items: center;
  min-height: 34px; padding: 0 13px; border-radius: 999px;
  font-size: 13.5px; font-weight: 500; color: var(--ink-2); white-space: nowrap;
  transition: background var(--t-fast), color var(--t-fast);
}
.nav-row a[aria-current="page"] { background: var(--surface-2); color: var(--ink); font-weight: 600; }
@media (min-width: 900px) { .nav-row { display: none; } }
.lang-toggle {
  margin-left: auto; flex: none;
  display: inline-flex; align-items: center; gap: 2px;
  min-height: 44px; padding: 3px; border-radius: 10px;
  background: var(--surface-2);
}
@media (min-width: 900px) { .lang-toggle { margin-left: 0; } }
.lang-toggle b, .lang-toggle span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; min-height: 32px; border-radius: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: .08em;
}
.lang-toggle b { background: var(--ink); color: #fff; }
.lang-toggle span { color: var(--ink-3); }
.lang-toggle:hover span { color: var(--ink-2); }

/* ───────────────────────── hero ───────────────────────── */
.hero { padding: 40px 0 4px; animation: rise .4s ease both; }
@media (min-width: 720px) { .hero { padding: 64px 0 8px; } }
.hero-t {
  font-size: clamp(30px, 5vw, 46px); font-weight: 650; letter-spacing: -.028em;
  line-height: 1.06; margin-top: 14px; max-width: 22ch;
}
.mast-sub {
  color: var(--ink-2); font-size: 16px; line-height: 1.55;
  margin-top: 14px; max-width: 56ch;
}
@media (min-width: 720px) { .mast-sub { font-size: 17px; } }
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }

/* ───────────────────────── toolbar: search + chips ───────────────────────── */
.toolbar {
  position: sticky; top: calc(var(--nav-h) + env(safe-area-inset-top)); z-index: 30;
  margin-top: 34px; padding-block: 12px;
  margin-inline: calc(-1 * var(--pad)); padding-inline: var(--pad);
  background: var(--bg);
  display: flex; flex-direction: column; gap: 12px;
  animation: rise .4s .05s ease both;
}
@media (min-width: 900px) {
  .toolbar { flex-direction: row; align-items: center; gap: 16px; }
}
.searchwrap { position: relative; flex: 1; max-width: 460px; }
.searchwrap > .ic {
  position: absolute; left: 15px; top: 50%; translate: 0 -50%;
  color: var(--ink-3); pointer-events: none;
}
.search { padding-left: 46px; padding-right: 48px; border-radius: var(--r-m); }
.search::-webkit-search-cancel-button, .search::-webkit-search-decoration { -webkit-appearance: none; }
.search-x {
  position: absolute; right: 3px; top: 50%; translate: 0 -50%;
  width: 44px; height: 44px; display: none; align-items: center; justify-content: center;
  border-radius: var(--r-s); color: var(--ink-3);
  transition: color var(--t-fast), background var(--t-fast);
}
.search-x:hover { color: var(--ink); background: var(--surface-2); }
.searchwrap.has-q .search-x { display: inline-flex; }

.chips {
  display: flex; gap: 8px; flex-wrap: nowrap; overflow-x: auto;
  margin-inline: calc(-1 * var(--pad)); padding-inline: var(--pad);
  scrollbar-width: none;
}
.chips::-webkit-scrollbar { display: none; }
@media (min-width: 900px) {
  .chips { flex-wrap: wrap; overflow: visible; margin-inline: 0; padding-inline: 0; }
}
.chip {
  flex: none; min-height: 44px; padding: 0 16px; border-radius: 999px;
  border: 1px solid var(--line-2); background: var(--surface); color: var(--ink-2);
  font-size: 14px; font-weight: 500;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.chip:hover { border-color: var(--ink-3); color: var(--ink); }
.chip.on { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ───────────────────────── catalogue grid ───────────────────────── */
.plaza-sec { margin-top: 40px; animation: rise .4s .08s ease both; }
.plaza-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  border-bottom: 1px solid var(--line); padding-bottom: 12px;
}
.plaza-name { font-size: 22px; font-weight: 650; letter-spacing: -.02em; }
@media (min-width: 720px) { .plaza-name { font-size: 24px; } }
.plaza-count { font-size: 11.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); white-space: nowrap; }
.plaza-note { color: var(--ink-2); font-size: 14px; margin-top: 10px; max-width: 64ch; }

.grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 18px; }
@media (min-width: 720px) { .grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 1040px) { .grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

a.card {
  display: block; overflow: hidden; color: var(--ink);
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
}
@media (hover: hover) {
  a.card:hover {
    transform: translateY(-2px);
    border-color: var(--line-2);
    box-shadow: 0 12px 32px rgba(23, 24, 26, .09);
  }
}
a.card:active { transform: scale(.99); }
.cover { position: relative; aspect-ratio: 4 / 3; background: var(--surface-2); overflow: hidden; }
.cover img { width: 100%; height: 100%; object-fit: cover; }
.cover-empty { position: absolute; inset: 0; display: grid; place-items: center; color: var(--ink-3); }
.b {
  position: absolute; left: 10px; top: 10px;
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
  background: rgba(23, 24, 26, .72); color: #fff;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.b .ic { width: 12px; height: 12px; }
.b.unlocked { background: rgba(255, 255, 255, .94); color: var(--ink); box-shadow: var(--shadow-1); }
.card-body { padding: 14px 16px 16px; }
.card-no { font-size: 17px; font-weight: 650; letter-spacing: -.01em; }
.card-no small { font-size: 12.5px; font-weight: 500; color: var(--ink-3); margin-left: 8px; letter-spacing: 0; }
.card-meta { display: flex; flex-wrap: wrap; gap: 4px 12px; margin-top: 6px; font-size: 13px; color: var(--ink-2); }
.card-meta .q { font-weight: 600; color: var(--ink); }
.card-note {
  margin-top: 8px; font-size: 13.5px; color: var(--ink-2); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* ───────────────────────── shop page ───────────────────────── */
.pagehead { padding: 16px 0 6px; }
.backbtn {
  display: inline-flex; align-items: center; gap: 7px;
  min-height: 44px; padding: 0 12px; margin-left: -12px; border-radius: var(--r-s);
  color: var(--ink-2); font-size: 14.5px; font-weight: 500;
  transition: background var(--t-fast), color var(--t-fast);
}
.backbtn:hover { background: var(--surface-2); color: var(--ink); }

.shop-layout { margin-top: 4px; }
@media (min-width: 1040px) {
  .shop-layout {
    display: grid; grid-template-columns: minmax(0, 7fr) minmax(380px, 5fr);
    gap: 44px; align-items: start;
  }
  .shop-media { position: sticky; top: calc(var(--nav-h) + 24px); }
}

.gallery {
  position: relative; border-radius: var(--r-l); overflow: hidden;
  background: var(--surface-2); border: 1px solid var(--line);
  aspect-ratio: 1 / 1;
}
@media (min-width: 720px) { .gallery { aspect-ratio: 4 / 3; } }
.gallery-track {
  display: flex; height: 100%;
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track img {
  width: 100%; height: 100%; flex: none; object-fit: cover; scroll-snap-align: start;
}
.gallery-empty { display: grid; place-items: center; color: var(--ink-3); }
.gal-btn {
  position: absolute; top: 50%; translate: 0 -50%;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255, 255, 255, .94); color: var(--ink);
  border: 1px solid var(--line); box-shadow: var(--shadow-1);
  display: none; align-items: center; justify-content: center;
  transition: background var(--t-fast), transform var(--t-fast);
}
.gal-btn:hover { background: #fff; }
.gal-btn:active { transform: translateY(0) scale(.94); }
.gal-btn.prev { left: 14px; }
.gal-btn.next { right: 14px; }
@media (min-width: 1040px) { .gal-btn { display: inline-flex; } }
.ic.flip { transform: scaleX(-1); }
.gal-dots {
  position: absolute; bottom: 12px; left: 50%; translate: -50% 0;
  display: flex; gap: 6px; pointer-events: none;
}
.gal-dots i {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255, 255, 255, .55); box-shadow: 0 0 0 1px rgba(23, 24, 26, .12);
  transition: background var(--t-fast);
}
.gal-dots i.on { background: #fff; }
.gal-count {
  position: absolute; top: 12px; right: 12px;
  background: rgba(23, 24, 26, .72); color: #fff;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}

.shop-info { margin-top: 22px; }
@media (min-width: 1040px) { .shop-info { margin-top: 0; } }
.shop-title { font-size: 28px; font-weight: 650; letter-spacing: -.025em; line-height: 1.1; }
@media (min-width: 720px) { .shop-title { font-size: 32px; } }
.shop-title .cat { font-size: 15px; font-weight: 500; color: var(--ink-3); letter-spacing: 0; margin-left: 6px; }
.shop-sub { display: inline-flex; align-items: center; gap: 6px; color: var(--ink-2); font-size: 14px; margin-top: 8px; }
.shop-sub .ic { color: var(--ink-3); }
.specs { margin: 20px 0 0; border-top: 1px solid var(--line); }
.spec { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.spec dt {
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-3); padding-top: 3px; white-space: nowrap;
}
.spec dd { margin: 0; font-size: 14.5px; font-weight: 500; text-align: right; }
.shop-notes { margin-top: 16px; font-size: 15px; line-height: 1.6; white-space: pre-wrap; }

/* sealed contact panel — the one dark moment */
.seal-panel {
  margin-top: 26px; padding: 24px;
  background: var(--ink); color: #fff; border-radius: var(--r-l);
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 20px;
  box-shadow: var(--shadow-2);
}
.seal-qr {
  grid-column: 2; align-self: start; position: relative;
  width: 88px; height: 88px; border-radius: 12px; overflow: hidden; background: #fff;
}
@media (min-width: 720px) { .seal-qr { width: 116px; height: 116px; } }
.seal-qr svg { width: 100%; height: 100%; display: block; filter: blur(5px); transform: scale(1.12); opacity: .9; }
.seal-lock {
  position: absolute; inset: 0; margin: auto; width: 38px; height: 38px;
  border-radius: 50%; background: var(--ink); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .9);
}
.seal-lock .ic { width: 17px; height: 17px; }
.seal-inner { grid-column: 1; min-width: 0; }
.seal-k { font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(255, 255, 255, .55); }
.seal-t { font-size: 20px; font-weight: 650; letter-spacing: -.015em; margin: 8px 0 6px; }
@media (min-width: 720px) { .seal-t { font-size: 22px; } }
.seal-d { font-size: 14px; line-height: 1.55; color: rgba(255, 255, 255, .72); max-width: 46ch; }
.seal-cta { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.seal-cta .btn { white-space: nowrap; }
.btn-invert { background: #fff; color: var(--ink); }
.btn-invert:hover { background: #ececeb; }
.btn-outline-invert { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .32); }
.btn-outline-invert:hover { border-color: rgba(255, 255, 255, .65); }

/* unlocked contact card */
.contact-card {
  margin-top: 26px; padding: 28px 22px 24px; text-align: center;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-l); box-shadow: var(--shadow-1);
  animation: unlock-in .5s cubic-bezier(.3, .7, .4, 1) both;
}
.contact-k {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 650; letter-spacing: .16em; text-transform: uppercase; color: var(--ink);
}
.contact-qr {
  width: 224px; height: 224px; margin: 18px auto 0; padding: 12px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
}
.contact-qr svg { width: 100%; height: 100%; display: block; }
.contact-link { font-size: 13px; color: var(--ink-2); word-break: break-all; margin: 12px auto 0; max-width: 36ch; }
.contact-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.contact-extra { margin-top: 12px; font-size: 12.5px; color: var(--ink-3); }

/* ───────────────────────── pricing ───────────────────────── */
.price-head { margin-top: 12px; text-align: center; }
.price-title { font-size: clamp(28px, 4vw, 38px); font-weight: 650; letter-spacing: -.025em; }
.price-sub { color: var(--ink-2); font-size: 15.5px; line-height: 1.55; margin: 12px auto 0; max-width: 58ch; }

.tiers { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
@media (min-width: 860px) { .tiers { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.tier {
  display: flex; flex-direction: column;
  padding: 24px 22px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-l); box-shadow: var(--shadow-1);
}
.tier.hot { background: var(--ink); border-color: var(--ink); color: #fff; box-shadow: var(--shadow-2); }
.tier-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.tier-name { font-size: 15.5px; font-weight: 600; }
.tier-tag { background: rgba(255, 255, 255, .16); color: #fff; }
.tier-price { font-size: 34px; font-weight: 650; letter-spacing: -.02em; margin-top: 10px; }
.tier-desc { margin-top: 8px; font-size: 14px; line-height: 1.55; color: var(--ink-2); }
.tier.hot .tier-desc { color: rgba(255, 255, 255, .72); }

.pricing-cols { margin-top: 44px; }
@media (min-width: 860px) {
  .pricing-cols { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: 44px; align-items: start; }
}
.paysteps h3 { font-size: 20px; font-weight: 650; letter-spacing: -.015em; margin-bottom: 12px; }
.step { display: flex; gap: 14px; padding: 14px 0; border-top: 1px solid var(--line); }
.step-n {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: grid; place-items: center; font-size: 13.5px; font-weight: 600;
}
.step-b { font-size: 14.5px; font-weight: 500; padding-top: 4px; }
.step-b small { display: block; font-size: 13.5px; font-weight: 400; color: var(--ink-2); margin-top: 3px; }
.paybox {
  margin-top: 24px; padding: 18px 20px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-l);
  font-size: 14px; line-height: 1.6; white-space: pre-wrap;
}
@media (min-width: 860px) { .paybox { margin-top: 0; } }
.paybox .kicker { display: inline-flex; align-items: center; gap: 6px; }

.pricing-ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.pricing-ctas .btn { flex: 1 1 auto; }
@media (min-width: 720px) { .pricing-ctas .btn { flex: 0 0 auto; min-width: 240px; } }

/* ───────────────────────── redeem ───────────────────────── */
.redeem-card {
  max-width: 480px; margin: 28px auto 0; padding: 40px 26px 30px; text-align: center;
}
.redeem-ico {
  width: 56px; height: 56px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--surface-2); color: var(--ink);
  display: grid; place-items: center;
}
.redeem-t { font-size: 24px; font-weight: 650; letter-spacing: -.02em; }
.redeem-sub { color: var(--ink-2); font-size: 14.5px; margin-top: 8px; }
.code-input {
  display: block; width: 100%; max-width: 300px; height: 60px; margin: 26px auto 0;
  text-align: center; font: inherit; font-size: 26px; font-weight: 650; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink);
  background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-m);
  outline: none; transition: border-color var(--t-fast);
}
.code-input:focus { border-color: var(--ink); }
.code-input[aria-invalid="true"] { border-color: var(--err); }
.code-input::placeholder { color: var(--ink-3); font-weight: 500; }
.code-input.shake { animation: shake .3s linear; }
.redeem-err { min-height: 20px; margin-top: 12px; }
.redeem-btn { min-width: 244px; margin-top: 8px; }
.redeem-note { margin-top: 22px; font-size: 13px; color: var(--ink-3); max-width: 40ch; margin-inline: auto; }

/* ───────────────────────── my contacts ───────────────────────── */
.page-title { font-size: 26px; font-weight: 650; letter-spacing: -.02em; margin-top: 8px; }
.mylist { margin-top: 20px; display: grid; gap: 12px; max-width: 680px; }
.myrow {
  display: flex; align-items: center; gap: 14px; padding: 16px 18px; color: var(--ink);
  transition: transform var(--t-fast), border-color var(--t-fast);
}
@media (hover: hover) { .myrow:hover { transform: translateY(-1px); border-color: var(--line-2); } }
.myrow > .ic { color: var(--ink); flex: none; }
.myrow-t { font-size: 15px; font-weight: 600; }
.myrow-s { font-size: 13px; color: var(--ink-2); margin-top: 2px; }
.myrow .chev { margin-left: auto; color: var(--ink-3); display: inline-flex; }

/* ───────────────────────── goods («Товары») ───────────────────────── */
.goods-head { padding: 30px 0 0; animation: rise .4s ease both; }
@media (min-width: 720px) { .goods-head { padding: 44px 0 0; } }
.page-sub { color: var(--ink-2); font-size: 15px; line-height: 1.55; margin-top: 10px; max-width: 56ch; }
.goods-count {
  margin-top: 14px; font-size: 11.5px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3);
}
.goods-grid { margin-top: 20px; animation: rise .4s .05s ease both; }
.card-meta .por { color: var(--ink-3); }

.goods-price { font-size: 26px; font-weight: 650; letter-spacing: -.02em; margin-top: 10px; }
.goods-price.por { font-size: 15px; font-weight: 500; color: var(--ink-2); }
.order-block { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.order-btn { width: 100%; }
@media (min-width: 720px) { .order-btn { width: auto; min-width: 260px; } }
.wa-fallback {
  margin-top: 16px; padding: 14px 16px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-m);
}
.wa-hint { font-size: 12.5px; color: var(--ink-3); }
.wa-num { font-size: 15.5px; font-weight: 600; letter-spacing: .02em; margin-top: 6px; user-select: all; }
.wa-fallback-btns { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }

/* ───────────────────────── guide («Как заказать») ───────────────────────── */
.guide { max-width: 720px; margin-top: 6px; padding-bottom: 8px; animation: rise .4s .05s ease both; }
.guide-h { font-size: 21px; font-weight: 650; letter-spacing: -.02em; margin-top: 34px; }
@media (min-width: 720px) { .guide-h { font-size: 23px; } }
.guide-p { margin-top: 14px; font-size: 15.5px; line-height: 1.65; white-space: pre-wrap; }
.guide-photo {
  display: block; margin-top: 20px; border-radius: var(--r-l); overflow: hidden;
  border: 1px solid var(--line); background: var(--surface-2);
}
.guide-photo img { width: 100%; display: block; }
.guide-video {
  display: flex; align-items: center; gap: 16px; margin-top: 20px; padding: 14px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-l);
}
.gv-cover {
  position: relative; flex: none; width: 116px; aspect-ratio: 4 / 3;
  border-radius: var(--r-m); overflow: hidden; background: var(--surface-2);
  display: grid; place-items: center;
}
@media (min-width: 720px) { .gv-cover { width: 148px; } }
.gv-cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gv-play {
  position: relative; z-index: 1; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(23, 24, 26, .78); color: #fff;
  display: grid; place-items: center;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.gv-play svg { width: 18px; height: 18px; fill: currentColor; display: block; margin-left: 2px; }
.gv-body { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.gv-t { font-size: 14.5px; font-weight: 600; line-height: 1.4; }
.gv-url { font-size: 12.5px; color: var(--ink-3); word-break: break-all; }
.guide-cta { margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--line); }

/* ───────────────────────── misc ───────────────────────── */
.state.fatal { min-height: 72vh; justify-content: center; }
.skel-card { aspect-ratio: 4 / 5; border-radius: var(--r-l); }

.footer { margin-top: 72px; border-top: 1px solid var(--line); padding: 28px 0 calc(28px + env(safe-area-inset-bottom)); text-align: center; }
.footer .kicker { display: block; }
.footer p { color: var(--ink-3); font-size: 13px; margin-top: 6px; }

@keyframes rise { from { opacity: 0; transform: translateY(10px); } }
@keyframes unlock-in {
  0% { opacity: 0; transform: scale(.96); }
  60% { transform: scale(1.008); }
  100% { opacity: 1; transform: none; }
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-7px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(3px); }
}
