/* Come — Brand App Profile V10
   Tokens, layout, navigation, sections, FAQ, footer
   Soft-green editorial surface, electric-cyan install CTA */

:root {
  --bg: #F7FBF8;
  --bg-2: #FFFFFF;
  --bg-3: #E9F7EE;
  --bg-4: #DAF0E2;
  --ink: #0B1B14;
  --ink-2: #1F3329;
  --muted: #556B63;
  --muted-2: #7B8C85;
  --line: #DCE7E0;
  --line-2: #C8D9CF;
  --green: #067A46;
  --green-2: #0E8E55;
  --green-3: #0A6639;
  --cyan: #10B5E6;
  --cyan-2: #0E94BE;
  --amber: #B7791F;
  --danger: #B43A2A;
  --radius-s: 10px;
  --radius-m: 14px;
  --radius-l: 24px;
  --radius-xl: 32px;
  --shadow-s: 0 1px 2px rgba(11,27,20,0.04), 0 2px 8px rgba(11,27,20,0.05);
  --shadow-m: 0 2px 6px rgba(11,27,20,0.06), 0 12px 32px rgba(11,27,20,0.08);
  --shadow-l: 0 4px 12px rgba(11,27,20,0.08), 0 24px 64px rgba(11,27,20,0.10);
  --container: 1240px;
  --gap-s: 8px;
  --gap-m: 16px;
  --gap-l: 28px;
  --gap-xl: 56px;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { max-width: 100%; display: block; }

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-3); text-decoration: underline; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); color: var(--ink); margin: 0; line-height: 1.2; letter-spacing: -0.01em; }
h1 { font-size: clamp(30px, 4vw, 52px); font-weight: 800; }
h2 { font-size: clamp(24px, 2.6vw, 34px); font-weight: 800; }
h3 { font-size: clamp(20px, 1.8vw, 24px); font-weight: 700; }
h4 { font-size: 18px; font-weight: 700; }
p { margin: 0 0 14px; }

ul, ol { margin: 0 0 16px; padding-left: 20px; }
li { margin: 4px 0; }

hr { border: 0; border-top: 1px solid var(--line); margin: 32px 0; }

:focus-visible { outline: 3px solid var(--cyan); outline-offset: 2px; border-radius: 4px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* ---------------- container ---------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: clamp(40px, 6vw, 80px) 0; }
.section-tight { padding: clamp(28px, 4vw, 48px) 0; }
.section-band { background: var(--bg-3); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-band-2 { background: var(--bg-4); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---------------- skip link ---------------- */
.skip {
  position: absolute; left: 12px; top: -40px; background: var(--ink); color: #fff; padding: 8px 14px;
  border-radius: 8px; z-index: 1000; font-weight: 700;
}
.skip:focus { top: 12px; }

/* ---------------- header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 250; background: rgba(247,251,248,0.92);
  backdrop-filter: saturate(150%) blur(8px); -webkit-backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 64px; padding-top: 8px; padding-bottom: 8px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand-mark {
  width: 36px; height: 36px; border-radius: 10px; background: var(--green);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 18px; flex: none;
  position: relative;
}
.brand-mark::after { content: ""; position: absolute; inset: -3px; border-radius: 13px; border: 2px solid var(--cyan); opacity: 0; transition: opacity .18s ease; }
.brand:hover .brand-mark::after { opacity: 1; }
.brand-name { font-weight: 800; font-size: 18px; letter-spacing: -0.01em; color: var(--ink); }
.brand-tag { display: block; font-size: 12px; color: var(--muted); margin-top: -2px; font-weight: 500; }

.main-nav { display: none; }
.main-nav ul { display: flex; gap: 4px; list-style: none; padding: 0; margin: 0; }
.main-nav a {
  display: inline-flex; align-items: center; padding: 8px 12px; border-radius: 10px;
  color: var(--ink-2); font-weight: 600; font-size: 15px; white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { background: var(--bg-3); color: var(--ink); text-decoration: none; }
.main-nav a.cta-nav {
  background: var(--cyan); color: #fff; font-weight: 700;
}
.main-nav a.cta-nav:hover { background: var(--cyan-2); color: #fff; }

.hamburger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px; background: transparent; border: 1px solid var(--line);
  cursor: pointer; color: var(--ink);
}
.hamburger:focus-visible { outline-color: var(--cyan); }
.hamburger span { display: block; width: 18px; height: 2px; background: var(--ink); margin: 3px 0; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.mobile-drawer {
  position: fixed; top: 64px; left: 0; right: 0; bottom: 0; background: var(--bg-2);
  border-top: 1px solid var(--line); padding: 20px; overflow-y: auto;
  transform: translateY(-12px); opacity: 0; pointer-events: none; transition: transform .2s ease, opacity .2s ease;
  z-index: 240;
}
.mobile-drawer.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-drawer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.mobile-drawer li a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px; border-radius: 12px; background: var(--bg-3); color: var(--ink); font-weight: 600;
}
.mobile-drawer li a.cta-mobile {
  background: var(--cyan); color: #fff;
}
.mobile-drawer li a:hover { text-decoration: none; background: var(--bg-4); }
.mobile-drawer li a.cta-mobile:hover { background: var(--cyan-2); }

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px; border-radius: 12px; font-weight: 700; font-size: 16px;
  background: var(--cyan); color: #fff; border: 0; cursor: pointer;
  white-space: nowrap; text-align: center; line-height: 1; transition: background .15s ease, transform .15s ease;
  text-decoration: none;
}
.btn:hover { background: var(--cyan-2); color: #fff; text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-ghost {
  background: transparent; color: var(--ink); border: 1px solid var(--line-2);
}
.btn-ghost:hover { background: var(--bg-3); color: var(--ink); border-color: var(--line-2); text-decoration: none; }
.btn-large { padding: 16px 28px; font-size: 17px; }
.btn-block { width: 100%; }

/* ---------------- brand app profile ---------------- */
.bap { padding: clamp(24px, 4vw, 48px) 0 clamp(40px, 6vw, 80px); }
.bap-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--gap-l);
  align-items: stretch;
}
.bap-card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: clamp(20px, 3vw, 36px); box-shadow: var(--shadow-s);
  min-width: 0;
}
.bap-card.bap-ledger {
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  border-color: var(--line);
}
.bap-identity { display: flex; gap: 16px; align-items: flex-start; flex-wrap: wrap; }
.bap-icon {
  width: 96px; height: 96px; border-radius: 24px; background: var(--green);
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  position: relative;
}
.bap-icon::before {
  content: ""; position: absolute; inset: -6px; border-radius: 28px;
  border: 2px solid var(--cyan); opacity: 1;
}
.bap-icon::after {
  content: ""; width: 50px; height: 50px; border: 14px solid #fff;
  border-bottom-color: transparent; border-left-color: transparent;
  border-radius: 50%; transform: rotate(45deg);
}
.bap-identity h1 { font-size: clamp(28px, 3.5vw, 44px); margin-bottom: 8px; }
.bap-tagline { font-size: 17px; color: var(--muted); max-width: 60ch; }
.bap-facts {
  margin: 22px 0 0; padding: 0; list-style: none;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px;
}
.bap-facts li {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-m);
  padding: 12px 14px; margin: 0;
}
.bap-facts li strong { display: block; color: var(--muted); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.bap-facts li span { display: block; color: var(--ink); font-weight: 700; font-size: 15px; margin-top: 4px; }
.bap-actions { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }

.bap-ledger-art {
  position: relative; min-height: 240px; border-radius: var(--radius-l);
  overflow: hidden; background: var(--bg-3); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}
.bap-ledger-art img { width: 100%; height: auto; }
.bap-annot {
  position: absolute; background: #fff; border: 1px solid var(--line);
  padding: 8px 12px; border-radius: 10px; font-size: 12px; font-weight: 600; color: var(--ink);
  box-shadow: var(--shadow-s);
}
.bap-annot::before { content: ""; position: absolute; width: 8px; height: 8px; background: var(--cyan); border-radius: 50%; }
.bap-annot.tl { top: 12px; left: 12px; }
.bap-annot.tl::before { bottom: -4px; right: -4px; top: auto; left: auto; }
.bap-annot.tr { top: 12px; right: 12px; }
.bap-annot.tr::before { bottom: -4px; left: -4px; top: auto; right: auto; }
.bap-annot.bl { bottom: 12px; left: 12px; }
.bap-annot.bl::before { top: -4px; right: -4px; bottom: auto; left: auto; }
.bap-annot.br { bottom: 12px; right: 12px; }
.bap-annot.br::before { top: -4px; left: -4px; bottom: auto; right: auto; }

/* ---------------- section heading ---------------- */
.eyebrow {
  display: inline-block; padding: 6px 12px; border-radius: 999px;
  background: var(--bg-4); color: var(--green-3); font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.section-head { margin-bottom: clamp(20px, 3vw, 36px); max-width: 60ch; }
.section-head h2 { margin: 10px 0 8px; }
.section-head p { color: var(--muted); font-size: 16px; }

/* ---------------- HOT shelf (Fantasy/Rummy/Sports/Games) ---------------- */
.hot-shelf {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.hot-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: 18px; display: flex; flex-direction: column; gap: 10px;
  min-height: 168px; transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  position: relative; text-decoration: none; color: var(--ink);
}
.hot-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-m); border-color: var(--cyan); text-decoration: none; }
.hot-card .hot-art {
  width: 84px; height: 84px; border-radius: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
}
.hot-card h3 { font-size: 18px; margin: 0; }
.hot-card p { font-size: 14px; color: var(--muted); margin: 0; }
.hot-card .hot-cta { margin-top: auto; font-weight: 700; color: var(--green); font-size: 14px; }

/* Sports ball dominant */
.hot-sports .hot-art { background: linear-gradient(135deg, #E9F7EE, #DAF0E2); border: 1px solid #C8D9CF; }
.hot-sports .hot-art::after { content: ""; display: block; width: 44px; height: 44px; border-radius: 50%; background: radial-gradient(circle at 32% 32%, #D43B3B, #7A1B1B 70%, #4B0E0E); border: 1px solid #3D0808; box-shadow: inset -2px -3px 6px rgba(0,0,0,0.25); }

.hot-fantasy .hot-art { background: linear-gradient(135deg, #E9F7EE, #DAF0E2); border: 1px solid #C8D9CF; }
.hot-fantasy .hot-art::after { content: ""; display: block; width: 44px; height: 44px; border-radius: 50%; background: #B7791F; box-shadow: inset -2px -3px 6px rgba(0,0,0,0.3); }

.hot-rummy .hot-art { background: linear-gradient(135deg, #E9F7EE, #DAF0E2); border: 1px solid #C8D9CF; }
.hot-rummy .hot-art::after { content: ""; display: block; width: 44px; height: 44px; border-radius: 6px; background: linear-gradient(135deg, #fff, #f0e6dc); border: 1px solid #C8B89E; }

.hot-games .hot-art { background: linear-gradient(135deg, #E9F7EE, #DAF0E2); border: 1px solid #C8D9CF; }
.hot-games .hot-art::after { content: ""; display: block; width: 44px; height: 44px; border-radius: 50%; background: radial-gradient(circle at 32% 32%, #2D6CDF, #143C8E 80%, #0A2456); box-shadow: inset -2px -3px 6px rgba(0,0,0,0.3); }

/* ---------------- step timeline ---------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.step-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: 22px; display: flex; flex-direction: column; gap: 10px; min-height: 200px;
}
.step-num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px;
  flex: none;
}
.step-card h3 { font-size: 17px; }
.step-card p { color: var(--muted); font-size: 14px; margin: 0; }

/* ---------------- features grid ---------------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: 24px; display: flex; flex-direction: column; gap: 12px;
}
.feature-icon {
  width: 56px; height: 56px; border-radius: 14px; background: var(--bg-4);
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  color: var(--green); font-weight: 800; font-size: 20px;
}
.feature-card h3 { font-size: 18px; }
.feature-card p { color: var(--muted); font-size: 15px; margin: 0; }
.feature-card ul { color: var(--ink-2); font-size: 14px; padding-left: 18px; margin: 0; }

/* ---------------- wide editorial band ---------------- */
.editorial-band {
  display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center;
}
.editorial-band .band-art { border-radius: var(--radius-l); overflow: hidden; border: 1px solid var(--line); background: var(--bg-3); }
.editorial-band .band-art img { width: 100%; height: auto; }
.editorial-band h2 { margin: 12px 0; }
.editorial-band p { color: var(--ink-2); }
.editorial-band .band-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 18px 0; padding: 0; list-style: none; }
.editorial-band .band-points li { background: var(--bg-3); border-radius: var(--radius-m); padding: 12px 14px; color: var(--ink); font-size: 14px; border: 1px solid var(--line); }

/* ---------------- compact comparison row ---------------- */
.compare-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.compare-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: 22px;
}
.compare-card h3 { font-size: 18px; margin-bottom: 8px; }
.compare-card .compare-price { font-size: 26px; font-weight: 800; color: var(--green); margin: 8px 0; }
.compare-card ul { font-size: 14px; color: var(--muted); padding-left: 18px; }

/* ---------------- app directory ---------------- */
.app-directory-controls {
  display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 16px;
}
.app-search {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 10px 14px;
}
.app-search input {
  border: 0; outline: 0; flex: 1; font: inherit; color: var(--ink); background: transparent;
  min-width: 0;
}
.app-search input::placeholder { color: var(--muted-2); }
.app-search svg { flex: none; color: var(--muted); }
.app-result-count { color: var(--muted); font-size: 14px; }
.app-filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.app-filter-chips.app-filter-providers { margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--line); }
.app-filter-chips.app-filter-providers::before { content: 'Provider'; font-size: 12px; font-weight: 700; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; align-self: center; padding-right: 4px; }
@media (max-width: 600px) { .app-filter-chips.app-filter-providers::before { width: 100%; padding: 0 0 4px 0; } }
.app-filter-chips button {
  background: #fff; border: 1px solid var(--line); color: var(--ink-2);
  padding: 8px 14px; border-radius: 999px; font-weight: 600; font-size: 13px;
  cursor: pointer; transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.app-filter-chips button:hover { background: var(--bg-3); }
.app-filter-chips button.active { background: var(--green); color: #fff; border-color: var(--green); }

.app-row {
  display: grid; grid-template-columns: 88px 1fr auto; gap: 16px;
  align-items: center; padding: 14px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-m); margin-bottom: 10px; min-height: 88px;
}
.app-row .row-art {
  width: 88px; height: 72px; border-radius: 14px; background: var(--bg-3); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.app-row .row-art img { width: 100%; height: 100%; object-fit: cover; }
.app-row h3 { font-size: 16px; margin: 0 0 4px; }
.app-row .row-meta { color: var(--muted); font-size: 13px; display: flex; gap: 10px; flex-wrap: wrap; }
.app-row .row-meta span { background: var(--bg-3); padding: 2px 8px; border-radius: 6px; }
.app-row .row-cta { white-space: nowrap; }

.app-row a[data-game-link] { color: var(--ink); }
.app-row a[data-game-link]:hover { color: var(--green); text-decoration: none; }

/* ---------------- promos / hubs row ---------------- */
.hubs-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.hub-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: 22px; display: flex; flex-direction: column; gap: 10px;
}
.hub-card h3 { font-size: 18px; }
.hub-card p { color: var(--muted); font-size: 14px; margin: 0; }
.hub-card .hub-points { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; font-size: 14px; color: var(--ink-2); }
.hub-card .hub-points li { padding: 8px 12px; background: var(--bg-3); border-radius: 10px; }
.hub-card .hub-cta { margin-top: 6px; font-weight: 700; color: var(--green); font-size: 14px; }

/* ---------------- news list ---------------- */
.news-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.news-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: 0; overflow: hidden; display: flex; flex-direction: column; text-decoration: none; color: var(--ink);
  transition: transform .15s ease, box-shadow .15s ease;
}
.news-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-m); text-decoration: none; }
.news-card .news-art {
  aspect-ratio: 16 / 9; background: var(--bg-3); border-bottom: 1px solid var(--line); overflow: hidden;
}
.news-card .news-art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-card .news-body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.news-card .news-kicker {
  display: inline-block; padding: 4px 10px; border-radius: 999px;
  background: var(--bg-4); color: var(--green-3); font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; align-self: flex-start;
}
.news-card h3 { font-size: 18px; }
.news-card .news-summary { color: var(--muted); font-size: 14px; margin: 0; }
.news-card .news-date { color: var(--muted-2); font-size: 12px; margin-top: auto; }

/* ---------------- FAQ ---------------- */
.faq { display: grid; grid-template-columns: 1fr; gap: 12px; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-m);
  padding: 0; overflow: hidden;
}
.faq summary {
  list-style: none; cursor: pointer; padding: 16px 18px; font-weight: 700; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  font-size: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-weight: 700; color: var(--green); font-size: 22px; line-height: 1; transition: transform .2s ease; flex: none; }
.faq details[open] summary::after { content: "−"; }
.faq details .faq-body { padding: 0 18px 18px; color: var(--ink-2); font-size: 15px; line-height: 1.65; }
.faq details .faq-body p { margin: 0 0 8px; }

/* ---------------- footer ---------------- */
.site-footer {
  background: var(--ink); color: #DCE7E0; padding: 56px 0 24px; margin-top: 0;
}
.site-footer .footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer h4 { color: #fff; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.site-footer a { color: #DCE7E0; font-size: 14px; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer .footer-brand p { color: #A6BAB1; font-size: 14px; }
.site-footer .footer-bottom {
  display: flex; flex-direction: column; gap: 12px; justify-content: space-between; padding-top: 18px;
  font-size: 13px; color: #A6BAB1;
}
.site-footer .legal-links { display: flex; gap: 12px; flex-wrap: wrap; }
.site-footer .legal-links a { color: #A6BAB1; }
.site-footer .legal-links a:hover { color: #fff; }
.site-footer .socials { display: flex; gap: 10px; }
.site-footer .socials a {
  width: 36px; height: 36px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08); color: #fff; font-weight: 700;
}
.site-footer .socials a:hover { background: var(--cyan); color: #fff; text-decoration: none; }

.disclosure {
  background: var(--bg-4); border: 1px solid var(--line-2); border-radius: var(--radius-m);
  padding: 14px 18px; color: var(--ink-2); font-size: 13px; line-height: 1.55; margin-top: 24px;
}

/* ---------------- mobile sticky CTA ---------------- */
.sticky-cta {
  display: none; position: fixed; left: 12px; right: 12px; bottom: 12px;
  z-index: 200;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(6px);
  border: 1px solid var(--line); border-radius: 16px; padding: 10px;
  box-shadow: var(--shadow-l);
}
.sticky-cta .btn { width: 100%; }

/* ---------------- cookie panel ---------------- */
.cookie-panel {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 300;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px;
  box-shadow: var(--shadow-l); max-width: 480px; margin: 0 auto;
}
.cookie-panel h3 { font-size: 16px; margin: 0 0 6px; }
.cookie-panel p { color: var(--muted); font-size: 13px; margin: 0 0 10px; }
.cookie-panel .cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-panel .cookie-row {
  display: flex; gap: 10px; align-items: center; padding: 8px 0; border-top: 1px solid var(--line);
}
.cookie-panel .cookie-row label { font-weight: 600; font-size: 14px; color: var(--ink); flex: 1; }
.cookie-panel .cookie-row small { color: var(--muted); font-size: 12px; }
.cookie-panel input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--green); }

/* ---------------- tables ---------------- */
.data-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-m); overflow: hidden; }
.data-table th, .data-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14px; }
.data-table th { background: var(--bg-3); color: var(--ink); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; }
.data-table tr:last-child td { border-bottom: 0; }

/* ---------------- prose ---------------- */
.prose p { font-size: 17px; line-height: 1.7; color: var(--ink-2); }
.prose h2 { margin: 28px 0 12px; }
.prose h3 { margin: 22px 0 10px; }
.prose ul li { font-size: 16px; }

/* ---------------- responsive grid for grids using display:contents ---------------- */
.shelf-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.shelf-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.shelf-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.shelf-1 { display: grid; grid-template-columns: 1fr; gap: 14px; }

/* ---------------- responsive rules ---------------- */
@media (min-width: 720px) {
  .hot-shelf { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .compare-row { grid-template-columns: repeat(3, 1fr); }
  .hubs-row { grid-template-columns: repeat(3, 1fr); }
  .news-list { grid-template-columns: repeat(3, 1fr); }
  .editorial-band { grid-template-columns: 1.05fr 1fr; gap: 36px; }
  .bap-grid { grid-template-columns: 1.05fr 1fr; gap: 28px; }
  .app-directory-controls { grid-template-columns: 1fr auto; align-items: center; }
  .site-footer .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; }
  .site-footer .footer-bottom { flex-direction: row; }
}
@media (min-width: 1024px) {
  .main-nav { display: block; }
  .hamburger { display: none; }
}
@media (max-width: 719px) {
  .hot-shelf { grid-template-columns: 1fr 1fr; gap: 10px; }
  .steps { grid-template-columns: 1fr 1fr; gap: 10px; }
  .feature-grid { grid-template-columns: 1fr; }
  .compare-row { grid-template-columns: 1fr; }
  .hubs-row { grid-template-columns: 1fr; }
  .news-list { grid-template-columns: 1fr; }
  .editorial-band { grid-template-columns: 1fr; }
  .bap-grid { grid-template-columns: 1fr; }
  .editorial-band .band-points { grid-template-columns: 1fr; }
  .bap-icon { width: 72px; height: 72px; }
  .bap-icon::after { width: 38px; height: 38px; border-width: 10px; }
}
@media (max-width: 540px) {
  .hot-shelf { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .news-list { grid-template-columns: 1fr; }
  .hubs-row { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .compare-row { grid-template-columns: 1fr; }
  .app-row { grid-template-columns: 72px 1fr; }
  .app-row .row-cta { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .sticky-cta { display: block; }
  .bap-actions .btn { flex: 1 1 100%; }
}

/* ---------------- print ---------------- */
@media print {
  .site-header, .site-footer, .sticky-cta, .cookie-panel, .mobile-drawer { display: none !important; }
}

/* ---------------- utility ---------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.muted { color: var(--muted); }
.divider { height: 1px; background: var(--line); margin: 28px 0; }
