:root {
  color-scheme: light;
  --bg: #f6f3eb;
  --bg-soft: #fffaf0;
  --surface: #ffffff;
  --surface-strong: #fff7e6;
  --ink: #172033;
  --muted: #64748b;
  --line: #ded6c6;
  --brand: #0f766e;
  --brand-dark: #115e59;
  --brand-soft: #d9f7f2;
  --accent: #b45309;
  --accent-soft: #fff1d6;
  --danger: #b91c1c;
  --success: #15803d;
  --shadow-sm: 0 2px 8px rgb(23 32 51 / 0.08);
  --shadow-md: 0 12px 30px rgb(23 32 51 / 0.12);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --max: 1180px;
  --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --font-display: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --font-numeric: "SF Pro Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --tracking-tight: -0.025em;
  --tracking-display: -0.045em;
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0f172a;
  --bg-soft: #111827;
  --surface: #172033;
  --surface-strong: #1e293b;
  --ink: #e5edf8;
  --muted: #a8b3c7;
  --line: #334155;
  --brand: #2dd4bf;
  --brand-dark: #5eead4;
  --brand-soft: #123c3c;
  --accent: #fbbf24;
  --accent-soft: #3b2f12;
  --danger: #f87171;
  --success: #86efac;
  --shadow-sm: 0 2px 8px rgb(0 0 0 / 0.28);
  --shadow-md: 0 16px 42px rgb(0 0 0 / 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 168px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 450;
  background:
    radial-gradient(circle at 12% 8%, rgb(15 118 110 / 0.14), transparent 28rem),
    radial-gradient(circle at 88% 16%, rgb(180 83 9 / 0.14), transparent 26rem),
    var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-kerning: normal;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

strong,
b {
  font-weight: 800;
}

h1,
h2,
h3,
h4,
legend,
summary,
button,
.brand strong,
.metric-value {
  font-family: var(--font-display);
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-weight: 850;
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--ink);
  color: var(--surface);
  padding: 10px 16px;
  text-decoration: none;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-sm);
}

.top-strip {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 8px 20px;
  background: var(--ink);
  color: var(--surface);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: white;
  font-size: 25px;
  font-weight: 900;
  box-shadow: var(--shadow-sm);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: var(--tracking-tight);
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 10px;
  width: 100%;
}

.search-box {
  width: min(460px, 100%);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.search-box input,
.form-row input,
.form-row select,
.tool-card select,
.tool-card input {
  width: 100%;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  min-height: 48px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.search-box input:focus,
.form-row input:focus,
.form-row select:focus,
.tool-card select:focus,
.tool-card input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 18%, transparent);
}

.site-nav {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 24px 14px;
}

.site-nav a {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  padding: 10px 14px;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  border-color: var(--brand);
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.section-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 24px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: stretch;
  padding-top: 78px;
}

.hero-content,
.hero-panel,
.tool-card,
.result-card,
.notice,
.feature-card,
.return-card,
.deduction-card,
.regime-note,
.slab-panel,
.info-details,
.table-wrap,
.deduction-input-card,
.deduction-accordion details {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: var(--shadow-sm);
}

.hero-content {
  padding: clamp(30px, 4vw, 56px);
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(38px, 7vw, 76px);
  line-height: 1;
  letter-spacing: var(--tracking-display);
}

.hero-copy {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-panel {
  display: grid;
  grid-auto-rows: 1fr;
  gap: 14px;
  padding: 20px;
}

.metric-card {
  min-height: 150px;
  display: grid;
  align-content: space-between;
  align-items: flex-start;
  gap: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--surface-strong), var(--surface));
  border: 1px solid var(--line);
  padding: 22px;
}

.metric-value {
  color: var(--brand-dark);
  font-family: var(--font-numeric);
  font-size: 44px;
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.metric-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.eyebrow,
.card-kicker,
.result-label {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
}

.card-kicker,
.result-label {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
}

.feature-card .card-kicker {
  margin-bottom: 2px;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 8px 0 8px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: var(--tracking-display);
}

.section-heading p:not(.eyebrow) {
  max-width: 780px;
  font-size: 17px;
  line-height: 1.62;
}

.section-heading p:not(.eyebrow),
.notice p,
.regime-note p,
.return-card p,
.deduction-card p,
.info-details p,
.table-note,
.helper-note,
.small-text {
  color: var(--muted);
}

.notice {
  border-left: 8px solid var(--accent);
  display: grid;
  gap: 8px;
  padding: 22px 24px;
  margin-bottom: 40px;
  background: var(--accent-soft);
}

.notice p {
  margin: 0;
}

.notice strong {
  display: block;
  color: var(--accent);
  font-size: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 18px;
}

.feature-card,
.return-card,
.deduction-card,
.regime-note,
.tool-card,
.result-card,
.slab-panel,
.info-details,
.deduction-input-card {
  padding: 26px;
}

.feature-card,
.return-card,
.deduction-card,
.regime-note,
.trust-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  justify-items: start;
  height: 100%;
  gap: 12px;
}

.feature-card > *,
.return-card > *,
.deduction-card > *,
.regime-note > *,
.trust-card > * {
  min-width: 0;
}

.feature-card h3,
.return-card h3,
.deduction-card h4,
.regime-note h3,
.result-card h3,
.slab-panel h3 {
  margin: 0;
  line-height: 1.22;
  letter-spacing: var(--tracking-tight);
}

.feature-card h3,
.return-card h3,
.regime-note h3 {
  font-size: clamp(20px, 2vw, 24px);
}

.deduction-card h4 {
  font-size: 19px;
}

.feature-card p,
.return-card p,
.deduction-card p,
.regime-note p,
.trust-card p {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.58;
}

.feature-grid .feature-card h3,
.cards-list.compact .feature-card h3,
.cards-list.compact .deduction-card h4 {
  min-height: 2.45em;
}

.cards-list {
  display: grid;
  grid-auto-rows: auto;
  align-items: stretch;
  gap: 20px;
}

.cards-list.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
}

.return-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.return-header h3 {
  flex: 1 1 260px;
}

.form-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 1px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
  padding: 7px 14px;
}

.tool-section {
  scroll-margin-top: 160px;
}

.tool-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: 22px;
  align-items: start;
}

.tool-card {
  display: grid;
  gap: 18px;
  align-content: start;
}

.form-row label,
.tool-card legend {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.tool-card fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
}

.tool-card legend {
  padding: 0 8px;
}

.tool-card fieldset label {
  display: flex;
  align-items: start;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.tool-card input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--brand);
}

.tool-card input:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.estimator-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.standard-deduction-box,
.calculator-note {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface-strong);
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 16px;
}

.standard-deduction-box label,
.deduction-toggle {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
}

.standard-deduction-box p,
.calculator-note p {
  margin-top: 0;
  margin-bottom: 0;
}

.deduction-input-grid {
  display: grid;
  gap: 12px;
}

.deduction-input-card {
  border-radius: 20px;
}

.deduction-input-card summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.deduction-input-card summary span:first-child {
  display: grid;
  gap: 2px;
}

.deduction-input-card summary strong {
  color: var(--brand-dark);
  font-size: 14px;
}

.limit-pill {
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 950;
  padding: 6px 10px;
}

.deduction-toggle {
  margin: 14px 0 10px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detailed-result-card h4 {
  margin: 22px 0 10px;
}

.result-breakdown {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 10px;
  margin: 18px 0;
}

.mini-result {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 118px;
  padding: 14px;
}

.mini-result.recommended {
  border-color: var(--brand);
  background: var(--brand-soft);
}

.mini-result span,
.mini-result small {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.mini-result strong {
  display: block;
  color: var(--brand-dark);
  font-family: var(--font-numeric);
  font-size: 24px;
  line-height: 1.1;
  margin: 4px 0;
  font-variant-numeric: tabular-nums;
}

.result-table,
.deduction-summary-list,
.warning-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.result-table div,
.deduction-summary-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  line-height: 1.35;
  padding: 10px 0;
}

.result-table span,
.deduction-summary-list span {
  color: var(--muted);
}

.result-table strong,
.deduction-summary-list strong,
td,
.limit-pill {
  font-family: var(--font-numeric);
  font-variant-numeric: tabular-nums;
}

.warning-list {
  padding-left: 18px;
  list-style: disc;
  color: var(--muted);
}

.result-card {
  position: sticky;
  top: 178px;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 240px;
  background:
    linear-gradient(140deg, color-mix(in srgb, var(--brand-soft) 75%, var(--surface)), var(--surface));
}

.result-card h3 {
  font-size: 32px;
  letter-spacing: var(--tracking-display);
}

.result-card p {
  margin: 0;
}

.result-card strong {
  color: var(--brand-dark);
  font-family: var(--font-numeric);
  font-variant-numeric: tabular-nums;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.btn,
.icon-button,
.slab-tab,
.back-to-top {
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease, opacity 160ms ease;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  line-height: 1.1;
  padding: 11px 18px;
  text-align: center;
}

.btn:hover,
.icon-button:hover,
.slab-tab:hover,
.back-to-top:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand);
  color: white;
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  background: var(--ink);
  color: var(--surface);
}

.btn-light,
.icon-button,
.slab-tab {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.icon-button {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  font-size: 18px;
}

.table-wrap {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow-x: auto;
  padding: 18px;
}

.table-wrap h3,
.table-wrap h4 {
  margin: 0;
}

.table-wrap p {
  margin-top: 0;
}

table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  line-height: 1.45;
}

th {
  background: var(--surface-strong);
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

td {
  color: var(--muted);
}

tr:last-child td {
  border-bottom: 0;
}

.comparison-grid,
.grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 18px;
}

.comparison-grid > *,
.grid-two > * {
  height: 100%;
}

.grid-two {
  margin-top: 18px;
}

.slab-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.slab-tab.active {
  border-color: var(--brand);
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.slab-panel {
  display: none;
}

.slab-panel.active {
  display: block;
}

details summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 950;
}

.return-card details,
.info-details,
.deduction-accordion details {
  margin-top: 14px;
  width: 100%;
}

.return-card details {
  margin-top: auto;
}

.return-card details summary,
.info-details summary,
.deduction-accordion details summary {
  line-height: 1.35;
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.deduction-group {
  margin-top: 34px;
}

.deduction-group > h3 {
  font-size: 24px;
  letter-spacing: -0.025em;
}

.accordion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 14px;
}

.deduction-accordion {
  display: grid;
  gap: 10px;
}

.deduction-accordion details {
  border-radius: 18px;
  padding: 18px 20px;
}

.small-text,
.helper-note,
.table-note {
  font-size: 14px;
}

.no-results {
  text-align: center;
}

.site-footer {
  max-width: var(--max);
  margin: 72px auto 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 28px 24px 44px;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border-color: var(--line);
  background: var(--ink);
  color: var(--surface);
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.hidden-by-search {
  display: none !important;
}

mark {
  border-radius: 5px;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 0 3px;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--brand) 70%, white);
  outline-offset: 3px;
}

@media (max-width: 1040px) {
  .header-inner,
  .hero,
  .tool-grid,
  .comparison-grid,
  .grid-two,
  .estimator-controls {
    grid-template-columns: 1fr;
  }

  .header-inner,
  .header-actions {
    align-items: stretch;
  }

  .header-inner {
    display: grid;
  }

  .feature-grid,
  .cards-list.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .result-card {
    position: static;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 132px;
  }

  .top-strip {
    flex-direction: column;
    gap: 2px;
    text-align: center;
  }

  .header-inner,
  .section-shell,
  .site-nav,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .header-actions {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .header-actions .btn {
    grid-column: 1 / -1;
  }

  .hero h1 {
    line-height: 1.04;
    letter-spacing: -0.05em;
  }

  .section-heading p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-content,
  .feature-card,
  .return-card,
  .deduction-card,
  .regime-note,
  .tool-card,
  .result-card,
  .slab-panel,
  .info-details,
  .deduction-input-card {
    padding: 20px;
  }

  .feature-grid,
  .cards-list.compact,
  .tool-card fieldset {
    grid-template-columns: 1fr;
  }

  .feature-grid .feature-card h3,
  .cards-list.compact .feature-card h3,
  .cards-list.compact .deduction-card h4 {
    min-height: auto;
  }

  table {
    min-width: 560px;
  }

  .result-breakdown {
    grid-template-columns: 1fr;
  }

  .deduction-input-card summary,
  .result-table div,
  .deduction-summary-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .tool-section,
  .accordion-actions,
  .back-to-top,
  .skip-link {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .section-shell {
    max-width: none;
    padding: 24px 0 0;
  }

  .hero {
    display: block;
  }

  .hero-content,
  .notice,
  .return-card,
  .table-wrap,
  .deduction-card,
  .deduction-accordion details {
    box-shadow: none;
    break-inside: avoid;
  }
}

.site-footer a {
  color: var(--brand);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.trust-page {
  max-width: 840px;
  display: grid;
  gap: 20px;
}

.trust-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.trust-card h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.trust-card p {
  color: var(--muted);
  margin: 0;
}

.trust-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.trust-card a {
  color: var(--brand);
  text-decoration: none;
}

.trust-card a:hover {
  text-decoration: underline;
}

.trust-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
