/* ============================================================
   CUPPER — Landing page chrome.
   Builds on cupper-ds.css tokens + cupper-components.css.
   Marketing-only layout; product components are reused as-is.
   ============================================================ */

/* page is marketing white-on-cool, slightly warmer than the app bg */
body.lp { background: var(--surface-0); color: var(--ink-900); }

.lp-wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px){ .lp-wrap { padding: 0 20px; } }

.eyebrow-lp {
  font-size: 12.5px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--blue-500); font-weight: 700; font-family: var(--font-body);
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow-lp svg { width: 15px; height: 15px; }

h1.lp, h2.lp, h3.lp { font-family: var(--font-display); font-weight: 700; color: var(--ink-900); letter-spacing: -.015em; text-wrap: balance; margin: 0; }
.lead-lp { font-size: 19px; line-height: 1.55; color: var(--ink-600); text-wrap: pretty; }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82); backdrop-filter: saturate(1.5) blur(12px);
  border-bottom: 1px solid transparent; transition: border-color var(--dur), box-shadow var(--dur);
}
.site-header.scrolled { border-color: var(--line-200); box-shadow: 0 1px 0 rgba(24,36,46,.03); }
.site-header .bar { display: flex; align-items: center; gap: 28px; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand img { width: 36px; height: 36px; border-radius: 10px; box-shadow: var(--e1); }
.brand b { font-family: var(--font-display); font-weight: 700; font-size: 21px; color: var(--blue-500); letter-spacing: -.01em; }
.site-nav { display: flex; gap: 4px; margin-left: auto; }
.site-nav a {
  color: var(--ink-600); text-decoration: none; font-weight: 600; font-size: 15px; white-space: nowrap;
  padding: 8px 13px; border-radius: var(--r-sm); transition: background var(--dur-fast), color var(--dur-fast);
}
.header-cta .btn { white-space: nowrap; }
.site-nav a:hover { background: var(--surface-50); color: var(--ink-900); }
.header-cta { display: flex; align-items: center; gap: 10px; }
@media (max-width: 880px){ .site-nav { display: none; } .header-cta .btn-secondary { display: none; } }

/* ---------------- Section rhythm ---------------- */
.lp-section { padding: 104px 0; position: relative; }
.lp-section.tight { padding: 80px 0; }
.lp-section.alt { background: var(--surface-50); border-block: 1px solid var(--line-100); }
@media (max-width: 720px){ .lp-section { padding: 72px 0; } }

.sec-head { max-width: 680px; margin-bottom: 56px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: clamp(30px, 4vw, 42px); line-height: 1.08; margin: 14px 0 16px; }
.sec-head .lead-lp { font-size: 18px; }

/* ---------------- Hero ---------------- */
.hero { padding: 64px 0 96px; overflow: clip; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); gap: 56px; align-items: center; }
@media (max-width: 1000px){ .hero-grid { grid-template-columns: 1fr; gap: 48px; } }

.hero-copy h1 { font-size: clamp(40px, 5.4vw, 62px); line-height: 1.02; margin: 20px 0 22px; }
.hero-copy .lead-lp { max-width: 30ch; font-size: 20px; }
.hero-actions { margin-top: 34px; display: flex; flex-direction: column; gap: 14px; max-width: 440px; }

/* email capture */
.capture { display: flex; gap: 10px; }
.capture .input { flex: 1; padding: 13px 15px; font-size: 15.5px; border-radius: var(--r-md); }
.capture .btn { white-space: nowrap; }
@media (max-width: 460px){ .capture { flex-direction: column; } .capture .btn { justify-content: center; } }
.capture-note { font-size: 13.5px; color: var(--ink-500); display: flex; align-items: center; gap: 7px; }
.capture-note svg { width: 15px; height: 15px; color: var(--confirm-icon); }
.capture.done .input { border-color: var(--confirm-border); background: var(--confirm-bg); color: var(--confirm-text); }
.form-msg { font-size: 14px; color: var(--confirm-text); font-weight: 600; display: none; align-items: center; gap: 7px; }
.form-msg svg { width: 16px; height: 16px; }
.capture.done + .form-msg { display: flex; }

.hero-secondary { display: inline-flex; align-items: center; gap: 7px; color: var(--blue-700); font-weight: 600; text-decoration: none; font-size: 15px; align-self: flex-start; padding: 4px 2px; }
.hero-secondary:hover { color: var(--blue-600); }
.hero-secondary svg { width: 17px; height: 17px; transition: transform var(--dur); }
.hero-secondary:hover svg { transform: translateY(2px); }

/* ---------------- The paper -> data transform ---------------- */
.transform {
  position: relative; display: grid;
  grid-template-columns: minmax(0,0.8fr) auto minmax(0,1.32fr);
  align-items: center; gap: 6px;
}
@media (max-width: 1200px){ .transform { gap: 4px; } }
@media (max-width: 520px){
  .transform { grid-template-columns: 1fr; gap: 26px; }
  .transform .xform-arrow { transform: rotate(90deg); justify-self: center; }
}

/* the photographed sheet */
.sheet-photo {
  position: relative; border-radius: var(--r-lg);
  background:
    radial-gradient(120% 90% at 20% -10%, rgba(255,255,255,.7), transparent 60%),
    linear-gradient(157deg, #fdfcf8 0%, #f6f3ea 52%, #efeadd 100%);
  border: 1px solid #e6e0d0;
  box-shadow: 0 18px 40px rgba(24,36,46,.16), 0 3px 10px rgba(24,36,46,.08);
  padding: 18px 18px 16px; transform: rotate(-2.2deg);
  font-family: var(--font-body);
}
.sheet-photo::after { /* soft photographic vignette */
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow: inset 0 0 44px rgba(60,52,30,.12); mix-blend-mode: multiply;
}
.sheet-hdr { display: flex; align-items: baseline; justify-content: space-between; border-bottom: 1.5px solid #cfc6ad; padding-bottom: 8px; margin-bottom: 4px; }
.sheet-hdr .ttl { font-family: var(--font-display); font-weight: 700; font-size: 13.5px; color: #6b6347; letter-spacing: .02em; }
.sheet-hdr .sub { font-size: 11px; color: #9a9075; font-weight: 600; }
.sheet-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 8px; padding: 6.5px 2px; border-bottom: 1px dashed #ded5bd; }
.sheet-row:last-child { border-bottom: 0; }
.sheet-row .attr { font-size: 12.5px; color: #7a7156; font-weight: 600; }
.hand { font-family: "Caveat", cursive; font-weight: 600; color: #2f3c52; font-size: 27px; line-height: 1; letter-spacing: .01em; }
.sheet-row.total { margin-top: 4px; padding-top: 9px; border-top: 1.5px solid #cfc6ad; border-bottom: 0; }
.sheet-row.total .attr { font-family: var(--font-display); font-weight: 700; color: #5a5238; font-size: 13px; }
.sheet-row.total .hand { font-size: 31px; color: #1f2a3a; }
.coffee-ring { position: absolute; width: 60px; height: 60px; right: 16px; bottom: 14px; border-radius: 50%; border: 7px solid rgba(120,86,40,.13); box-shadow: inset 0 0 0 2px rgba(120,86,40,.06); pointer-events: none; }

/* registration overlay boxes on the sheet (reuse .fbox semantics, scoped) */
.sheet-photo .fbox { z-index: 3; }
.fbox.appear { opacity: 0; animation: fboxIn .5s var(--ease) forwards; }

/* scan sweep */
.scan-sweep {
  position: absolute; left: 6px; right: 6px; top: 6px; height: 40px; border-radius: 8px; z-index: 4; pointer-events: none; opacity: 0;
  background: linear-gradient(180deg, rgba(60,128,175,0) 0%, rgba(60,128,175,.16) 70%, rgba(60,128,175,.5) 100%);
  border-bottom: 2px solid var(--blue-400);
  box-shadow: 0 6px 14px rgba(60,128,175,.28);
}

/* the connector arrow */
.xform-arrow { display: grid; place-items: center; color: var(--blue-300); width: 56px; }
.xform-arrow svg { width: 40px; height: 40px; }
@media (max-width: 1200px){ .xform-arrow { width: 40px; } .xform-arrow svg { width: 30px; height: 30px; } }

/* the clean data panel */
.data-panel { position: relative; }
.data-panel .tablewrap { transform: rotate(.6deg); }
.data-panel table.rt { font-size: 13px; }
.data-panel table.rt th, .data-panel table.rt td { padding: 9px 11px; }
.data-panel table.rt td.l .s-code { font-size: 12px; }
.data-panel .float-cell {
  position: absolute; z-index: 6; right: -14px; top: -22px;
  box-shadow: var(--e2);
}
.data-card-label { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--ink-500); font-weight: 600; margin-bottom: 12px; }
.data-card-label svg { width: 15px; height: 15px; color: var(--blue-500); }

/* table rows in hero: VISIBLE by default; hidden+animated only once JS arms it */
.reveal-row { opacity: 1; }
body.anim-ready .reveal-row { opacity: 0; }
body.anim-ready .reveal-row.in { animation: rowIn .5s var(--ease) forwards; }
@keyframes rowIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* cross-check chip in foot */
.xcheck { display: inline-flex; align-items: center; gap: 7px; color: var(--confirm-text); font-weight: 700; }
.xcheck svg { width: 15px; height: 15px; }

/* ---------------- Trust strip under hero ---------------- */
.trust-strip { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 80px; padding-top: 30px; border-top: 1px solid var(--line-100); align-items: center; }
.trust-strip .tlabel { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-400); font-weight: 700; }
.trust-strip .tform {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700;
  font-size: 15px; color: var(--ink-600); padding: 7px 15px; border: 1px solid var(--line-200);
  border-radius: var(--r-pill); background: var(--surface-0);
}
.trust-strip .tform .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-300); }

/* ---------------- How it works ---------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
@media (max-width: 880px){ .steps { grid-template-columns: 1fr; gap: 20px; } }
.step {
  position: relative; background: var(--surface-0); border: 1px solid var(--line-200);
  border-radius: var(--r-xl); padding: 26px 24px 24px; box-shadow: var(--e1);
  display: flex; flex-direction: column; gap: 14px;
}
.step .step-n {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--blue-600);
}
.step .step-n .num { width: 30px; height: 30px; border-radius: 9px; background: var(--blue-50); display: grid; place-items: center; font-size: 15px; }
.step h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--ink-900); margin: 0; }
.step p { font-size: 15px; color: var(--ink-600); margin: 0; text-wrap: pretty; line-height: 1.55; }
.step .step-visual { margin-top: 4px; border-radius: var(--r-md); overflow: hidden; }

/* mini sheet for step 1 */
.mini-sheet {
  background: linear-gradient(157deg, #fdfcf8, #f1ecdf); border: 1px solid #e6e0d0; border-radius: var(--r-md);
  padding: 12px 13px; transform: rotate(-1.4deg); box-shadow: var(--e1);
}
.mini-sheet .mrow { display: flex; justify-content: space-between; align-items: center; padding: 3.5px 0; border-bottom: 1px dashed #ded5bd; }
.mini-sheet .mrow:last-child { border-bottom: 0; }
.mini-sheet .mlbl { font-size: 11px; color: #7a7156; font-weight: 600; }
.mini-sheet .mval { font-family: "Caveat", cursive; font-weight: 700; font-size: 20px; color: #2f3c52; line-height: 1; }

/* phone-capture mock for step 2 */
.capture-mock {
  position: relative; aspect-ratio: 4/3; border-radius: var(--r-md); overflow: hidden;
  background: radial-gradient(130% 120% at 30% 0%, #2b3d4a, #16222b);
  display: grid; place-items: center; border: 1px solid var(--line-300);
}
.capture-mock .frame { width: 76%; height: 70%; border-radius: 10px; position: relative; }
.capture-mock .frame .c { position: absolute; width: 22px; height: 22px; border: 3px solid rgba(255,255,255,.9); }
.capture-mock .frame .c.tl { top: 0; left: 0; border-right: 0; border-bottom: 0; border-radius: 6px 0 0 0; }
.capture-mock .frame .c.tr { top: 0; right: 0; border-left: 0; border-bottom: 0; border-radius: 0 6px 0 0; }
.capture-mock .frame .c.bl { bottom: 0; left: 0; border-right: 0; border-top: 0; border-radius: 0 0 0 6px; }
.capture-mock .frame .c.br { bottom: 0; right: 0; border-left: 0; border-top: 0; border-radius: 0 0 6px 0; }
.capture-mock .frame .paper-thumb {
  position: absolute; inset: 14%; border-radius: 4px; transform: rotate(-3deg);
  background: linear-gradient(157deg, #fdfcf8, #ece6d6);
  box-shadow: 0 8px 20px rgba(0,0,0,.4);
}
.capture-mock .frame .paper-thumb i { display:block; height: 5px; margin: 12% 14% 0; border-radius: 2px; background: rgba(110,100,75,.32); }
.capture-mock .frame .paper-thumb i:nth-child(2){ margin-top: 10%; width: 60%; }
.capture-mock .frame .paper-thumb i:nth-child(3){ margin-top: 10%; width: 72%; }
.capture-mock .shutter { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); width: 38px; height: 38px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,.4); }

/* review mock for step 3 */
.review-mock { background: var(--surface-0); border: 1px solid var(--line-200); border-radius: var(--r-md); padding: 12px; display: flex; flex-direction: column; gap: 8px; box-shadow: var(--e1); }
.review-mock .rrow { display: flex; align-items: center; gap: 10px; }
.review-mock .rrow .rl { font-size: 12px; color: var(--ink-600); font-weight: 600; flex: 1; }

/* ---------------- Bring any form ---------------- */
.forms-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 880px){ .forms-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px){ .forms-grid { grid-template-columns: 1fr; } }
.form-card {
  background: var(--surface-0); border: 1px solid var(--line-200); border-radius: var(--r-lg);
  padding: 20px; box-shadow: var(--e1); display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow var(--dur), border-color var(--dur), transform var(--dur);
}
.form-card:hover { box-shadow: var(--e2); border-color: var(--line-300); transform: translateY(-3px); }
.form-card.own { background: var(--blue-50); border-color: var(--blue-200); border-style: dashed; }
.form-thumb {
  aspect-ratio: 5/6; border-radius: var(--r-md); border: 1px solid #e6e0d0; overflow: hidden; position: relative;
  background: linear-gradient(157deg, #fdfcf8, #f1ecdf); padding: 13px 12px; display: flex; flex-direction: column; gap: 6px;
}
.form-thumb .ft-ttl { font-family: var(--font-display); font-weight: 700; font-size: 10.5px; color: #6b6347; border-bottom: 1px solid #d8cfb6; padding-bottom: 5px; }
.form-thumb .ft-line { display: flex; justify-content: space-between; align-items: center; gap: 6px; }
.form-thumb .ft-line span { display: block; height: 5px; border-radius: 2px; background: rgba(110,100,75,.28); flex: 1; }
.form-thumb .ft-line b { font-family: "Caveat", cursive; font-size: 16px; color: #36506a; font-weight: 700; line-height: 1; }
.form-thumb.blank { display: grid; place-items: center; background: linear-gradient(157deg,#fff,#eef4f9); border-style: dashed; border-color: var(--blue-200); }
.form-thumb.blank .plus { width: 44px; height: 44px; border-radius: 13px; background: var(--surface-0); border: 1px solid var(--blue-200); display: grid; place-items: center; color: var(--blue-500); box-shadow: var(--e1); }
.form-thumb.blank .plus svg { width: 24px; height: 24px; }
.form-card .fc-name { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--ink-900); }
.form-card .fc-desc { font-size: 13px; color: var(--ink-600); margin-top: 2px; text-wrap: pretty; line-height: 1.5; }

.moat { margin-top: 36px; display: flex; gap: 14px; align-items: flex-start; max-width: 760px; }
.moat .micon { width: 46px; height: 46px; border-radius: 13px; background: var(--blue-50); display: grid; place-items: center; color: var(--blue-600); flex: none; }
.moat .micon svg { width: 24px; height: 24px; }
.moat .mtitle { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--ink-900); margin-bottom: 4px; }
.moat .mdesc { font-size: 15px; color: var(--ink-600); line-height: 1.55; text-wrap: pretty; }

/* ---------------- Sessions & teams ---------------- */
.teams-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
@media (max-width: 1000px){ .teams-grid { grid-template-columns: 1fr; gap: 44px; } }
.console {
  background: var(--surface-0); border: 1px solid var(--line-200); border-radius: var(--r-xl);
  box-shadow: var(--e3); overflow: hidden;
}
.console .cwin { display: flex; align-items: center; gap: 7px; padding: 11px 14px; border-bottom: 1px solid var(--line-100); background: var(--surface-25); }
.console .cwin .tl { display: flex; gap: 6px; }
.console .cwin .tl i { width: 11px; height: 11px; border-radius: 50%; background: var(--line-300); }
.console .cwin .addr { margin-left: 8px; font-size: 12px; color: var(--ink-500); font-family: var(--font-body); }
.console .cbody { padding: 18px; }
.console .ctitle { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.console .ctitle .ct-name { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--ink-900); }
.console .ctitle .ct-meta { font-size: 12.5px; color: var(--ink-500); margin-top: 2px; }

.eval-list { display: flex; flex-direction: column; gap: 8px; }
.eval-row { display: flex; align-items: center; gap: 12px; padding: 11px 13px; border: 1px solid var(--line-200); border-radius: var(--r-md); background: var(--surface-0); }
.eval-row .av { width: 32px; height: 32px; border-radius: 50%; background: var(--blue-50); color: var(--blue-600); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 13px; flex: none; }
.eval-row .en { flex: 1; min-width: 0; }
.eval-row .en .nm { display: block; font-weight: 600; font-size: 14px; color: var(--ink-900); }
.eval-row .en .role { display: block; font-size: 12px; color: var(--ink-500); margin-top: 1px; }
.eval-row .prog { display: flex; align-items: center; gap: 9px; }
.eval-row .prog .pbar { width: 78px; }
.eval-row .prog .pn { font-size: 12.5px; font-weight: 700; color: var(--ink-600); font-feature-settings: var(--tnum); min-width: 34px; text-align: right; }

.teams-points { display: flex; flex-direction: column; gap: 26px; }
.tpoint { display: flex; gap: 14px; }
.tpoint .tpi { width: 44px; height: 44px; border-radius: 13px; background: var(--surface-0); border: 1px solid var(--line-200); display: grid; place-items: center; color: var(--blue-600); flex: none; box-shadow: var(--e1); }
.tpoint .tpi svg { width: 22px; height: 22px; }
.tpoint h3 { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--ink-900); margin: 0 0 4px; }
.tpoint p { font-size: 14.5px; color: var(--ink-600); margin: 0; line-height: 1.55; text-wrap: pretty; }

/* ---------------- Social proof placeholder ---------------- */
.proof { text-align: center; }
.proof .proof-line { font-family: var(--font-display); font-weight: 600; font-size: clamp(22px, 3vw, 30px); color: var(--ink-800); max-width: 18ch; margin: 0 auto 10px; line-height: 1.2; text-wrap: balance; }
.logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 34px; }
.logo-slot {
  width: 150px; height: 56px; border-radius: var(--r-md); border: 1px dashed var(--line-300);
  display: grid; place-items: center; color: var(--ink-400); font-size: 12px; font-weight: 600;
  background: var(--surface-0);
}
.proof-tag { font-size: 13px; color: var(--ink-400); margin-top: 20px; }

/* ---------------- Final CTA ---------------- */
.final-cta {
  position: relative; overflow: hidden;
  background:
    radial-gradient(90% 130% at 85% 10%, rgba(255,255,255,.10), transparent 55%),
    linear-gradient(155deg, var(--blue-600) 0%, var(--blue-700) 55%, var(--blue-800) 100%);
  color: #fff; border-radius: var(--r-xl); padding: 64px;
}
@media (max-width: 720px){ .final-cta { padding: 44px 26px; } }
.final-cta .steam-bg { position: absolute; right: -10px; bottom: -20px; width: 280px; height: 280px; color: rgba(255,255,255,.08); pointer-events: none; }
.final-cta .steam-bg svg { width: 100%; height: 100%; }
.final-cta h2 { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: clamp(30px, 4.5vw, 46px); line-height: 1.05; margin: 0 0 16px; letter-spacing: -.02em; max-width: 16ch; }
.final-cta p { font-size: 19px; color: rgba(255,255,255,.85); max-width: 46ch; margin: 0 0 32px; line-height: 1.5; }
.final-cta .capture { max-width: 480px; }
.final-cta .capture .input { background: rgba(255,255,255,.95); border-color: transparent; }
.final-cta .capture .btn-primary { background: #fff; color: var(--blue-700); }
.final-cta .capture .btn-primary:hover { background: var(--blue-50); }
.final-cta .capture-note { color: rgba(255,255,255,.78); }
.final-cta .capture-note svg { color: #bfe0cf; }
.final-cta .form-msg { color: #fff; }
.final-cta .capture.done .input { background: rgba(255,255,255,.95); color: var(--blue-800); border-color: #fff; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--surface-50); border-top: 1px solid var(--line-200); padding: 64px 0 40px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 880px){ .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 460px){ .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-brand .brand { margin-bottom: 14px; }
.foot-brand p { font-size: 14px; color: var(--ink-600); max-width: 30ch; line-height: 1.55; }
.foot-col h4 { font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--ink-800); margin: 0 0 14px; letter-spacing: .02em; }
.foot-col a { display: block; color: var(--ink-600); text-decoration: none; font-size: 14px; padding: 5px 0; transition: color var(--dur-fast); }
.foot-col a:hover { color: var(--blue-700); }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line-200); flex-wrap: wrap; }
.foot-bottom .copy { font-size: 13px; color: var(--ink-500); }
.foot-bottom .badges { display: flex; gap: 10px; }
.store-badge { display: inline-flex; align-items: center; gap: 9px; padding: 8px 14px; border: 1px solid var(--line-300); border-radius: var(--r-md); background: var(--surface-0); color: var(--ink-700); font-size: 12px; font-weight: 600; }
.store-badge svg { width: 18px; height: 18px; }
.store-badge .sb-sub { display: block; font-size: 9px; color: var(--ink-500); text-transform: uppercase; letter-spacing: .05em; line-height: 1.2; }
.store-badge .sb-main { display: block; font-family: var(--font-display); font-weight: 700; font-size: 13px; line-height: 1.1; }

/* ---------------- Scroll reveal ---------------- */
/* VISIBLE by default; only armed (hidden + transitioned) once JS confirms a visible tab */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference){
  body.anim-ready .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
}
body.anim-ready .reveal.in { opacity: 1; transform: none; }

@keyframes fboxIn { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce){
  .reveal, .reveal-row { opacity: 1 !important; transform: none !important; animation: none !important; }
}