/* ============================================================
   Asdbuy Spreadsheet — verification dossier / field-guide UI
   Palette: azure #0056A0 · ink #0A2540 · burnt orange #EB6D21
   Type: Kanit (display) + Manrope (body). Light + dark tokens.
   ============================================================ */

:root {
  --azure: #0056A0;
  --azure-600: #004B8C;
  --azure-050: #EAF2FB;
  --ink: #0A2540;
  --ink-800: #12314F;
  --accent: #EB6D21;
  --accent-600: #D25E15;
  --accent-050: #FDEEE2;

  --bg: #F4F6FA;
  --surface: #FFFFFF;
  --surface-2: #FBFCFE;
  --line: #D8E0EC;
  --line-strong: #B9C6D8;
  --text: #0A2540;
  --muted: #4B5A70;
  --muted-2: #6B7A90;

  --ok: #1E7A54;
  --warn: #9A5B00;

  --radius: 10px;
  --radius-sm: 7px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(10,37,64,.06);
  --shadow: 0 6px 24px rgba(10,37,64,.09);
  --maxw: 1180px;
  --gap-section: clamp(48px, 8vw, 88px);
  --font-display: 'Kanit', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Manrope', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-mono: ui-monospace, 'SFMono-Regular', 'Cascadia Code', Menlo, monospace;
}

@media (prefers-color-scheme: dark) {
  :root {
    --azure: #56A8F0;
    --azure-600: #7DBEF6;
    --azure-050: #12314F;
    --ink: #E7EEF7;
    --ink-800: #0B1B2E;
    --accent: #FF8A47;
    --accent-600: #FFA268;
    --accent-050: #3A2412;
    --bg: #0A1522;
    --surface: #0F2135;
    --surface-2: #122840;
    --line: #23405F;
    --line-strong: #2F5379;
    --text: #E7EEF7;
    --muted: #A9B8CC;
    --muted-2: #8698AE;
    --ok: #4FBF8B;
    --warn: #E0A54A;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
    --shadow: 0 8px 28px rgba(0,0,0,.45);
  }
}

/* ---------- reset ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--azure); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; color: var(--text); margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 5.2vw, 3.1rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.15rem); }
h3 { font-size: 1.22rem; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.2rem; }
li { margin: .3rem 0; }
strong { font-weight: 700; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(16px, 4vw, 32px); }
.section { padding-block: var(--gap-section); }
.section--tight { padding-block: clamp(36px, 6vw, 60px); }
.section--ink { background: var(--ink); }
.section--ink, .section--ink :is(h1,h2,h3,p,li) { color: #E7EEF7; }
.section--ink .muted { color: #A9B8CC; }
.grid { display: grid; gap: 22px; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--azure); color: #fff; padding: 10px 16px; z-index: 100; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

/* dossier index label */
.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.eyebrow::before { content: attr(data-idx); font-weight: 700; color: var(--accent); background: var(--accent-050); border: 1px solid var(--accent); border-radius: 5px; padding: 2px 6px; letter-spacing: 0; }
.lead { font-size: 1.12rem; color: var(--muted); max-width: 62ch; }
.muted { color: var(--muted); }

/* ---------- header / nav ---------- */
.site-header { position: sticky; top: 0; z-index: 40; background: color-mix(in srgb, var(--surface) 92%, transparent); backdrop-filter: saturate(1.4) blur(8px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; gap: 18px; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 30px; width: auto; }
.brand__tag { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--line-strong); border-radius: 4px; padding: 2px 5px; }
.nav__links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__links a { font-weight: 600; font-size: .95rem; color: var(--text); padding: 8px 11px; border-radius: 7px; text-decoration: none; position: relative; }
.nav__links a:hover { background: var(--azure-050); color: var(--azure); }
.nav__links a[aria-current="page"] { color: var(--azure); }
.nav__links a[aria-current="page"]::after { content: ""; position: absolute; left: 11px; right: 11px; bottom: 2px; height: 2px; background: var(--accent); border-radius: 2px; }
.nav__cta { margin-left: 6px; }
.nav__toggle { display: none; margin-left: auto; background: none; border: 1px solid var(--line-strong); border-radius: 8px; width: 44px; height: 44px; cursor: pointer; align-items: center; justify-content: center; color: var(--text); }
.nav__toggle svg { width: 22px; height: 22px; }

@media (max-width: 1080px) {
  .nav__toggle { display: inline-flex; }
  .nav__links { position: fixed; inset: 66px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px; background: var(--surface); border-bottom: 1px solid var(--line); padding: 12px clamp(16px,4vw,32px) 20px; margin: 0; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .18s, transform .18s; box-shadow: var(--shadow); }
  .nav__links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav__links a { padding: 13px 10px; font-size: 1.02rem; }
  .nav__links a[aria-current="page"]::after { display: none; }
  .nav__cta { margin: 8px 0 0; }
}

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-family: var(--font-body); font-weight: 700; font-size: .98rem; line-height: 1; padding: 14px 20px; min-height: 46px; border-radius: var(--radius); border: 1.5px solid transparent; cursor: pointer; transition: background .18s, color .18s, border-color .18s, box-shadow .18s; text-decoration: none; }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--azure); color: #fff; }
.btn-primary:hover { background: var(--azure-600); text-decoration: none; box-shadow: var(--shadow-sm); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-600); text-decoration: none; }
.btn-outline { background: transparent; color: var(--azure); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--azure); background: var(--azure-050); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-ghost:hover { background: var(--accent-050); text-decoration: none; }
.btn--sm { padding: 10px 14px; min-height: 40px; font-size: .9rem; }
.btn--block { width: 100%; }
@media (prefers-color-scheme: dark) { .btn-primary, .btn-accent { color: #0A1522; } }

/* ---------- hero ---------- */
.hero { padding-block: clamp(40px, 6vw, 76px); position: relative; overflow: hidden; }
.hero::before { content:""; position:absolute; inset:0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 34px 34px; opacity: .35; -webkit-mask-image: radial-gradient(120% 90% at 80% 0%, #000 30%, transparent 72%); mask-image: radial-gradient(120% 90% at 80% 0%, #000 30%, transparent 72%); pointer-events: none; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; position: relative; }
.hero__art { position: relative; }
.trust-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.trust-chip { display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; font-weight: 600; color: var(--muted); background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 7px 13px; }
.trust-chip svg { width: 15px; height: 15px; color: var(--azure); }
@media (max-width: 860px) { .hero__grid { grid-template-columns: 1fr; gap: 30px; } .hero__art { order: -1; } }

/* ---------- search bar (hero CTA) ---------- */
.searchbar { display: flex; gap: 8px; margin-top: 26px; background: var(--surface); border: 1.5px solid var(--line-strong); border-radius: var(--radius); padding: 8px; box-shadow: var(--shadow-sm); }
.searchbar:focus-within { border-color: var(--azure); box-shadow: 0 0 0 3px var(--azure-050); }
.searchbar input { flex: 1; border: 0; background: transparent; font: inherit; font-size: 1rem; color: var(--text); padding: 8px 10px; min-width: 0; }
.searchbar input::placeholder { color: var(--muted-2); }
.searchbar .btn { flex-shrink: 0; }
.search-hint { margin-top: 10px; font-size: .82rem; color: var(--muted); }
.search-hint a { font-weight: 600; }

/* ---------- generic card ---------- */
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.card__tab { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); background: var(--surface-2); border-bottom: 1px solid var(--line); padding: 9px 16px; }
.card__tab .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.card__body { padding: 20px; }
.card__body h3 { margin-top: 0; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.card-icon { width: 42px; height: 42px; border-radius: 9px; background: var(--azure-050); color: var(--azure); display: grid; place-items: center; margin-bottom: 12px; }
.card-icon svg { width: 22px; height: 22px; }

/* ---------- Four Sources map ---------- */
.sources-map { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.source-tile { background: var(--surface); border: 1px solid var(--line); border-top: 3px solid var(--azure); border-radius: var(--radius); padding: 18px 16px; transition: transform .18s, box-shadow .18s, border-color .18s; }
.source-tile:hover { box-shadow: var(--shadow); border-top-color: var(--accent); }
.source-tile.is-second { border-top-color: var(--accent); }
.source-tile h3 { font-size: 1.05rem; margin: 6px 0 4px; }
.source-tile .badge { font-family: var(--font-mono); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.source-tile p { font-size: .9rem; color: var(--muted); margin: 0; }
@media (max-width: 860px) { .sources-map { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .sources-map { grid-template-columns: 1fr; } }

/* ---------- category chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { display: inline-flex; align-items: center; gap: 9px; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 9px 15px 9px 11px; font-weight: 600; font-size: .92rem; color: var(--text); transition: border-color .18s, background .18s, transform .18s; }
.chip:hover { border-color: var(--azure); background: var(--azure-050); text-decoration: none; transform: translateY(-1px); }
.chip svg { width: 17px; height: 17px; color: var(--azure); }
.chip .ext { width: 13px; height: 13px; color: var(--muted-2); }

/* category dossier cards (catalog page) */
.cat-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; }
.cat-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.cat-card__head .card-icon { margin: 0; }
.cat-card dl { display: grid; grid-template-columns: auto 1fr; gap: 6px 12px; margin: 0 0 14px; font-size: .9rem; }
.cat-card dt { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); align-self: start; padding-top: 3px; }
.cat-card dd { margin: 0; color: var(--text); }

/* ---------- steps / workflow ---------- */
.steps { display: grid; gap: 16px; counter-reset: step; }
.step { display: grid; grid-template-columns: 46px 1fr; gap: 16px; align-items: start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; }
.step__num { counter-increment: step; width: 46px; height: 46px; border-radius: 10px; background: var(--ink); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; }
.step__num::before { content: counter(step, decimal-leading-zero); }
.step h3 { margin: 2px 0 6px; font-size: 1.1rem; }
.step p { margin: 0; color: var(--muted); font-size: .95rem; }
@media (prefers-color-scheme: dark) { .step__num { background: var(--azure); color: #0A1522; } }

/* ---------- grade-check tiers ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tier { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; background: var(--surface); }
.tier--yes { border-top: 4px solid var(--ok); }
.tier--limit { border-top: 4px solid var(--warn); }
.tier--you { border-top: 4px solid var(--azure); }
.tier h3 { display: flex; align-items: center; gap: 9px; font-size: 1.05rem; }
.tier h3 svg { width: 20px; height: 20px; flex-shrink: 0; }
.tier--yes h3 svg { color: var(--ok); }
.tier--limit h3 svg { color: var(--warn); }
.tier--you h3 svg { color: var(--azure); }
.tier ul { margin: 0; padding-left: 1.1rem; font-size: .92rem; color: var(--muted); }
@media (max-width: 860px) { .tiers { grid-template-columns: 1fr; } .steps .step { grid-template-columns: 40px 1fr; } }

/* ---------- callouts ---------- */
.callout { border: 1px solid var(--line); border-left: 4px solid var(--accent); background: var(--accent-050); border-radius: var(--radius-sm); padding: 16px 18px; margin: 20px 0; }
.callout--info { border-left-color: var(--azure); background: var(--azure-050); }
.callout p:last-child { margin-bottom: 0; }
.callout strong { color: var(--text); }

/* placeholder module */
.placeholder { border: 2px dashed var(--line-strong); border-radius: var(--radius); padding: 18px; background: repeating-linear-gradient(45deg, transparent, transparent 12px, var(--surface-2) 12px, var(--surface-2) 24px); }
.placeholder .card__tab { background: transparent; border: 0; padding: 0 0 8px; color: var(--accent); }
.placeholder p { font-size: .9rem; color: var(--muted); margin: 4px 0; }

/* ---------- FAQ accordion ---------- */
.faq { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.faq__item + .faq__item { border-top: 1px solid var(--line); }
.faq__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 18px 20px; font-family: var(--font-body); font-weight: 700; font-size: 1.02rem; color: var(--text); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__q:hover { background: var(--surface-2); }
.faq__q .ic { width: 20px; height: 20px; flex-shrink: 0; color: var(--azure); transition: transform .2s; }
.faq__q[aria-expanded="true"] .ic { transform: rotate(45deg); }
.faq__a { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height .24s ease, padding .24s ease; }
.faq__a[hidden] { display: block; }
.faq__q[aria-expanded="true"] + .faq__a { padding: 0 20px 18px; max-height: 600px; }
.faq__a p { margin: 0; color: var(--muted); }

/* ---------- related guides ---------- */
.related { border-top: 1px solid var(--line); margin-top: 40px; padding-top: 26px; }
.related h2 { font-size: 1.2rem; }
.related__links { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 12px; }
.related__links a { display: flex; gap: 10px; align-items: center; padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); font-weight: 600; font-size: .93rem; color: var(--text); }
.related__links a:hover { border-color: var(--azure); background: var(--azure-050); text-decoration: none; }
.related__links svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

/* ---------- updates / news cards ---------- */
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 18px; }
.news-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); padding: 18px; display: flex; flex-direction: column; gap: 8px; }
.news-card time { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .06em; color: var(--muted-2); }
.news-card .tag { align-self: flex-start; font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--azure); background: var(--azure-050); border-radius: 5px; padding: 3px 8px; }
.news-card h3 { font-size: 1.05rem; margin: 2px 0 4px; }
.news-card p { font-size: .9rem; color: var(--muted); margin: 0; }

/* ---------- comparison / choose ---------- */
.fit-list { display: grid; gap: 12px; }
.fit-row { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 16px; }
.fit-row svg { width: 20px; height: 20px; margin-top: 2px; }
.fit-row--yes svg { color: var(--ok); }
.fit-row--check svg { color: var(--warn); }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #C5D2E2; padding-block: 54px 30px; margin-top: 20px; }
.site-footer :is(h4) { color: #fff; font-family: var(--font-display); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 14px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.site-footer a { color: #C5D2E2; font-size: .92rem; }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-brand img { height: 32px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .88rem; color: #9FB0C4; max-width: 34ch; }
.disclosure { font-size: .82rem; color: #8FA2B8; border: 1px solid #23405F; border-radius: var(--radius-sm); padding: 14px 16px; margin-top: 24px; background: rgba(255,255,255,.02); }
.footer-bottom { border-top: 1px solid #23405F; margin-top: 26px; padding-top: 18px; display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; font-size: .82rem; color: #8FA2B8; }
.footer-bottom a { font-size: .82rem; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- misc ---------- */
.split-two { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 760px) { .split-two { grid-template-columns: 1fr; } }
.stack-sm > * + * { margin-top: 10px; }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.pagehead { padding-block: clamp(34px, 5vw, 58px) 8px; }
.breadcrumb { font-size: .8rem; color: var(--muted-2); font-family: var(--font-mono); letter-spacing: .04em; margin-bottom: 12px; }
.breadcrumb a { color: var(--muted); }
.reviewed { font-size: .82rem; color: var(--muted-2); font-family: var(--font-mono); margin-top: 8px; }
.cta-band { background: var(--azure); color: #fff; border-radius: var(--radius-lg); padding: clamp(26px,4vw,40px); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.cta-band h2, .cta-band p { color: #fff; margin: 0; }
.cta-band p { color: #DCE9F7; max-width: 46ch; margin-top: 6px; }
.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .btn-outline { color: #fff; border-color: rgba(255,255,255,.5); }
.cta-band .btn-outline:hover { background: rgba(255,255,255,.12); border-color:#fff; }
@media (prefers-color-scheme: dark) { .cta-band { background: var(--azure-050); } .cta-band h2 { color: var(--text);} .cta-band p{color:var(--muted);} .cta-band .btn-outline{color:var(--text);border-color:var(--line-strong);} }

/* ---------- Brand hero (official asdbuy.com 3D illustration background) ---------- */
.hero--brand {
  position: relative; display: flex; align-items: center; min-height: 500px;
  background: #F8AC22 url(/assets/img/hero-official.png?v=20260709c) no-repeat right center / cover;
  border-bottom: 1px solid #EAC79A; overflow: hidden;
}
.hero--brand > .container { position: relative; width: 100%; }
.hero--brand::before {
  content: ""; position: absolute; inset: 0; -webkit-mask-image: none; mask-image: none; opacity: 1;
  background: linear-gradient(90deg, rgba(255,249,240,.97) 0%, rgba(255,248,236,.93) 24%, rgba(255,247,233,.55) 46%, rgba(255,247,233,0) 62%);
}
.hero--brand .hero__copy { max-width: 560px; }
.hero--brand .hl { color: var(--azure); }
@media (prefers-color-scheme: dark) {
  .hero--brand { border-bottom-color: #23405F; }
  .hero--brand::before { background: linear-gradient(90deg, rgba(10,21,34,.95) 0%, rgba(10,21,34,.86) 28%, rgba(10,21,34,.4) 50%, rgba(10,21,34,0) 66%); }
}
@media (max-width: 820px) {
  .hero--brand { min-height: 0; display: block; padding-bottom: 210px;
    background-position: right -30px bottom -8px; background-size: 152% auto; }
  .hero--brand::before { background: linear-gradient(180deg, rgba(255,249,240,.95) 0%, rgba(255,249,240,.82) 42%, rgba(255,248,236,.18) 74%, rgba(255,248,236,0) 100%); }
  .hero--brand .hero__copy { max-width: 100%; }
}
@media (prefers-color-scheme: dark) and (max-width: 820px) {
  .hero--brand::before { background: linear-gradient(180deg, rgba(10,21,34,.95) 0%, rgba(10,21,34,.82) 42%, rgba(10,21,34,.2) 74%, rgba(10,21,34,0) 100%); }
}
.searchbar--pill { border-radius: 999px; padding: 8px 8px 8px 20px; }
.searchbar--pill input { padding-left: 0; }
.searchbar--pill .btn { border-radius: 999px; padding-inline: 24px; }
.platform-row { display: flex; align-items: center; gap: 11px; flex-wrap: wrap; margin-top: 24px; }
.platform-row__label { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-right: 2px; }
.platform-logo { width: 46px; height: 46px; border-radius: 12px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); padding: 8px; display: grid; place-items: center; }
.platform-logo img { width: 100%; height: 100%; object-fit: contain; }
