/* ============================================================
   Apateu — main site (app.westapt.com)
   Editorial/Anthropic-style system. Shared with the pitch deck:
   Instrument Serif display + Geist body + Geist Mono labels,
   cream paper, a single violet accent.
   Scoped with .ap- prefixes so it never collides with the legacy
   layout.scss that still styles the markdown sub-pages.
   ============================================================ */

:root {
  --paper: #f6f2ec;
  --paper-2: #fffdf9;
  --ink: #15130f;
  --ink-2: #4a453c;
  /* #7a7266 measured 4.25:1 on cream — under the 4.5:1 AA floor for the mono
     micro-labels this colour is used on. Darkened to clear it. */
  --ink-3: #665f53;
  --line: #e3dcd0;
  --violet: #8b30e8;
  --violet-deep: #6f1fc4;
  --violet-wash: rgba(139, 48, 232, 0.07);
  --coral: #ff5a36;
  --serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --sans: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --radius: 22px;
  --shadow: 0 20px 50px rgba(21, 19, 15, 0.08);
  --shadow-lift: 0 30px 70px rgba(21, 19, 15, 0.14);
}

/* ---------- reset / base (home only) ---------- */
.ap-home, .ap-home * { margin: 0; padding: 0; box-sizing: border-box; }
/* `clip` (not `hidden`) contains the ambient blobs without turning the root into a
   scroll container — `overflow-x: hidden` here would silently break the sticky nav. */
html:has(.ap-home) { overflow-x: clip; }
.ap-home {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
.ap-home img { max-width: 100%; display: block; }
.ap-home a { color: inherit; text-decoration: none; }

.ap-wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.ap-section { padding: 120px 0; position: relative; }
.ap-section--tight { padding: 88px 0; }

/* ---------- ambient wash ---------- */
.ap-blob {
  position: absolute; border-radius: 50%; filter: blur(90px);
  pointer-events: none; z-index: 0;
}
.ap-blob--v { background: radial-gradient(circle, rgba(201, 162, 244, 0.55) 0%, transparent 70%); }
.ap-blob--c { background: radial-gradient(circle, rgba(255, 192, 174, 0.45) 0%, transparent 70%); }

/* ---------- type ---------- */
.ap-h1 {
  font-family: var(--serif); font-weight: 400; letter-spacing: -0.018em;
  line-height: 1.03; font-size: clamp(44px, 6.4vw, 82px);
}
.ap-h2 {
  font-family: var(--serif); font-weight: 400; letter-spacing: -0.015em;
  line-height: 1.06; font-size: clamp(34px, 4.4vw, 54px);
}
.ap-h3 { font-family: var(--serif); font-weight: 400; font-size: 27px; line-height: 1.18; }
.ap-em { font-style: italic; color: var(--violet); }
.ap-eyebrow {
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-3);
}
.ap-lede { font-size: clamp(18px, 2.1vw, 22px); line-height: 1.55; color: var(--ink-2); }
.ap-body { color: var(--ink-2); }
.ap-muted { color: var(--ink-3); }

/* ---------- nav ---------- */
.ap-nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(246, 242, 236, 0.82);
  backdrop-filter: saturate(1.6) blur(14px);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid rgba(227, 220, 208, 0.7);
}
.ap-nav__in {
  max-width: 1180px; margin: 0 auto; padding: 0 32px;
  height: 68px; display: flex; align-items: center; gap: 34px;
}
.ap-brand { display: flex; align-items: center; gap: 11px; }
.ap-brand img { width: 30px; height: 30px; border-radius: 8px; }
.ap-brand span {
  font-family: var(--mono); font-size: 15px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink);
}
.ap-nav__links { display: flex; align-items: center; gap: 28px; list-style: none; }
.ap-nav__links a {
  font-size: 15.5px; color: var(--ink-2); padding: 6px 0;
  border-bottom: 1.5px solid transparent; transition: color 0.18s, border-color 0.18s;
}
.ap-nav__links a:hover { color: var(--ink); border-bottom-color: var(--violet); }
.ap-nav__right { margin-left: auto; display: flex; align-items: center; gap: 14px; }

/* ---------- buttons ---------- */
.ap-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 16px; font-weight: 500; padding: 13px 24px; border-radius: 999px;
  border: 1.5px solid transparent; transition: transform 0.16s, box-shadow 0.16s, background 0.16s;
  white-space: nowrap;
}
.ap-btn:hover { transform: translateY(-1px); }
/* `a.` keeps these above the `.ap-home a { color: inherit }` base rule. */
a.ap-btn--primary, .ap-btn--primary { background: var(--ink); color: var(--paper-2); box-shadow: 0 10px 26px rgba(21, 19, 15, 0.18); }
a.ap-btn--primary:hover, .ap-btn--primary:hover { background: #241f18; color: var(--paper-2); box-shadow: 0 16px 34px rgba(21, 19, 15, 0.24); }
a.ap-btn--ghost, .ap-btn--ghost { border-color: var(--line); color: var(--ink); background: rgba(255, 255, 255, 0.6); }
a.ap-btn--ghost:hover, .ap-btn--ghost:hover { border-color: var(--violet); color: var(--violet-deep); }
.ap-dark a.ap-btn--ghost { border-color: rgba(246, 242, 236, 0.32); color: var(--paper); background: transparent; }
.ap-dark a.ap-btn--ghost:hover { border-color: var(--paper); color: #fff; }
.ap-btn--sm { font-size: 14.5px; padding: 9px 18px; }
.ap-arrow { transition: transform 0.16s; }
.ap-btn:hover .ap-arrow { transform: translateX(3px); }

.ap-storebadge img { height: 52px; width: auto; border-radius: 9px; }
.ap-storebadge { display: inline-block; transition: transform 0.16s; }
.ap-storebadge:hover { transform: translateY(-1px); }

/* ---------- hero ---------- */
/* No overflow:hidden here — clipping the ambient blobs leaves a hard rectangular
   edge. The page already blocks horizontal scroll on .ap-home. */
.ap-hero { padding: 96px 0 84px; position: relative; }
.ap-hero__in { position: relative; z-index: 2; text-align: center; max-width: 900px; margin: 0 auto; }
.ap-hero .ap-lede { margin: 26px auto 0; max-width: 620px; }
.ap-hero__cta {
  margin-top: 42px; display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}
.ap-hero__proof {
  margin-top: 24px; font-family: var(--mono); font-size: 13px;
  letter-spacing: 0.05em; color: var(--ink-3);
}
.ap-foot-h {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 16px;
}

/* ---------- product chat mock ---------- */
.ap-mock {
  position: relative; background: var(--paper-2);
  border: 1.5px solid rgba(255, 255, 255, 0.9); border-radius: 28px;
  box-shadow: var(--shadow-lift); padding: 46px 40px 52px;
  background-image: radial-gradient(rgba(21, 19, 15, 0.05) 1.2px, transparent 1.2px);
  background-size: 26px 26px;
}
.ap-mock__tag {
  position: absolute; font-family: var(--mono); font-size: 13px;
  padding: 9px 16px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 8px 20px rgba(21, 19, 15, 0.1);
}
.ap-mock__tag--dark { background: var(--ink); color: var(--paper-2); }
.ap-mock__tag--amber { background: var(--paper-2); color: var(--ink-2); border: 1.5px solid #e8930c; }
.ap-mock__tag--violet { background: var(--violet); color: #fff; }
.ap-mock__toggle {
  display: inline-flex; background: var(--paper-2); border: 1.5px solid var(--line);
  border-radius: 999px; padding: 4px; margin: 0 auto 20px; box-shadow: 0 6px 16px rgba(21, 19, 15, 0.07);
}
.ap-mock__toggle span { font-size: 15px; font-weight: 500; padding: 8px 22px; border-radius: 999px; color: var(--ink-3); }
.ap-mock__toggle span.is-on { background: var(--ink); color: var(--paper-2); }
.ap-mock__bar {
  display: flex; align-items: center; gap: 14px; background: #fff;
  border: 2px solid var(--ink); border-radius: 999px; padding: 16px 16px 16px 26px;
  box-shadow: 0 12px 30px rgba(21, 19, 15, 0.1);
}
.ap-mock__bar p { flex: 1; font-size: clamp(15px, 1.7vw, 20px); color: var(--ink); }
.ap-mock__send {
  width: 40px; height: 40px; border-radius: 50%; background: var(--violet);
  display: grid; place-items: center; color: #fff; flex: none; font-size: 18px;
}
.ap-mock__center { display: flex; flex-direction: column; align-items: center; }

/* ---------- feature list ---------- */
.ap-feats { list-style: none; display: flex; flex-direction: column; gap: 22px; margin-top: 34px; }
.ap-feats li { display: flex; gap: 16px; align-items: flex-start; }
.ap-feats .n {
  font-family: var(--mono); font-size: 13px; color: var(--violet);
  padding-top: 4px; flex: none; letter-spacing: 0.08em;
}
.ap-feats b { font-weight: 600; }
.ap-feats p { color: var(--ink-2); font-size: 16.5px; line-height: 1.5; }

.ap-split { display: grid; grid-template-columns: 1fr 1.05fr; gap: 70px; align-items: center; }
.ap-split--flip .ap-split__media { order: -1; }

/* ---------- agent demo (section 02): a real session, re-drawn ---------- */
.ap-demo {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 24px;
  margin-top: 58px; align-items: stretch;
}
.ap-demo__card {
  background: var(--paper-2); border: 1.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 26px; box-shadow: var(--shadow-lift); position: relative;
}
.ap-demo__cap {
  margin-top: 20px; font-family: var(--mono); font-size: 13px;
  letter-spacing: 0.04em; text-align: center;
}

/* — map card: real basemap, agent-painted price columns — */
.ap-demomap { overflow: hidden; display: flex; flex-direction: column; }
/* bars position against the plot, so a static (mobile) legend can never cover one.
   The aspect-ratio MUST match the baked basemap so %-positions stay geographic. */
.ap-demomap__plot {
  position: relative; aspect-ratio: 660 / 540;
  background-image: url('bay-map.png'); background-size: 100% 100%;
}
.ap-demomap__attr {
  position: absolute; right: 10px; bottom: 7px; z-index: 3;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.03em;
  color: rgba(102, 95, 83, 0.75);
}
.ap-bar {
  position: absolute; left: var(--dx); bottom: var(--dy); transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  z-index: 2;
}
.ap-bar .v {
  font-family: var(--mono); font-size: 11.5px; font-weight: 500; color: var(--ink);
  background: #fff; padding: 2px 9px; border-radius: 999px;
  box-shadow: 0 4px 12px rgba(21, 19, 15, 0.18); white-space: nowrap;
}
.ap-bar i {
  height: var(--h); width: 11px; border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, #a35ef0 0%, var(--violet) 55%, var(--violet-deep) 100%);
  box-shadow: 0 6px 14px rgba(139, 48, 232, 0.28);
}
.ap-bar .n {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.02em;
  background: var(--ink); color: var(--paper-2); padding: 3px 8px;
  border-radius: 999px; white-space: nowrap;
}
.ap-demomap__legend {
  position: absolute; left: 18px; bottom: 18px; z-index: 3;
  background: rgba(255, 253, 249, 0.94); border: 1.5px solid var(--line);
  border-radius: 14px; padding: 12px 16px; max-width: calc(100% - 36px);
  box-shadow: 0 10px 24px rgba(21, 19, 15, 0.1);
}
.ap-demomap__legend .l1 {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-3);
}
.ap-demomap__legend .l2 {
  margin-top: 7px; font-size: 13.5px; font-weight: 500; color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.ap-demomap__legend .l2 i {
  width: 10px; height: 16px; border-radius: 4px 4px 1px 1px; flex: none;
  background: linear-gradient(180deg, #a35ef0, var(--violet-deep));
}
.ap-demomap__legend .l3 { margin-top: 3px; font-size: 12px; color: var(--ink-3); }
.ap-demomap__legend .cnt-m { display: none; }

/* — chat card: the question and the researched answer — */
.ap-demochat { padding: 26px 28px 28px; display: flex; flex-direction: column; }
.ap-demochat__head {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-2);
}
.ap-demochat__head .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--violet); }
.ap-demochat__head .live { margin-left: auto; color: var(--ink-3); letter-spacing: 0.14em; font-size: 10.5px; }
.ap-demochat__q {
  margin-top: 20px; align-self: flex-end; max-width: 94%;
  background: var(--ink); color: var(--paper-2);
  border-radius: 18px 18px 4px 18px; padding: 14px 18px;
  font-size: 15px; line-height: 1.5;
}
.ap-demochat__steps {
  margin-top: 18px; display: flex; flex-direction: column; gap: 7px;
  font-family: var(--mono); font-size: 12px; color: var(--ink-3);
}
.ap-demochat__steps b { color: var(--violet); font-weight: 500; margin-right: 9px; }
.ap-demochat__a {
  margin-top: 18px; border-top: 1px solid var(--line); padding-top: 18px;
  font-size: 14.5px; line-height: 1.55; color: var(--ink-2);
}
.ap-demochat__a b { color: var(--ink); font-weight: 600; }
.ap-demochat__a .row {
  display: flex; gap: 12px; align-items: baseline;
  margin-top: 12px;
}
.ap-demochat__a .row .k {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--violet); flex: none; width: 72px;
}
.ap-demochat__a .row span:last-child { font-size: 13.5px; }
.ap-demochat__a .tail { margin-top: 16px; font-size: 12.5px; color: var(--ink-3); }

/* ---------- how it works (section 03): the pipeline diagram ---------- */
.ap-howflow svg { display: block; }

/* ---------- coverage / contours ---------- */
.ap-map { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 54px; }
.ap-place {
  background: var(--paper-2); border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 26px 20px 22px; text-align: center; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
/* no hover-lift: these cards aren't links, and lifting them promised interaction */
.ap-place svg { width: 100%; height: 118px; }
.ap-place__name { font-family: var(--serif); font-size: 25px; margin-top: 16px; }
/* Live is the story, so live carries the accent; "coming soon" stays quiet. */
.ap-place__meta {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--violet); margin-top: 7px;
}
.ap-place--soon { border-style: dashed; background: transparent; }
.ap-place--soon .ap-place__name, .ap-place--soon .ap-place__meta { color: var(--ink-3); }

/* ---------- A2A diagram ---------- */
.ap-a2a {
  background: var(--paper-2); border: 1.5px solid var(--line);
  border-radius: 26px; padding: 40px 44px; box-shadow: var(--shadow);
}
.ap-a2a svg { width: 100%; height: auto; }

/* ---------- dark band (operators) ---------- */
.ap-dark {
  background: var(--ink); color: var(--paper);
  border-radius: 34px; padding: 74px 64px; position: relative; overflow: hidden;
}
.ap-dark .ap-eyebrow { color: #f4b8a2; }
.ap-dark .ap-body { color: rgba(246, 242, 236, 0.76); }
.ap-dark .ap-btn--ghost { border-color: rgba(246, 242, 236, 0.32); color: var(--paper); background: transparent; }
.ap-dark .ap-btn--ghost:hover { border-color: var(--paper); color: #fff; }
.ap-dark .ap-em { color: #c9a2f4; }

/* ---------- final CTA ---------- */
.ap-cta { text-align: center; }
.ap-cta__row { margin-top: 34px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- footer ---------- */
.ap-footer { background: var(--paper); border-top: 1px solid var(--line); padding: 64px 0 40px; }
.ap-footer__grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px; align-items: start;
}
.ap-footer__tag { color: var(--ink-3); font-size: 15px; margin-top: 16px; max-width: 280px; line-height: 1.55; }
.ap-footer h4 {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 500; margin-bottom: 16px;
}
.ap-footer ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
/* inline-flex + min-height keeps these above the 24px minimum tap target */
.ap-footer ul a {
  font-size: 15.5px; color: var(--ink-2); transition: color 0.16s;
  display: inline-flex; align-items: center; min-height: 26px;
}
.ap-footer ul a:hover { color: var(--violet); }
.ap-footer__bottom {
  margin-top: 54px; padding-top: 26px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.ap-footer__legal { font-family: var(--mono); font-size: 12.5px; color: var(--ink-3); letter-spacing: 0.03em; }
.ap-social { display: flex; gap: 12px; }
.ap-social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--line);
  display: grid; place-items: center; color: var(--ink-2); font-size: 15px;
  transition: border-color 0.16s, color 0.16s, transform 0.16s;
}
.ap-social a:hover { border-color: var(--violet); color: var(--violet); transform: translateY(-2px); }

/* ---------- keyboard focus (applies to every surface) ---------- */
.ap-nav a:focus-visible, .ap-footer a:focus-visible, .ap-btn:focus-visible,
.ap-storebadge:focus-visible, .ap-social a:focus-visible {
  outline: 2.5px solid var(--violet); outline-offset: 3px; border-radius: 999px;
}
.ap-skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--paper-2); padding: 12px 22px; border-radius: 0 0 12px 0;
}
.ap-skip:focus { left: 0; }

/* ---------- sub-page (markdown) harmony ----------
   The legacy layout.scss still styles the markdown body on these pages. It also paints a
   lavender gradient behind `footer` and sets a 10px root — both of which fight the new
   system, so they are neutralised here (site.css always loads last). */
.ap-subpage-pad { padding-top: 42px; padding-bottom: 78px; max-width: 900px; }
body.subPageBody { background: var(--paper); font-size: 17px; }
body.subPageBody footer.ap-footer::before,
body.subPageBody footer.ap-footer::after { content: none !important; display: none !important; }
body.subPageBody .ap-footer { background: var(--paper); }
body.subPageBody .markdown-body {
  background: transparent; font-family: var(--sans); font-size: 16.5px; color: var(--ink-2);
}
body.subPageBody .markdown-body h1, body.subPageBody .markdown-body h2 {
  font-family: var(--serif); font-weight: 400; letter-spacing: -0.012em; color: var(--ink);
  border-bottom: 1px solid var(--line);
}
body.subPageBody .markdown-body h3, body.subPageBody .markdown-body h4 {
  font-family: var(--sans); font-weight: 600; color: var(--ink);
}
body.subPageBody .markdown-body a { color: var(--violet-deep); }

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .ap-split { grid-template-columns: 1fr; gap: 48px; }
  .ap-split--flip .ap-split__media { order: 0; }
  .ap-map { grid-template-columns: repeat(3, 1fr); }
  .ap-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  /* demo stacks; the question reads first, then the map it produced */
  .ap-demo { grid-template-columns: 1fr; }
  .ap-demomap { order: 2; }
}
@media (max-width: 720px) {
  .ap-wrap { padding: 0 22px; }
  /* header was inset 32px while page content sat at 22px — visible misalignment */
  .ap-nav__in { padding: 0 22px; }
  /* two raw app captures side by side become illegible at this width; show the one that
     carries the section's point (the AI-drafted agreement) at a readable size */
  .ap-split__media > div > div:first-child { display: none; }
  .ap-split__media > div > div:last-child { width: 74%; margin-top: 0; }
  .ap-section { padding: 78px 0; }
  .ap-nav__links { display: none; }
  .ap-nav__in { height: 60px; gap: 16px; }
  .ap-hero { padding: 60px 0 56px; }
  .ap-map { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .ap-dark { padding: 48px 26px; border-radius: 26px; }
  .ap-mock { padding: 34px 20px 40px; }
  .ap-mock__tag { font-size: 11px; padding: 7px 12px; }
  .ap-footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .ap-footer__bottom { flex-direction: column; align-items: flex-start; }
  .ap-a2a { padding: 26px 20px; }
  /* the map compresses: fewer bars, scaled-down heights, a portrait basemap
     with its own computed positions, and the legend drops out of the plot into
     a footer strip — 13 columns at phone width collide */
  .ap-demomap__plot {
    aspect-ratio: 400 / 560; background-image: url('bay-map-mobile.png');
  }
  .ap-bar { left: var(--mx, var(--dx)); bottom: var(--my, var(--dy)); }
  .ap-bar i { width: 8px; height: calc(var(--h) * 0.62); }
  .ap-bar .v { font-size: 10px; padding: 2px 7px; }
  .ap-bar .n { font-size: 8.5px; padding: 2px 6px; }
  .ap-bar--xs-off { display: none; }
  .ap-demomap__legend {
    position: static; max-width: none; margin: 0; border: 0;
    border-top: 1.5px solid var(--line); border-radius: 0;
    box-shadow: none; padding: 12px 18px 15px;
  }
  .ap-demomap__legend .l2 { font-size: 12.5px; }
  .ap-demomap__legend .l3 { font-size: 11px; }
  .ap-demomap__legend .cnt-d { display: none; }
  .ap-demomap__legend .cnt-m { display: inline; }
  .ap-demochat { padding: 20px 18px 22px; }
  .ap-demochat__a .row { flex-direction: column; gap: 3px; }
  .ap-demochat__a .row .k { width: auto; }
}
@media (max-width: 460px) {
  .ap-map { grid-template-columns: 1fr 1fr; }
  .ap-hero__cta, .ap-cta__row { flex-direction: column; align-items: center; }
  .ap-hero__cta .ap-btn, .ap-cta__row .ap-btn { width: 100%; justify-content: center; }
  /* the badge is an inline-block anchor, so justify-content does nothing — center the image itself */
  .ap-hero__cta .ap-storebadge, .ap-cta__row .ap-storebadge { width: 100%; text-align: center; }
  .ap-hero__cta .ap-storebadge img, .ap-cta__row .ap-storebadge img { margin: 0 auto; }
}
