:root {
  --bg: #0a0c0f;
  --surface: #111318;
  --surface2: #181c23;
  --border: rgba(255,255,255,0.07);
  --text: #e8e4dc;
  --text-muted: #6b7280;
  --text-dim: #9ca3af;
  --gold: #6B745E;
  --gold-dim: #7A8468;
  --gold-faint: rgba(107,116,94,0.08);
  --green: #4ade80;
  --green-dim: rgba(74,222,128,0.1);
  --red-dim: rgba(239,68,68,0.1);
  --red: #f87171;
  --accent: #5b8dd9;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family:'Inter',system-ui,sans-serif;
  font-weight: 300;
  line-height: 1.8;
  font-size: 17px;
}

/* PROGRESS BAR */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--gold);
  z-index: 100;
  transition: width 0.1s linear;
  width: 0%;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(10,12,15,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 48px;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 34px;
  height: 34px;
  background: #6B745E;
  color: #F4F5F3;
  font-family:'Inter',system-ui,sans-serif;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-text {
  font-family:'Inter',system-ui,sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.logo-sub { font-weight: 400; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family:'Inter',system-ui,sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }
.nav-gold { color: var(--gold) !important; }

.nav-phone {
  font-family:'Inter',system-ui,sans-serif;
  font-size: 11px;
  color: var(--text-dim);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.nav-cta {
  font-family:'Inter',system-ui,sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 20px;
  background: #6B745E;
  color: #F4F5F3;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.nav-cta:hover { opacity: 0.85; }

/* ── Dropdown menus ─────────────── */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-trigger { cursor: pointer; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #1F2326;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 6px;
  padding: 8px 0;
  min-width: 200px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 9px 18px;
  font-size: 12px;
  color: rgba(244,245,243,0.72) !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav-dropdown-menu a:hover {
  background: rgba(107,116,94,0.18) !important;
  color: #F4F5F3 !important;
}


.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform .25s, opacity .25s;
}

.burger.open span:first-child { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:last-child  { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-drawer {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  gap: 4px;
}

.mobile-drawer a {
  font-size: 16px;
  color: var(--text-dim);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}

.mobile-drawer a:last-child { border-bottom: none; }
.drawer-cta { color: var(--gold) !important; font-weight: 500 !important; }

/* HERO */
.hero {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 88px 0 48px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(107,116,94,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(91,141,217,0.04) 0%, transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 48px;
}

.hero-tag {
  font-family:'Inter',system-ui,sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-tag::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family:'Inter',system-ui,sans-serif;
  font-size: clamp(36px, 4.8vw, 62px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  color: #A9B399;
}

.hero-subtitle {
  font-size: 19px;
  color: rgba(244,245,243,0.82);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: -16px 0 28px;
}

.hero-action-primary,
.hero-action-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 4px;
  font-family:'Inter',system-ui,sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background .18s, border-color .18s, color .18s;
}

.hero-action-primary { background:#7E886D; color:#fff; border:1px solid #7E886D; }
.hero-action-primary:hover { background:#929D80; border-color:#929D80; }
.hero-action-secondary { color:#F4F5F3; border:1px solid rgba(244,245,243,.42); }
.hero-action-secondary:hover { border-color:#F4F5F3; }

.hero-meta {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-meta-item {
  font-family:'Inter',system-ui,sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,245,243,0.62);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-meta-item::before {
  content: '●';
  color: var(--gold);
  font-size: 6px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 48px;
  font-family:'Inter',system-ui,sans-serif;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-scroll::before {
  content: '';
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--text-muted));
}

/* LAYOUT */
.page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 80px;
  align-items: start;
}

.article-body { min-width: 0; }

/* SIDEBAR */
.sidebar {
  position: sticky;
  top: 100px;
}

.toc {
  border: 1px solid var(--border);
  padding: 28px;
  background: var(--surface);
  margin-bottom: 24px;
}

.toc-title {
  font-family:'Inter',system-ui,sans-serif;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.toc-list {
  list-style: none;
}

.toc-list li {
  border-bottom: 1px solid var(--border);
}

.toc-list li:last-child { border-bottom: none; }

.toc-list a {
  display: block;
  padding: 8px 0;
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.4;
}

.toc-list a:hover { color: var(--gold); }

.toc-list a.active { color: var(--gold); }

.sidebar-cta {
  background: var(--gold-faint);
  border: 1px solid var(--gold-dim);
  padding: 28px;
}

.sidebar-cta-title {
  font-family:'Inter',system-ui,sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.sidebar-cta-text {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 20px;
}

.sidebar-cta-btn {
  display: block;
  text-align: center;
  background: #6B745E;
  color: #F4F5F3;
  font-family:'Inter',system-ui,sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.sidebar-cta-btn:hover { opacity: 0.85; }

/* ARTICLE SECTIONS */
.article-section {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.article-section:last-child { border-bottom: none; }

.section-marker {
  font-family:'Inter',system-ui,sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-marker::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold-dim);
}

.section-title {
  font-family:'Inter',system-ui,sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.section-title em { color: var(--gold); font-style: italic; }

p {
  margin-bottom: 20px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.85;
}

p:last-child { margin-bottom: 0; }

strong { font-weight: 500; color: var(--text); }

/* CALLOUT */
.callout {
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  background: var(--gold-faint);
  margin: 32px 0;
}

.callout p {
  font-size: 16px;
  color: var(--text-dim);
  margin: 0;
  font-style: italic;
  line-height: 1.7;
}

.callout strong { color: var(--gold); font-style: normal; }

/* STAT GRID */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin: 40px 0;
}

.stat-card {
  background: var(--surface);
  padding: 28px 24px;
  text-align: center;
}

.stat-value {
  font-family:'Inter',system-ui,sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family:'Inter',system-ui,sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.5;
}

/* COMPARISON TABLE */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  font-size: 14px;
}

.compare-table th {
  background: var(--surface2);
  padding: 14px 20px;
  text-align: left;
  font-family:'Inter',system-ui,sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.compare-table th.highlight {
  background: rgba(107,116,94,0.10);
  color: rgba(244,245,243,0.90);
  border-bottom-color: rgba(107,116,94,0.30);
}

.compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.5;
  color: var(--text-dim);
}

.compare-table td.highlight {
  background: var(--gold-faint);
  color: var(--text);
}

.compare-table tr:last-child td { border-bottom: none; }

.compare-table .row-label {
  font-size: 13px;
  color: var(--text-muted);
  font-family:'Inter',system-ui,sans-serif;
  font-size: 11px;
  letter-spacing: 0.05em;
}

.check { color: var(--green); }
.cross { color: var(--red); }
.neutral { color: var(--text-muted); }

/* SCENARIO BOX */
.scenario {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.scenario::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
}

.scenario-label {
  font-family:'Inter',system-ui,sans-serif;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.scenario-title {
  font-family:'Inter',system-ui,sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.scenario p {
  font-size: 15px;
  margin-bottom: 16px;
}

.scenario-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.scenario-number {
  text-align: center;
}

.scenario-number-value {
  font-family:'Inter',system-ui,sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

.scenario-number-label {
  font-family:'Inter',system-ui,sans-serif;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* PROS CONS */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin: 40px 0;
}

.pros, .cons {
  padding: 28px;
}

.pros { background: var(--green-dim); }
.cons { background: var(--red-dim); }

.pros-cons-title {
  font-family:'Inter',system-ui,sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pros .pros-cons-title { color: var(--green); }
.cons .pros-cons-title { color: var(--red); }

.pros-cons-list {
  list-style: none;
}

.pros-cons-list li {
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  gap: 10px;
  line-height: 1.5;
  color: var(--text-dim);
}

.pros-cons-list li:last-child { border-bottom: none; }

.pros .pros-cons-list li::before { content: '✓'; color: var(--green); flex-shrink: 0; font-size: 12px; margin-top: 2px; }
.cons .pros-cons-list li::before { content: '✗'; color: var(--red); flex-shrink: 0; font-size: 12px; margin-top: 2px; }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  padding: 20px 0;
  font-family:'Inter',system-ui,sans-serif;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  transition: color 0.2s;
  line-height: 1.4;
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  font-family:'Inter',system-ui,sans-serif;
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.2s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.8;
}

.faq-item.open .faq-answer { max-height: 500px; }

/* WHO IT'S FOR */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin: 40px 0;
}

.audience-card {
  background: var(--surface);
  padding: 28px;
  border-top: 2px solid var(--gold-dim);
  transition: border-color 0.2s;
}

.audience-card:hover { border-color: var(--gold); }

.audience-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.audience-title {
  font-family:'Inter',system-ui,sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.audience-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* PROCESS STEPS */
.process-steps {
  margin: 40px 0;
}

.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.process-step:last-child { border-bottom: none; }

.step-num {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family:'Inter',system-ui,sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.step-title {
  font-family:'Inter',system-ui,sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0;
}

/* FINAL CTA */
.final-cta {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 80px 0 0;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(107,116,94,0.05) 0%, transparent 70%);
}

.final-cta-inner { position: relative; }

.final-cta-label {
  font-family:'Inter',system-ui,sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.final-cta-title {
  font-family:'Inter',system-ui,sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.final-cta-title em { color: var(--gold); font-style: italic; }

.final-cta-sub {
  font-size: 17px;
  color: var(--text-dim);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: #6B745E;
  color: #F4F5F3;
  font-family:'Inter',system-ui,sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
  display: inline-block;
}

.btn-primary:hover { opacity: 0.85; }

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-family:'Inter',system-ui,sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}

.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 48px;
  text-align: center;
}

.footer-brand {
  font-family:'Inter',system-ui,sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer-text {
  font-family:'Inter',system-ui,sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-tag { animation: fadeUp 0.6s ease both; animation-delay: 0.1s; opacity: 0; }
.hero-title { animation: fadeUp 0.7s ease both; animation-delay: 0.2s; opacity: 0; }
.hero-subtitle { animation: fadeUp 0.7s ease both; animation-delay: 0.35s; opacity: 0; }
.hero-meta { animation: fadeUp 0.7s ease both; animation-delay: 0.5s; opacity: 0; }

/* RESPONSIVE */
@media (max-width: 900px) {
  html, body { max-width: 100%; overflow-x: hidden; }
  .nav-inner { padding: 16px 24px; }
  .nav-links, .nav-cta, .nav-phone { display: none; }
  .burger { display: flex; }
  .mobile-drawer.open { display: flex; }
  .hero-inner, .page-wrap { padding: 0 24px; }
  .hero { min-height: 0; padding: 56px 0 44px; }
  .hero-title { font-size: clamp(34px,11vw,48px); }
  .hero-subtitle { font-size: 16px; margin-bottom: 36px; }
  .hero-actions a { flex: 1 1 100%; }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .stat-grid, .pros-cons, .audience-grid { grid-template-columns: 1fr; }
  .scenario-numbers { grid-template-columns: 1fr; }
  .final-cta { padding: 40px 24px; }
  footer { padding: 32px 24px; }
  .hero-scroll { display: none; }
  .article-section { overflow: hidden; }
  .compare-table { display: block; max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ── Foreign National light section ── */
.fn-section, .fn-section p, .fn-section div, .fn-section h2 { color: #1A1D20; }
.fn-section h2 { font-size: clamp(1.6rem,3vw,2.2rem); margin-bottom: 2.5rem; border-bottom: 2px solid rgba(107,116,94,0.3); padding-bottom: 1rem; }
.fn-section .aeo-block { margin-bottom: 2rem; padding: 1.5rem 1.75rem; background: rgba(255,255,255,0.6); border-radius: 8px; border-left: 3px solid #6B745E; }
.fn-section .aeo-q { font-weight: 700; font-size: 1rem; color: #1A1D20; margin-bottom: 0.6rem; line-height: 1.4; letter-spacing: 0.01em; }
.fn-section .aeo-block p { font-size: 15px; line-height: 1.75; color: #3A3F38; margin-bottom: 0; }

/* ── Nav-wrap (shared dark nav) ── */
.nav-wrap { background: #1F2326; border-bottom: 1px solid rgba(255,255,255,0.04); font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; -webkit-font-smoothing: antialiased; }
.nav-wrap .nav { position: static; max-width: 1320px; margin: 0 auto; padding: 18px 40px; display: flex; align-items: center; justify-content: space-between; gap: 32px; box-sizing: border-box; }
.nav-brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.nav-wrap .nav-links { display: flex; align-items: center; gap: 36px; list-style: none; flex: 1; justify-content: center; padding: 0; margin: 0; }
.nav-wrap .nav-link { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 14px; font-weight: 500; letter-spacing: 0.2px; transition: color 0.15s ease; display: flex; align-items: center; gap: 4px; }
.nav-wrap .nav-link:hover { color: #fff; }
.nav-ctas { display: flex; align-items: center; gap: 12px; }
.nav-wrap .btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 24px; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px; letter-spacing: 0.2px; text-decoration: none; border-radius: 4px; border: 1.5px solid transparent; cursor: pointer; transition: all 0.18s ease; white-space: nowrap; box-sizing: border-box; }
.nav-wrap .btn-primary { background: #6B745E; color: #fff; border-color: #6B745E; }
.nav-wrap .btn-primary:hover { background: #8B9474; border-color: #8B9474; }
.nav-wrap .btn-secondary-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.nav-wrap .btn-secondary-dark:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.05); }
.nav-wrap .nav-dropdown { position: relative; }
.nav-wrap .nav-dropdown-trigger { cursor: pointer; user-select: none; }
.nav-wrap .nav-dropdown-trigger::after { content: ''; display: inline-block; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 4px solid currentColor; margin-left: 5px; opacity: 0.7; vertical-align: middle; }
.nav-wrap .nav-dropdown-menu { display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); min-width: 210px; background: #1F2326; border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; box-shadow: 0 8px 24px rgba(0,0,0,0.35); padding: 12px 6px 6px; z-index: 200; }
.nav-wrap .nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-wrap .nav-dropdown-menu a { display: block; color: rgba(247,245,239,0.82); font-family: 'Inter', sans-serif; font-size: 13.5px; font-weight: 400; padding: 9px 14px; border-radius: 4px; text-decoration: none; white-space: nowrap; transition: background 0.15s, color 0.15s; }
.nav-wrap .nav-dropdown-menu a:hover { background: rgba(255,255,255,0.07); color: #fff; }
.nav-wrap .nav-links a { color: rgba(255,255,255,0.85); }
@media (max-width: 720px) {
  .nav-wrap .nav { min-height: 68px; flex-wrap: nowrap; gap: 12px; padding: 10px 20px; }
  .nav-wrap .nav-links { display: none; }
  .nav-ctas { width: auto; margin-left: auto; justify-content: flex-end; }
  .nav-ctas .btn-secondary-dark { display: none; }
  .nav-wrap .btn-primary { padding: 9px 14px; font-size: 12px; }
}
/* Viador Partners wordmark (transparent SVG, header + footer) */
.nav-brand-img{height:46px;width:auto;display:block}
.footer-brand-img{height:40px;width:auto;display:block}
@media(max-width:720px){.nav-brand-img{height:38px}}

/* ══════════════════════════════════════════════════════════════════
   Everything above this line is the page's former inline CSS, moved here
   verbatim on 2026-09-01 (two <style> blocks, in their original order).
   Everything below is the only addition.
   ══════════════════════════════════════════════════════════════════ */

/* ── Intake wizard band ──────────────────────────────────────────
   The wizard module (assets/wizard.js) is styled by /assets/home.css, whose
   .wiz-* rules resolve to styles.css tokens this page has never loaded. The
   band scopes those tokens (values copied from styles.css :root verbatim)
   so the card renders as it does on the homepage without pulling styles.css
   into this page. */
.bpl-wizard-band {
  --cream: #FFFFFF;
  --cream-dark: #F2EDE6;
  --ink: #141210;
  --ink-mid: #2E2B27;
  --ink-soft: #52504C;
  --line: rgba(20,18,16,0.14);
  --line-soft: rgba(20,18,16,0.08);
  --font-display: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max: 1160px;
  --shadow-sm: 0 1px 3px rgba(28,26,23,.06), 0 4px 12px rgba(28,26,23,.04);
  --shadow-md: 0 4px 16px rgba(28,26,23,.08), 0 12px 32px rgba(28,26,23,.06);
  --shadow-lg: 0 8px 32px rgba(28,26,23,.10), 0 24px 64px rgba(28,26,23,.08);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 24px;
  scroll-margin-top: 96px;
}
.bpl-wizard-inner { max-width: 780px; margin: 0 auto; }
.bpl-wizard-head { text-align: center; margin-bottom: 34px; }
.bpl-wizard-head .section-marker { justify-content: center; }
.bpl-wizard-head .section-marker::after { display: none; }
.bpl-wizard-head .section-title { margin-bottom: 12px; }
.bpl-wizard-sub { color: var(--text-dim); font-size: 17px; max-width: 60ch; margin: 0 auto; }
/* Inside the card, match the homepage's body defaults (this page's body is
   weight 300 / 1.8 and gives every <p> a 20px bottom margin). */
.bpl-wizard-band .wiz { font-weight: 400; line-height: 1.6; }
.bpl-wizard-band .wiz p { margin-bottom: 0; }
@media (max-width: 640px) { .bpl-wizard-band { padding: 48px 16px; } }

/* home.css makes .nav-wrap sticky for the homepage. This page's nav was
   static before home.css was introduced here and stays static. */
.nav-wrap { position: static; }
