/* Aikon flagship "web try". Warm editorial canvas, brand tokens from the Aikon Design Kit.
   Blue sells, orange buys. */

:root {
  --paper: #fbf8f2;
  --paper-2: #f4efe4;
  --card: #ffffff;
  --sell: #2C9EF3;
  --sell-bg: rgba(44, 158, 243, 0.09);
  --sell-deep: #1272bd;
  --buy: #DC8826;
  --buy-bg: rgba(220, 136, 38, 0.10);
  --buy-deep: #a5641a;
  --ink: #12141a;
  --ink-2: #3d4452;
  --muted: #7a8394;
  --line: #eae4d6;
  --line-2: #d9d1bd;
  --navy: #0f1420;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 26px;
  --r-pill: 100px;
  --sh-sm: 0 1px 4px rgba(18, 20, 26, 0.05);
  --sh-md: 0 6px 22px rgba(18, 20, 26, 0.08);
  --sh-lg: 0 24px 60px rgba(18, 20, 26, 0.14);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --hand: 'Caveat', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { letter-spacing: -0.03em; line-height: 1.06; }
.hero-title, .section-head h2, .final-cta h2 { text-wrap: balance; }
:focus-visible { outline: 2.5px solid var(--sell); outline-offset: 2px; border-radius: 4px; }

/* ---------- live ribbon ---------- */
.ribbon {
  overflow: hidden; background: var(--ink); color: #e8e4da;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.02em;
  padding: 7px 0; white-space: nowrap;
}
.ribbon-track { display: inline-flex; gap: 34px; width: max-content; animation: rib 60s linear infinite; }
.ribbon b { font-weight: 800; }
.ribbon .rb-sell { color: #7cc4f8; }
.ribbon .rb-buy { color: #ecb268; }
.ribbon .rb-dot { color: #8b93a2; }
@keyframes rib { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 700; font-size: 15px;
  padding: 11px 22px; border-radius: var(--r-pill);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--sell); color: #fff; box-shadow: 0 6px 20px rgba(44, 158, 243, 0.35); }
.btn-primary:hover { background: var(--sell-deep); box-shadow: 0 12px 30px rgba(44, 158, 243, 0.45); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #2a2f3d; }
.btn-ghost { border-color: var(--line-2); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--card); }
.btn-light { background: #fff; color: var(--ink); }
.btn-plain { color: var(--ink-2); font-weight: 600; }
.btn-plain:hover { color: var(--ink); transform: none; }
.btn-lg { font-size: 17px; padding: 15px 34px; }

/* ---------- nav ---------- */
.nav-wrap { position: sticky; top: 12px; z-index: 60; padding: 0 20px; margin-top: 14px; }
.nav {
  max-width: 1140px; margin: 0 auto;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-sm);
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 22px;
}
.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 30px; width: auto; }
.nav-links { flex-wrap: nowrap; }
.nav-links { display: flex; gap: 26px; list-style: none; }
.nav-links a { font-size: 14.5px; font-weight: 600; color: var(--ink-2); transition: color .15s; }
.nav-links a:hover { color: var(--sell-deep); }
.nav-cta { display: flex; gap: 10px; }
.nav-cta .btn { padding: 9px 18px; font-size: 14px; }
.nav-burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav-burger span { width: 22px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .2s; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.nav-mobile {
  display: flex; flex-direction: column; gap: 14px;
  max-width: 1140px; margin: 10px auto 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 20px; box-shadow: var(--sh-md);
}
.nav-mobile[hidden] { display: none; }
.nav-mobile a { font-weight: 600; }

/* ---------- hero ---------- */
.hero { padding: 64px 0 30px; position: relative; }
.hero-inner { max-width: 920px; margin: 0 auto; text-align: center; padding: 0 20px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--buy-bg); color: var(--buy-deep);
  border: 1px solid rgba(220, 136, 38, 0.25);
  font-size: 13.5px; font-weight: 700;
  padding: 8px 18px; border-radius: var(--r-pill);
  margin-bottom: 26px;
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--buy); animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220, 136, 38, 0.5); }
  50% { box-shadow: 0 0 0 7px rgba(220, 136, 38, 0); }
}
.hero-title { font-size: clamp(46px, 7.6vw, 96px); font-weight: 900; letter-spacing: -0.048em; line-height: 0.99; }
.word-offer { position: relative; color: var(--sell); display: inline-block; }
.underline-svg { position: absolute; left: 0; bottom: -0.16em; width: 100%; height: 0.24em; color: var(--buy); overflow: visible; }
.underline-svg path { stroke-dasharray: 260; stroke-dashoffset: 260; animation: draw 0.9s ease .7s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.hero-sub { max-width: 580px; margin: 26px auto 0; font-size: 18px; color: var(--ink-2); }

/* handwritten annotations */
.handnote { font-family: var(--hand); font-size: 25px; font-weight: 700; color: var(--ink-2); transform: rotate(-6deg); display: inline-block; line-height: 1.02; }
.handnote-light { color: rgba(255, 255, 255, 0.85); }
.hand-arrow { width: 52px; color: var(--ink-2); display: block; margin-top: 2px; }
.hand-arrow.flip { margin-left: auto; }

/* ---------- fanned offer cards ---------- */
.fan {
  position: relative;
  max-width: 1220px; margin: 54px auto 0;
  display: flex; justify-content: center; align-items: flex-end;
  padding: 26px 20px 34px; min-height: 300px;
}
.fan-card { width: 268px; flex-shrink: 0; position: relative; }
.fc-1 { transform: rotate(-7deg) translateY(26px); z-index: 1; }
.fc-2 { transform: rotate(-3.2deg) translateY(7px); z-index: 2; margin-left: -34px; }
.fc-3 { transform: translateY(-6px); z-index: 3; margin-left: -30px; }
.fc-4 { transform: rotate(3.2deg) translateY(7px); z-index: 2; margin-left: -30px; }
.fc-5 { transform: rotate(7deg) translateY(26px); z-index: 1; margin-left: -34px; }
.fan-card:hover { z-index: 9; }
.fan-annot { position: absolute; top: -34px; display: none; }
.fan-annot-l { left: 3%; text-align: right; }
.fan-annot-r { right: 3%; text-align: left; }
@media (min-width: 1100px) { .fan-annot { display: block; } }

/* ---------- offer cards ---------- */
.offer-card {
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 18px 18px 15px;
  box-shadow: var(--sh-md);
  transition: transform .25s ease, box-shadow .25s ease, opacity .3s ease, filter .3s ease;
}
.offer-card:hover { transform: translateY(-7px) rotate(0deg) !important; box-shadow: var(--sh-lg); }
.offer-card.dimmed { opacity: 0.18; filter: grayscale(0.9); }
.offer-sell { border-top: 3px solid var(--sell); }
.offer-buy { border-top: 3px solid var(--buy); }
.offer-top { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.offer-type { font-size: 11px; font-weight: 800; letter-spacing: 0.08em; padding: 4px 10px; border-radius: var(--r-pill); }
.type-sell { background: var(--sell-bg); color: var(--sell-deep); }
.type-buy { background: var(--buy-bg); color: var(--buy-deep); }
.offer-cat { font-size: 12px; font-weight: 600; color: var(--muted); }
.incog-chip {
  margin-left: auto; font-size: 10.5px; font-weight: 800; letter-spacing: 0.04em;
  color: #4b5468; background: #eef0f5; padding: 4px 9px; border-radius: var(--r-pill);
}
.offer-title { font-size: 15.5px; font-weight: 700; line-height: 1.3; letter-spacing: -0.01em; }
.offer-spec { font-size: 13px; color: var(--muted); margin-top: 6px; line-height: 1.45; }
.offer-meta {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  margin-top: 13px; padding-top: 11px; border-top: 1px dashed var(--line);
  font-size: 12.5px; font-weight: 600; color: var(--ink-2);
}
.offer-loc::before { content: "📍 "; font-size: 11px; }
.co-blur { filter: blur(5px); user-select: none; transition: filter .35s ease, color .3s; }
.demo-card.revealed .co-blur { filter: blur(0); color: var(--sell-deep); }

/* ---------- hero CTA + facts ---------- */
.hero-cta-row {
  display: flex; align-items: center; justify-content: center; gap: 22px;
  margin: 26px auto 0; position: relative; flex-wrap: wrap; padding: 0 20px;
}
.cta-annot { display: flex; flex-direction: column; align-items: flex-end; margin-right: -6px; }
.cta-annot .hand-arrow { width: 40px; }
.fact-strip {
  list-style: none; display: flex; justify-content: center; gap: clamp(26px, 6vw, 80px);
  margin: 46px auto 0; padding: 26px 20px 0; max-width: 900px;
  border-top: 1px solid var(--line); flex-wrap: wrap;
}
.fact-strip li { text-align: center; }
.fact-num { display: block; font-size: 38px; font-weight: 900; letter-spacing: -0.03em; color: var(--ink); }
.fact-zero { color: var(--buy-deep); }
.fact-label { font-size: 13px; font-weight: 600; color: var(--muted); }

/* ---------- sections ---------- */
.section { padding: 100px 20px; max-width: 1140px; margin: 0 auto; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.eyebrow {
  display: inline-block; font-size: 12.5px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--buy-deep); background: var(--buy-bg);
  padding: 6px 14px; border-radius: var(--r-pill); margin-bottom: 18px;
}
.eyebrow-light { color: #ffd9a8; background: rgba(220, 136, 38, 0.18); }
.section-head h2 { font-size: clamp(31px, 4.6vw, 48px); font-weight: 800; }
.section-head p { color: var(--ink-2); margin-top: 16px; font-size: 17px; }
.nobreak { white-space: nowrap; }

/* ---------- the floor ---------- */
.section-floor { max-width: none; padding-left: 0; padding-right: 0; }
.section-floor .section-head { padding: 0 20px; }
.floor-filters { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin: 0 auto 24px; padding: 0 20px; }
.chip {
  font-family: var(--font); font-size: 14px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 20px; border-radius: var(--r-pill);
  background: #fff; color: var(--ink-2);
  border: 1.5px solid var(--line-2); cursor: pointer;
  transition: all .18s ease;
}
.chip:hover { transform: translateY(-1px); box-shadow: var(--sh-sm); }
.chip-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip-buy.chip-active { background: var(--buy); border-color: var(--buy); }
.chip-sell.chip-active { background: var(--sell); border-color: var(--sell); }
.chip-incog.chip-active { background: #2a2f3d; border-color: #2a2f3d; }
.floor { position: relative; padding: 4px 0 8px; }
.marquee { overflow: hidden; padding: 12px 0; }
.marquee-track { display: flex; gap: 18px; width: max-content; animation: scroll-l 58s linear infinite; }
.marquee-b .marquee-track { animation: scroll-r 66s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll-l { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scroll-r { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.marquee .offer-card { width: 300px; flex-shrink: 0; box-shadow: var(--sh-sm); }
.floor-fade { position: absolute; top: 0; bottom: 0; width: 120px; pointer-events: none; z-index: 2; }
.floor-fade-l { left: 0; background: linear-gradient(90deg, var(--paper), transparent); }
.floor-fade-r { right: 0; background: linear-gradient(-90deg, var(--paper), transparent); }
.clock-strip {
  display: flex; justify-content: center; align-items: center; gap: clamp(14px, 3vw, 30px);
  flex-wrap: wrap; margin: 34px auto 0; padding: 0 20px;
  font-size: 13.5px; color: var(--muted); font-weight: 600;
}
.clock-label { font-family: var(--hand); font-size: 22px; color: var(--ink-2); transform: rotate(-2deg); }
.clock b { color: var(--ink); font-weight: 700; }
.clock time { font-variant-numeric: tabular-nums; }
.clock.awake b { color: var(--sell-deep); }
.clock.awake::before { content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--sell); margin-right: 6px; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; }
.steps-line {
  position: absolute; top: 52px; left: 12%; right: 12%; height: 0;
  border-top: 2.5px dashed var(--line-2); z-index: 0;
}
.step-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 26px; box-shadow: var(--sh-sm); position: relative; z-index: 1;
  transition: transform .25s ease, box-shadow .25s ease;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.step-num {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 19px; margin-bottom: 18px;
  border: 2.5px solid transparent; background: #fff;
}
.num-sell { border-color: var(--sell); color: var(--sell-deep); }
.num-buy { border-color: var(--buy); color: var(--buy-deep); }
.num-ink { border-color: var(--ink); color: var(--ink); }
.step-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.step-card p { font-size: 15px; color: var(--ink-2); }

/* ---------- incognito ---------- */
.section-dark { background: var(--navy); color: #eef0f5; padding: 110px 20px; }
.incog-grid {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center;
}
.incog-copy h2 { font-size: clamp(32px, 4.8vw, 52px); font-weight: 900; color: #fff; }
.incog-copy > p { color: #b0b8c8; margin-top: 18px; font-size: 17px; }
.incog-list { list-style: none; margin: 26px 0 32px; }
.incog-list li { position: relative; padding-left: 28px; margin-bottom: 12px; color: #d5dae4; font-size: 15.5px; font-weight: 500; }
.incog-list li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 14px; height: 8px;
  border-left: 2.5px solid var(--sell); border-bottom: 2.5px solid var(--sell);
  transform: rotate(-45deg);
}
.incog-demo { position: relative; display: flex; justify-content: center; }
.demo-card { width: 344px; box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5); }
.demo-card:hover { transform: none; }
.demo-annot { position: absolute; top: -56px; right: 26px; text-align: right; }
.demo-annot .hand-arrow { width: 38px; color: rgba(255, 255, 255, 0.7); margin-left: auto; }
.btn-reveal {
  margin-top: 14px; width: 100%;
  background: var(--ink); color: #fff; border: none;
  font-family: var(--font); font-weight: 700; font-size: 14px;
  padding: 12px; border-radius: var(--r-md); cursor: pointer;
  transition: background .18s ease;
}
.btn-reveal:hover { background: #2a2f3d; }
.demo-card.revealed .btn-reveal { background: var(--sell); }

/* ---------- tools ---------- */
.section-soft { max-width: none; background: var(--paper-2); }
.section-soft .section-head, .tool-grid, .duo-stack { max-width: 1140px; margin-left: auto; margin-right: auto; }
.tool-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.tool-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 32px 30px; box-shadow: var(--sh-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.tool-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.tool-card h3 { font-size: 21px; font-weight: 800; margin-bottom: 10px; }
.tool-card p { font-size: 15px; color: var(--ink-2); }

.chat-demo { margin-top: 18px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 16px; }
.chat-bubble {
  max-width: 85%; font-size: 13.5px; font-weight: 500;
  padding: 9px 14px; border-radius: 14px; margin-bottom: 8px;
}
.chat-them { background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.chat-you { background: var(--sell-bg); color: var(--sell-deep); margin-left: auto; border-bottom-right-radius: 4px; }
.lang-chips { display: flex; gap: 6px; margin-top: 10px; }
.lang {
  font-family: var(--font); font-size: 12px; font-weight: 700; cursor: pointer;
  color: var(--ink-2); background: #fff; border: 1.5px solid var(--line-2);
  padding: 4px 12px; border-radius: var(--r-pill); transition: all .15s;
}
.lang.on { background: var(--sell); border-color: var(--sell); color: #fff; }

.radar-demo {
  margin-top: 20px; display: flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 700;
}
.radar-src { background: #e7f6e9; color: #1d7a33; padding: 8px 14px; border-radius: var(--r-md); }
.radar-arrow { width: 44px; color: var(--muted); }
.radar-dst { background: var(--sell-bg); color: var(--sell-deep); padding: 8px 14px; border-radius: var(--r-md); }

.profile-demo { margin-top: 18px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 14px 16px; }
.profile-row { display: flex; justify-content: space-between; align-items: center; font-size: 13.5px; font-weight: 700; }
.profile-band { background: var(--buy-bg); color: var(--buy-deep); font-size: 12px; padding: 3px 10px; border-radius: var(--r-pill); }
.profile-endorse { margin-top: 8px; padding-top: 8px; border-top: 1px dashed var(--line); color: var(--muted); font-weight: 500; font-size: 12.5px; }

.store-row { display: flex; gap: 10px; margin-top: auto; padding-top: 18px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 700;
  background: var(--ink); color: #fff;
  padding: 9px 18px; border-radius: var(--r-pill);
  transition: transform .18s ease, background .18s ease;
}
.store-badge svg { flex-shrink: 0; }
.store-badge:hover { transform: translateY(-2px); background: #2a2f3d; }

/* ---------- categories ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cat-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 22px 24px; font-weight: 700; font-size: 17px;
  box-shadow: var(--sh-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--sell); }
.cat-card:hover .cat-ic { color: var(--sell-deep); }
.cat-ic { width: 30px; height: 30px; color: var(--ink-2); transition: color .2s; flex-shrink: 0; }

/* ---------- final CTA ---------- */
.final-cta { padding: 120px 20px 130px; text-align: center; }
.final-inner { position: relative; display: inline-block; }
.final-cta h2 { font-size: clamp(36px, 5.8vw, 64px); font-weight: 900; letter-spacing: -0.045em; }
.final-cta p { color: var(--ink-2); margin: 18px 0 30px; font-size: 17px; }
.final-annot { margin-top: 22px; }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: #b0b8c8; }
.footer-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 3.1fr; gap: 44px;
  padding: 64px 20px 40px;
}
.footer-logo { height: 28px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; max-width: 320px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.footer-cols h4 {
  color: #fff; font-size: 13px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px;
}
.footer-cols a { display: block; font-size: 14px; margin-bottom: 10px; transition: color .15s; }
.footer-cols a:hover { color: var(--sell); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.09); text-align: center; font-size: 13px; padding: 22px 20px; }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .marquee-track, .ribbon-track, .fan-card { animation: none; }
  .pulse-dot { animation: none; }
  .underline-svg path { animation: none; stroke-dashoffset: 0; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .fan { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start;
         scroll-snap-type: x mandatory; gap: 14px; padding-bottom: 24px; -webkit-overflow-scrolling: touch; }
  .fan-card, .fc-1, .fc-2, .fc-3, .fc-4, .fc-5 { transform: none; margin-left: 0; scroll-snap-align: center; animation: none; }
}
@media (max-width: 960px) {
  .steps { grid-template-columns: 1fr; }
  .steps-line { display: none; }
  .incog-grid { grid-template-columns: 1fr; gap: 48px; }
  .tool-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 1020px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
}
@media (max-width: 760px) {
  .hero { padding-top: 44px; }
  .hero-sub { font-size: 16px; }
  .section { padding: 76px 20px; }
  .cat-grid { grid-template-columns: 1fr; }
  .demo-card { width: 100%; max-width: 344px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .fact-num { font-size: 30px; }
  .clock-strip { font-size: 12.5px; }
}
/* phones: everything centered, nothing cramped or clipped */
@media (max-width: 600px) {
  .nav-wrap { top: 8px; padding: 0 12px; }
  .nav { padding: 8px 14px; }
  .hero-title { font-size: clamp(30px, 10.4vw, 42px); }
  .hero-badge { white-space: normal; text-align: center; line-height: 1.4; max-width: calc(100vw - 48px); }
  .hero-sub { font-size: 15.5px; }
  /* card fan becomes a snap carousel with the active card centered */
  .fan { margin-top: 40px; min-height: 0;
         padding-left: calc(50vw - 134px); padding-right: calc(50vw - 134px); }
  .cta-annot { display: none; }
  .hero-cta-row { flex-direction: column; gap: 14px; }
  .hero-cta-row .btn-lg, .final-cta .btn-lg { width: 100%; max-width: 300px; }
  .fact-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 10px; }
  .fact-strip li { width: 100%; }
  .floor-fade { width: 36px; }
  .marquee .offer-card { width: 258px; }
  .section { padding: 60px 16px; }
  .section-head { margin-bottom: 38px; }
  .section-head p { font-size: 15.5px; }
  .section-dark { padding: 80px 20px; }
  .incog-grid { gap: 40px; }
  .demo-annot { right: 4px; top: -50px; }
  .step-card, .tool-card { padding: 24px 20px; }
  .chip { font-size: 13.5px; padding: 8px 16px; min-height: 44px; }
  .final-cta { padding: 90px 20px 100px; }
}

/* ---------- closing scene: dusk coast panel + floating footer ---------- */
.closing-scene { position: relative; margin: 64px 16px 16px; border-radius: 30px; overflow: clip; background: var(--navy); isolation: isolate; }
.scene-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 64%; transform: scale(1.06); will-change: transform; }
.scene-veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg,
  rgba(9, 13, 23, 0.38) 0%, rgba(9, 13, 23, 0.10) 26%, rgba(9, 13, 23, 0) 42%,
  rgba(9, 13, 23, 0.34) 72%, rgba(8, 11, 19, 0.82) 100%); }
.scene-routes { position: absolute; left: 0; top: 0; width: 100%; height: 54%; z-index: 1; pointer-events: none; }
.scene-content { position: relative; z-index: 2; text-align: center; padding: 116px 20px 0; max-width: 820px; margin: 0 auto; }
.scene-content h2 { color: #fff; font-size: clamp(34px, 5.4vw, 64px); font-weight: 900; letter-spacing: -0.045em; line-height: 1.02; text-shadow: 0 2px 34px rgba(0, 0, 0, 0.38); }
.scene-content > p { color: rgba(255, 255, 255, 0.88); margin-top: 16px; font-size: 17.5px; text-shadow: 0 1px 14px rgba(0, 0, 0, 0.3); }
.scene-cta-row { margin-top: 30px; }
.scene-store-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }
.scene-store {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(12, 15, 24, 0.78); color: #fff;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  padding: 10px 20px; border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: transform 0.18s ease, background 0.18s ease;
}
.scene-store:hover { transform: translateY(-2px); background: rgba(12, 15, 24, 0.95); }
.ss-lines { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.ss-top { font-size: 10.5px; font-weight: 600; opacity: 0.72; letter-spacing: 0.01em; }
.ss-name { font-size: 15px; font-weight: 800; }
.scene-content .final-annot { margin-top: 28px; }
.scene-content .handnote { color: rgba(255, 255, 255, 0.9); text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35); }

/* footer floats inside the scene as a glass card */
.closing-scene .footer {
  position: relative; z-index: 2;
  background: rgba(13, 16, 25, 0.66);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  max-width: 1140px; width: calc(100% - 40px);
  margin: 92px auto 26px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

/* nav elevates once the page scrolls */
.nav-scrolled .nav { box-shadow: var(--sh-md); background: rgba(255, 255, 255, 0.97); }

@media (max-width: 760px) {
  .closing-scene { margin: 44px 10px 10px; border-radius: 22px; }
  .scene-content { padding-top: 84px; }
  .scene-content > p { font-size: 16px; }
  .closing-scene .footer { margin: 60px auto 18px; width: calc(100% - 24px); }
}
@media (prefers-reduced-motion: reduce) {
  .scene-routes { display: none; }
  .scene-bg { transform: none; }
}

/* ---------- leader footer ---------- */
.footer { position: relative; overflow: hidden; }
.fx-status { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.fx-status-inner {
  max-width: 1140px; margin: 0 auto; padding: 15px 20px;
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap; font-size: 13px;
}
.fx-live { display: inline-flex; align-items: center; gap: 8px; color: #7ce38b; font-weight: 700; white-space: nowrap; }
.fx-live-dot { width: 8px; height: 8px; border-radius: 50%; background: #34c759; animation: fxlive 2s ease-in-out infinite; }
@keyframes fxlive {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.45); }
  50% { box-shadow: 0 0 0 6px rgba(52, 199, 89, 0); }
}
.fx-clocks { display: flex; gap: 18px; flex-wrap: wrap; color: #8b93a5; font-weight: 600; }
.fx-clocks .clock b { color: #d5dae4; font-weight: 700; }
.footer .clock.awake b { color: #7cc4f8; }
.footer .clock.awake::before { background: #7cc4f8; }
.fx-status-note { margin-left: auto; color: #8b93a5; font-weight: 600; }
.fx-cols4 { grid-template-columns: repeat(4, 1fr); }
.fx-cols5 { grid-template-columns: repeat(5, 1fr); }
.fx-stores { display: flex; flex-direction: column; gap: 8px; margin: 18px 0 16px; }
.fx-store {
  display: inline-flex; align-items: center; gap: 10px; width: fit-content;
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff; padding: 8px 14px; border-radius: 12px;
  transition: background 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}
.fx-store:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.22); transform: translateY(-2px); }
.ss-lines { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.ss-top { font-size: 10px; font-weight: 600; opacity: 0.72; }
.ss-name { font-size: 14px; font-weight: 800; }
.fx-trustband {
  max-width: 1140px; margin: 0 auto; padding: 24px 20px 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex; flex-direction: column; gap: 14px;
}
.fx-partners { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.fx-band-label { font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #6d7688; margin-right: 4px; }
.fx-partner {
  font-size: 13px; font-weight: 700; color: #c3cad8;
  background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5px 14px; border-radius: 100px;
}
.fx-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.fx-chip { font-size: 12.5px; color: #8b93a5; border: 1px dashed rgba(255, 255, 255, 0.16); padding: 6px 13px; border-radius: 10px; }
.fx-chip b { color: #e8ecf3; font-weight: 800; }
.fx-watermark { pointer-events: none; display: flex; justify-content: center; height: 118px; overflow: hidden; margin-top: -6px; }
.fx-watermark img { width: min(840px, 88vw); max-width: none; opacity: 0.045; transform: translateY(42%); }
@media (max-width: 960px) {
  .fx-cols4 { grid-template-columns: repeat(2, 1fr); }
  .fx-cols5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .fx-status-inner { gap: 12px; }
  .fx-status-note { margin-left: 0; }
  .fx-clocks { gap: 12px; font-size: 12px; }
  .fx-watermark { height: 64px; }
}

/* ---------- tool card demos: fill the card, kill dead space ---------- */
.tool-card .chat-demo, .tool-card .radar-flow, .tool-card .profile-demo, .tool-card .device-demo { margin-top: auto; }

/* WhatsApp radar: raw message -> structured offer */
.radar-flow { margin-top: 20px; display: flex; flex-direction: column; gap: 0; }
.wa-msg {
  background: #e7f6e9; border: 1px solid #cfe9d3; border-radius: 14px 14px 14px 4px;
  padding: 11px 14px; max-width: 90%; position: relative;
}
.wa-head { display: flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 700; color: #1d7a33; margin-bottom: 4px; }
.wa-dot { width: 7px; height: 7px; border-radius: 50%; background: #25d366; flex-shrink: 0; }
.wa-text { font-size: 13.5px; color: #2a3b2d; line-height: 1.45; font-weight: 500; }
.radar-transform { display: flex; align-items: center; justify-content: center; position: relative; height: 34px; }
.radar-transform::before { content: ""; position: absolute; top: 0; bottom: 0; left: 24px; width: 2px; background: repeating-linear-gradient(var(--line-2) 0 4px, transparent 4px 8px); }
.radar-pill {
  font-size: 11px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--sell-deep); background: var(--sell-bg); border: 1px solid rgba(44,158,243,0.24);
  padding: 4px 12px; border-radius: 100px; position: relative; z-index: 1;
}
.radar-out { box-shadow: var(--sh-sm) !important; }
.radar-out .offer-meta { margin-top: 10px; padding-top: 9px; }
.radar-out .offer-co { color: var(--sell-deep); font-weight: 700; }

/* platforms: phone frame with live feed */
.device-demo { margin-top: 20px; display: flex; justify-content: center; padding-top: 6px; }
.phone {
  width: 216px; background: #0f1420; border-radius: 30px; padding: 9px;
  box-shadow: 0 18px 44px rgba(15,20,32,0.28), inset 0 0 0 1.5px rgba(255,255,255,0.06);
  position: relative;
}
.phone-notch { position: absolute; top: 9px; left: 50%; transform: translateX(-50%); width: 74px; height: 15px; background: #0f1420; border-radius: 0 0 12px 12px; z-index: 3; }
.phone-screen { background: var(--paper); border-radius: 22px; padding: 22px 10px 12px; display: flex; flex-direction: column; gap: 8px; }
.phone-bar { display: flex; align-items: center; justify-content: space-between; padding: 2px 4px 8px; }
.phone-logo { height: 16px; width: auto; }
.phone-live { display: inline-flex; align-items: center; gap: 5px; font-size: 9.5px; font-weight: 700; color: var(--sell-deep); }
.phone-live-dot { width: 6px; height: 6px; border-radius: 50%; background: #34c759; }
.mini-offer {
  background: #fff; border: 1px solid var(--line); border-radius: 11px;
  padding: 9px 11px; display: grid; grid-template-columns: auto 1fr; gap: 3px 8px;
  align-items: center; box-shadow: var(--sh-sm);
}
.mini-offer.mo-sell { border-top: 2px solid var(--sell); }
.mini-offer.mo-buy { border-top: 2px solid var(--buy); }
.mo-tag { font-size: 8.5px; font-weight: 800; letter-spacing: 0.05em; padding: 2px 7px; border-radius: 100px; }
.mo-sell-tag { background: var(--sell-bg); color: var(--sell-deep); }
.mo-buy-tag { background: var(--buy-bg); color: var(--buy-deep); }
.mo-title { font-size: 11.5px; font-weight: 700; color: var(--ink); line-height: 1.25; }
.mo-loc { grid-column: 2; font-size: 10px; color: var(--muted); font-weight: 600; }
.mo-loc::before { content: "📍 "; font-size: 8px; }
.device-demo + .store-row { margin-top: 20px; }
@media (max-width: 760px) {
  .phone { width: 200px; }
}

/* enriched company-profile demo */
.profile-demo { display: flex; flex-direction: column; gap: 12px; }
.profile-top { display: flex; align-items: center; gap: 11px; }
.profile-avatar {
  width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 17px; color: #fff;
  background: linear-gradient(135deg, var(--sell), var(--sell-deep));
}
.profile-id { display: flex; flex-direction: column; gap: 1px; margin-right: auto; }
.profile-handle { display: inline-flex; align-items: center; gap: 5px; font-size: 14px; font-weight: 800; color: var(--ink); }
.profile-check { flex-shrink: 0; }
.profile-sub { font-size: 11.5px; color: var(--muted); font-weight: 600; }
.profile-stats { display: flex; gap: 16px; padding: 11px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.profile-stats span { font-size: 12px; color: var(--muted); font-weight: 600; }
.profile-stats b { display: block; font-size: 18px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.profile-badges { display: flex; gap: 7px; flex-wrap: wrap; }
.profile-badge { font-size: 11px; font-weight: 700; color: var(--ink-2); background: #fff; border: 1px solid var(--line-2); padding: 4px 11px; border-radius: 100px; }
.profile-foot { display: flex; align-items: center; gap: 12px; }
.profile-qr { width: 46px; height: 46px; border-radius: 8px; border: 1px solid var(--line); padding: 3px; background: #fff; flex-shrink: 0; }
.profile-endorse { color: var(--muted); font-weight: 500; font-size: 12.5px; line-height: 1.4; }

/* ================= premium duo cards (tools section redesign) =================
   Full-width split cards: light copy half + dark navy product panel.
   White outer shell on the soft paper section, generous radii, alternating sides. */
.duo-stack { display: flex; flex-direction: column; gap: 26px; }
.duo {
  display: grid; grid-template-columns: 1fr 1.12fr; gap: 12px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 34px; padding: 12px;
  box-shadow: var(--sh-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.duo:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.duo-flip .duo-copy { order: 2; }
.duo-flip .duo-panel { order: 1; }

/* light copy half */
.duo-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: 40px 36px; min-width: 0;
}
.duo-title {
  font-size: clamp(24px, 2.6vw, 31px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.12; margin-bottom: 14px;
}
.duo-title .dim { color: var(--muted); font-weight: 700; }
.duo-copy > p { font-size: 15.5px; color: var(--ink-2); max-width: 44ch; }
.duo-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.dchip {
  font-size: 12.5px; font-weight: 700; color: var(--ink-2);
  background: #fff; border: 1.5px solid var(--line-2);
  padding: 6px 14px; border-radius: var(--r-pill); white-space: nowrap;
}
.duo-cta {
  display: inline-flex; align-items: center; gap: 9px; align-self: flex-start;
  margin-top: 26px; font-size: 14px; font-weight: 700;
  background: var(--ink); color: #fff;
  padding: 11px 22px; border-radius: var(--r-pill);
  transition: transform .18s ease, background .18s ease;
}
.duo-cta:hover { transform: translateY(-2px); background: #2a2f3d; }
.duo-arrow { display: inline-block; transition: transform .18s ease; }
.duo-cta:hover .duo-arrow { transform: translateX(3px); }
.duo-copy .store-row { margin-top: 26px; padding-top: 0; }

/* dark product panel */
.duo-panel {
  background: var(--navy); border-radius: 26px;
  padding: 30px 30px 22px;
  display: flex; flex-direction: column; justify-content: center; gap: 18px;
  min-width: 0; position: relative; overflow: hidden;
}
.duo-panel::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(90% 70% at 85% 0%, rgba(44,158,243,0.14), transparent 60%);
}
.duo-panel > * { position: relative; }
.duo-panel-center { align-items: center; }
.duo-panel-foot {
  margin-top: auto; display: flex; align-items: center; justify-content: space-between;
  gap: 12px; width: 100%;
}
.duo-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; color: #8fd0ff;
  background: rgba(44,158,243,0.12); border: 1px solid rgba(44,158,243,0.28);
  padding: 6px 14px; border-radius: var(--r-pill); white-space: nowrap;
}
.duo-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #34c759; flex-shrink: 0; }
.duo-panel-note { font-size: 12px; font-weight: 600; color: #6b7488; }

/* demos, restyled for the dark panel */
.duo-panel .chat-demo { margin-top: 0; background: transparent; border: none; padding: 0; }
.duo-panel .chat-them { background: #1a2130; border: 1px solid #262e40; color: #e8ecf4; }
.duo-panel .chat-you { background: var(--sell); color: #fff; }
.duo-panel .lang { background: #1a2130; border-color: #2a3244; color: #aeb6c6; }
.duo-panel .lang.on { background: var(--sell); border-color: var(--sell); color: #fff; }

.duo-panel .radar-flow { margin-top: 0; }
.duo-panel .wa-msg { background: #14261a; border-color: #21402a; }
.duo-panel .wa-head { color: #4fce6b; }
.duo-panel .wa-text { color: #cfe6d4; }
.duo-panel .radar-transform::before { background: repeating-linear-gradient(#2a3244 0 4px, transparent 4px 8px); }
.duo-panel .radar-pill { background: rgba(44,158,243,0.14); border-color: rgba(44,158,243,0.34); color: #8fd0ff; }
.duo-panel .radar-out { box-shadow: 0 14px 34px rgba(0,0,0,0.4) !important; }

.duo-panel .profile-demo { margin-top: 0; background: #fff; box-shadow: 0 14px 34px rgba(0,0,0,0.4); }
.duo-panel .device-demo { margin-top: 0; padding-top: 0; }
.duo-panel .phone { box-shadow: 0 18px 44px rgba(0,0,0,0.5), inset 0 0 0 1.5px rgba(255,255,255,0.14); }

/* responsive */
@media (max-width: 960px) {
  .duo { grid-template-columns: 1fr; border-radius: 28px; }
  .duo-flip .duo-copy { order: 1; }
  .duo-flip .duo-panel { order: 2; }
  .duo-copy { padding: 28px 22px 22px; }
  .duo-panel { padding: 24px 20px 18px; }
}
@media (max-width: 600px) {
  .duo-stack { gap: 18px; }
  .duo { padding: 8px; }
  .duo-title { font-size: 23px; }
  .duo-panel-note { display: none; }
}

/* duo chat: pinned-offer header + roomier bubbles */
.chat-offer-ref {
  display: flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 700; color: #aeb6c6;
  background: #161d2c; border: 1px solid #232b3d;
  padding: 9px 13px; border-radius: 12px; margin-bottom: 14px;
}
.chat-offer-tag {
  font-size: 10px; font-weight: 800; letter-spacing: 0.05em;
  background: rgba(44,158,243,0.16); color: #8fd0ff;
  padding: 2px 8px; border-radius: 100px; flex-shrink: 0;
}
.duo-panel .chat-bubble { font-size: 14px; padding: 10px 15px; margin-bottom: 10px; }
.duo-panel .lang-chips { margin-top: 14px; }

/* duo kickers: numbered editorial labels */
.duo-kicker {
  display: block; font-size: 11.5px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--sell-deep); margin-bottom: 12px;
}

/* card 4: device shot bleeding off the panel bottom */
.duo-panel-bleed { justify-content: flex-end; gap: 0; padding-bottom: 0; min-height: 460px; }
.duo-panel-bleed .duo-panel-foot { position: absolute; top: 22px; left: 26px; margin: 0; width: auto; z-index: 2; }
.duo-panel-bleed .device-demo { align-items: flex-end; margin-bottom: -92px; }
.duo-panel-bleed .phone { width: 256px; border-radius: 40px 40px 0 0; padding-bottom: 0; }
.duo-panel-bleed .phone-screen { border-radius: 26px 26px 0 0; gap: 10px; padding-bottom: 0; }
@media (max-width: 960px) {
  .duo-panel-bleed { min-height: 0; }
  .duo-panel-bleed .device-demo { margin-bottom: -120px; }
  .duo-panel-bleed .duo-panel-foot { position: static; order: -1; margin-bottom: 18px; }
}

/* ---------- mobile app bar (smart-CTA companion; mobile UAs only get one injected) ---------- */
.app-bar {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 70;
  display: flex; align-items: center; gap: 11px;
  background: rgba(255,255,255,0.96);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid var(--line); border-radius: 18px;
  padding: 10px 12px;
  box-shadow: 0 12px 40px rgba(18,20,26,0.22);
  transform: translateY(130%); transition: transform .45s cubic-bezier(.2,.9,.25,1);
}
.app-bar.on { transform: translateY(0); }
.app-bar-ic { width: 34px; height: 34px; flex-shrink: 0; }
.app-bar-txt { display: flex; flex-direction: column; min-width: 0; margin-right: auto; line-height: 1.25; }
.app-bar-txt b { font-size: 13.5px; font-weight: 800; color: var(--ink); }
.app-bar-txt span { font-size: 11.5px; color: var(--muted); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.app-bar-btn {
  flex-shrink: 0; font-size: 13px; font-weight: 800;
  background: var(--sell); color: #fff;
  padding: 9px 16px; border-radius: var(--r-pill);
}
.app-bar-x {
  flex-shrink: 0; background: none; border: none; cursor: pointer;
  font-size: 20px; line-height: 1; color: var(--muted); padding: 4px 6px;
}
@media (prefers-reduced-motion: reduce) { .app-bar { transition: none; } }

/* mobile: hide the other platform's store badge (card 4 + blog CTA rows) - one relevant choice */
body.smart-ios .store-badge[href*="play.google.com"] { display: none; }
body.smart-android .store-badge[href*="apps.apple.com"] { display: none; }
