/* ============================================================
   FundedTraderIntel Theme — screen.css
   ============================================================ */

/* Reset & Base
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --indigo: #4F35D2;
  --indigo-dark: #3A27A8;
  --indigo-light: #EEE9FF;
  --indigo-mid: #D8D0FF;
  --text: #0A0A0A;
  --muted: #6B7280;
  --border: #E5E7EB;
  --bg: #FFFFFF;
  --surface: #F8F7FF;
  --success-bg: #F0FDF4;
  --success-border: #BBF7D0;
  --success-text: #166534;
  --danger-bg: #FFF7F7;
  --danger-border: #FECACA;
  --danger-text: #991B1B;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --max-w: 1160px;
  --pad: 48px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul, ol { list-style: none; }

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

/* Buttons
   ============================================================ */
.btn-solid {
  display: inline-flex; align-items: center; justify-content: center;
  background-color: #4F35D2; color: #ffffff;
  border: none; padding: 11px 24px; border-radius: 7px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  font-family: var(--font-sans); text-decoration: none;
  transition: background 0.15s ease;
  line-height: 1;
}
.btn-solid:hover { background-color: #3A27A8; color: #ffffff; }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background-color: transparent; color: #4F35D2;
  border: 2px solid #4F35D2; padding: 10px 24px; border-radius: 7px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  font-family: var(--font-sans); text-decoration: none;
  transition: background 0.15s ease;
  line-height: 1;
}
.btn-outline:hover { background-color: #EEE9FF; }

.btn-hero-solid {
  display: inline-flex; align-items: center; justify-content: center;
  background-color: #ffffff; color: #4F35D2;
  border: none; padding: 12px 26px; border-radius: 7px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  font-family: var(--font-sans); text-decoration: none;
  line-height: 1;
}
.btn-hero-solid:hover { opacity: 0.92; }

.btn-hero-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  background-color: transparent; color: #ffffff;
  border: 2px solid rgba(255,255,255,0.45); padding: 11px 26px; border-radius: 7px;
  font-size: 14px; font-weight: 500; cursor: pointer;
  font-family: var(--font-sans); text-decoration: none;
  transition: border-color 0.15s ease;
  line-height: 1;
}
.btn-hero-ghost:hover { border-color: rgba(255,255,255,0.75); }

/* Navigation
   ============================================================ */
.site-nav {
  background: #ffffff;
  border-bottom: 1px solid #E5E7EB;
  position: sticky; top: 0; z-index: 100;
}

.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad);
  display: flex; justify-content: space-between; align-items: center; height: 64px;
}

.nav-logo {
  display: flex; align-items: center; gap: 11px;
  text-decoration: none; flex-shrink: 0;
}

.nav-logo-icon {
  width: 38px; height: 38px; background: #4F35D2; border-radius: 9px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-logo-icon span {
  font-family: var(--font-serif); font-style: italic;
  font-size: 16px; color: #ffffff;
}

.nav-wordmark { display: flex; flex-direction: column; line-height: 1.15; }
.nav-wordmark .top { font-size: 12px; font-weight: 900; color: #0A0A0A; letter-spacing: -0.01em; }
.nav-wordmark .bot { font-size: 11px; font-weight: 200; color: #0A0A0A; letter-spacing: 0.1em; text-transform: uppercase; }

.nav-links {
  display: flex; gap: 32px; list-style: none;
}
.nav-links a {
  font-size: 14px; color: #6B7280; text-decoration: none;
  font-weight: 400; transition: color 0.15s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: #4F35D2; }

.nav-cta { flex-shrink: 0; }

.nav-mobile-btn {
  display: none; background: none; border: none; cursor: pointer;
  padding: 4px; flex-direction: column; gap: 5px;
}
.nav-mobile-btn span {
  display: block; width: 22px; height: 2px;
  background: #0A0A0A; border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* Section Helpers
   ============================================================ */
.section { padding: 72px 0; }
.section-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }

.section-header { text-align: center; margin-bottom: 48px; }
.section-eyebrow {
  font-size: 11px; font-weight: 700; color: #4F35D2;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 10px; display: block;
}
.section-header h2 {
  font-size: 34px; font-weight: 900; letter-spacing: -0.025em;
  color: #0A0A0A; margin-bottom: 10px;
}
.section-header p {
  font-size: 15px; color: #6B7280; line-height: 1.6;
  max-width: 520px; margin: 0 auto;
}

/* Hero
   ============================================================ */
.hero { background: #4F35D2; }

.hero-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 72px var(--pad) 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}

.hero-tags { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.hero-tag {
  background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.75);
  font-size: 10px; font-weight: 700; padding: 4px 11px;
  border-radius: 4px; letter-spacing: 0.08em;
}

.hero-badge {
  display: inline-block; background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25); color: #ffffff;
  font-size: 12px; font-weight: 500; padding: 6px 14px;
  border-radius: 20px; margin-bottom: 22px;
}

.hero-headline {
  font-size: 52px; font-weight: 900; color: #ffffff;
  line-height: 1.0; letter-spacing: -0.03em; margin-bottom: 18px;
}
.hero-headline .dim { font-weight: 200; opacity: 0.38; display: block; }

.hero-sub {
  font-size: 15px; color: rgba(255,255,255,0.72);
  line-height: 1.7; margin-bottom: 32px; font-weight: 400;
}

.hero-btns { display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }

.hero-trust { font-size: 12px; color: rgba(255,255,255,0.48); }
.hero-trust strong { color: rgba(255,255,255,0.9); font-weight: 700; }

.hero-right { display: flex; flex-direction: column; gap: 14px; }

.stat-card {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px; padding: 24px 28px;
}
.stat-label {
  font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px;
}
.stat-val {
  font-size: 40px; font-weight: 900; color: #ffffff;
  letter-spacing: -0.02em; line-height: 1;
}
.stat-sub { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 6px; }

/* Comparison Table
   ============================================================ */
.compare-bg { background: #ffffff; }

.table-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border-radius: 10px; border: 1px solid #E5E7EB;
}

.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; }

.compare-table thead tr { border-bottom: 2px solid #E5E7EB; }
.compare-table th {
  font-size: 11px; font-weight: 700; color: #6B7280;
  text-align: left; padding: 13px 18px;
  letter-spacing: 0.05em; text-transform: uppercase;
  white-space: nowrap; background: #FAFAFA;
}
.compare-table td {
  padding: 18px 18px; border-bottom: 1px solid #F3F4F6;
  font-size: 14px; vertical-align: middle;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover { background: #FAFAFA; }

.firm-cell { display: flex; align-items: center; gap: 12px; }
.firm-avatar {
  width: 40px; height: 40px; border-radius: 9px; background: #EEE9FF;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #4F35D2; flex-shrink: 0;
}
.firm-name { font-weight: 700; color: #0A0A0A; font-size: 14px; }

.type-pill { font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 4px; white-space: nowrap; }
.type-forex { background: #EEE9FF; color: #4F35D2; }
.type-futures { background: #FFF0DC; color: #B85C00; }

.split-val { font-weight: 700; color: #0A0A0A; }

.visit-btn {
  background: #4F35D2; color: #ffffff; border: none;
  padding: 9px 20px; border-radius: 6px;
  font-size: 13px; font-weight: 700; cursor: pointer;
  font-family: var(--font-sans); white-space: nowrap;
  transition: background 0.15s; text-decoration: none;
  display: inline-flex; align-items: center;
}
.visit-btn:hover { background: #3A27A8; color: #ffffff; }

/* Steps
   ============================================================ */
.steps-bg { background: #F8F7FF; }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }

.step { text-align: center; position: relative; }
.step:not(:last-child)::after {
  content: ''; position: absolute; top: 30px; right: -16px;
  width: 32px; height: 2px; background: #D8D0FF;
}

.step-icon {
  width: 60px; height: 60px; background: #4F35D2; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
}
.step-icon svg {
  width: 26px; height: 26px; stroke: #ffffff; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.step-num {
  font-size: 10px; font-weight: 700; color: #4F35D2;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px;
}
.step h3 { font-size: 16px; font-weight: 800; color: #0A0A0A; margin-bottom: 10px; letter-spacing: -0.01em; }
.step p { font-size: 13px; color: #6B7280; line-height: 1.65; }

/* Post Cards
   ============================================================ */
.cards-bg { background: #ffffff; }

.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.firm-card {
  border: 1px solid #E5E7EB; border-radius: 12px; overflow: hidden;
  text-decoration: none; display: block;
  transition: border-color 0.2s, transform 0.2s;
}
.firm-card:hover { border-color: #4F35D2; transform: translateY(-2px); }

.firm-card-link { display: block; text-decoration: none; }

.firm-card-thumb {
  height: 150px; background: #EEE9FF;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.firm-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.firm-card-thumb-inner {
  background: #4F35D2; border-radius: 10px; padding: 12px 20px;
  font-size: 13px; font-weight: 800; color: #ffffff;
  letter-spacing: 0.03em; text-align: center;
}

.firm-card-body { padding: 18px; }
.firm-card-body h3 {
  font-size: 14px; font-weight: 700; color: #0A0A0A;
  line-height: 1.45; margin-bottom: 12px;
}
.firm-card-pills { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.firm-pill { font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 4px; background: #EEE9FF; color: #4F35D2; }

.read-link { font-size: 12px; font-weight: 700; color: #4F35D2; }

.cards-cta { text-align: center; margin-top: 40px; }

/* Article List
   ============================================================ */
.articles-bg { background: #F8F7FF; }

.article-list { max-width: 760px; margin: 0 auto; }

.article-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; border-bottom: 1px solid #E5E7EB;
  text-decoration: none; transition: padding-left 0.15s;
}
.article-row:hover { padding-left: 6px; }
.article-row:hover .article-title { color: #4F35D2; }
.article-row:last-child { border-bottom: none; }

.article-title {
  font-size: 14px; font-weight: 500; color: #0A0A0A;
  line-height: 1.45; flex: 1; padding-right: 20px; transition: color 0.15s;
}
.article-arrow { font-size: 12px; font-weight: 700; color: #9CA3AF; white-space: nowrap; }

.articles-cta { text-align: center; margin-top: 36px; }

/* SEO Block
   ============================================================ */
.seo-bg { background: #ffffff; border-top: 1px solid #E5E7EB; }

.seo-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.seo-inner h2 { font-size: 26px; font-weight: 900; letter-spacing: -0.02em; margin-bottom: 20px; color: #0A0A0A; }
.seo-inner p { font-size: 14px; color: #6B7280; line-height: 1.8; margin-bottom: 16px; }

/* Post Header
   ============================================================ */
.post-header { background: #4F35D2; padding: 52px var(--pad) 60px; }
.post-header-inner { max-width: var(--max-w); margin: 0 auto; }

.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb a { font-size: 12px; color: rgba(255,255,255,0.6); text-decoration: none; }
.breadcrumb a:hover { color: #ffffff; }
.breadcrumb span { font-size: 12px; color: rgba(255,255,255,0.3); }

.post-tags { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.post-tag {
  background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8);
  font-size: 10px; font-weight: 700; padding: 4px 11px;
  border-radius: 4px; letter-spacing: 0.08em; text-decoration: none; text-transform: uppercase;
}
.post-tag:hover { background: rgba(255,255,255,0.2); }

.post-title {
  font-size: 40px; font-weight: 900; color: #ffffff;
  line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 18px; max-width: 800px;
}

.post-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.post-meta-item { font-size: 13px; color: rgba(255,255,255,0.5); }
.post-meta-item strong { color: rgba(255,255,255,0.85); font-weight: 600; }

/* Feature Image
   ============================================================ */
.post-feature {
  background: #EEE9FF; max-height: 480px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid #E5E7EB;
}
.post-feature-img { width: 100%; max-height: 480px; object-fit: cover; }
.post-feature-caption {
  font-size: 12px; color: #6B7280; text-align: center;
  padding: 8px 16px; background: #F9FAFB;
}

/* Post Layout (article + sidebar)
   ============================================================ */
.post-layout {
  max-width: var(--max-w); margin: 0 auto;
  padding: 52px var(--pad) 64px;
  display: grid; grid-template-columns: 1fr 300px; gap: 52px; align-items: start;
}

/* Post Content
   ============================================================ */
.post-content { min-width: 0; }

.post-content h2 {
  font-size: 24px; font-weight: 900; color: #0A0A0A;
  letter-spacing: -0.02em; margin: 44px 0 16px; line-height: 1.2; padding-top: 8px;
  scroll-margin-top: 80px;
}
.post-content h2:first-child { margin-top: 0; }

.post-content h3 {
  font-size: 18px; font-weight: 700; color: #0A0A0A;
  margin: 28px 0 12px; line-height: 1.3;
}

.post-content h4 {
  font-size: 16px; font-weight: 700; color: #0A0A0A;
  margin: 20px 0 10px;
}

.post-content p {
  font-size: 16px; color: #374151; line-height: 1.85; margin-bottom: 18px;
}

.post-content ul, .post-content ol {
  font-size: 16px; color: #374151; line-height: 1.8;
  margin-bottom: 18px; padding-left: 24px;
}
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content li { margin-bottom: 8px; }

.post-content strong { color: #0A0A0A; font-weight: 700; }
.post-content em { font-style: italic; }

.post-content a { color: #4F35D2; text-decoration: none; font-weight: 500; }
.post-content a:hover { text-decoration: underline; }

.post-content blockquote {
  border-left: 3px solid #4F35D2; margin: 28px 0;
  padding: 12px 20px; background: #F8F7FF; border-radius: 0 8px 8px 0;
}
.post-content blockquote p { color: #4F35D2; font-weight: 500; margin: 0; }

.post-content hr { border: none; border-top: 1px solid #E5E7EB; margin: 36px 0; }

.post-content img {
  border-radius: 8px; margin: 24px 0;
  width: 100%; height: auto;
}

.post-content figure { margin: 24px 0; }
.post-content figcaption {
  font-size: 13px; color: #6B7280; text-align: center; margin-top: 8px;
}

.post-content table {
  width: 100%; border-collapse: collapse; margin: 24px 0;
  border: 1px solid #E5E7EB; border-radius: 8px; overflow: hidden;
}
.post-content th {
  background: #F8F7FF; font-size: 12px; font-weight: 700;
  color: #6B7280; text-align: left; padding: 12px 16px;
  letter-spacing: 0.05em; text-transform: uppercase;
  border-bottom: 1px solid #E5E7EB;
}
.post-content td {
  padding: 13px 16px; font-size: 14px;
  border-bottom: 1px solid #F3F4F6; color: #374151;
}
.post-content tr:last-child td { border-bottom: none; }
.post-content tr:hover td { background: #FAFAFA; }

.post-content code {
  background: #F3F4F6; color: #4F35D2; font-size: 13px;
  padding: 2px 6px; border-radius: 4px; font-family: monospace;
}
.post-content pre {
  background: #0A0A0A; color: #E5E7EB; padding: 20px; border-radius: 8px;
  overflow-x: auto; margin: 24px 0;
}
.post-content pre code { background: none; color: inherit; padding: 0; }

/* Ghost Koenig Editor — required card width classes
   ============================================================ */
.kg-width-wide {
  position: relative;
  width: 85vw;
  min-width: 100%;
  margin: auto calc(50% - 50vw);
  transform: translateX(calc(50vw - 50%));
}

.kg-width-full {
  position: relative;
  width: 100vw;
  margin: auto calc(50% - 50vw);
  transform: translateX(calc(50vw - 50%));
}

/* Ghost Card Styles
   ============================================================ */
.kg-card { margin: 28px 0; }
.kg-image-card img { border-radius: 8px; }
.kg-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.kg-gallery-image img { border-radius: 6px; }
.kg-embed-card { border-radius: 8px; overflow: hidden; }
.kg-callout-card {
  display: flex; gap: 16px; padding: 20px 24px;
  background: #F8F7FF; border: 1px solid #D8D0FF; border-radius: 10px;
}
.kg-callout-text { font-size: 15px; color: #374151; line-height: 1.7; }
.kg-toggle-card { border: 1px solid #E5E7EB; border-radius: 8px; overflow: hidden; }
.kg-toggle-heading-text { font-size: 16px; font-weight: 700; }
.kg-video-card video { width: 100%; border-radius: 8px; }

/* Post Footer & Nav
   ============================================================ */
.post-footer { margin-top: 40px; padding-top: 24px; border-top: 1px solid #E5E7EB; }
.tags-label { font-size: 13px; color: #6B7280; margin-right: 8px; }
.post-tag-link {
  font-size: 12px; font-weight: 600; background: #EEE9FF; color: #4F35D2;
  padding: 3px 10px; border-radius: 4px; text-decoration: none; margin-right: 6px;
}
.post-tag-link:hover { background: #D8D0FF; }

.post-nav {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-top: 40px; padding-top: 32px; border-top: 1px solid #E5E7EB;
}
.post-nav-item {
  display: flex; flex-direction: column; gap: 6px;
  padding: 16px; border: 1px solid #E5E7EB; border-radius: 10px;
  text-decoration: none; transition: border-color 0.15s;
}
.post-nav-item:hover { border-color: #4F35D2; }
.post-nav-next { text-align: right; }
.post-nav-label { font-size: 11px; font-weight: 700; color: #9CA3AF; letter-spacing: 0.06em; text-transform: uppercase; }
.post-nav-title { font-size: 14px; font-weight: 700; color: #0A0A0A; line-height: 1.4; }

/* Related Posts
   ============================================================ */
.related-posts { margin-top: 52px; padding-top: 40px; border-top: 1px solid #E5E7EB; }
.related-posts h3 { font-size: 20px; font-weight: 800; color: #0A0A0A; margin-bottom: 24px; letter-spacing: -0.01em; }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card {
  border: 1px solid #E5E7EB; border-radius: 10px; overflow: hidden;
  text-decoration: none; transition: border-color 0.2s, transform 0.2s; display: block;
}
.related-card:hover { border-color: #4F35D2; transform: translateY(-2px); }
.related-thumb {
  height: 100px; background: #EEE9FF;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.related-thumb img { width: 100%; height: 100%; object-fit: cover; }
.related-thumb-inner {
  background: #4F35D2; border-radius: 6px; padding: 6px 14px;
  font-size: 11px; font-weight: 800; color: #ffffff; text-align: center;
}
.related-body { padding: 14px; }
.related-body h4 { font-size: 13px; font-weight: 700; color: #0A0A0A; line-height: 1.4; margin-bottom: 8px; }
.related-body span { font-size: 11px; font-weight: 700; color: #4F35D2; }

/* Sidebar
   ============================================================ */
.post-sidebar {
  position: sticky; top: 80px;
  display: flex; flex-direction: column; gap: 20px;
}

/* TOC Widget
   ============================================================ */
.toc-widget {
  background: #ffffff; border: 1px solid #E5E7EB; border-radius: 12px; overflow: hidden;
}
.widget-header {
  background: #F8F7FF; padding: 13px 18px; border-bottom: 1px solid #E5E7EB;
}
.widget-header span {
  font-size: 11px; font-weight: 700; color: #4F35D2;
  letter-spacing: 0.08em; text-transform: uppercase;
}

.toc-list { list-style: none; padding: 10px 0; }
.toc-list li a {
  display: block; font-size: 13px; color: #6B7280; text-decoration: none;
  padding: 7px 18px; line-height: 1.4; transition: all 0.15s;
  border-left: 2px solid transparent;
}
.toc-list li a:hover { color: #4F35D2; background: #F8F7FF; }
.toc-list li a.active {
  color: #4F35D2; background: #F0EDFF;
  border-left-color: #4F35D2; font-weight: 600;
}

/* Top Pick Widget
   ============================================================ */
.top-pick {
  background: #ffffff; border: 1px solid #E5E7EB; border-radius: 12px; overflow: hidden;
}
.top-pick-header {
  background: #4F35D2; padding: 10px 18px;
  display: flex; align-items: center; gap: 8px;
}
.top-pick-header .dot {
  width: 6px; height: 6px; background: #A0F0C0; border-radius: 50%; flex-shrink: 0;
}
.top-pick-header span {
  font-size: 11px; font-weight: 700; color: #ffffff;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.top-pick-body { padding: 18px; }

.top-pick-firm { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.top-pick-avatar {
  width: 44px; height: 44px; background: #EEE9FF; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #4F35D2; flex-shrink: 0;
  text-transform: uppercase;
}
.top-pick-name { font-size: 15px; font-weight: 800; color: #0A0A0A; line-height: 1.2; }
.top-pick-sub { font-size: 12px; color: #6B7280; margin-top: 2px; }

.top-pick-cta {
  display: block; background: #4F35D2; color: #ffffff;
  text-align: center; padding: 12px; border-radius: 7px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: background 0.15s; margin-top: 4px;
}
.top-pick-cta:hover { background: #3A27A8; color: #ffffff; }

.top-pick-disclaimer {
  font-size: 10px; color: #9CA3AF; text-align: center;
  margin-top: 10px; line-height: 1.5;
}

/* Archive Pages
   ============================================================ */
.archive-header { background: #4F35D2; padding: 52px var(--pad) 60px; }
.archive-header-inner { max-width: var(--max-w); margin: 0 auto; }
.archive-header h1 {
  font-size: 40px; font-weight: 900; color: #ffffff;
  letter-spacing: -0.03em; margin-bottom: 12px; line-height: 1.1;
}
.archive-desc { font-size: 16px; color: rgba(255,255,255,0.72); line-height: 1.6; max-width: 600px; }
.archive-count { font-size: 13px; color: rgba(255,255,255,0.48); margin-top: 8px; }

.author-header .archive-header-inner {
  display: flex; align-items: flex-start; gap: 28px;
}
.author-avatar-wrap { flex-shrink: 0; }
.author-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.3); object-fit: cover;
}
.author-info { flex: 1; }
.author-bio { font-size: 15px; color: rgba(255,255,255,0.72); line-height: 1.7; max-width: 600px; margin-bottom: 12px; }
.author-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.author-meta-item { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; }
.author-website:hover { color: rgba(255,255,255,0.9); }

/* Pagination
   ============================================================ */
.pagination {
  display: flex; justify-content: center; align-items: center;
  gap: 12px; margin-top: 48px; padding-top: 40px; border-top: 1px solid #E5E7EB;
}
.pagination a, .pagination span {
  font-size: 14px; font-weight: 600; padding: 8px 16px;
  border-radius: 6px; text-decoration: none; transition: all 0.15s;
}
.pagination a { color: #4F35D2; border: 1px solid #E5E7EB; }
.pagination a:hover { background: #EEE9FF; border-color: #4F35D2; }
.pagination .pagination-info { color: #6B7280; border: none; }

/* Page Layout
   ============================================================ */
.page-layout { padding: 52px 0 64px; }
.page-content { max-width: 760px; margin: 0 auto; }

/* Error Pages
   ============================================================ */
.error-page {
  min-height: 60vh; display: flex; align-items: center; justify-content: center;
  padding: var(--pad);
}
.error-inner { text-align: center; max-width: 480px; }
.error-inner h1 {
  font-size: 36px; font-weight: 900; color: #0A0A0A;
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.error-inner p { font-size: 16px; color: #6B7280; line-height: 1.6; margin-bottom: 28px; }

/* Footer
   ============================================================ */
.site-footer { background: #0A0A0A; padding: 56px 0 32px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }

.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: 56px; margin-bottom: 48px;
}

.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; text-decoration: none; }
.footer-logo-icon {
  width: 34px; height: 34px; background: #4F35D2; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.footer-logo-icon span { font-family: var(--font-serif); font-style: italic; font-size: 14px; color: #ffffff; }
.footer-wordmark { display: flex; flex-direction: column; line-height: 1.15; }
.footer-wordmark .top { font-size: 11px; font-weight: 900; color: #ffffff; display: block; }
.footer-wordmark .bot { font-size: 10px; font-weight: 200; color: rgba(255,255,255,0.45); letter-spacing: 0.1em; text-transform: uppercase; display: block; }

.footer-desc { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.7; max-width: 280px; }

.footer-col h4 {
  font-size: 11px; font-weight: 700; color: #ffffff;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 13px; color: rgba(255,255,255,0.42);
  text-decoration: none; margin-bottom: 10px; transition: color 0.15s;
}
.footer-col a:hover { color: rgba(255,255,255,0.85); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 40px;
}
.footer-disclaimer {
  font-size: 11px; color: rgba(255,255,255,0.22); line-height: 1.7; max-width: 580px;
}
.footer-disclaimer strong { color: rgba(255,255,255,0.35); }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.22); white-space: nowrap; }

/* Responsive
   ============================================================ */
@media (max-width: 900px) {
  :root { --pad: 24px; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 64px; left: 0; right: 0;
    background: #ffffff; border-bottom: 1px solid #E5E7EB;
    padding: 8px 0; z-index: 99;
  }
  .nav-links.open li a {
    display: block; padding: 12px 24px; font-size: 15px;
    border-bottom: 1px solid #F3F4F6;
    color: #6B7280;
  }
  .nav-links.open li:last-child a { border-bottom: none; }
  .nav-cta { display: none; }
  .nav-mobile-btn { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 48px var(--pad) 56px; }
  .hero-headline { font-size: 38px; }

  .steps-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .step:not(:last-child)::after { display: none; }

  .cards-grid { grid-template-columns: 1fr 1fr; }

  .post-title { font-size: 28px; }
  .post-layout { grid-template-columns: 1fr; gap: 0; }
  .post-sidebar { position: static; order: -1; margin-bottom: 36px; }

  .related-grid { grid-template-columns: 1fr 1fr; }

  .post-nav { grid-template-columns: 1fr; }

  .author-header .archive-header-inner { flex-direction: column; gap: 20px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

@media (max-width: 560px) {
  .hero-headline { font-size: 30px; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { text-align: center; }

  .steps-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 26px; }
  .post-title { font-size: 22px; }
  .archive-header h1 { font-size: 28px; }
}

/* Print
   ============================================================ */
@media print {
  .site-nav, .post-sidebar, .site-footer, .post-nav { display: none; }
  .post-layout { grid-template-columns: 1fr; }
  .post-content { max-width: 100%; }
}
