/* ============================================================================
   Gathered — Marketing site
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--surface);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; border-radius: 4px; }

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'opsz' 24;
  user-select: none;
}
.fill { font-variation-settings: 'FILL' 1, 'wght' 400, 'opsz' 24; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--s6); }
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s2);
  font: 500 13px/1 var(--font-sans); letter-spacing: .8px; text-transform: uppercase;
  color: var(--primary);
}
.eyebrow .material-symbols-outlined { font-size: 18px; }

/* ───────────────────────── Buttons ───────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s2);
  min-height: 48px; padding: 0 var(--s6); border-radius: var(--r-pill);
  font: 500 15px/1 var(--font-sans); letter-spacing: .1px;
  border: 1px solid transparent; cursor: pointer; transition: background .15s, border-color .15s, color .15s;
  white-space: nowrap;
}
.btn--primary { background: var(--primary); color: var(--on-primary); }
.btn--primary:hover { background: var(--primary-hover); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn .material-symbols-outlined { font-size: 20px; }

/* ───────────────────────── Store badges ───────────────────────── */
.badges { display: flex; flex-wrap: wrap; gap: var(--s3); }
.badge {
  display: inline-flex; align-items: center; gap: var(--s3);
  height: 56px; padding: 0 var(--s5) 0 var(--s4); border-radius: var(--r-lg);
  background: var(--ink); color: var(--surface);
  border: 1px solid transparent; position: relative; cursor: default;
}
.badge svg { width: 24px; height: 24px; flex: 0 0 24px; fill: currentColor; }
.badge > .material-symbols-outlined { font-size: 26px; }
.badge__txt { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.badge__txt small { font: 400 10px/1.3 var(--font-sans); letter-spacing: .3px; opacity: .85; }
.badge__txt strong { font: 500 16px/1.15 var(--font-sans); }
.badge__soon {
  position: absolute; top: -9px; right: -8px;
  font: 500 10px/1 var(--font-sans); letter-spacing: .4px; text-transform: uppercase;
  background: var(--primary); color: var(--on-primary);
  padding: 4px 7px; border-radius: var(--r-pill);
}
.badge--quiet { background: transparent; color: var(--ink); border-color: var(--line-strong); }

/* ───────────────────────── Top nav ───────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__row { display: flex; align-items: center; gap: var(--s6); height: 68px; }
.brand { display: inline-flex; align-items: center; gap: var(--s2); font: 500 21px/1 var(--font-sans); color: var(--ink); }
.brand .material-symbols-outlined { font-size: 26px; color: var(--primary); }
.brand__mark { display: inline-flex; align-items: center; color: var(--primary); }
.brand__mark svg { width: 27px; height: 27px; display: block; }
.brand b { font-weight: 700; }
.brand__word { white-space: nowrap; }
.nav__links { display: flex; align-items: center; gap: var(--s2); margin-left: auto; }
.nav__links a {
  padding: 8px 14px; border-radius: var(--r-pill); font: 500 14px/1 var(--font-sans); color: var(--muted);
}
.nav__links a:hover { color: var(--ink); background: var(--panel); }
.nav__links a.is-cta { color: var(--on-primary); background: var(--primary); }
.nav__links a.is-cta:hover { background: var(--primary-hover); }
.nav__menu { display: none; }

/* ───────────────────────── Sections ───────────────────────── */
.section { padding: var(--s24) 0; }
.section--tight { padding: var(--s16) 0; }
.section__head { max-width: 680px; margin: 0 auto var(--s12); text-align: center; }
.section__head.is-left { margin-left: 0; text-align: left; }
h1, h2, h3 { margin: 0; color: var(--ink); text-wrap: balance; }
.h-display { font: 700 clamp(40px, 6vw, 64px)/1.04 var(--font-sans); letter-spacing: -1px; }
.h-1 { font: 700 clamp(30px, 4.4vw, 44px)/1.08 var(--font-sans); letter-spacing: -.5px; }
.h-2 { font: 500 clamp(22px, 2.6vw, 28px)/1.2 var(--font-sans); }
.lead { font: 400 clamp(17px, 1.9vw, 20px)/1.55 var(--font-sans); color: var(--muted); text-wrap: pretty; }
.muted { color: var(--muted); }

/* ───────────────────────── Hero (Direction A) ───────────────────────── */
.hero { position: relative; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(120% 90% at 80% -10%, var(--hero-grad-a) 0%, var(--surface) 60%);
}
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--s16); align-items: center;
  padding: var(--s20) 0 var(--s16);
}
.hero__copy > * + * { margin-top: var(--s6); }
.hero__copy .badges { margin-top: var(--s8); }
.hero__note { display: flex; align-items: center; gap: var(--s2); font: 400 14px/1.4 var(--font-sans); color: var(--muted); margin-top: var(--s5); }
.hero__note .material-symbols-outlined { font-size: 18px; color: var(--primary); }

.hero__art { display: flex; justify-content: center; align-items: center; position: relative; }
.hero__art--tilt .phone { transform: rotate(-4deg); }

/* ───────────────────────── Feature cards ───────────────────────── */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s5); }
.feat {
  padding: var(--s6); border-radius: var(--r-xl); background: var(--surface);
  border: 1px solid var(--line); box-shadow: var(--shadow-1);
  display: flex; flex-direction: column; gap: var(--s3);
}
.feat__icon {
  width: 52px; height: 52px; border-radius: var(--r-lg);
  display: grid; place-items: center; background: var(--soft); color: var(--on-soft); margin-bottom: var(--s2);
}
.feat__icon .material-symbols-outlined { font-size: 28px; }
.feat h3 { font: 500 19px/1.25 var(--font-sans); }
.feat p { margin: 0; font: 400 15px/1.5 var(--font-sans); color: var(--muted); }

/* alternating editorial rows */
.altrow { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s16); align-items: center; }
.altrow + .altrow { margin-top: var(--s20); }
.altrow--flip .altrow__art { order: -1; }
.altrow__copy > * + * { margin-top: var(--s4); }
.altrow__copy .eyebrow { margin-bottom: var(--s2); }
.altrow__art { display: flex; justify-content: center; }

/* ───────────────────────── Steps ───────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s8); }
.step { display: flex; flex-direction: column; gap: var(--s4); }
.step__n {
  width: 44px; height: 44px; border-radius: var(--r-pill); display: grid; place-items: center;
  background: var(--primary); color: var(--on-primary); font: 700 19px/1 var(--font-sans);
}
.step h3 { font: 500 20px/1.25 var(--font-sans); }
.step p { margin: 0; color: var(--muted); font: 400 15px/1.55 var(--font-sans); }
.step__art {
  margin-top: auto; border-radius: var(--r-lg); background: var(--panel);
  border: 1px solid var(--line); padding: var(--s5); display: grid; place-items: center; min-height: 132px;
}
/* Step-mockup phones sized so the vendor card shows its full field set
   (hero, Phone, Email, Website, Notes) on one line each, matching the
   features-section screens. Steps collapse to one column ≤940px. */
.step__art .phone { width: 268px !important; flex-basis: 268px !important; }

/* ───────────────────────── CTA band ───────────────────────── */
.cta-band {
  background: linear-gradient(160deg, var(--hero-grad-a), var(--panel-2));
  border-radius: var(--r-2xl); padding: var(--s16); text-align: center;
  border: 1px solid var(--line);
}
.cta-band > * + * { margin-top: var(--s5); }
.cta-band .badges { justify-content: center; margin-top: var(--s8); }

/* ───────────────────────── Footer ───────────────────────── */
.footer { border-top: 1px solid var(--line); background: var(--panel-2); padding: var(--s16) 0 var(--s10); margin-top: var(--s8); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--s12); }
.footer__brand .brand { margin-bottom: var(--s3); }
.footer__brand p { margin: 0; color: var(--muted); font: 400 14px/1.6 var(--font-sans); max-width: 34ch; }
.footer h4 { margin: 0 0 var(--s4); font: 500 13px/1 var(--font-sans); letter-spacing: .6px; text-transform: uppercase; color: var(--muted); }
.footer__col a { display: block; padding: 6px 0; color: var(--ink); font: 400 15px/1.4 var(--font-sans); }
.footer__col a:hover { color: var(--primary); }
.footer__bar { margin-top: var(--s12); padding-top: var(--s6); border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: var(--s4); justify-content: space-between; color: var(--muted); font: 400 13px/1.5 var(--font-sans); }

/* ───────────────────────── Phone mockup ───────────────────────── */
.phone {
  width: 300px; flex: 0 0 300px; aspect-ratio: 300 / 620;
  background: #0d0d0f; border-radius: 40px; padding: 11px;
  box-shadow: var(--shadow-3); position: relative;
}
/* Dark mode: the page surface and a pure-black bezel are both near-black, so
   the device merges into the background. Lift the bezel to a charcoal, give it
   a crisp hairline border for a defined edge, and pool a soft brand-tinted
   glow behind it so the phone sits in its own light and clearly separates. */
[data-theme="dark"] .phone {
  background: #2b2930;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow:
    0 26px 64px rgba(0,0,0,.7),
    0 0 90px -8px color-mix(in srgb, var(--primary) 55%, transparent);
}
[data-theme="dark"] .phone__notch { background: #2b2930; }
.phone__screen {
  width: 100%; height: 100%; border-radius: 30px; overflow: hidden;
  background: var(--panel-2); position: relative; display: flex; flex-direction: column;
  color: var(--ink); font-family: var(--font-sans);
}
.phone__notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 120px; height: 26px; background: #0d0d0f; border-radius: 0 0 14px 14px; z-index: 5; }

/* app screen internals */
.ap { display: flex; flex-direction: column; height: 100%; }
.ap__status { height: 40px; flex: 0 0 40px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px 0 22px; font: 500 13px/1 var(--font-sans); }
.ap__status .material-symbols-outlined { font-size: 15px; }
.ap__status .ico { display: inline-flex; gap: 5px; }
.ap__body { flex: 1 1 auto; overflow: hidden; padding: 2px 14px 0; }
.ap__search { display: flex; align-items: center; gap: 9px; height: 44px; padding: 0 14px; border-radius: var(--r-pill); background: var(--panel); color: var(--muted); font: 400 13px/1 var(--font-sans); margin-bottom: 18px; }
.ap__search .material-symbols-outlined { font-size: 20px; }
.ap__label { font: 500 13px/1 var(--font-sans); margin-bottom: 10px; }
.ap__recents { display: flex; gap: 10px; margin-bottom: 20px; }
.ap__thumb { flex: 1; }
.ap__thumb i { display: grid; place-items: center; aspect-ratio: 1; border-radius: var(--r-md); background: var(--panel); color: var(--muted); box-shadow: inset 0 0 0 1px var(--line); }
.ap__thumb i .material-symbols-outlined { font-size: 22px; }
.ap__thumb > span { display: block; font: 400 10px/1.3 var(--font-sans); color: var(--muted); margin-top: 5px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ap__tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ap__tile { background: var(--tile); color: var(--on-tile); border-radius: var(--r-lg); padding: 12px; height: 70px; display: flex; flex-direction: column; justify-content: space-between; }
.ap__tile b { font: 500 13px/1.25 var(--font-sans); }
.ap__tile span { font: 400 11px/1 var(--font-sans); opacity: .8; }
.ap__nav { flex: 0 0 auto; height: 58px; display: flex; justify-content: space-around; align-items: center; background: var(--panel-2); border-top: 1px solid var(--line); }
.ap__nav .ni { display: flex; flex-direction: column; align-items: center; gap: 3px; color: var(--muted); font: 500 10px/1 var(--font-sans); }
.ap__nav .ni .material-symbols-outlined { font-size: 22px; }
.ap__nav .ni.on { color: var(--primary); }
.ap__nav .ni.on .pill { background: var(--soft); }
.ap__nav .ni .pill { padding: 3px 14px; border-radius: var(--r-pill); display: grid; place-items: center; }
.ap__fab { position: absolute; right: 16px; bottom: 72px; width: 52px; height: 52px; border-radius: var(--r-xl); background: var(--primary); color: var(--on-primary); display: grid; place-items: center; box-shadow: var(--shadow-2); }
.ap__fab .material-symbols-outlined { font-size: 25px; }

/* capture screen variant */
.ap--capture { background: #0e0e10; color: #fff; }
.ap--capture .ap__status { color: #fff; }
.ap__view { flex: 1 1 auto; position: relative; display: grid; place-items: center; }
.ap__reticle { width: 76%; aspect-ratio: 1.7; border-radius: var(--r-lg); box-shadow: 0 0 0 2px var(--primary), 0 0 0 4000px rgba(0,0,0,.45); position: relative; }
.ap__reticle::after { content: ''; position: absolute; inset: -2px; border-radius: var(--r-lg); border: 2px solid var(--primary); }
.ap__hint { position: absolute; top: 18px; left: 50%; transform: translateX(-50%); background: rgba(0,0,0,.55); color: #fff; padding: 6px 14px; border-radius: var(--r-pill); font: 500 12px/1 var(--font-sans); display: flex; align-items: center; gap: 6px; }
.ap__hint .material-symbols-outlined { font-size: 16px; }
.ap__shutter { flex: 0 0 auto; height: 96px; display: grid; place-items: center; }
.ap__shutter i { width: 64px; height: 64px; border-radius: var(--r-pill); background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.25); }

/* vendor detail variant */
.ap__appbar { height: 50px; flex: 0 0 50px; display: flex; align-items: center; gap: 6px; padding: 0 8px; }
.ap__appbar .material-symbols-outlined { font-size: 22px; }
.ap__appbar b { font: 400 19px/1 var(--font-sans); }
.ap__heroimg { height: 110px; border-radius: var(--r-md); background: var(--panel); display: grid; place-items: center; color: var(--muted); box-shadow: inset 0 0 0 1px var(--line); }
.ap__heroimg .material-symbols-outlined { font-size: 30px; }
.ap__vname { font: 400 21px/1.2 var(--font-sans); margin: 14px 0 10px; }
.ap__chip { display: inline-flex; align-items: center; gap: 6px; height: 28px; padding: 0 11px; border-radius: var(--r-pill); background: var(--soft); color: var(--on-soft); font: 500 12px/1 var(--font-sans); }
.ap__chip .material-symbols-outlined { font-size: 15px; }
.ap__field { display: flex; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.ap__field .material-symbols-outlined { font-size: 20px; color: var(--primary); }
.ap__field .fl { display: flex; flex-direction: column; gap: 2px; min-width: 0; overflow: hidden; }
.ap__field small { font: 400 11px/1 var(--font-sans); color: var(--muted); letter-spacing: .3px; }
.ap__field .fl span { font: 400 14px/1 var(--font-sans); color: var(--primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ap__field.neutral .fl span { color: var(--ink); white-space: normal; }

/* events list variant */
.ap__event { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.ap__event i { width: 42px; height: 42px; border-radius: var(--r-lg); background: var(--soft); color: var(--on-soft); display: grid; place-items: center; }
.ap__event i .material-symbols-outlined { font-size: 22px; }
.ap__event .el { display: flex; flex-direction: column; gap: 3px; }
.ap__event b { font: 500 14px/1.2 var(--font-sans); }
.ap__event small { font: 400 12px/1 var(--font-sans); color: var(--muted); }

/* ───────────────────────── Doc pages (privacy/support) ───────────────────────── */
.doc { padding: var(--s16) 0 var(--s24); }
.doc__head { max-width: 760px; margin: 0 auto var(--s12); }
.doc__head .h-1 { margin-bottom: var(--s4); }
.doc__head .lead { margin: 0; }
.doc__head .updated { margin-top: var(--s4); font: 400 13px/1 var(--font-sans); color: var(--muted); }
.doc__body { max-width: 760px; margin: 0 auto; }
.doc__body h2 { font: 500 24px/1.3 var(--font-sans); margin: var(--s12) 0 var(--s4); }
.doc__body h3 { font: 500 18px/1.35 var(--font-sans); margin: var(--s6) 0 var(--s2); }
.doc__body p, .doc__body li { font: 400 16px/1.65 var(--font-sans); color: var(--ink); }
.doc__body p { margin: 0 0 var(--s4); }
.doc__body ul { margin: 0 0 var(--s4); padding-left: var(--s5); }
.doc__body li { margin-bottom: var(--s2); }
.doc__body a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.doc__body strong { font-weight: 500; }
.callout { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--s5) var(--s6); margin: 0 0 var(--s6); }
.callout p:last-child { margin-bottom: 0; }
.toc { background: var(--panel-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--s5) var(--s6); margin-bottom: var(--s8); }
.toc h4 { margin: 0 0 var(--s2); font: 500 12px/1 var(--font-sans); letter-spacing: .6px; text-transform: uppercase; color: var(--muted); }
.toc ol { margin: 0; padding-left: var(--s5); columns: 2; column-gap: var(--s8); }
.toc a { color: var(--primary); text-decoration: none; font-size: 14px; }
.toc a:hover { text-decoration: underline; }

/* faq */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); padding: var(--s5) 0; }
.faq summary { cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: var(--s4); font: 500 18px/1.4 var(--font-sans); color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .material-symbols-outlined { color: var(--primary); transition: transform .2s; }
.faq details[open] summary .material-symbols-outlined { transform: rotate(45deg); }
.faq p { margin: var(--s3) 0 0; color: var(--muted); font: 400 16px/1.6 var(--font-sans); max-width: 64ch; }

.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5); margin-bottom: var(--s12); }
.contact-card { padding: var(--s6); border: 1px solid var(--line); border-radius: var(--r-xl); background: var(--surface); box-shadow: var(--shadow-1); }
.contact-card .material-symbols-outlined { font-size: 30px; color: var(--primary); }
.contact-card h3 { font: 500 18px/1.3 var(--font-sans); margin: var(--s3) 0 var(--s2); }
.contact-card p { margin: 0; color: var(--muted); font: 400 14px/1.5 var(--font-sans); }
.contact-card a { color: var(--primary); font-weight: 500; text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }

/* ───────────────────────── Responsive ───────────────────────── */
@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--s10); padding-top: var(--s12); }
  .hero__art { order: -1; }
  .hero__art .phone, .hero__art--tilt .phone { transform: none; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .altrow, .altrow--flip { grid-template-columns: 1fr; gap: var(--s8); }
  .altrow__art, .altrow--flip .altrow__art { order: -1; }
  .steps { grid-template-columns: 1fr; gap: var(--s10); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--s8); }
  .footer__brand { grid-column: 1 / -1; }
  .contact-cards { grid-template-columns: 1fr; }
  .toc ol { columns: 1; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 var(--s4); }
  .section { padding: var(--s16) 0; }
  .nav__links a:not(.is-cta):not(.nav__menu) { display: none; }
  .nav__menu { display: inline-flex; }
  .feat-grid { grid-template-columns: 1fr; }
  .cta-band { padding: var(--s10) var(--s5); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
