/* ==========================================================================
   Sec179Rules.com - Institutional Financial Design System (2026 Edition)
   Stripe / Ramp / Mercury Bank Aesthetic - High Trust YMYL Architecture
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@600;700;800;900&family=JetBrains+Mono:wght@500;700;800&display=swap');

/* Performance & Mobile Accessibility Optimizations */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

input, select, button, textarea {
  font-size: 16px !important; /* Prevents mobile auto-zoom CLS */
  touch-action: manipulation;
}

button, a.btn-cta-main, a.btn-trust-verify, a.btn-dealer-portal {
  min-height: 44px;
  min-width: 44px;
}

.inst-card {
  content-visibility: auto;
  contain-intrinsic-size: 1px 500px;
}

:root {
  /* Ultra-Refined High-Contrast Financial Color Palette */
  --bg-main: #0B0F17;              /* Deep Financial Charcoal */
  --bg-card: #131B2E;              /* Dark Navy Card Container */
  --bg-input: #1C2740;             /* Input Field & Box Fill */
  --bg-surface: #1E293B;           /* Surface Elevation */
  
  --emerald-primary: #10B981;      /* Stat Primary Accent */
  --emerald-glow: rgba(16, 185, 129, 0.15);
  --emerald-border: rgba(16, 185, 129, 0.35);

  --blue-primary: #38BDF8;         /* Secondary Stat Blue */
  --amber-primary: #F59E0B;        /* Tax Alert Amber */
  --red-alert: #EF4444;            /* CA Tax Cap Red Alert */
  
  --text-main: #FFFFFF;            /* Pure White Headers */
  --text-subtle: #CBD5E1;          /* High-Contrast Silver Text */
  --text-muted: #94A3B8;           /* High-Contrast Slate Text */
  --text-link: #38BDF8;            /* High-Contrast Sky Blue Link */
  --border-subtle: #1E293B;        /* 1px Structural Border */
  --border-glow: #334155;          /* Elevated Border Highlight */
  --border-focus: #3B82F6;         /* Input Focus Outline */

  --blue-primary: #3B82F6;         /* Electric Finance Blue */
  --blue-glow: rgba(59, 130, 246, 0.15);
  --amber-primary: #F59E0B;        /* Burnished Gold CTA Button */
  --amber-hover: #D97706;          /* CTA Hover State */
  --amber-glow: rgba(245, 158, 11, 0.25);

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-head: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Shadows & Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-main: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
  --shadow-cta: 0 10px 25px -5px rgba(245, 158, 11, 0.4);
}

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

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
}

/* High-Contrast Link Defaults */
a {
  color: var(--text-link);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--emerald-primary);
}

/* Category Silo Links Styling */
.silo-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-main);
  transition: border-color 0.2s ease;
}

.silo-card:hover {
  border-color: var(--border-glow);
}

.silo-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.silo-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.silo-link-list li {
  margin-bottom: 10px;
}

.silo-link-list li:last-child {
  margin-bottom: 0;
}

.silo-link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--text-main);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.silo-link-item:hover {
  color: var(--emerald-primary);
  border-color: var(--emerald-border);
  background-color: var(--emerald-glow);
  transform: translateX(3px);
}

.silo-link-item .link-arrow {
  color: var(--text-muted);
  font-size: 14px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.silo-link-item:hover .link-arrow {
  color: var(--emerald-primary);
  transform: translateX(3px);
}

.preset-chip-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.preset-chip-link:hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: var(--emerald-primary);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.25);
}

.preset-chip-link.active {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(16, 185, 129, 0.1) 100%);
  border-color: var(--emerald-primary);
  color: #FFFFFF;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

/* Header & Top Institutional Banner */
.top-trust-bar {
  background: linear-gradient(90deg, #0F172A 0%, #1E293B 100%);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 13px;
  padding: 8px 0;
  color: var(--text-subtle);
}

.top-trust-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.trust-item strong {
  color: var(--emerald-primary);
}

.header {
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border-subtle);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-badge {
  background: linear-gradient(135deg, #10B981 0%, #047857 100%);
  color: #FFFFFF;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 18px;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.logo-title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.logo-title span {
  color: var(--emerald-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-trust-verify {
  background-color: var(--bg-input);
  border: 1px solid var(--border-glow);
  color: var(--text-main);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-trust-verify:hover {
  border-color: var(--emerald-primary);
  color: var(--emerald-primary);
}

.btn-dealer-portal {
  background-color: var(--emerald-glow);
  border: 1px solid var(--emerald-border);
  color: var(--emerald-primary);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.btn-dealer-portal:hover {
  background-color: var(--emerald-primary);
  color: #000000;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero Header Section */
.hero {
  padding: 40px 0 28px 0;
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-glow);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-subtle);
  margin-bottom: 16px;
}

.hero-pill span {
  color: var(--emerald-primary);
}

.hero h1 {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.hero h1 span {
  color: var(--emerald-primary);
  background: linear-gradient(135deg, #34D399 0%, #10B981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  color: var(--text-subtle);
  font-size: 18px;
  max-width: 820px;
  margin: 0 auto;
}

/* Asset Preset Quick Select Bar */
.preset-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.preset-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.preset-btn {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.preset-btn:hover, .preset-btn.active {
  border-color: var(--emerald-primary);
  color: var(--emerald-primary);
  background-color: var(--emerald-glow);
  transform: translateY(-1px);
}

/* Main Grid Layout */
.calc-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  margin-top: 28px;
}

@media (max-width: 1024px) {
  .calc-layout {
    grid-template-columns: 1fr;
  }
}

/* Institutional Card */
.inst-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-main);
}

.inst-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.inst-card-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-main);
}

/* Category Grid Visual Selectors */
.category-visual-grid, .cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

@media (max-width: 640px) {
  .category-visual-grid, .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cat-tile {
  background-color: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.cat-tile:hover, .cat-tile.active {
  border-color: var(--emerald-primary);
  background-color: var(--emerald-glow);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.2);
}

.cat-tile-icon {
  font-size: 26px;
  margin-bottom: 6px;
}

.cat-tile-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
}

.cat-tile-sub {
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-top: 2px;
}

/* Asset Purchase Cost Input Pill Alignment */
.field-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--text-main);
}

.field-val-display {
  display: flex;
  align-items: center;
  background-color: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 4px 12px;
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 800;
  color: var(--emerald-primary);
}

.field-val-display span.currency-symbol {
  margin-right: 4px;
  color: var(--emerald-primary);
}

.field-val-display input[type="text"] {
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 800;
  width: 140px;
  text-align: right;
  outline: none;
}

.field-val-display input[type="text"]:focus {
  border-color: var(--blue-primary);
}

/* Range Slider */
input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  background: var(--bg-input);
  height: 10px;
  border-radius: 5px;
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--emerald-primary);
  cursor: pointer;
  box-shadow: 0 0 14px rgba(16, 185, 129, 0.6);
  transition: transform 0.15s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

select {
  width: 100%;
  background-color: var(--bg-input);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  outline: none;
  cursor: pointer;
}

select:focus {
  border-color: var(--blue-primary);
}

/* Toggle Group */
.toggle-box {
  background-color: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  margin-top: 12px;
}

.toggle-box input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--emerald-primary);
  cursor: pointer;
}

.toggle-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
}

.toggle-desc {
  font-size: 12px;
  color: var(--text-subtle);
}

/* State Alert Warning Box */
.state-alert-card {
  background-color: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: #FDE68A;
}

.state-alert-card strong {
  color: #FBBF24;
}

/* Results Section */
.results-card-wrapper {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-main);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.res-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.res-label {
  font-size: 15px;
  color: var(--text-subtle);
  font-weight: 500;
}

.res-val {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
}

.res-hero-box {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.05) 100%);
  border: 1px solid var(--emerald-border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin: 20px 0;
  text-align: center;
}

.res-hero-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--emerald-primary);
  margin-bottom: 6px;
}

.res-hero-val {
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 900;
  color: var(--emerald-primary);
}

/* SVG Chart Visualizer */
.chart-container {
  margin: 20px 0;
  background-color: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-subtle);
  margin-bottom: 10px;
}

.svg-bar-bg {
  width: 100%;
  height: 14px;
  background-color: var(--bg-main);
  border-radius: 7px;
  overflow: hidden;
  display: flex;
}

.svg-bar-sec179 {
  height: 100%;
  background: var(--emerald-primary);
  transition: width 0.3s ease;
}

.svg-bar-bonus {
  height: 100%;
  background: var(--blue-primary);
  transition: width 0.3s ease;
}

.svg-bar-ev {
  height: 100%;
  background: var(--amber-primary);
  transition: width 0.3s ease;
}

/* Primary CTA Button */
.btn-cta-main {
  width: 100%;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #000000;
  border: none;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--shadow-cta);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.btn-cta-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(245, 158, 11, 0.5);
}

/* Native Sponsored Lender Offer Card */
.lender-offer-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 768px) {
  .lender-offer-card {
    flex-direction: column;
    text-align: center;
  }
}

.lender-info h4 {
  font-size: 16px;
  color: var(--text-main);
}

.lender-info p {
  font-size: 13px;
  color: var(--text-subtle);
  margin-top: 2px;
}

.btn-lender-apply {
  background-color: var(--bg-input);
  border: 1px solid var(--border-glow);
  color: var(--text-main);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.btn-lender-apply:hover {
  border-color: var(--emerald-primary);
  color: var(--emerald-primary);
}

/* Tabs Section */
.tabs-wrapper {
  margin-top: 40px;
}

.tab-buttons {
  display: flex;
  gap: 12px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 24px;
}

.tab-btn {
  background: none;
  border: none;
  color: var(--text-subtle);
  padding: 14px 22px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease;
}

.tab-btn.active {
  color: var(--emerald-primary);
  border-bottom-color: var(--emerald-primary);
}

.tab-btn:hover {
  color: var(--text-main);
}

/* Data Tables */
.inst-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.inst-table th {
  background-color: var(--bg-input);
  color: var(--text-subtle);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 18px;
  text-align: left;
}

.inst-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 14px;
  color: var(--text-main);
  font-family: var(--font-mono);
}

.inst-table tr:hover {
  background-color: var(--bg-card-hover);
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(9, 15, 23, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background-color: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  max-width: 540px;
  width: 92%;
  padding: 36px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9);
  position: relative;
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: var(--text-subtle);
  font-size: 24px;
  cursor: pointer;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-subtle);
  margin-bottom: 6px;
}

.form-group input, .form-group select {
  width: 100%;
  background-color: var(--bg-input);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
}

/* Master Institutional Footer Architecture */
.master-footer {
  background-color: #070A10;
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 32px 0;
  margin-top: 80px;
  color: var(--text-subtle);
  font-size: 13.5px;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-subtle);
}

@media (max-width: 992px) {
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand-desc {
  color: var(--text-subtle);
  font-size: 14px;
  line-height: 1.6;
  margin: 14px 0 20px 0;
}

.footer-col-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 10px;
}

.footer-links-list a {
  color: var(--text-subtle);
  text-decoration: none;
  transition: color 0.15s ease;
  font-size: 13.5px;
}

.footer-links-list a:hover {
  color: var(--emerald-primary);
}

.trust-badges-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  margin-bottom: 32px;
}

.trust-badge-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
}

.footer-legal-box {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 32px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.6;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: var(--text-muted);
}

.footer-bottom-links a:hover {
  color: var(--emerald-primary);
}
