.tax-hero {
  background:
    radial-gradient(circle at 78% 20%, rgba(79, 179, 191, 0.18), transparent 28%),
    radial-gradient(circle at 18% 74%, rgba(43, 76, 126, 0.08), transparent 32%),
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.tax-panel {
  overflow: hidden;
}

.tax-radar {
  width: min(320px, 100%);
  margin: 34px auto 36px;
  position: relative;
  display: grid;
  place-items: center;
}

.tax-radar svg {
  width: 100%;
  filter: drop-shadow(0 22px 36px rgba(15, 39, 68, 0.12));
}

.tax-radar polygon:first-child {
  fill: rgba(15, 39, 68, 0.03);
  stroke: rgba(43, 76, 126, 0.22);
}

.tax-radar polygon:nth-child(2) {
  fill: rgba(79, 179, 191, 0.14);
}

.tax-radar polyline {
  fill: none;
  stroke: #4fb3bf;
  stroke-width: 4;
  stroke-linejoin: round;
}

.tax-radar circle {
  fill: #0f2744;
  stroke: #4fb3bf;
  stroke-width: 3;
}

.tax-radar strong {
  position: absolute;
  color: #0f2744;
  font-size: 32px;
  font-weight: 900;
}

.risk-equation {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 42px 1fr 42px 1fr;
  gap: 10px;
  align-items: center;
}

.risk-equation span {
  min-height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(43, 76, 126, 0.12);
  background: #fff;
  color: #0f2744;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.risk-equation i {
  height: 2px;
  background: linear-gradient(90deg, rgba(79, 179, 191, 0.1), #4fb3bf);
}

.concept-grid,
.tax-alert-grid {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.concept-grid {
  grid-template-columns: repeat(3, 1fr);
}

.concept-grid span {
  padding: 16px;
  border: 1px solid rgba(43, 76, 126, 0.12);
  background: #fff;
  color: #0f2744;
  font-weight: 900;
}

.tax-alert-grid {
  grid-template-columns: repeat(5, 1fr);
}

.tax-alert-grid article {
  min-height: 250px;
  padding: 18px;
  border: 1px solid rgba(43, 76, 126, 0.14);
  background:
    linear-gradient(rgba(43, 76, 126, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 76, 126, 0.045) 1px, transparent 1px),
    #fff;
  background-size: 22px 22px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.tax-alert-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(79, 179, 191, 0.68);
  box-shadow: 0 22px 58px rgba(15, 39, 68, 0.12);
}

.tax-alert-grid strong {
  display: block;
  margin-bottom: 18px;
  color: #0f2744;
  font-size: 28px;
  font-weight: 900;
}

.tax-alert-grid span {
  display: block;
  margin-top: 10px;
  padding-left: 12px;
  border-left: 2px solid #4fb3bf;
  color: #475569;
  font-size: 13px;
  line-height: 1.45;
}

.tax-bars rect {
  fill: rgba(79, 179, 191, 0.42);
}

.tax-bars polyline {
  fill: none;
  stroke: #0f2744;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tax-dashboard .dashboard-side {
  grid-template-columns: 1fr;
}

.tax-dashboard .dashboard-side div {
  transition: transform 180ms ease, border-color 180ms ease;
}

.tax-dashboard .dashboard-side div:hover {
  transform: translateX(4px);
  border-color: rgba(79, 179, 191, 0.6);
}

@media (max-width: 1050px) {
  .tax-alert-grid,
  .concept-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .risk-equation {
    grid-template-columns: 1fr;
  }

  .risk-equation i {
    width: 2px;
    height: 26px;
    justify-self: center;
    background: linear-gradient(180deg, rgba(79, 179, 191, 0.1), #4fb3bf);
  }
}

@media (max-width: 720px) {
  .tax-alert-grid,
  .concept-grid {
    grid-template-columns: 1fr;
  }

  .tax-alert-grid article {
    min-height: auto;
  }
}
