/* ======================================================================
   Canada Casino Scout — main stylesheet
   Methodology: BEM (block__element--modifier)
   Sections:
     1. Reset & tokens
     2. Base typography
     3. Layout primitives (.container, .stack)
     4. Site chrome (.site-header, .site-footer)
     5. Hero (.hero)
     6. Casino card (.casino-card)
     7. Comparison table (.comparison-table)
     8. Promo block (.promo)
     9. Trust widget (.trust-widget)
    10. FAQ (.faq)
    11. Province disclaimer (.province-disclaimer)
    12. Sticky CTA (.sticky-cta)
    13. Utility (.sr-only)
   ====================================================================== */

/* 1. Reset & tokens ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

:root {
  --bg: #0b1220;
  --bg-elevated: #121a2e;
  --bg-card: #161f35;
  --border: #23304c;
  --text: #e6ecf5;
  --text-muted: #8a96b2;
  --brand: #ffcb3c;
  --brand-strong: #ffb400;
  --brand-ink: #1a1200;
  --accent: #00d48a;
  --danger: #ff5a6a;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 6px rgba(0,0,0,.25);
  --shadow-md: 0 10px 30px rgba(0,0,0,.35);
  --ease: cubic-bezier(.2,.7,.2,1);
  --container: 1200px;
}

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 600px at 10% -10%, rgba(255,203,60,.08), transparent 60%),
              radial-gradient(1000px 500px at 110% 10%, rgba(0,212,138,.06), transparent 60%),
              var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  padding-bottom: 88px; /* reserve space for sticky CTA */
}

/* 2. Base typography ---------------------------------------------------- */
h1, h2, h3, h4 {
  color: var(--text);
  line-height: 1.2;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2rem, 4vw + 1rem, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 2vw + .75rem, 2.25rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
p  { margin: 0 0 1em; color: var(--text); }
.p-muted, .muted { color: var(--text-muted); }
ul, ol { padding-left: 1.25rem; margin: 0 0 1em; }
li + li { margin-top: .35rem; }

/* 3. Layout primitives -------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.stack > * + * { margin-top: var(--stack, 1rem); }
.section {
  padding: clamp(32px, 5vw, 72px) 0;
}
.section--alt { background: rgba(255,255,255,.02); }
.section__head {
  max-width: 820px;
  margin-bottom: 28px;
}
.section__kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 10px;
}

/* Button primitives ----------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  line-height: 1;
  border: 0;
  cursor: pointer;
  transition: transform .15s var(--ease), background .15s var(--ease), box-shadow .15s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-strong) 100%);
  color: var(--brand-ink);
  box-shadow: 0 6px 18px rgba(255,180,0,.35);
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(255,180,0,.45); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover { background: rgba(255,255,255,.04); }
.btn--block { display: flex; width: 100%; }
.btn--sm { padding: 9px 14px; font-size: .85rem; }

/* 4. Site chrome -------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(11,18,32,.85);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 20px;
  max-width: var(--container);
  margin: 0 auto;
}
.site-header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -.01em;
}
.site-header__logo {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-ink);
  font-weight: 900;
  font-size: 1rem;
}
.site-header__nav {
  margin-left: auto;
  display: none;
  gap: 6px;
}
.site-header__nav a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: .9rem;
  padding: 8px 10px;
  border-radius: 8px;
}
.site-header__nav a:hover { color: var(--text); background: rgba(255,255,255,.04); }
.site-header__nav a.is-active { color: var(--text); background: rgba(255,203,60,.1); }

.site-header__cta {
  margin-left: auto;
}
.site-header__menu-btn {
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: 8px 10px;
  display: flex;
  cursor: pointer;
}
.site-header__menu-btn:hover { background: rgba(255,255,255,.04); }

@media (min-width: 960px) {
  .site-header__nav { display: flex; }
  .site-header__menu-btn { display: none; }
  .site-header__cta { margin-left: 10px; }
}

/* Mobile drawer (details/summary-less, kept minimal) */
.site-header__drawer {
  display: none;
  padding: 12px 20px 18px;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}
.site-header__drawer.is-open { display: block; }
.site-header__drawer a {
  display: block;
  padding: 10px 6px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-weight: 600;
}
.site-header__drawer a:last-child { border-bottom: 0; }

/* Footer ---------------------------------------------------------------- */
.site-footer {
  margin-top: 40px;
  padding: 40px 0 28px;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}
.site-footer__grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1.3fr 1fr 1fr;
}
.site-footer__col h4 {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.site-footer__col ul { list-style: none; padding: 0; margin: 0; }
.site-footer__col li + li { margin-top: 6px; }
.site-footer__col a { color: var(--text); font-size: .9rem; }
.site-footer__col a:hover { color: var(--brand); }
.site-footer__bottom {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: .8rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}
.site-footer__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.site-footer__badge {
  border: 1px solid var(--border);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: .7rem;
  color: var(--text-muted);
}
@media (max-width: 720px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}

/* 5. Hero --------------------------------------------------------------- */
.hero {
  padding: clamp(40px, 6vw, 88px) 0 clamp(28px, 4vw, 56px);
  position: relative;
}
.hero__inner {
  display: grid;
  gap: 36px;
  align-items: center;
  grid-template-columns: 1fr;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,203,60,.1);
  border: 1px solid rgba(255,203,60,.25);
  color: var(--brand);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.hero__title { margin-bottom: 14px; }
.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 20px;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero__meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: .85rem;
}
.hero__meta strong { color: var(--text); }
.hero__card {
  /* Right-column promo card is a specialized .promo block; see promo below. */
}
@media (min-width: 960px) {
  .hero__inner { grid-template-columns: 1.2fr 1fr; }
}

/* 6. Casino card -------------------------------------------------------- */
.casino-list {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .casino-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .casino-list { grid-template-columns: repeat(3, 1fr); } }

.casino-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform .2s var(--ease), border-color .2s var(--ease);
}
.casino-card:hover { transform: translateY(-2px); border-color: rgba(255,203,60,.35); }
.casino-card--editors-choice {
  border-color: rgba(255,203,60,.45);
  box-shadow: 0 12px 30px rgba(255,180,0,.12), var(--shadow-sm);
}
.casino-card--editors-choice::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at 100% 0%, rgba(255,203,60,.12), transparent 60%);
  pointer-events: none;
}
.casino-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--brand);
  color: var(--brand-ink);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}
.casino-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.casino-card__logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: -.02em;
  color: var(--brand-ink);
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  flex: none;
}
.casino-card__logo--alt { background: linear-gradient(135deg, #5a7cff, #2a46ff); color: #fff; }
.casino-card__logo--alt-2 { background: linear-gradient(135deg, #00d48a, #00a36a); color: #01301f; }
.casino-card__logo--alt-3 { background: linear-gradient(135deg, #ff5a6a, #c32132); color: #fff; }
.casino-card__logo--alt-4 { background: linear-gradient(135deg, #b061ff, #6b2dcc); color: #fff; }
.casino-card__name {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 2px;
}
.casino-card__tagline {
  margin: 0;
  font-size: .85rem;
  color: var(--text-muted);
}
.casino-card__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.casino-card__stat {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}
.casino-card__stat-label {
  display: block;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.casino-card__stat-value { font-weight: 700; font-size: .95rem; }
.casino-card__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.casino-card__rating-num {
  background: var(--accent);
  color: #01301f;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: .85rem;
}
.casino-card__rating-label {
  color: var(--text-muted);
  font-size: .8rem;
}
.casino-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.casino-card__tag {
  background: rgba(0,212,138,.08);
  border: 1px solid rgba(0,212,138,.25);
  color: var(--accent);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
}
.casino-card__tag--crypto { background: rgba(247,147,26,.08); border-color: rgba(247,147,26,.3); color: #f7931a; }
.casino-card__tag--fast-payout { background: rgba(0,212,138,.08); border-color: rgba(0,212,138,.3); color: var(--accent); }
.casino-card__tag--big-bonus { background: rgba(255,203,60,.1); border-color: rgba(255,203,60,.3); color: var(--brand); }
.casino-card__trust {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.casino-card__trust::before {
  content: "✓";
  display: inline-flex;
  width: 16px; height: 16px;
  align-items: center; justify-content: center;
  background: var(--accent);
  color: #01301f;
  font-weight: 900;
  border-radius: 4px;
  font-size: .7rem;
}
.casino-card__cta { margin-top: auto; }

/* 7. Comparison table --------------------------------------------------- */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: .95rem;
}
.comparison-table__head th {
  text-align: left;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 14px 16px;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid var(--border);
}
.comparison-table__row td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.comparison-table__row:last-child td { border-bottom: 0; }
.comparison-table__row--editors-choice {
  background: linear-gradient(90deg, rgba(255,203,60,.07), transparent 60%);
}
.comparison-table__rank {
  width: 40px;
  font-weight: 800;
  color: var(--brand);
}
.comparison-table__casino {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  min-width: 140px;
}
.comparison-table__logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: .8rem;
  color: var(--brand-ink);
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  flex: none;
}
.comparison-table__rating {
  display: inline-block;
  background: var(--accent);
  color: #01301f;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: .85rem;
}
.comparison-table__cta { text-align: right; }
.comparison-table--scroll {
  display: block;
  overflow-x: auto;
}

/* 8. Promo (BitGuruz pitch block) -------------------------------------- */
.promo {
  background: linear-gradient(140deg, #1a2340 0%, #242e54 60%, #3a2a6b 100%);
  border: 1px solid rgba(255,203,60,.3);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.promo::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(closest-side, rgba(255,203,60,.18), transparent 70%);
  pointer-events: none;
}
.promo__label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 10px;
  position: relative;
}
.promo__offer {
  font-size: clamp(1.6rem, 3vw + .5rem, 2.4rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 12px;
  position: relative;
}
.promo__sub {
  color: var(--text-muted);
  margin-bottom: 20px;
  position: relative;
}
.promo__features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 8px;
  position: relative;
}
.promo__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: .95rem;
}
.promo__features li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  color: #01301f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex: none;
  -webkit-mask: linear-gradient(#000, #000);
}
.promo__features li {
  position: relative;
  padding-left: 28px;
}
.promo__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: .75rem;
}
.promo__cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
.promo__terms {
  display: block;
  margin-top: 14px;
  font-size: .75rem;
  color: var(--text-muted);
  position: relative;
}

.promo--inline { padding: 22px; }
.promo--wide { padding: 36px; }

/* 9. Trust widget ------------------------------------------------------- */
.trust-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 420px;
}
.trust-widget__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}
.trust-widget__label {
  font-weight: 700;
  font-size: .95rem;
}
.trust-widget__rating {
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--brand);
}
.trust-widget__stars {
  position: relative;
  display: block;
  height: 18px;
  width: 140px;
  overflow: hidden;
}
.trust-widget__stars-track, .trust-widget__stars-fill {
  position: absolute;
  inset: 0;
  background-repeat: repeat-x;
  background-size: 20px 20px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'><path d='M10 1.5l2.63 5.33 5.87.85-4.25 4.14 1 5.85L10 14.9l-5.25 2.77 1-5.85L1.5 7.68l5.87-.85z' fill='%23394a6b'/></svg>");
}
.trust-widget__stars-fill {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'><path d='M10 1.5l2.63 5.33 5.87.85-4.25 4.14 1 5.85L10 14.9l-5.25 2.77 1-5.85L1.5 7.68l5.87-.85z' fill='%2300b74a'/></svg>");
  width: 0;
}
.trust-widget__meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  color: var(--text-muted);
  font-size: .8rem;
}
.trust-widget__link {
  color: var(--brand);
  font-weight: 700;
}
.trust-widget__link:hover { text-decoration: underline; }
.trust-widget--compact { padding: 12px 14px; }

/* 10. FAQ --------------------------------------------------------------- */
.faq { display: grid; gap: 10px; }
.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0;
}
.faq__item[open] { border-color: rgba(255,203,60,.35); }
.faq__question {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--text-muted);
  transition: transform .2s var(--ease);
}
.faq__item[open] .faq__question::after { content: "–"; }
.faq__answer {
  padding: 0 18px 18px;
  color: var(--text-muted);
}

/* 11. Province disclaimer ---------------------------------------------- */
.province-disclaimer {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,90,106,.25);
  background: rgba(255,90,106,.06);
  color: var(--text);
  font-size: .9rem;
}
.province-disclaimer__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--danger);
  color: #fff;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  font-size: .85rem;
}
.province-disclaimer__text { margin: 0; }
.province-disclaimer__text strong { color: var(--danger); }

/* 12. Sticky CTA ------------------------------------------------------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(18,26,46,.9), rgba(11,18,32,.98));
  border-top: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.sticky-cta__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: var(--container);
  margin: 0 auto;
}
.sticky-cta__copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}
.sticky-cta__headline {
  font-size: .95rem;
  font-weight: 800;
  color: var(--brand);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-cta__sub {
  font-size: .75rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(180deg, var(--brand), var(--brand-strong));
  color: var(--brand-ink);
  font-weight: 800;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(255,180,0,.4);
  white-space: nowrap;
  flex: none;
}

@media (min-width: 960px) {
  .sticky-cta { display: none; }
  body { padding-bottom: 0; }
}

/* 13. Utilities --------------------------------------------------------- */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.callout {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.breadcrumbs {
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.breadcrumbs a { color: var(--brand); }
.breadcrumbs__sep { margin: 0 6px; color: var(--text-muted); }

.two-col {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) {
  .two-col { grid-template-columns: 2fr 1fr; }
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .8rem;
  font-weight: 600;
}
.pill--accent { background: rgba(0,212,138,.08); border-color: rgba(0,212,138,.3); color: var(--accent); }
