/* =========================================
   FXDailyInfo — Professional Design System v2
   Font: DM Sans (body) + Outfit (display)
   Design language: Modern fintech — bold, clean, trustworthy
   ========================================= */

/* Google Fonts (Outfit + DM Sans) are enqueued non-blocking via functions.php
   with preconnect + display=swap. The original render-blocking @import was
   removed here for Core Web Vitals (FCP/LCP) — rendering is identical. */

/* ── Tokens ──────────────────────────────── */
:root {
  /* Surfaces */
  --bg:        #f4f6fb;
  --surface:   #ffffff;
  --surface2:  #f0f2f8;
  --surface3:  #e8ebf4;

  /* Borders */
  --border:    #e2e5f0;
  --border2:   #c8ccdc;

  /* Text */
  --ink:       #0b1120;
  --ink2:      #2d3550;
  --ink3:      #5e6a8a;
  --muted:     #95a0bc;

  /* Brand */
  --accent:    #2563eb;
  --accent-lt: #eff6ff;
  --accent-dk: #1d4ed8;
  --accent-xlt:#dbeafe;

  /* Semantic */
  --green:     #059669;
  --green-lt:  #ecfdf5;
  --green-dk:  #047857;
  --amber:     #d97706;
  --amber-lt:  #fffbeb;
  --red:       #dc2626;
  --red-lt:    #fef2f2;
  --purple:    #7c3aed;
  --purple-lt: #f5f3ff;
  --gold:      #f59e0b;

  /* Radius */
  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-2xl:  32px;
  --r-full: 9999px;

  /* Shadow */
  --sh-xs: 0 1px 3px rgba(11,17,32,.06);
  --sh-sm: 0 2px 8px rgba(11,17,32,.08);
  --sh-md: 0 4px 20px rgba(11,17,32,.10);
  --sh-lg: 0 8px 40px rgba(11,17,32,.14);

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --max-w:    1200px;
  --header-h: 68px;
}

/* ── Reset ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -.02em;
}

/* ── Utility ─────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── Badge ───────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
  padding: 3px 9px; border-radius: var(--r-full);
  white-space: nowrap; font-family: var(--font-body);
}
.badge-green  { background: var(--green-lt);  color: var(--green-dk); }
.badge-amber  { background: var(--amber-lt);  color: var(--amber); }
.badge-red    { background: var(--red-lt);    color: var(--red); }
.badge-blue   { background: var(--accent-lt); color: var(--accent-dk); }
.badge-purple { background: var(--purple-lt); color: var(--purple); }
.badge-gray   { background: var(--surface2);  color: var(--ink3); }

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 22px; border-radius: var(--r-md);
  font-size: 14px; font-weight: 600; cursor: pointer;
  border: 1.5px solid transparent;
  transition: all .18s ease; white-space: nowrap;
  font-family: var(--font-body); letter-spacing: .01em;
}
.btn-primary {
  background: var(--accent); color: #fff; border-color: var(--accent);
  box-shadow: 0 2px 8px rgba(37,99,235,.3);
}
.btn-primary:hover {
  background: var(--accent-dk); border-color: var(--accent-dk);
  box-shadow: 0 4px 14px rgba(37,99,235,.4); transform: translateY(-1px);
}
.btn-outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline:hover { background: var(--accent-lt); }
.btn-ghost { background: transparent; color: var(--ink2); border-color: var(--border2); }
.btn-ghost:hover { background: var(--surface2); }
.btn-sm { padding: 7px 16px; font-size: 13px; border-radius: var(--r-sm); }
.btn-lg { padding: 13px 32px; font-size: 16px; border-radius: var(--r-lg); }

/* ── Ticker ──────────────────────────────── */
.ticker-bar {
  background: #070e1f;
  color: rgba(255,255,255,.7);
  font-size: 12px; font-weight: 500;
  padding: 8px 0; overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.ticker-inner { display: flex; align-items: center; gap: 14px; }
.ticker-label {
  background: var(--accent); color: #fff;
  padding: 2px 9px; border-radius: var(--r-xs);
  font-size: 10px; font-weight: 800; letter-spacing: .06em;
  flex-shrink: 0; font-family: var(--font-display);
}
.ticker-scroll { flex: 1; overflow: hidden; }
.ticker-track {
  display: flex; gap: 36px;
  animation: ticker-scroll 40s linear infinite;
  white-space: nowrap;
}
.ticker-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.5); }
.ticker-pair { font-weight: 600; color: rgba(255,255,255,.85); }
.ticker-up   { color: #34d399; font-weight: 700; }
.ticker-down { color: #f87171; font-weight: 700; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Header ──────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  height: var(--header-h);
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow .2s;
}
.header-inner { display: flex; align-items: center; height: 100%; gap: 36px; }

/* Logo */
.header-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 22px; font-weight: 800;
  color: var(--ink); flex-shrink: 0; letter-spacing: -.03em;
}
.logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--accent), #1d4ed8);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 17px; font-weight: 900;
  box-shadow: 0 2px 8px rgba(37,99,235,.35);
}
.logo-text span { color: var(--accent); }
.header-logo img{
  width: 150px;
  height: 60px;
}
/* Nav */
.site-nav { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 7px 13px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 500; color: var(--ink3);
  transition: all .15s; letter-spacing: .005em;
}
.nav-link:hover { color: var(--accent); background: var(--accent-lt); }
.nav-link.active { color: var(--accent); font-weight: 600; }
.nav-link svg { width: 13px; height: 13px; transition: transform .15s; flex-shrink: 0; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 230px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--sh-lg); padding: 6px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all .18s ease; z-index: 300;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 11px; border-radius: var(--r-sm);
  font-size: 13.5px; font-weight: 500; color: var(--ink2);
  transition: all .12s;
}
.nav-dropdown a:hover { background: var(--surface2); color: var(--ink); }
.nav-dropdown-icon {
  width: 30px; height: 30px; border-radius: var(--r-xs);
  background: var(--accent-lt); display: flex; align-items: center;
  justify-content: center; font-size: 15px; flex-shrink: 0;
}
.nav-dropdown-divider { height: 1px; background: var(--border); margin: 4px 2px; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.header-search-btn {
  width: 38px; height: 38px; border-radius: var(--r-sm);
  border: 1px solid var(--border); background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--ink3); transition: all .15s;
}
.header-search-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-lt); }

/* Mobile toggle */
.nav-toggle {
  display: none; width: 38px; height: 38px;
  border: 1px solid var(--border); border-radius: var(--r-sm);
  background: none; cursor: pointer; color: var(--ink2);
  align-items: center; justify-content: center; flex-shrink: 0;
}

/* ── Hero ────────────────────────────────── */
.hero {
  background: #070e1f;
  padding: 72px 0 0;
  position: relative; overflow: hidden;
}
.hero-bg-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 70% at 65% 40%, rgba(37,99,235,.22) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 15% 70%, rgba(124,58,237,.12) 0%, transparent 60%);
}
.hero-bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}
.hero-inner { display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: center; position: relative; padding-bottom: 64px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: #93c5fd; background: rgba(37,99,235,.18);
  padding: 6px 14px; border-radius: var(--r-full);
  border: 1px solid rgba(37,99,235,.3); margin-bottom: 22px;
}
.hero-pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: #34d399; flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(52,211,153,.5);
  animation: pulse-ring 1.8s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(52,211,153,.5); }
  70%  { box-shadow: 0 0 0 8px rgba(52,211,153,0); }
  100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); }
}
.hero h1 {
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 900; color: #fff; line-height: 1.08;
  margin-bottom: 20px; letter-spacing: -.03em;
}
.hero h1 .grad {
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc { font-size: 17px; color: rgba(255,255,255,.58); line-height: 1.72; margin-bottom: 34px; max-width: 520px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats {
  display: flex; gap: 32px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08); flex-wrap: wrap;
}
.hero-stat-n {
  font-family: var(--font-display); font-size: 28px; font-weight: 800;
  color: #fff; letter-spacing: -.02em; line-height: 1;
}
.hero-stat-l { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 4px; font-weight: 500; }

/* Finder card in hero */
.hero-finder {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-2xl); padding: 28px;
  backdrop-filter: blur(16px);
}
.finder-title { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 4px; letter-spacing: -.02em; }
.finder-sub { font-size: 13px; color: rgba(255,255,255,.4); margin-bottom: 22px; }
.finder-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.4); margin-bottom: 8px; }
.finder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-bottom: 16px; }
.finder-opt {
  padding: 10px 12px; border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.65); font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all .15s; text-align: left;
  font-family: var(--font-body);
}
.finder-opt:hover, .finder-opt.sel {
  border-color: rgba(96,165,250,.6);
  background: rgba(37,99,235,.22); color: #fff;
}

/* ── Section shell ───────────────────────── */
.section { padding: 56px 0; }
.section-alt { background: var(--surface2); }

.sec-hd { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; gap: 16px; }
.sec-hd-left .eyebrow {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .08em; color: var(--accent); margin-bottom: 6px;
}
.sec-hd-left h2 { font-size: 26px; font-weight: 800; letter-spacing: -.025em; }
.view-all {
  font-size: 13px; font-weight: 600; color: var(--accent);
  display: flex; align-items: center; gap: 4px; flex-shrink: 0;
  white-space: nowrap;
}
.view-all:hover { text-decoration: underline; }

/* ── Category quick links ────────────────── */
.cat-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
  transition: all .2s ease; cursor: pointer;
}
.cat-card:hover {
  border-color: var(--accent);
  box-shadow: var(--sh-md); transform: translateY(-2px);
}
.cat-icon {
  width: 46px; height: 46px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.cat-name { font-size: 15px; font-weight: 700; color: var(--ink); }
.cat-count { font-size: 12px; color: var(--ink3); margin-top: 2px; }

/* ── Bonus card ──────────────────────────── */
.bonus-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 22px;
  display: flex; flex-direction: column; gap: 16px;
  transition: all .22s ease; position: relative;
}
.bonus-card:hover { border-color: var(--accent); box-shadow: var(--sh-md); transform: translateY(-3px); }
.bonus-card.top {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-xlt), var(--sh-sm);
}
.bonus-card.top::before {
  content: '⭐ Top Pick';
  position: absolute; top: -1px; right: 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dk));
  color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .04em;
  padding: 4px 12px; border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-family: var(--font-body);
}
.bc-top { display: flex; align-items: flex-start; gap: 12px; }
.broker-logo {
  width: 46px; height: 46px; border-radius: var(--r-md);
  border: 1.5px solid var(--border); background: var(--surface2);
  object-fit: contain; flex-shrink: 0; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 14px; font-weight: 900;
  color: var(--accent);
}
.bc-name { font-size: 16px; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.bc-type { font-size: 12px; color: var(--ink3); margin-top: 2px; font-weight: 500; }
.bc-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.bc-amount-row { display: flex; align-items: flex-end; justify-content: space-between; }
.bc-amount {
  font-family: var(--font-display); font-size: 34px; font-weight: 900;
  color: var(--ink); letter-spacing: -.03em; line-height: 1;
}
.bc-amount-lbl { font-size: 11px; color: var(--ink3); font-weight: 500; margin-top: 3px; }
.bc-expiry {
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; color: var(--ink3); font-weight: 500;
}
.bc-expiry.hot { color: var(--red); font-weight: 700; }
.bc-footer { display: flex; gap: 8px; }
.bc-footer .btn { flex: 1; justify-content: center; }

/* ── Broker card (list) ──────────────────── */
.broker-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 22px 26px;
  display: flex; align-items: center; gap: 20px;
  transition: all .2s;
}
.broker-card:hover { border-color: var(--accent); box-shadow: var(--sh-sm); }
.broker-logo-lg {
  width: 60px; height: 60px; border-radius: var(--r-md);
  border: 1.5px solid var(--border); background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 16px; font-weight: 900;
  color: var(--accent); flex-shrink: 0;
}
.br-info { flex: 1; min-width: 0; }
.br-name { font-size: 17px; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.br-tag { font-size: 13px; color: var(--ink3); margin-top: 2px; font-weight: 400; }
.br-meta { display: flex; align-items: center; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; }
.br-rating { font-size: 13px; font-weight: 700; color: var(--ink); }
.br-reviews { font-size: 12px; color: var(--ink3); }
.reg-pill {
  font-size: 10px; font-weight: 700; letter-spacing: .04em;
  padding: 3px 8px; border-radius: var(--r-xs); border: 1px solid;
}
.reg-t1 { background: #ecfdf5; color: #047857; border-color: #6ee7b7; }
.reg-t2 { background: #fffbeb; color: #b45309; border-color: #fcd34d; }
.br-specs { display: flex; gap: 20px; flex-shrink: 0; }
.br-spec-v { font-size: 16px; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.br-spec-l { font-size: 11px; color: var(--ink3); margin-top: 2px; font-weight: 500; }
.br-actions { display: flex; flex-direction: column; gap: 7px; flex-shrink: 0; }

/* ── Filter bar ──────────────────────────── */
.filter-bar {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.filter-chip {
  padding: 6px 14px; border-radius: var(--r-full);
  border: 1.5px solid var(--border);
  background: var(--surface2);
  font-size: 13px; font-weight: 600; color: var(--ink3);
  cursor: pointer; transition: all .12s;
}
.filter-chip:hover { border-color: var(--accent); color: var(--accent); }
.filter-chip.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.filter-search {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 12px; border-radius: var(--r-md);
  border: 1.5px solid var(--border); background: var(--surface);
  flex: 1; min-width: 180px;
}
.filter-search input { border: none; background: none; outline: none; font-size: 13px; color: var(--ink); flex: 1; }
.filter-select {
  padding: 7px 12px; border-radius: var(--r-md);
  border: 1.5px solid var(--border); background: var(--surface2);
  font-size: 13px; color: var(--ink2); cursor: pointer;
}

/* ── Grids ───────────────────────────────── */
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }

/* ── Sidebar layout ──────────────────────── */
.layout-sidebar { display: grid; grid-template-columns: 1fr 308px; gap: 28px; align-items: start; }
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.sw {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden;
}
.sw-head {
  padding: 14px 20px; border-bottom: 1px solid var(--border);
  font-size: 13px; font-weight: 800; color: var(--ink);
  letter-spacing: .01em; display: flex; align-items: center; gap: 7px;
  font-family: var(--font-display);
}
.sw-body { padding: 16px 20px; }

/* ── Article card ────────────────────────── */
.article-card {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden; transition: all .2s;
}
.article-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.ac-img { width: 100%; height: 186px; object-fit: cover; background: var(--surface2); }
.ac-body { padding: 18px; }
.ac-cat { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--accent); margin-bottom: 9px; }
.ac-title { font-size: 15px; font-weight: 700; line-height: 1.38; color: var(--ink); margin-bottom: 9px; letter-spacing: -.01em; }
.ac-title a:hover { color: var(--accent); }
.ac-excerpt { font-size: 13px; color: var(--ink3); line-height: 1.62; margin-bottom: 14px; }
.ac-foot { display: flex; align-items: center; justify-content: space-between; }
.ac-meta { font-size: 12px; color: var(--muted); font-weight: 500; }

/* ── Step list ───────────────────────────── */
.step-list { display: flex; flex-direction: column; gap: 0; }
.step-item { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.step-item:last-child { border-bottom: none; }
.step-num {
  width: 38px; height: 38px; border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--accent), var(--accent-dk));
  color: #fff; font-family: var(--font-display); font-size: 16px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(37,99,235,.3);
}
.step-content h4 { font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.step-content p { font-size: 14px; color: var(--ink3); line-height: 1.6; }

/* ── Alert ───────────────────────────────── */
.alert { padding: 13px 16px; border-radius: var(--r-md); border-left: 3px solid; font-size: 14px; line-height: 1.6; margin: 16px 0; }
.alert-info    { background: var(--accent-lt); border-color: var(--accent); color: #1e40af; }
.alert-warning { background: var(--amber-lt);  border-color: var(--amber);  color: #92400e; }
.alert-success { background: var(--green-lt);  border-color: var(--green);  color: var(--green-dk); }

/* ── Breadcrumb ──────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--ink3); padding: 16px 0 8px; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--border2); }
.breadcrumb span { color: var(--ink2); font-weight: 600; }

/* ── Pros / Cons ─────────────────────────── */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 20px 0; }
.pros-box { background: var(--green-lt); border: 1.5px solid #a7f3d0; border-radius: var(--r-md); padding: 16px; }
.cons-box { background: var(--red-lt);   border: 1.5px solid #fecaca; border-radius: var(--r-md); padding: 16px; }
.pros-box h4 { color: var(--green-dk); font-size: 13px; font-weight: 800; margin-bottom: 10px; }
.cons-box h4 { color: var(--red);       font-size: 13px; font-weight: 800; margin-bottom: 10px; }
.pros-box li, .cons-box li { font-size: 13px; padding: 4px 0; display: flex; gap: 7px; border-bottom: 1px solid rgba(0,0,0,.04); }
.pros-box li:last-child, .cons-box li:last-child { border-bottom: none; }

/* ── CTA banner ──────────────────────────── */
.cta-banner {
  background: #070e1f; border-radius: var(--r-2xl);
  padding: 44px 52px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 90% at 90% 50%, rgba(37,99,235,.28) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { font-size: 28px; color: #fff; margin-bottom: 8px; letter-spacing: -.025em; position: relative; }
.cta-banner p { font-size: 15px; color: rgba(255,255,255,.55); position: relative; }
.cta-banner-actions { position: relative; display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }

/* ── TOC ─────────────────────────────────── */
.toc { background: var(--surface2); border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 20px; margin: 28px 0; }
.toc-title { font-size: 14px; font-weight: 800; margin-bottom: 12px; color: var(--ink); }
.toc ol { padding-left: 18px; }
.toc li { margin-bottom: 6px; }
.toc a { font-size: 13px; color: var(--accent); }
.toc a:hover { text-decoration: underline; }

/* ── Article content ─────────────────────── */
.article-content { font-size: 15px; line-height: 1.82; color: var(--ink2); }
.article-content h2 { font-size: 23px; font-weight: 800; color: var(--ink); margin: 36px 0 13px; letter-spacing: -.025em; }
.article-content h3 { font-size: 18px; font-weight: 700; color: var(--ink); margin: 26px 0 10px; }
.article-content p { margin-bottom: 17px; }
.article-content ul, .article-content ol { padding-left: 20px; margin-bottom: 17px; }
.article-content li { margin-bottom: 7px; }
.article-content table { width: 100%; border-collapse: collapse; margin: 22px 0; font-size: 14px; }
.article-content th { background: var(--surface2); font-weight: 700; text-align: left; font-family: var(--font-display); }
.article-content th, .article-content td { padding: 11px 15px; border: 1.5px solid var(--border); }
.article-content tr:nth-child(even) td { background: #fafbfd; }

/* ── Footer ──────────────────────────────── */
.site-footer { background: #070e1f; color: rgba(255,255,255,.55); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 52px; }
.footer-brand .logo {
  font-family: var(--font-display); font-size: 24px; font-weight: 900;
  color: #fff; margin-bottom: 14px; letter-spacing: -.03em;
}
.footer-brand p { font-size: 13px; line-height: 1.72; color: rgba(255,255,255,.4); max-width: 240px; }
.footer-social { display: flex; gap: 8px; margin-top: 20px; }
.social-link {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); font-size: 15px; transition: all .15s;
}
.social-link:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer-col h4 {
  font-size: 12px; font-weight: 800; color: #fff; margin-bottom: 16px;
  letter-spacing: .06em; text-transform: uppercase; font-family: var(--font-display);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,.4); transition: color .12s; font-weight: 500; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-bottom-l { font-size: 12px; color: rgba(255,255,255,.25); }
.footer-bottom-r { display: flex; gap: 18px; }
.footer-bottom-r a { font-size: 12px; color: rgba(255,255,255,.25); transition: color .12s; }
.footer-bottom-r a:hover { color: rgba(255,255,255,.6); }
.footer-disclaimer {
  background: rgba(0,0,0,.25); border-top: 1px solid rgba(255,255,255,.05);
  padding: 16px 0; font-size: 11px; color: rgba(255,255,255,.2); line-height: 1.72;
}

/* ── Mobile nav ──────────────────────────── */
.mobile-nav {
  display: none; position: fixed; inset: var(--header-h) 0 0 0;
  background: var(--surface); z-index: 190;
  flex-direction: column; padding: 16px;
  overflow-y: auto; border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block; padding: 13px 16px; font-size: 15px; font-weight: 600;
  color: var(--ink2); border-radius: var(--r-md);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover { color: var(--accent); background: var(--accent-lt); }

/* ── Rating bar ──────────────────────────── */
.rating-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.rating-row:last-child { border-bottom: none; }
.rating-bar-track { flex: 1; height: 6px; background: var(--border); border-radius: 99px; overflow: hidden; }
.rating-bar-fill { height: 100%; border-radius: 99px; background: var(--gold); transition: width .7s ease; }

/* ── Countdown ───────────────────────────── */
.countdown {
  display: flex; justify-content: center; gap: 14px;
  background: var(--surface2); border-radius: var(--r-md); padding: 10px;
}
.cd-block { text-align: center; }
.cd-num {
  font-family: var(--font-display); font-size: 24px; font-weight: 900;
  line-height: 1; letter-spacing: -.02em;
}
.cd-lbl { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; margin-top: 3px; }
.cd-sep { font-family: var(--font-display); font-size: 20px; font-weight: 900; line-height: 1.4; color: var(--border2); align-self: center; margin-bottom: 12px; }

/* ── Broker quick stats ──────────────────── */
.broker-quick-stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border);
  border: 1.5px solid var(--border); border-radius: var(--r-xl);
  overflow: hidden; margin-top: 28px;
}
.bqs-item { background: var(--surface); padding: 18px 22px; }
.bqs-lbl { font-size: 11px; color: var(--ink3); font-weight: 600; margin-bottom: 5px; text-transform: uppercase; letter-spacing: .04em; }
.bqs-val { font-size: 20px; font-weight: 800; color: var(--ink); font-family: var(--font-display); letter-spacing: -.02em; }

/* ── Trust ring ──────────────────────────── */
.trust-ring { position: relative; width: 90px; height: 90px; }
.trust-ring svg { transform: rotate(-90deg); }
.trust-ring-val {
  position: absolute; inset: 0; display: flex; align-items: center;
  justify-content: center; font-family: var(--font-display);
  font-size: 20px; font-weight: 900; color: var(--ink);
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-finder { display: none; }
  .broker-quick-stats { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .site-nav, .header-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .layout-sidebar { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .broker-card { flex-wrap: wrap; }
  .br-specs { display: none; }
  .cta-banner { flex-direction: column; text-align: center; padding: 28px 24px; }
  .cta-banner-actions { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
  .hero-stats { gap: 18px; }
  .broker-quick-stats { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .broker-quick-stats { grid-template-columns: repeat(2,1fr); }
  .cta-banner { padding: 24px 18px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ══════════════════════════════════════════
   ADVERTISEMENT SYSTEM
   ══════════════════════════════════════════ */

/* ── Ad label shared ─────────────────────── */
.ad-label {
  font-size: 9px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
  text-align: center; margin-bottom: 4px;
  font-family: var(--font-body);
}
.ad-wrap {
  display: flex; flex-direction: column;
  align-items: center; width: 100%;
}

/* ── 1. Header Leaderboard (970×90) ─────── */
.ad-header-leaderboard {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  display: flex; justify-content: center; align-items: center;
}
.ad-header-leaderboard .ad-slot {
  width: 970px; max-width: 100%; height: 90px;
  background: linear-gradient(135deg, #f8f9ff 0%, #eef1fb 100%);
  border: 1.5px dashed var(--border2);
  border-radius: var(--r-md);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px; position: relative; overflow: hidden;
  cursor: pointer; transition: border-color .15s;
}
.ad-header-leaderboard .ad-slot:hover { border-color: var(--accent); }
.ad-header-leaderboard .ad-slot::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(37,99,235,.03), transparent);
  animation: ad-shimmer 2.5s ease-in-out infinite;
}
@keyframes ad-shimmer { 0%,100% { opacity:0; } 50% { opacity:1; } }
.ad-size-tag {
  font-size: 10px; font-weight: 700; color: var(--muted);
  background: var(--surface3); padding: 2px 8px;
  border-radius: var(--r-xs); letter-spacing: .04em;
}
.ad-placeholder-text {
  font-size: 13px; font-weight: 600; color: var(--ink3);
  font-family: var(--font-display);
}

/* ── 2. Below-Hero Banner (728×90) ────────── */
.ad-below-hero {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  display: flex; justify-content: center;
}
.ad-below-hero .ad-slot {
  width: 728px; max-width: 100%; height: 90px;
  background: linear-gradient(135deg, #fffdf0, #fef9e0);
  border: 1.5px dashed #f5d76e;
  border-radius: var(--r-md);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px; position: relative; overflow: hidden; cursor: pointer;
  transition: border-color .15s;
}
.ad-below-hero .ad-slot:hover { border-color: var(--amber); }

/* ── 3 & 4. Sidebar Sticky Banners — FIXED outside container ── */

/* Left sidebar — fixed to the left edge of viewport */
.ad-sidebar-left-fixed {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

/* Right sidebar — fixed to the right edge of viewport */
.ad-sidebar-right-fixed {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.ad-sidebar-left-fixed .ad-label,
.ad-sidebar-right-fixed .ad-label {
  width: 100%;
  text-align: center;
}

/* The actual 300×600 slot */
.ad-sidebar-left-fixed .ad-slot,
.ad-sidebar-right-fixed .ad-slot {
  width: 160px;          /* default collapsed width */
  height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  border-radius: 0;      /* flush to edge */
  position: relative;
  overflow: hidden;
  transition: width .25s ease, border-color .15s;
}

/* Expand to full 300px on hover */
.ad-sidebar-left-fixed:hover .ad-slot,
.ad-sidebar-right-fixed:hover .ad-slot {
  width: 300px;
}

/* Left — opens rightward, border on right only */
.ad-sidebar-left-fixed .ad-slot {
  background: linear-gradient(135deg, #0f172a, #1a2540);
  border-right: 2px solid rgba(37,99,235,.5);
  box-shadow: 4px 0 24px rgba(0,0,0,.18);
}
.ad-sidebar-left-fixed .ad-slot:hover {
  border-right-color: var(--accent);
}

/* Right — opens leftward, border on left only */
.ad-sidebar-right-fixed .ad-slot {
  background: linear-gradient(135deg, #0f172a, #1a2540);
  border-left: 2px solid rgba(124,58,237,.5);
  box-shadow: -4px 0 24px rgba(0,0,0,.18);
}
.ad-sidebar-right-fixed .ad-slot:hover {
  border-left-color: var(--purple);
}

/* Shimmer animation inside sidebar slots */
.ad-sidebar-left-fixed .ad-slot::before,
.ad-sidebar-right-fixed .ad-slot::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent, rgba(37,99,235,.06), transparent);
  animation: ad-shimmer 3s ease-in-out infinite;
  pointer-events: none;
}

/* Inner content of sidebar ad */
.ad-sidebar-slot-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 8px;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/* "AD" vertical label tab */
.ad-sidebar-tab {
  position: absolute;
  top: 12px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  writing-mode: vertical-rl;
  padding: 6px 3px;
}
.ad-sidebar-left-fixed .ad-sidebar-tab  { right: 4px; }
.ad-sidebar-right-fixed .ad-sidebar-tab { left: 4px; }

/* Expand arrow hint */
.ad-sidebar-expand-hint {
  position: absolute;
  bottom: 12px;
  font-size: 11px;
  color: rgba(255,255,255,.2);
  transition: color .15s;
}
.ad-sidebar-left-fixed:hover .ad-sidebar-expand-hint,
.ad-sidebar-right-fixed:hover .ad-sidebar-expand-hint {
  color: rgba(255,255,255,.5);
}

/* Content padding on the page to prevent overlap — only on very wide screens */
@media (min-width: 1600px) {
  body { padding-left: 0; padding-right: 0; }
}

/* Page content layout — no grid sidebars, just full width */
.page-with-sidebars {
  display: block;
  max-width: 100%;
}
.page-with-sidebars .left-sidebar,
.page-with-sidebars .right-sidebar { display: none; } /* hidden — replaced by fixed sidebars */
.page-content-col { min-width: 0; }

/* ── 5. In-Content Banners (728×90) ───────── */
.ad-in-content {
  margin: 40px 0;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.ad-in-content .ad-slot {
  width: 728px; max-width: 100%; height: 90px;
  border: 1.5px dashed var(--border2);
  border-radius: var(--r-md);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px; cursor: pointer;
  transition: all .15s; position: relative; overflow: hidden;
}
.ad-in-content.green-tint .ad-slot  { background: linear-gradient(135deg,#f0fdf9,#dcfce7); border-color:#86efac; }
.ad-in-content.blue-tint .ad-slot   { background: linear-gradient(135deg,#eff6ff,#dbeafe); border-color:#93c5fd; }
.ad-in-content.amber-tint .ad-slot  { background: linear-gradient(135deg,#fffbeb,#fef3c7); border-color:#fcd34d; }
.ad-in-content.purple-tint .ad-slot { background: linear-gradient(135deg,#faf5ff,#ede9fe); border-color:#c4b5fd; }
.ad-in-content.red-tint .ad-slot    { background: linear-gradient(135deg,#fff5f5,#fee2e2); border-color:#fca5a5; }
.ad-in-content .ad-slot:hover { transform: translateY(-1px); box-shadow: var(--sh-sm); }

/* ── 6. Featured Sponsored Broker Banner ──── */
.ad-sponsored-broker {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--r-2xl);
  padding: 28px 32px;
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap; position: relative; overflow: hidden;
  margin: 8px 0;
}
.ad-sponsored-broker::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(37,99,235,.18) 0%, transparent 70%);
  pointer-events: none;
}
.ad-sponsored-tag {
  position: absolute; top: 0; left: 0;
  background: linear-gradient(90deg, var(--amber), #f97316);
  color: #fff; font-size: 9px; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 0 0 var(--r-sm) 0;
  font-family: var(--font-body);
}
.ad-sponsored-logo {
  width: 68px; height: 68px; border-radius: var(--r-lg);
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 20px; font-weight: 900;
  color: #fff; flex-shrink: 0; position: relative;
}
.ad-sponsored-info { flex: 1; min-width: 180px; position: relative; }
.ad-sponsored-name {
  font-family: var(--font-display); font-size: 22px; font-weight: 900;
  color: #fff; letter-spacing: -.03em; margin-bottom: 4px;
}
.ad-sponsored-tagline { font-size: 14px; color: rgba(255,255,255,.6); margin-bottom: 10px; }
.ad-sponsored-pills { display: flex; gap: 7px; flex-wrap: wrap; }
.ad-sponsored-pill {
  font-size: 11px; font-weight: 700; padding: 4px 10px;
  border-radius: var(--r-full); letter-spacing: .02em;
}
.ad-sponsored-stats { display: flex; gap: 24px; flex-shrink: 0; position: relative; }
.ad-sponsored-stat-v {
  font-family: var(--font-display); font-size: 22px; font-weight: 900;
  color: #fff; letter-spacing: -.02em;
}
.ad-sponsored-stat-l { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 2px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.ad-sponsored-actions { display: flex; flex-direction: column; gap: 8px; position: relative; flex-shrink: 0; }

/* ── 7. Footer Sponsor Section ────────────── */
.ad-footer-sponsors {
  background: #050c1a;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 28px 0;
}
.ad-footer-sponsors-inner {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.ad-footer-sponsors-label {
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.2);
}
.ad-footer-sponsors-row {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}
.ad-footer-slot {
  width: 200px; height: 60px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .15s;
  position: relative; overflow: hidden;
}
.ad-footer-slot:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.2);
}
.ad-footer-slot-text {
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,.25);
  font-family: var(--font-display);
}

/* ── Ad close / X button ─────────────────── */
.ad-close {
  position: absolute; top: 6px; right: 6px;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(0,0,0,.1); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--ink3); transition: all .15s;
  line-height: 1;
}
.ad-close:hover { background: rgba(0,0,0,.2); color: var(--ink); }

/* ── Responsive ad hiding ─────────────────── */
@media (max-width: 1280px) {
  .ad-sidebar-left-fixed,
  .ad-sidebar-right-fixed { display: none; }
  .ad-header-leaderboard .ad-slot { width: 100%; }
}
@media (max-width: 768px) {
  .ad-sidebar-left-fixed,
  .ad-sidebar-right-fixed { display: none; }
  .ad-below-hero .ad-slot,
  .ad-in-content .ad-slot { width: 100%; height: 60px; }
  .ad-below-hero { padding: 8px 0; }
  .ad-in-content { margin: 24px 0; }
  .ad-sponsored-broker { padding: 20px; }
  .ad-sponsored-stats { display: none; }
  .ad-footer-slot { width: 140px; height: 50px; }
}

/* ══════════════════════════════════════════
   HOMEPAGE LAYOUT FIXES v3
   ══════════════════════════════════════════ */

/* ── Main 2-col layout: left content + sticky right sidebar ── */
.hp-layout {
  display: grid;
  grid-template-columns: 1fr 308px;
  gap: 24px;
  align-items: start;
}
.hp-left  { min-width: 0; }
.hp-right { position: sticky; top: calc(var(--header-h) + 12px); }

/* ── Content card uniform height control ─ */
.content-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px;
}

/* ── Section height uniformity: all cards same padding ─── */
.hp-section { margin-bottom: 20px; }
.hp-section .content-card { height: 100%; }

/* ── Ad slots: consistent heights ─────── */
.ad-in-content .ad-slot  { height: 90px !important; }
.ad-below-hero .ad-slot  { height: 90px !important; }

/* ── Grid columns same height ─────────── */
.hp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
.hp-grid-3 > * { height: 100%; }
.hp-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-items: stretch;
}
.hp-grid-2 > * { height: 100%; }

/* ── Bonus list items uniform ──────────── */
.bonus-list-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
}
.bonus-list-item:last-child { border-bottom: none; }
.bli-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink2);
  line-height: 1.4;
  flex: 1;
  display: block;
}
.bli-title:hover { color: var(--accent); }
.bli-date  { font-size: 11px; color: var(--muted); white-space: nowrap; display: block; margin-top: 2px; }

/* ── Section title with blue dot ──────── */
.sec-title-dot {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
  font-family: var(--font-display);
  letter-spacing: -.01em;
}
.sec-title-dot::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.sec-title-dot .view-link {
  margin-left: auto;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  font-family: var(--font-body);
  font-weight: 500;
}
.sec-title-dot .view-link:hover { text-decoration: underline; }

/* ── Featured broker row ──────────────── */
.feat-broker {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
}
.feat-broker:last-child { border-bottom: none; }
.fb-logo {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 10px; font-weight: 900;
  color: var(--accent); flex-shrink: 0;
}
.fb-info { flex: 1; min-width: 0; }
.fb-name { font-size: 13px; font-weight: 700; color: var(--ink); }
.fb-tag  { font-size: 10px; color: var(--ink3); margin-top: 1px; line-height: 1.4; }
.fb-rating { color: var(--gold); font-size: 11px; letter-spacing: .5px; }
.fb-specs  { display: flex; gap: 3px; flex-wrap: wrap; margin-top: 3px; }
.fb-spec   { font-size: 9px; background: var(--surface2); border: 1px solid var(--border); padding: 1px 5px; border-radius: 3px; color: var(--ink3); font-weight: 600; }
.fb-actions { display: flex; flex-direction: column; gap: 4px; flex-shrink: 0; align-items: flex-end; }
.btn-open   { font-size: 10px; padding: 4px 10px; background: var(--accent); color: #fff; border-radius: var(--r-sm); font-weight: 700; white-space: nowrap; text-align: center; line-height: 1.4; }
.btn-open:hover { background: var(--accent-dk); }
.btn-review { font-size: 10px; color: var(--accent); text-align: right; font-weight: 600; }
.btn-review:hover { text-decoration: underline; }

/* ── Award card ────────────────────────── */
.award-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px 12px;
  text-align: center;
  transition: all .18s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
}
.award-card:hover { border-color: var(--accent); box-shadow: var(--sh-sm); transform: translateY(-2px); }
.award-img {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fef3c7, #fbbf24);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  border: 3px solid #fbbf24;
  margin-bottom: 6px;
}
.award-year { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--accent); }
.award-name { font-size: 14px; font-weight: 900; color: var(--ink); letter-spacing: -.02em; }
.award-cat  { font-size: 10px; color: var(--ink3); line-height: 1.4; }

/* ── News card ─────────────────────────── */
.news-card {
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}
.news-card:last-child { border-bottom: none; }
.news-title { font-size: 13px; font-weight: 700; color: var(--ink); line-height: 1.35; margin-bottom: 5px; }
.news-title a:hover { color: var(--accent); }
.news-body  { font-size: 12px; color: var(--ink3); line-height: 1.58; margin-bottom: 5px; }
.news-date  { font-size: 10px; color: var(--muted); }

/* ── New broker card ───────────────────── */
.new-broker-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px;
  display: flex; gap: 8px; align-items: flex-start;
  margin-bottom: 10px;
}
.new-broker-card:last-child { margin-bottom: 0; }
.nb-num  { font-family: var(--font-display); font-size: 11px; font-weight: 900; color: var(--ink3); min-width: 20px; }
.nb-logo { width: 34px; height: 34px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 9px; font-weight: 900; flex-shrink: 0; }
.nb-info { flex: 1; min-width: 0; }
.nb-name { font-size: 13px; font-weight: 700; color: var(--ink); }
.nb-meta { font-size: 11px; color: var(--ink3); margin-top: 2px; line-height: 1.5; }

/* ── Sponsored mini card ───────────────── */
.sponsored-mini {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.sm-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.sm-logo      { width: 36px; height: 36px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 11px; font-weight: 900; }
.sm-name      { font-size: 14px; font-weight: 800; color: var(--ink); }
.sm-tag       { font-size: 11px; color: var(--ink3); }
.sm-desc      { font-size: 12px; color: var(--ink2); line-height: 1.6; margin-bottom: 10px; flex: 1; }
.sm-stat-row  { display: flex; gap: 6px; margin-bottom: 10px; flex-wrap: wrap; }
.sm-stat      { font-size: 10px; font-weight: 700; background: var(--surface2); border: 1px solid var(--border); padding: 2px 7px; border-radius: var(--r-xs); color: var(--ink2); }

/* ── Add promo bar ─────────────────────── */
.add-promo-bar {
  background: linear-gradient(135deg, var(--ink), #1e2d50);
  border-radius: var(--r-xl);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

/* ── Common brokers grid ───────────────── */
.common-brokers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 10px;
}
.cb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: all .15s;
}
.cb-item:hover { border-color: var(--accent); background: var(--accent-lt); }
.cb-logo { width: 32px; height: 32px; border-radius: var(--r-xs); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 9px; font-weight: 900; flex-shrink: 0; }
.cb-name { font-size: 11px; font-weight: 700; color: var(--ink); }
.cb-tag  { font-size: 10px; color: var(--ink3); line-height: 1.3; }

/* ── Footer nav grid ───────────────────── */
.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ── Search overlay ────────────────────── */
.search-overlay {
  position: fixed; inset: 0;
  background: rgba(11,17,32,.7);
  backdrop-filter: blur(6px);
  z-index: 400;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
}
.search-overlay.open { display: flex; }
.search-box {
  background: var(--surface);
  border-radius: var(--r-2xl);
  padding: 24px;
  width: 100%;
  max-width: 580px;
  box-shadow: var(--sh-lg);
  animation: modal-in .18s ease;
}
.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--accent);
  border-radius: var(--r-lg);
  padding: 12px 16px;
  margin-bottom: 16px;
}
.search-input-wrap input {
  flex: 1; border: none; outline: none;
  font-size: 16px; font-family: var(--font-body); color: var(--ink);
  background: none;
}
.search-input-wrap input::placeholder { color: var(--muted); }
.search-suggestions p { font-size: 12px; font-weight: 700; color: var(--ink3); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.search-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.search-tag { padding: 6px 14px; background: var(--surface2); border: 1.5px solid var(--border); border-radius: var(--r-full); font-size: 13px; font-weight: 600; color: var(--ink2); cursor: pointer; transition: all .12s; }
.search-tag:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-lt); }

/* ── MOBILE NAV (global) ───────────────── */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0; bottom: 0;
  background: var(--surface);
  z-index: 300;
  overflow-y: auto;
  display: none;
  flex-direction: column;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.open { display: flex; }
.mn-item { border-bottom: 1px solid var(--border); }
.mn-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink2);
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  transition: background .12s;
  -webkit-tap-highlight-color: transparent;
}
.mn-link:hover, .mn-link:active { background: var(--surface2); color: var(--accent); }
.mn-arrow { font-size: 11px; transition: transform .22s; flex-shrink: 0; margin-left: 6px; color: var(--ink3); }
.mn-arrow.rot { transform: rotate(180deg); }
.mn-sub {
  display: none;
  background: #f8f9fd;
  border-top: 1px solid var(--border);
}
.mn-sub.open { display: block; }
.mn-sub a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 28px;
  font-size: 13.5px;
  color: var(--ink2);
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  -webkit-tap-highlight-color: transparent;
}
.mn-sub a:last-child { border-bottom: none; }
.mn-sub a:hover, .mn-sub a:active { color: var(--accent); background: var(--accent-lt); }
.mn-footer {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 2px solid var(--border);
  background: var(--surface2);
  margin-top: auto;
  flex-shrink: 0;
}

/* ── RESPONSIVE OVERRIDES ──────────────── */
@media (max-width: 1024px) {
  .hp-layout { grid-template-columns: 1fr; }
  .hp-right  { position: static; }
  .hp-grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-nav-grid { grid-template-columns: repeat(2, 1fr); }
  .common-brokers-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .site-nav, .header-actions .btn { display: none !important; }
  .nav-toggle { display: flex !important; }
  .hp-layout { grid-template-columns: 1fr; }
  .hp-right  { position: static; }
  .hp-grid-3 { grid-template-columns: 1fr; }
  .hp-grid-2 { grid-template-columns: 1fr; }
  .footer-nav-grid { grid-template-columns: 1fr 1fr; }
  .common-brokers-grid { grid-template-columns: 1fr 1fr; }
  .ad-in-content .ad-slot { height: 60px !important; }
  .ad-below-hero .ad-slot { height: 60px !important; }
  .hero-inner { grid-template-columns: 1fr !important; }
  .hero-finder { display: none; }
}
@media (max-width: 480px) {
  .footer-nav-grid { grid-template-columns: 1fr 1fr; }
  .common-brokers-grid { grid-template-columns: 1fr; }
  .container { padding: 0 14px; }
}
