.tax-section {
  position: relative;
  overflow: hidden;
}
.tax-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.6;
}
.tax-bg svg { width: 100%; height: 100%; }
.tax-inner { position: relative; z-index: 2; }
.tax-head { max-width: 760px; margin-bottom: 64px; }

.tax-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.tax-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 48px 40px;
  position: relative;
}
.tax-card-highlight {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.35);
}
.tax-card-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--gold);
}
.tc-lbl {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: #9aa4ae;
  margin-bottom: 14px;
}
.tc-title {
  font-family: var(--serif);
  font-size: 28px;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  font-weight: 500;
}
.tc-desc {
  font-size: 15px;
  line-height: 1.75;
  color: #b8c5d1;
  margin: 0 0 32px;
}
.tc-desc em {
  font-style: normal;
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
}

/* Estimation rows */
.tax-figure {
  border-top: 1px solid rgba(255,255,255,0.1);
}
.tf-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
}
.tf-k {
  font-size: 14px;
  color: #9aa4ae;
}
.tf-v {
  font-size: 18px;
  color: white;
  font-weight: 500;
}
.tf-row-hi {
  border-bottom: none;
  padding-top: 24px;
  margin-top: 8px;
  border-top: 1px solid var(--gold);
}
.tf-row-hi .tf-k { color: white; font-weight: 500; }
.tf-v-gold {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--gold);
  font-weight: 500;
}
.tc-note {
  margin-top: 20px;
  font-size: 10px;
  color: #6b7885;
  letter-spacing: 0.04em;
}

/* Liquidity viz */
.liq-viz {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.liq-block {
  display: grid;
  grid-template-columns: 88px 1fr 80px;
  gap: 16px;
  align-items: center;
}
.lb-lbl {
  font-size: 12px;
  color: #b8c5d1;
}
.lb-bar {
  height: 22px;
  background: rgba(255,255,255,0.05);
  position: relative;
  border: 1px solid rgba(255,255,255,0.1);
}
.lb-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.lb-fill-short {
  background: linear-gradient(90deg, #6b7885, #9aa4ae);
}
.lb-val {
  font-family: var(--serif);
  font-size: 18px;
  color: white;
  text-align: right;
  font-weight: 500;
}
.liq-gap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px dashed var(--gold);
  margin-top: 8px;
}
.lg-lbl {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.lg-val {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--gold);
  font-weight: 500;
}
.tc-conclusion {
  padding: 20px;
  background: rgba(0,0,0,0.15);
  color: #e3ddd0;
  font-size: 14px;
  line-height: 1.75;
  border-left: 2px solid var(--gold);
}

@media (max-width: 900px) {
  .tax-grid { grid-template-columns: 1fr; }
  .tax-card { padding: 32px 24px; }
  .liq-block { grid-template-columns: 72px 1fr 64px; }
}
