.elementor-30966 .elementor-element.elementor-element-6fdd43a{--display:flex;--margin-top:-11px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-30966 .elementor-element.elementor-element-6fdd43a.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-widget .tippy-tooltip .tippy-content{text-align:center;}@media(min-width:768px){.elementor-30966 .elementor-element.elementor-element-6fdd43a{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-64a3679 *//* ═══════════════════════════════════════════════
   TYPHON — ULTRA PREMIUM ARTICLE DESIGN 2026
   Dark Navy + Gold Accent System
═══════════════════════════════════════════════ */

:root {
  --navy-950: #050d1a;
  --navy-900: #0b1628;
  --navy-800: #0f2040;
  --navy-700: #152a52;
  --navy-600: #1e3a6e;
  --navy-500: #254d8f;
  --navy-200: #8fafd4;
  --navy-100: #c4d7ed;
  --navy-50:  #eaf1fa;

  --gold-600: #c49a2a;
  --gold-500: #d4a82e;
  --gold-400: #e8bf52;
  --gold-300: #f0d080;
  --gold-100: #fdf5dc;

  --slate-900: #111827;
  --slate-800: #1f2937;
  --slate-700: #374151;
  --slate-500: #6b7280;
  --slate-400: #9ca3af;
  --slate-200: #e5e7eb;
  --slate-100: #f3f4f6;
  --slate-50:  #f9fafb;

  --green-600: #059669;
  --green-100: #d1fae5;
  --red-600:   #dc2626;
  --red-100:   #fee2e2;

  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans:  'Inter', -apple-system, sans-serif;
  --font-mono:  'JetBrains Mono', monospace;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-xl:  0 24px 64px rgba(0,0,0,0.18);

  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: #fafbfd;
  color: var(--slate-900);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--navy-600); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-500); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--slate-100); }
::-webkit-scrollbar-thumb { background: var(--navy-500); border-radius: 99px; }

/* ══════════════════════════════════
   TOP NAV BAR
══════════════════════════════════ */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy-950);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
}
.topbar-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 58px;
}
.topbar-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.topbar-brand-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--navy-950);
  font-family: var(--font-sans);
  flex-shrink: 0;
}
.topbar-brand-name {
  font-size: 15px; font-weight: 700;
  color: #fff; letter-spacing: 0.04em;
  text-transform: uppercase;
}
.topbar-nav {
  display: flex; gap: 6px; align-items: center;
}
.topbar-nav a {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.65);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.topbar-nav a:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.topbar-cta {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400)) !important;
  color: var(--navy-950) !important;
  font-weight: 700 !important;
  padding: 6px 16px !important;
  border-radius: var(--radius-md) !important;
}
.topbar-cta:hover {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300)) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212,168,46,0.35) !important;
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  background: var(--navy-950);
  position: relative;
  overflow: hidden;
  padding: 5rem 2rem 4rem;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(37,77,143,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(21,42,82,0.5) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-inner {
  max-width: 1400px; margin: 0 auto;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,168,46,0.12);
  border: 1px solid rgba(212,168,46,0.25);
  color: #086fd9;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold-400);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: #fff;
  max-width: 820px;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: #086fd9;
}
.hero-deck {
  font-size: 18px; font-weight: 300;
  color: rgba(255,255,255,0.7);
  max-width: 620px;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 2px;
  margin-bottom: 3rem;
}
.hero-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  min-width: 140px;
  transition: all var(--transition);
}
.hero-stat:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(212,168,46,0.3);
  transform: translateY(-2px);
}
.hero-stat .hs-val {
  font-size: 28px; font-weight: 700;
  color: var(--gold-400);
  display: block;
  font-family: var(--font-serif);
}
.hero-stat .hs-lab {
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.55);
  display: block; margin-top: 2px;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px; color: rgba(255,255,255,0.45);
}
.hero-meta span { display: flex; align-items: center; gap: 6px; }
.hero-meta strong { color: rgba(255,255,255,0.75); font-weight: 500; }

/* ══════════════════════════════════
   PROGRESS BAR
══════════════════════════════════ */
.reading-progress {
  position: fixed; top: 58px; left: 0; right: 0; z-index: 99;
  height: 3px;
  background: rgba(0,0,0,0.1);
}
.reading-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--navy-600), var(--gold-500));
  width: 0%;
  transition: width 0.1s linear;
}

/* ══════════════════════════════════
   MAIN LAYOUT
══════════════════════════════════ */
.page-layout {
  max-width: 1400px; margin: 0 auto;
  padding: 3rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

/* ══════════════════════════════════
   SIDEBAR
══════════════════════════════════ */
.sidebar {
  position: sticky; top: 82px;
  display: flex; flex-direction: column; gap: 1.5rem;
}
.sidebar-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.sidebar-card:hover { box-shadow: var(--shadow-md); }
.sidebar-card-title {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--navy-600);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--navy-50);
  display: flex; align-items: center; gap: 8px;
}
.sidebar-card-title::before {
  content: '';
  width: 3px; height: 14px;
  background: linear-gradient(180deg, var(--gold-500), var(--navy-600));
  border-radius: 99px;
  flex-shrink: 0;
}

/* TOC */
.toc-list { list-style: none; padding: 0; }
.toc-list li { margin-bottom: 2px; }
.toc-list a {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 400;
  color: var(--slate-700);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  line-height: 1.4;
}
.toc-list a:hover {
  background: var(--navy-50);
  color: var(--navy-700);
  padding-left: 14px;
}
.toc-list a::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold-500);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all var(--transition);
}
.toc-list a:hover::before {
  background: var(--navy-600);
  transform: scale(1.4);
}
.toc-list li.active a {
  background: var(--navy-800);
  color: #fff;
  font-weight: 500;
}
.toc-list li.active a::before { background: var(--gold-400); }

/* Quick Stats sidebar */
.quick-stats { display: flex; flex-direction: column; gap: 10px; }
.qs-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--slate-100);
}
.qs-item:last-child { border-bottom: none; padding-bottom: 0; }
.qs-label { font-size: 12px; color: var(--slate-500); font-weight: 400; }
.qs-value { font-size: 14px; font-weight: 700; color: var(--navy-800); font-family: var(--font-mono); }

/* Related Links */
.related-links { list-style: none; padding: 0; }
.related-links li { margin-bottom: 2px; }
.related-links a {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: var(--slate-700);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: all var(--transition);
  line-height: 1.4;
}
.related-links a:hover {
  background: var(--navy-50);
  border-color: var(--navy-100);
  color: var(--navy-700);
  transform: translateX(3px);
}
.related-links a .rl-arrow {
  flex-shrink: 0; margin-top: 2px;
  width: 16px; height: 16px;
  background: var(--navy-800);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; color: #fff;
  transition: all var(--transition);
}
.related-links a:hover .rl-arrow {
  background: var(--gold-500);
  color: var(--navy-950);
}

/* CTA Card */
.cta-card {
  background: linear-gradient(145deg, var(--navy-900), var(--navy-800));
  border: 1px solid rgba(212,168,46,0.2);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(212,168,46,0.15) 0%, transparent 70%);
}
.cta-card-badge {
  background: rgba(212,168,46,0.15);
  border: 1px solid rgba(212,168,46,0.3);
  color: var(--gold-400);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 99px;
  display: inline-block; margin-bottom: 1rem;
}
.cta-card h4 {
  font-family: var(--font-serif);
  font-size: 20px; font-weight: 400;
  color: #fff; margin-bottom: 0.75rem;
  line-height: 1.3;
}
.cta-card p {
  font-size: 13px; color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem; line-height: 1.55;
}
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-950);
  font-size: 13px; font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,168,46,0.4);
  color: var(--navy-950);
}

/* ══════════════════════════════════
   ARTICLE BODY
══════════════════════════════════ */
.article-body {}

/* Section anchors offset for sticky nav */
.section-anchor { scroll-margin-top: 90px; }

/* ── HEADINGS ── */
h2.h2-title {
  font-family: var(--font-serif);
  font-size: 30px; font-weight: 400;
  color: var(--navy-900);
  margin: 0.5rem 0 1.25rem;
    padding-top: 0.5rem;
  line-height: 1.25;
  position: relative;
}
h2.h2-title::after {
  content: '';
  display: block;
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
  margin-top: 10px;
  border-radius: 99px;
}
h2.h2-title:first-of-type { margin-top: 0; padding-top: 0; }

h3.h3-title {
  font-family: var(--font-sans);
  font-size: 18px; font-weight: 600;
  color: var(--navy-800);
  margin: 2.25rem 0 0.85rem;
  display: flex; align-items: center; gap: 10px;
}
h3.h3-title::before {
  content: '';
  width: 3px; height: 18px;
  background: linear-gradient(180deg, var(--gold-500), var(--navy-500));
  border-radius: 99px;
  flex-shrink: 0;
}

/* ── BODY TEXT ── */
.article-body p {
  font-size: 16.5px; color: var(--slate-800);
  margin-bottom: 1.1rem; line-height: 1.8;
}
.article-body ul, .article-body ol {
  padding-left: 0; margin-bottom: 1.25rem; list-style: none;
}
.article-body ul li, .article-body ol li {
  font-size: 16px; color: var(--slate-800);
  margin-bottom: 0.6rem; padding-left: 1.5rem;
  position: relative; line-height: 1.7;
}
.article-body ul li::before {
  content: '▸';
  position: absolute; left: 0;
  color: var(--gold-500); font-size: 12px; top: 5px;
}
.article-body ol { counter-reset: ol-counter; }
.article-body ol li { counter-increment: ol-counter; }
.article-body ol li::before {
  content: counter(ol-counter);
  position: absolute; left: 0;
  background: var(--navy-800);
  color: #fff;
  font-size: 10px; font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  top: 4px;
}
.article-body strong { font-weight: 700; color: var(--navy-900); }

/* ── ANSWER BOX ── */
.answer-box {
  background: linear-gradient(135deg, var(--navy-50) 0%, #fff 100%);
  border: 1px solid var(--navy-100);
  border-left: 4px solid var(--navy-600);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  position: relative;
  transition: all var(--transition);
}
.answer-box:hover {
  border-left-color: var(--gold-500);
  box-shadow: var(--shadow-sm);
}
.answer-box .ab-label {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--navy-600); margin-bottom: 8px;
  display: flex; align-items: center; gap: 6px;
}
.answer-box .ab-label::before {
  content: '◉'; font-size: 10px; color: var(--gold-500);
}
.answer-box p {
  font-size: 15px !important;
  color: var(--navy-800) !important;
  margin-bottom: 0 !important;
  line-height: 1.65 !important;
}

/* ── STAT GRID ── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px; margin: 1.75rem 0;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy-600), var(--gold-500));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--navy-100); }
.stat-card:hover::before { transform: scaleX(1); }
.stat-card .sc-label { font-size: 11px; color: var(--slate-500); font-weight: 500; display: block; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.06em; }
.stat-card .sc-value { font-size: 24px; font-weight: 700; color: var(--navy-800); display: block; font-family: var(--font-mono); }
.stat-card .sc-sub { font-size: 12px; color: var(--slate-400); margin-top: 4px; display: block; }

/* ── FORMULA BOX ── */
.formula-box {
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.formula-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(37,77,143,0.4) 0%, transparent 70%);
}
.formula-box .fb-label {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px; position: relative;
}
.formula-box .fb-formula {
  font-family: var(--font-mono);
  font-size: clamp(15px, 3vw, 22px);
  font-weight: 600;
  color: var(--gold-400);
  position: relative;
  line-height: 1.4;
}
.formula-box .fb-note {
  font-size: 13px; color: rgba(255,255,255,0.5);
  margin-top: 12px; position: relative;
}

/* ── EXAMPLE CARD ── */
.example-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
}
.example-card-header {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  padding: 1rem 1.5rem;
  display: flex; align-items: center; gap: 10px;
}
.example-card-header .ech-icon {
  width: 32px; height: 32px;
  background: rgba(212,168,46,0.15);
  border: 1px solid rgba(212,168,46,0.3);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.example-card-header h4 {
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.85); text-transform: uppercase;
  letter-spacing: 0.06em;
}
.example-card-body { padding: 0; }
.ex-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 1.5rem;
  border-bottom: 1px solid var(--slate-100);
  font-size: 15px; color: var(--slate-700);
  transition: background var(--transition);
}
.ex-row:hover { background: var(--slate-50); }
.ex-row:last-child { border-bottom: none; }
.ex-row.ex-sub { background: var(--slate-50); color: var(--slate-500); font-size: 13px; padding: 8px 1.5rem; }
.ex-row.ex-total {
  background: var(--slate-800);
  color: #fff; font-weight: 700; font-size: 16px;
}
.ex-row.ex-total:hover { background: var(--slate-700); }
.ex-row.ex-profit {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--gold-400); font-weight: 700; font-size: 18px;
}
.ex-row.ex-profit:hover { background: linear-gradient(135deg, var(--navy-800), var(--navy-700)); }

/* ── TABLE ── */
.table-wrap {
  overflow-x: auto; margin: 1.75rem 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}
table.comp-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.comp-table thead tr { background: linear-gradient(135deg, var(--navy-900), var(--navy-800)); }
.comp-table th {
  padding: 12px 16px; text-align: left;
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase; letter-spacing: 0.07em;
  white-space: nowrap;
}
.comp-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--slate-100);
  color: var(--slate-700); vertical-align: middle;
  transition: background var(--transition);
}
.comp-table tr:hover td { background: var(--navy-50); }
.comp-table tr:last-child td { border-bottom: none; }
.tag-good {
  background: var(--green-100); color: var(--green-600);
  font-size: 12px; padding: 3px 10px;
  border-radius: 99px; font-weight: 600; white-space: nowrap;
  display: inline-block;
}

/* ── TIP BOX ── */
.tip-box {
  background: linear-gradient(135deg, #fffbf0, #fffdf7);
  border: 1px solid rgba(212,168,46,0.3);
  border-left: 4px solid var(--gold-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  display: flex; gap: 12px; align-items: flex-start;
}
.tip-box .tip-icon {
  font-size: 20px; flex-shrink: 0; margin-top: 2px;
}
.tip-box p { font-size: 14.5px !important; color: #5a4200 !important; margin: 0 !important; line-height: 1.65 !important; }

/* ── MISTAKE / GOOD LISTS ── */
ul.mistake-list { list-style: none !important; padding: 0 !important; }
ul.mistake-list li {
  padding: 12px 12px 12px 3rem !important;
  border-bottom: 1px solid var(--slate-100);
  position: relative !important;
  font-size: 15.5px !important;
  background: transparent;
  transition: background var(--transition);
}
ul.mistake-list li:hover { background: var(--red-100) !important; }
ul.mistake-list li:last-child { border-bottom: none; }
ul.mistake-list li::before {
  content: "✕" !important;
  position: absolute !important; left: 10px !important; top: 12px !important;
  background: var(--red-600) !important;
  color: #fff !important; font-weight: 700 !important;
  font-size: 10px !important;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

ul.max-roi-list { list-style: none !important; padding: 0 !important; }
ul.max-roi-list li {
  padding: 12px 12px 12px 3rem !important;
  border-bottom: 1px solid var(--slate-100);
  position: relative !important;
  font-size: 15.5px !important;
  transition: background var(--transition);
}
ul.max-roi-list li:hover { background: var(--green-100) !important; }
ul.max-roi-list li:last-child { border-bottom: none; }
ul.max-roi-list li::before {
  content: "✓" !important;
  position: absolute !important; left: 10px !important; top: 12px !important;
  background: var(--green-600) !important;
  color: #fff !important; font-weight: 700 !important;
  font-size: 11px !important;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ── DEPRECIATION TIMELINE ── */
.depr-timeline { margin: 1.75rem 0; }
.depr-row {
  display: grid; grid-template-columns: 90px 1fr 100px;
  gap: 12px; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--slate-100);
}
.depr-row:last-child { border-bottom: none; }
.depr-year { font-size: 12px; font-weight: 700; color: var(--slate-500); text-transform: uppercase; letter-spacing: 0.06em; }
.depr-bar-wrap { background: var(--slate-100); border-radius: 99px; height: 8px; overflow: hidden; }
.depr-bar { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--navy-600), var(--gold-500)); transition: width 1s ease; }
.depr-val { font-size: 14px; font-weight: 700; color: var(--navy-800); text-align: right; font-family: var(--font-mono); }

/* ── FAQ ── */
.faq-wrap { margin-top: 1rem; }
.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item:hover { border-color: var(--navy-200); box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.25rem;
  cursor: pointer;
  background: #fff;
  transition: background var(--transition);
  gap: 12px;
}
.faq-q:hover { background: var(--navy-50); }
.faq-q-text {
  font-size: 15px; font-weight: 600;
  color: var(--navy-800); line-height: 1.4;
}
.faq-toggle {
  width: 26px; height: 26px; flex-shrink: 0;
  background: var(--navy-800);
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 300;
  transition: all var(--transition);
  line-height: 1;
}
.faq-item.open .faq-toggle { background: var(--gold-500); color: var(--navy-950); transform: rotate(45deg); }
.faq-item.open .faq-q { background: var(--navy-50); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
  font-size: 15px; color: var(--slate-600); line-height: 1.7;
  background: var(--slate-50);
  padding: 0 1.25rem;
  border-top: 1px solid transparent;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 1rem 1.25rem;
  border-top-color: var(--slate-200);
}

/* ── TAKEAWAYS ── */
.takeaway-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px; margin: 1.75rem 0;
}
.takeaway-item {
  background: linear-gradient(145deg, var(--navy-900), var(--navy-800));
  border: 1px solid rgba(212,168,46,0.15);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.takeaway-item::before {
  content: '';
  position: absolute; bottom: -20px; right: -20px;
  width: 60px; height: 60px;
  background: radial-gradient(circle, rgba(212,168,46,0.1) 0%, transparent 70%);
}
.takeaway-item:hover {
  transform: translateY(-3px);
  border-color: rgba(212,168,46,0.35);
  box-shadow: 0 8px 32px rgba(15,32,64,0.3);
}
.takeaway-item .ti-icon { font-size: 24px; margin-bottom: 10px; display: block; }
.takeaway-item .ti-text { font-size: 13.5px; color: rgba(255,255,255,0.8); line-height: 1.55; font-weight: 400; }

/* ── CONCLUSION ── */
.conclusion-box {
  background: linear-gradient(145deg, var(--navy-950), var(--navy-900));
  border: 1px solid rgba(212,168,46,0.2);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  margin-top: 2rem;
  position: relative; overflow: hidden;
}
.conclusion-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy-600), var(--gold-500), var(--navy-600));
}
.conclusion-box p {
  font-size: 16px !important; color: rgba(255,255,255,0.75) !important;
  margin-bottom: 1rem !important;
}
.conclusion-box p:last-of-type { margin-bottom: 0 !important; }
.conclusion-cta {
  display: block;
  background: linear-gradient(135deg, rgba(212,168,46,0.15), rgba(212,168,46,0.08));
  border: 1px solid rgba(212,168,46,0.3);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: var(--gold-400) !important;
  line-height: 1.55 !important;
  text-align: center;
}

/* ── INTERNAL LINK INLINE ── */
.ilink {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--navy-600);
  border-bottom: 1px solid var(--navy-200);
  padding-bottom: 1px;
  transition: all var(--transition);
  font-weight: 500;
}
.ilink:hover {
  color: var(--gold-500);
  border-bottom-color: var(--gold-500);
}
.ilink::after { content: '↗'; font-size: 11px; }

/* ── ARTICLE FOOTER ── */
.article-footer {
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid var(--slate-200);
}
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.tag-pill {
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  color: var(--navy-700);
  font-size: 12px; padding: 4px 12px;
  border-radius: 99px;
  font-weight: 500;
  transition: all var(--transition);
  cursor: default;
}
.tag-pill:hover {
  background: var(--navy-800); color: #fff;
  border-color: var(--navy-800);
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.site-footer {
  background: var(--navy-950);
  padding: 3rem 2rem 2rem;
  margin-top: 4rem;
}
.footer-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.footer-col h5 {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gold-400); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 6px; }
.footer-col ul a {
  font-size: 13px; color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  max-width: 1400px; margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: 12px; color: rgba(255,255,255,0.35);
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1100px) {
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}
@media (max-width: 768px) {
  .hero { padding: 3rem 1.25rem 2.5rem; }
  .hero h1 { font-size: 28px; }
  .topbar-nav { display: none; }
  .page-layout { padding: 2rem 1.25rem 4rem; }
  h2.h2-title { font-size: 24px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 8px; }
  .hero-stat { padding: 0.85rem 1rem; min-width: 120px; }
  .hero-stat .hs-val { font-size: 22px; }
}
@media (max-width: 480px) {
  .stat-grid { grid-template-columns: 1fr; }
  .depr-row { grid-template-columns: 70px 1fr 80px; gap: 8px; }
}

/* ── SELECTION ── */
::selection { background: rgba(37,77,143,0.2); color: var(--navy-900); }


/* Force Header Full Width */
.hero{
    width:100vw !important;
    max-width:100vw !important;

    position:relative !important;
    left:50% !important;
    right:50% !important;

    margin-left:-50vw !important;
    margin-right:-50vw !important;

    box-sizing:border-box !important;
}

/* Keep content boxed */
.hero-inner{
    max-width:1400px !important;
    margin:0 auto !important;
    padding-left:20px !important;
    padding-right:20px !important;
}

/* ══ MOBILE OVERFLOW FIX — Add inside <style> tag ══ */

/* Prevent ALL horizontal overflow */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* Fix page layout on mobile */
@media (max-width: 1100px) {
  .page-layout {
    grid-template-columns: 1fr;
    padding: 1.5rem 1rem 3rem;
    overflow-x: hidden;
  }
}

@media (max-width: 768px) {
  /* Core container clamp */
  .page-layout,
  .article-body,
  .hero-inner,
  .topbar-inner {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Fix text overflow in paragraphs and lists */
  .article-body p,
  .article-body ul li,
  .article-body ol li,
  .mistake-list li,
  .max-roi-list li {
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }

  /* Fix mistake/max-roi lists specifically — these are clipping */
  ul.mistake-list li,
  ul.max-roi-list li {
    padding-right: 0.75rem !important;
  }

  /* Fix tables overflowing */
  .table-wrap {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Fix hero stats row wrapping */
  .hero-stats {
    gap: 8px;
  }
  .hero-stat {
    min-width: 0;
    flex: 1 1 120px;
  }

  /* Fix depreciation timeline */
  .depr-row {
    grid-template-columns: 65px 1fr 75px;
    gap: 6px;
  }
  .depr-val {
    font-size: 12px;
  }

  /* Fix example card rows */
  .ex-row {
    gap: 8px;
    flex-wrap: wrap;
  }
  .ex-row span:last-child {
    text-align: right;
    flex-shrink: 0;
  }

  /* Fix stat grid */
  .stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Fix formula box */
  .formula-box {
    padding: 1.25rem 1rem;
  }
  .formula-box .fb-formula {
    font-size: 13px;
    word-break: break-word;
  }

  /* Fix hero */
  .hero {
    padding: 2.5rem 1rem 2rem;
  }
  .hero h1 {
    font-size: 24px;
    word-break: break-word;
  }
  .hero-deck {
    font-size: 15px;
  }

  /* Fix answer box */
  .answer-box {
    margin: 1.25rem 0;
  }

  /* Fix conclusion box */
  .conclusion-box {
    padding: 1.5rem 1.25rem;
  }
  .conclusion-cta {
    font-size: 14px !important;
  }
}

@media (max-width: 400px) {
  .stat-grid {
    grid-template-columns: 1fr;
  }
  .depr-row {
    grid-template-columns: 55px 1fr 70px;
  }
}/* End custom CSS */