/* CommercialRealEstateCalculator.com — Shared Stylesheet */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-root:      #07091a;
  --bg-deep:      #0b0e22;
  --bg-card:      #0f1528;
  --bg-card2:     #131829;
  --bg-input:     #0a0d1f;
  --border:       #1c2444;
  --border-light: #242d55;
  --gold:         #c9a84c;
  --gold-light:   #e3c168;
  --gold-dark:    #9a7830;
  --gold-muted:   rgba(201,168,76,0.12);
  --teal:         #0ea5e9;
  --text-1:       #eef2ff;
  --text-2:       #8896c8;
  --text-3:       #4a567a;
  --green:        #22c55e;
  --red:          #ef4444;
  --amber:        #f59e0b;
  --radius-sm:    6px;
  --radius:       10px;
  --radius-lg:    16px;
  --shadow:       0 4px 24px rgba(0,0,0,0.5);
  --shadow-lg:    0 8px 48px rgba(0,0,0,0.7);
  --nav-h:        62px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-root);
  color: var(--text-1);
  font-size: 14px;
  line-height: 1.6;
  min-height: 100vh;
}

/* ── SKIP NAV ── */
.skip-nav {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; z-index: -1;
}
.skip-nav:focus {
  position: fixed; top: 0; left: 0; width: auto; height: auto;
  padding: 12px 20px; background: var(--gold); color: #07091a;
  font-weight: 700; z-index: 9999; text-decoration: none;
}

/* ── TOP GOLD BAR ── */
.top-bar {
  height: 3px;
  background: linear-gradient(90deg, #9a7830, #c9a84c, #e3c168, #c9a84c, #9a7830);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(11,14,34,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1380px; margin: 0 auto; padding: 0 20px;
  height: var(--nav-h); display: flex; align-items: center; gap: 4px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text-1);
  font-size: 15px; font-weight: 700; flex-shrink: 0; margin-right: 8px;
}
.nav-logo .logo-mark {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; color: #07091a; flex-shrink: 0;
}
.nav-logo span { color: var(--gold-light); }
.nav-menu { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav-link {
  color: var(--text-2); text-decoration: none; font-size: 13.5px; font-weight: 500;
  padding: 7px 12px; border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s; white-space: nowrap;
}
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--text-1); background: rgba(255,255,255,0.05); }
.nav-cta {
  margin-left: auto; background: var(--gold-muted);
  border: 1px solid var(--gold-dark); color: var(--gold-light) !important;
  font-weight: 600;
}
.nav-cta:hover { background: rgba(201,168,76,0.2) !important; }

/* Dropdown */
.nav-drop { position: relative; }
.nav-drop-btn {
  display: flex; align-items: center; gap: 5px;
  color: var(--text-2); font-size: 13.5px; font-weight: 500;
  padding: 7px 12px; border-radius: var(--radius-sm);
  background: none; border: none; cursor: pointer;
  transition: color 0.2s, background 0.2s; white-space: nowrap; font-family: inherit;
}
.nav-drop-btn:hover { color: var(--text-1); background: rgba(255,255,255,0.05); }
.nav-drop-btn svg { width: 10px; height: 10px; transition: transform 0.2s; }
.nav-drop:hover .nav-drop-btn svg { transform: rotate(180deg); }
.nav-drop-menu {
  position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); min-width: 230px;
  padding: 6px; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all 0.18s ease; pointer-events: none;
}
.nav-drop:hover .nav-drop-menu, .nav-drop-menu:hover {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
}
.nav-drop-menu a {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 12px; color: var(--text-2); text-decoration: none;
  font-size: 13px; border-radius: var(--radius-sm);
  transition: all 0.15s;
}
.nav-drop-menu a:hover { background: rgba(255,255,255,0.05); color: var(--text-1); }
.nav-drop-menu a .dm-icon { font-size: 15px; }
.nav-divider { height: 1px; background: var(--border); margin: 4px 0; }

/* Burger (mobile) */
.burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 38px; height: 38px; background: none; border: none;
  cursor: pointer; padding: 6px; margin-left: auto;
}
.burger span { display: block; height: 2px; background: var(--text-2); border-radius: 2px; transition: all 0.25s; }
.site-nav.open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav.open .burger span:nth-child(2) { opacity: 0; }
.site-nav.open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .burger { display: flex; }
  .nav-menu {
    display: none; position: fixed; inset: var(--nav-h) 0 0 0;
    background: var(--bg-deep); border-top: 1px solid var(--border);
    flex-direction: column; align-items: flex-start; padding: 16px 20px;
    gap: 2px; overflow-y: auto;
  }
  .site-nav.open .nav-menu { display: flex; }
  .nav-drop-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: transparent; padding: 0 0 0 12px; }
  .nav-drop-btn { padding: 9px 12px; width: 100%; }
  .nav-link { width: 100%; padding: 9px 12px; }
  .nav-cta { margin-left: 0; }
  .nav-drop { width: 100%; }
  .nav-drop-menu a { font-size: 13px; }
}

/* ══════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════ */
.container { max-width: 1380px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 20px; }
.section { padding: 56px 0; }
.section-sm { padding: 36px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.grid-calc { display: grid; grid-template-columns: 1fr 340px; gap: 24px; align-items: start; }
@media (max-width: 1100px) { .grid-calc { grid-template-columns: 1fr; } }
@media (max-width: 900px)  { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px)  { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }
@media (max-width: 600px)  { .grid-4 { grid-template-columns: 1fr 1fr; } }
.col-full { grid-column: 1 / -1; }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(160deg, #0c1133 0%, #0f1840 40%, #0a0d22 100%);
  border-bottom: 1px solid var(--border);
  padding: 48px 20px 40px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold-muted); border: 1px solid var(--gold-dark);
  border-radius: 20px; padding: 4px 14px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(24px, 4vw, 40px); font-weight: 700;
  line-height: 1.2; margin-bottom: 14px; letter-spacing: -0.01em;
}
.page-hero h1 span { color: var(--gold-light); }
.page-hero .tagline {
  font-size: 15px; color: var(--text-2); max-width: 640px; margin: 0 auto 24px;
}
.page-hero .pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.pill {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border-light);
  border-radius: 20px; padding: 4px 14px;
  font-size: 12px; color: var(--text-2); font-weight: 500;
}

/* ══════════════════════════════════════════
   CARDS
══════════════════════════════════════════ */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow);
}
.card + .card { margin-top: 20px; }
.card-sm { padding: 20px; }

/* Tool cards (homepage grid) */
.tool-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  text-decoration: none; display: flex; flex-direction: column; gap: 12px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.tool-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  opacity: 0; transition: opacity 0.2s;
}
.tool-card:hover { border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.5); }
.tool-card:hover::before { opacity: 1; }
.tool-card-icon { font-size: 32px; line-height: 1; }
.tool-card-name { font-size: 16px; font-weight: 700; color: var(--text-1); }
.tool-card-desc { font-size: 13px; color: var(--text-2); line-height: 1.6; flex: 1; }
.tool-card-metrics { display: flex; gap: 8px; flex-wrap: wrap; }
.tool-card-metric {
  background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: 4px; padding: 2px 8px; font-size: 11px;
  color: var(--gold); font-weight: 600;
}
.tool-card-cta {
  font-size: 13px; font-weight: 600; color: var(--gold-light);
  display: flex; align-items: center; gap: 4px; margin-top: 4px;
}

/* Metric cards (results) */
.metric-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px 18px;
  text-align: center; position: relative; overflow: hidden;
}
.metric-card.has-top::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold);
}
.m-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--text-3); margin-bottom: 10px;
}
.m-val { font-size: 34px; font-weight: 800; line-height: 1; margin-bottom: 6px; }
.m-sub { font-size: 11px; color: var(--text-3); }
.gold   { color: var(--gold-light); }
.green  { color: var(--green); }
.red    { color: var(--red); }
.amber  { color: var(--amber); }
.teal   { color: var(--teal); }

/* Deal strip */
.deal-strip {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  margin-bottom: 28px;
}
@media (max-width: 800px) { .deal-strip { grid-template-columns: repeat(2,1fr); } }
.ds-cell { background: var(--bg-card); padding: 14px 16px; }
.ds-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-3); font-weight: 600; margin-bottom: 5px; }
.ds-val { font-size: 16px; font-weight: 700; color: var(--text-1); }

/* Section headers inside cards */
.sec-hd {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px; padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.sec-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.sec-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-1); }
.sec-sub   { font-size: 11px; color: var(--text-3); margin-top: 2px; }

/* ══════════════════════════════════════════
   FORMS
══════════════════════════════════════════ */
.asset-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 22px; }
.asset-btn {
  padding: 14px 10px; border-radius: var(--radius); border: 2px solid var(--border);
  background: var(--bg-input); color: var(--text-2); cursor: pointer;
  text-align: center; transition: all 0.2s; font-family: inherit;
  font-weight: 600; font-size: 13px;
}
.asset-btn .ae { font-size: 22px; display: block; margin-bottom: 5px; }
.asset-btn:hover { border-color: var(--gold-dark); color: var(--text-1); }
.asset-btn.active { border-color: var(--gold); background: rgba(201,168,76,0.1); color: var(--gold-light); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 540px) { .form-grid { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 5px; }
.field label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-2); }
.field small { font-size: 10px; color: var(--text-3); font-weight: 400; text-transform: none; letter-spacing: 0; }
.input-wrap { position: relative; }
.input-wrap .pfx, .input-wrap .sfx { position: absolute; top: 50%; transform: translateY(-50%); color: var(--text-3); font-size: 14px; pointer-events: none; font-weight: 500; }
.input-wrap .pfx { left: 12px; }
.input-wrap .sfx { right: 12px; }
input[type="number"], select {
  width: 100%; background: var(--bg-input); border: 1px solid var(--border-light);
  border-radius: var(--radius-sm); color: var(--text-1); font-family: inherit;
  font-size: 15px; font-weight: 500; padding: 10px 14px;
  transition: border-color 0.2s, box-shadow 0.2s; -moz-appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; }
input[type="number"]:focus, select:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.has-pfx { padding-left: 26px; }
.has-sfx { padding-right: 32px; }
.toggle-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; background: var(--bg-input);
  border: 1px solid var(--border-light); border-radius: var(--radius-sm);
  cursor: pointer; user-select: none;
}
.toggle-row input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--gold); cursor: pointer; }
.toggle-row span { font-size: 13px; color: var(--text-2); }

/* Readonly display field */
.display-field {
  padding: 10px 14px; background: var(--bg-input); border: 1px solid var(--border-light);
  border-radius: var(--radius-sm); font-size: 15px; font-weight: 700; color: var(--gold-light);
}

/* ── BUTTONS ── */
.btn-primary {
  width: 100%; padding: 17px; border: none; border-radius: var(--radius);
  background: linear-gradient(135deg, #9a7830, #c9a84c, #e3c168);
  color: #07091a; font-family: inherit; font-size: 14px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer;
  transition: opacity 0.2s, transform 0.1s; margin-top: 8px;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-primary:hover { opacity: 0.92; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
  padding: 10px 20px; border: 1px solid var(--border-light); border-radius: var(--radius-sm);
  background: var(--bg-card2); color: var(--text-2); font-family: inherit;
  font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--gold-dark); color: var(--gold-light); }
.btn-ghost {
  padding: 8px 16px; border: none; background: none;
  color: var(--text-3); font-family: inherit; font-size: 12px; cursor: pointer;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--text-1); }
.btn-row { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   TABLES
══════════════════════════════════════════ */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); margin-bottom: 24px; }
table { width: 100%; border-collapse: collapse; font-size: 13px; }
thead th {
  background: var(--bg-card2); color: var(--text-3); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; padding: 11px 14px;
  text-align: right; white-space: nowrap; border-bottom: 1px solid var(--border);
}
thead th:first-child { text-align: left; }
tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
tbody tr:last-child { border-bottom: none; }
tbody tr.exit-row-tr { background: rgba(201,168,76,0.05); font-weight: 600; }
tbody tr:hover { background: rgba(255,255,255,0.02); }
td { padding: 10px 14px; text-align: right; color: var(--text-1); white-space: nowrap; }
td:first-child { text-align: left; font-weight: 600; }
td.pos { color: var(--green); }
td.neg { color: var(--red); }
td.gold-txt { color: var(--gold-light); font-weight: 700; }

/* Sensitivity table */
.sens-table th, .sens-table td { padding: 9px 12px; text-align: center; border: 1px solid var(--border); }
.sens-table th { background: var(--bg-card2); color: var(--text-3); font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.sens-table .row-h { text-align: left; min-width: 100px; color: var(--text-1); font-weight: 700; }
.sens-cell { font-weight: 700; }
.sens-g  { background: rgba(34,197,94,0.18);  color: #4ade80; }
.sens-lg { background: rgba(34,197,94,0.09);  color: #86efac; }
.sens-a  { background: rgba(245,158,11,0.18); color: #fcd34d; }
.sens-o  { background: rgba(249,115,22,0.18); color: #fb923c; }
.sens-r  { background: rgba(239,68,68,0.18);  color: #f87171; }
.sens-x  { background: rgba(100,116,139,0.1); color: var(--text-3); }

/* ══════════════════════════════════════════
   AD CONTAINERS
══════════════════════════════════════════ */
.ad-wrap {
  background: var(--bg-deep); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 8px 0;
  text-align: center; min-height: 90px;
  display: flex; align-items: center; justify-content: center;
}
.ad-wrap.inline {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  margin: 28px 0; min-height: 110px;
}
.ad-wrap.side {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  min-height: 260px; flex-direction: column;
}
.ad-inner { width: 100%; max-width: 728px; margin: 0 auto; }
.ad-label {
  display: block; font-size: 9px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 4px;
}

/* ══════════════════════════════════════════
   EXIT / COMPARISON PANELS
══════════════════════════════════════════ */
.kv-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0; border-bottom: 1px solid var(--border);
}
.kv-row:last-child { border-bottom: none; }
.kv-label { font-size: 13px; color: var(--text-2); }
.kv-val { font-size: 14px; font-weight: 700; color: var(--text-1); }
.kv-val.green { color: var(--green); }
.kv-val.red   { color: var(--red); }
.kv-val.gold  { color: var(--gold-light); }

/* ══════════════════════════════════════════
   HOMEPAGE SPECIFIC
══════════════════════════════════════════ */
.home-hero {
  background: linear-gradient(160deg, #0c1133 0%, #0f1840 50%, #090d20 100%);
  padding: 80px 20px 72px; text-align: center; position: relative; overflow: hidden;
}
.home-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(201,168,76,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.home-hero .eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.home-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 5vw, 56px); font-weight: 700;
  line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.02em;
}
.home-hero h1 em { font-style: normal; color: var(--gold-light); }
.home-hero .sub {
  font-size: 17px; color: var(--text-2); max-width: 640px;
  margin: 0 auto 36px; line-height: 1.7;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.btn-hero-primary {
  padding: 16px 32px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #07091a; font-family: inherit; font-size: 15px; font-weight: 800;
  text-decoration: none; letter-spacing: 0.03em; border: none; cursor: pointer;
  transition: opacity 0.2s, transform 0.15s; box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-hero-primary:hover { opacity: 0.9; transform: translateY(-2px); }
.btn-hero-secondary {
  padding: 15px 32px; border-radius: var(--radius);
  border: 1px solid var(--border-light); background: rgba(255,255,255,0.04);
  color: var(--text-1); font-family: inherit; font-size: 15px; font-weight: 600;
  text-decoration: none; transition: border-color 0.2s, background 0.2s;
}
.btn-hero-secondary:hover { border-color: var(--gold-dark); background: rgba(201,168,76,0.06); }
.hero-stats { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat .hs-val { font-size: 28px; font-weight: 800; color: var(--gold-light); }
.hero-stat .hs-label { font-size: 12px; color: var(--text-3); margin-top: 2px; }

/* Section labels */
.section-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--gold); margin-bottom: 10px;
}
.section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 3vw, 32px); font-weight: 700;
  color: var(--text-1); line-height: 1.3; margin-bottom: 12px;
}
.section-sub { font-size: 15px; color: var(--text-2); max-width: 600px; line-height: 1.7; }

/* Market data preview table */
.cap-table { font-size: 13px; }
.cap-table th { text-align: left; background: var(--bg-card2); }
.cap-table td:last-child { color: var(--gold-light); font-weight: 700; text-align: right; }

/* ══════════════════════════════════════════
   CONTENT / GUIDE SECTIONS
══════════════════════════════════════════ */
.content-block h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 20px; color: var(--gold-light); margin-bottom: 12px; line-height: 1.3; }
.content-block h3 { font-size: 14px; font-weight: 700; color: var(--text-1); margin: 16px 0 8px; }
.content-block p { font-size: 14px; color: var(--text-2); line-height: 1.8; margin-bottom: 12px; }
.content-block ul, .content-block ol { padding-left: 20px; color: var(--text-2); font-size: 14px; line-height: 1.8; margin-bottom: 12px; }
.content-block ul li, .content-block ol li { margin-bottom: 5px; }
.content-block strong { color: var(--text-1); }
.content-block a { color: var(--gold-light); text-decoration: none; }
.content-block a:hover { text-decoration: underline; }

.faq-item { border-bottom: 1px solid var(--border); padding: 18px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-size: 15px; font-weight: 700; color: var(--text-1); margin-bottom: 10px; }
.faq-a { font-size: 14px; color: var(--text-2); line-height: 1.75; }

/* Related tools strip */
.related-strip { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.related-link {
  padding: 8px 16px; background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: 20px; font-size: 12px; font-weight: 600; color: var(--text-2);
  text-decoration: none; transition: all 0.2s; white-space: nowrap;
}
.related-link:hover { border-color: var(--gold-dark); color: var(--gold-light); }

/* Gold divider */
.gold-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--gold-dark), transparent); margin: 32px 0; }

/* ══════════════════════════════════════════
   COMPARE PAGE
══════════════════════════════════════════ */
.compare-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.saved-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
}
.saved-card-name { font-size: 15px; font-weight: 700; color: var(--text-1); margin-bottom: 12px; }
.saved-card-meta { font-size: 12px; color: var(--text-3); margin-bottom: 12px; }
.saved-card-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.saved-stat { background: var(--bg-card2); border-radius: var(--radius-sm); padding: 10px; }
.saved-stat-label { font-size: 9px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-3); margin-bottom: 4px; }
.saved-stat-val { font-size: 18px; font-weight: 700; }
.empty-state { text-align: center; padding: 64px 20px; color: var(--text-3); }
.empty-state .es-icon { font-size: 48px; margin-bottom: 16px; }
.empty-state p { font-size: 15px; margin-bottom: 4px; }

/* ══════════════════════════════════════════
   SAVE MODAL
══════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7);
  display: flex; align-items: center; justify-content: center;
  z-index: 300; opacity: 0; visibility: hidden; transition: all 0.2s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px; max-width: 420px; width: 90%;
  transform: scale(0.95); transition: transform 0.2s;
}
.modal-overlay.open .modal-box { transform: scale(1); }
.modal-title { font-size: 18px; font-weight: 700; color: var(--text-1); margin-bottom: 20px; }
.modal-input {
  width: 100%; background: var(--bg-input); border: 1px solid var(--border-light);
  border-radius: var(--radius-sm); color: var(--text-1); font-family: inherit;
  font-size: 15px; padding: 12px 14px; margin-bottom: 16px;
}
.modal-input:focus { outline: none; border-color: var(--gold); }
.modal-btns { display: flex; gap: 10px; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: var(--bg-deep); border-top: 1px solid var(--border);
  padding: 48px 20px 32px;
}
.footer-inner { max-width: 1380px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 900px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px)  { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand-name { font-size: 15px; font-weight: 700; color: var(--text-1); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.footer-brand-desc { font-size: 13px; color: var(--text-3); line-height: 1.7; max-width: 280px; }
.footer-col-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-2); margin-bottom: 14px; }
.footer-links-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links-list a { font-size: 13px; color: var(--text-3); text-decoration: none; transition: color 0.2s; }
.footer-links-list a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 16px; }
.footer-disclaimer { font-size: 11px; color: var(--text-3); max-width: 800px; line-height: 1.7; }
.footer-copy { font-size: 11px; color: var(--text-3); white-space: nowrap; }

/* ══════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════ */
.hidden   { display: none !important; }
.mt-6     { margin-top: 24px; }
.mt-4     { margin-top: 16px; }
.mb-6     { margin-bottom: 24px; }
.mb-4     { margin-bottom: 16px; }
.text-center { text-align: center; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.35s ease forwards; }

/* ══════════════════════════════════════════
   PRINT STYLES
══════════════════════════════════════════ */
@media print {
  .site-nav, .ad-wrap, .btn-row, .btn-primary, .page-hero .pills,
  .btn-hero-primary, .btn-hero-secondary, .burger,
  #saveModal, .related-strip { display: none !important; }
  body { background: #fff; color: #000; font-size: 12px; }
  .card { border: 1px solid #ddd; box-shadow: none; page-break-inside: avoid; }
  .m-val { color: #000 !important; }
  .gold, .green, .teal { color: #000 !important; }
  .page-hero { background: #f8f8f8 !important; color: #000; }
  .page-hero h1, .page-hero .tagline { color: #000; }
  a { color: #000; text-decoration: none; }
  .container { max-width: 100%; padding: 0; }
  table { font-size: 11px; }
  td, th { padding: 6px 8px; }
  .section { padding: 20px 0; }
  h2 { color: #000 !important; font-size: 16px; }
  h3 { color: #000 !important; }
  p, li { color: #333 !important; }
}
