/* ============================================================
   FastWithdrawalBroker.com — Speed Blue + Lightning Yellow
   Dark theme, performance aesthetic
   ============================================================ */

/* --- Fonts --- */
@import url('https://api.fontshare.com/v2/css?f[]=general-sans@400,500,600,700&f[]=switzer@400,400i,500,600&display=swap');

/* --- Variables --- */
:root {
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --blue-dark: #1d4ed8;
  --yellow: #fbbf24;
  --yellow-light: #fcd34d;
  --bg: #0a0e1a;
  --bg-card: #111827;
  --bg-card-alt: #1e293b;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --text-heading: #f8fafc;
  --border: #1e293b;
  --border-light: #334155;
  --green: #22c55e;
  --red: #ef4444;
  --orange: #f97316;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,.4);
  --shadow-blue: 0 0 30px rgba(37,99,235,.15);
  --font-heading: 'General Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Switzer', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 1200px;
}

/* --- 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);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--blue-light); text-decoration: none; transition: color .2s; }
a:hover { color: var(--yellow); }
ul, ol { padding-left: 1.4em; }

/* --- Utility --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 4px 12px; border-radius: 100px; font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.badge-yellow { background: rgba(251,191,36,.12); color: var(--yellow); border: 1px solid rgba(251,191,36,.2); }
.badge-blue { background: rgba(37,99,235,.12); color: var(--blue-light); border: 1px solid rgba(37,99,235,.2); }
.badge-green { background: rgba(34,197,94,.12); color: var(--green); border: 1px solid rgba(34,197,94,.2); }

/* --- Header / Navbar --- */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,14,26,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.navbar-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem;
  color: var(--text-heading); display: flex; align-items: center; gap: 8px;
}
.logo svg { width: 28px; height: 28px; }
.logo span { color: var(--yellow); }
.nav-links { display: flex; gap: 28px; list-style: none; padding: 0; }
.nav-links a { color: var(--text-muted); font-size: .9rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--yellow); }
.nav-cta {
  background: var(--blue); color: #fff; padding: 8px 20px; border-radius: 100px;
  font-weight: 600; font-size: .85rem; transition: all .2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-cta:hover { background: var(--blue-light); color: #fff; transform: translateY(-1px); }
.mobile-toggle { display: none; background: none; border: none; color: var(--text); cursor: pointer; }

/* --- Hero --- */
.hero {
  padding: 100px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(37,99,235,.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge { margin-bottom: 20px; }
.hero h1 {
  font-family: var(--font-heading); font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.15;
  color: var(--text-heading);
  max-width: 800px; margin: 0 auto 20px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.15rem; color: var(--text-muted);
  max-width: 600px; margin: 0 auto 36px;
}
.hero-stats {
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-stat { text-align: center; }
.hero-stat-value {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 2.4rem; color: var(--yellow);
  line-height: 1;
}
.hero-stat-value.blue { color: var(--blue-light); }
.hero-stat-label { font-size: .8rem; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: .06em; }
.hero-ctas { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 100px;
  font-family: var(--font-heading); font-weight: 600; font-size: 1rem;
  cursor: pointer; transition: all .25s; border: none;
}
.btn-primary {
  background: var(--blue); color: #fff;
  box-shadow: 0 0 20px rgba(37,99,235,.3);
}
.btn-primary:hover { background: var(--blue-light); color: #fff; transform: translateY(-2px); box-shadow: 0 0 30px rgba(37,99,235,.45); }
.btn-secondary {
  background: transparent; color: var(--text);
  border: 1px solid var(--border-light);
}
.btn-secondary:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-yellow { background: var(--yellow); color: #0a0e1a; }
.btn-yellow:hover { background: var(--yellow-light); color: #0a0e1a; transform: translateY(-2px); }

/* --- Speed Callout (22 seconds) --- */
.speed-callout {
  padding: 60px 24px;
  text-align: center;
}
.speed-callout-inner {
  max-width: 860px; margin: 0 auto;
  background: linear-gradient(135deg, rgba(37,99,235,.08), rgba(251,191,36,.06));
  border: 1px solid rgba(37,99,235,.2);
  border-radius: 20px;
  padding: 56px 40px;
  position: relative;
  overflow: hidden;
}
.speed-callout-inner::before {
  content: '';
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(251,191,36,.05), transparent 60%);
  pointer-events: none;
}
.speed-number {
  font-family: var(--font-heading); font-weight: 700;
  font-size: clamp(4rem, 10vw, 7rem);
  background: linear-gradient(135deg, var(--yellow), #f59e0b);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.speed-unit {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 1.6rem; color: var(--text-muted);
  margin-bottom: 12px;
}
.speed-callout h2 {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 1.4rem; color: var(--text-heading);
  margin-bottom: 12px;
}
.speed-callout p { color: var(--text-muted); max-width: 520px; margin: 0 auto 28px; }

/* --- Section Headers --- */
.section { padding: 80px 24px; }
.section-header {
  text-align: center; margin-bottom: 48px;
}
.section-header h2 {
  font-family: var(--font-heading); font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text-heading);
  margin-bottom: 12px;
}
.section-header p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* --- Comparison Table --- */
.table-wrap {
  overflow-x: auto; border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.comparison-table {
  width: 100%; border-collapse: collapse;
  font-size: .92rem;
}
.comparison-table thead { background: var(--bg-card); }
.comparison-table th {
  padding: 16px 20px;
  font-family: var(--font-heading); font-weight: 600;
  color: var(--text-muted); text-align: left;
  font-size: .8rem; text-transform: uppercase; letter-spacing: .06em;
  border-bottom: 1px solid var(--border);
}
.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.comparison-table tbody tr { background: var(--bg-card); transition: background .2s; }
.comparison-table tbody tr:hover { background: var(--bg-card-alt); }
.comparison-table tbody tr.highlight {
  background: rgba(37,99,235,.06);
  border-left: 3px solid var(--blue);
}
.comparison-table tbody tr.highlight:hover { background: rgba(37,99,235,.1); }
.broker-name { font-weight: 600; color: var(--text-heading); display: flex; align-items: center; gap: 8px; }
.speed-cell { font-weight: 700; font-family: var(--font-heading); }
.speed-fast { color: var(--green); }
.speed-medium { color: var(--yellow); }
.speed-slow { color: var(--orange); }
.rating-stars { color: var(--yellow); font-size: .85rem; }
.table-cta {
  padding: 6px 18px; border-radius: 100px; font-size: .8rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px;
  transition: all .2s;
}
.table-cta-blue { background: var(--blue); color: #fff; }
.table-cta-blue:hover { background: var(--blue-light); color: #fff; }

/* --- Broker Cards --- */
.broker-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 24px; }
.broker-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.broker-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
  transform: translateY(-4px);
}
.broker-card.featured {
  border-color: var(--yellow);
  box-shadow: 0 0 30px rgba(251,191,36,.1);
}
.broker-card.featured::before {
  content: 'FASTEST';
  position: absolute; top: 16px; right: -28px;
  background: var(--yellow); color: #0a0e1a;
  font-size: .65rem; font-weight: 700; letter-spacing: .1em;
  padding: 4px 36px;
  transform: rotate(45deg);
}
.broker-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.broker-card h3 { font-family: var(--font-heading); font-size: 1.3rem; color: var(--text-heading); }
.broker-card-speed {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 1.8rem;
}
.broker-card-speed.fast { color: var(--green); }
.broker-card-speed.medium { color: var(--yellow); }
.broker-card-features { list-style: none; padding: 0; margin-bottom: 24px; }
.broker-card-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
  font-size: .9rem; color: var(--text-muted);
}
.broker-card-features li:last-child { border-bottom: none; }
.broker-card-features li svg { width: 16px; height: 16px; flex-shrink: 0; }
.check-icon { color: var(--green); }
.broker-card .btn { width: 100%; justify-content: center; }

/* --- How It Works --- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px; counter-reset: step; }
.step {
  text-align: center; padding: 32px 20px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); transition: all .3s;
  position: relative;
}
.step:hover { border-color: var(--blue); transform: translateY(-4px); }
.step-number {
  width: 48px; height: 48px;
  background: rgba(37,99,235,.1); border: 1px solid rgba(37,99,235,.25);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem;
  color: var(--blue-light);
  margin-bottom: 16px;
}
.step h3 { font-family: var(--font-heading); font-size: 1.05rem; color: var(--text-heading); margin-bottom: 8px; }
.step p { font-size: .88rem; color: var(--text-muted); }

/* --- Articles / Blog Grid --- */
.articles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.article-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: all .3s;
}
.article-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow-blue); }
.article-card-img {
  height: 180px; background: linear-gradient(135deg, var(--bg-card-alt), var(--bg-card));
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border);
}
.article-card-img svg { width: 48px; height: 48px; color: var(--blue); opacity: .5; }
.article-card-body { padding: 24px; }
.article-card-body .badge { margin-bottom: 12px; }
.article-card-body h3 {
  font-family: var(--font-heading); font-size: 1.05rem;
  color: var(--text-heading); margin-bottom: 8px; line-height: 1.4;
}
.article-card-body p { font-size: .85rem; color: var(--text-muted); margin-bottom: 16px; }
.article-link {
  font-size: .85rem; font-weight: 600; color: var(--blue-light);
  display: inline-flex; align-items: center; gap: 4px;
}
.article-link:hover { color: var(--yellow); }

/* --- FAQ --- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%; background: none; border: none; color: var(--text-heading);
  padding: 20px 0;
  font-family: var(--font-heading); font-weight: 600; font-size: 1rem;
  text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: color .2s;
}
.faq-question:hover { color: var(--yellow); }
.faq-question svg { width: 20px; height: 20px; flex-shrink: 0; transition: transform .3s; color: var(--text-muted); }
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
}
.faq-answer-inner { padding: 0 0 20px; color: var(--text-muted); font-size: .92rem; line-height: 1.7; }

/* --- Disclaimer --- */
.disclaimer {
  max-width: 800px; margin: 0 auto;
  background: rgba(239,68,68,.05);
  border: 1px solid rgba(239,68,68,.15);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.disclaimer h4 { color: var(--red); font-family: var(--font-heading); font-size: .95rem; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.disclaimer p { font-size: .82rem; color: var(--text-muted); line-height: 1.7; }

/* --- Footer --- */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 24px 32px;
  margin-top: 40px;
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.footer-brand p { font-size: .85rem; color: var(--text-muted); margin-top: 12px; max-width: 280px; line-height: 1.6; }
.footer-col h4 {
  font-family: var(--font-heading); font-size: .8rem; font-weight: 600;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-muted); font-size: .88rem; transition: color .2s; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  max-width: var(--max-w); margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: .8rem; color: var(--text-muted);
}

/* --- Article Page --- */
.article-hero { padding: 80px 24px 40px; text-align: center; }
.article-hero .badge { margin-bottom: 16px; }
.article-hero h1 {
  font-family: var(--font-heading); font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--text-heading); max-width: 720px; margin: 0 auto 16px;
  line-height: 1.2;
}
.article-meta { font-size: .85rem; color: var(--text-muted); display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.article-content {
  max-width: 760px; margin: 0 auto; padding: 0 24px 80px;
}
.article-content h2 {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 1.5rem; color: var(--text-heading);
  margin: 48px 0 16px;
}
.article-content h3 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 1.15rem; color: var(--text-heading);
  margin: 32px 0 12px;
}
.article-content p { margin-bottom: 18px; }
.article-content ul, .article-content ol { margin-bottom: 18px; }
.article-content li { margin-bottom: 6px; }
.article-content .info-box {
  background: rgba(37,99,235,.06);
  border: 1px solid rgba(37,99,235,.15);
  border-radius: var(--radius-sm);
  padding: 20px 24px; margin: 24px 0;
}
.article-content .info-box p { margin-bottom: 0; font-size: .9rem; }

/* Inline CTA in articles */
.inline-cta {
  background: linear-gradient(135deg, rgba(37,99,235,.08), rgba(251,191,36,.06));
  border: 1px solid rgba(37,99,235,.2);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin: 36px 0;
}
.inline-cta h3 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--text-heading); margin-bottom: 8px; }
.inline-cta p { color: var(--text-muted); font-size: .9rem; margin-bottom: 20px; }
.inline-cta .btn { font-size: .9rem; }

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.active {
    display: flex; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--border);
    padding: 20px 24px; gap: 16px;
  }
  .hero { padding: 60px 16px 50px; }
  .hero-stats { gap: 24px; }
  .hero-stat-value { font-size: 1.8rem; }
  .speed-callout-inner { padding: 36px 20px; }
  .speed-number { font-size: 4rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .broker-cards { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .comparison-table { font-size: .82rem; }
  .comparison-table th, .comparison-table td { padding: 12px 10px; }
}
