.tb-decision-hub,
.tb-crypto-entry {
  --tb-ink: #202438;
  --tb-muted: #69727a;
  --tb-red: #f04752;
  --tb-green: #0c4b4b;
  --tb-line: #dce5e2;
  --tb-mint: #edf7f3;
  color: var(--tb-ink);
}

.tb-decision-hub {
  max-width: 1180px;
  margin: 40px auto 64px;
  padding: clamp(24px, 4vw, 56px);
  background: linear-gradient(145deg, #fff 0%, #fbf8f5 50%, var(--tb-mint) 100%);
  border: 1px solid var(--tb-line);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(24, 39, 52, .08);
}

.tb-decision-hub__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  gap: 32px;
  align-items: end;
  margin-bottom: 30px;
}

.tb-decision-hub__eyebrow {
  margin: 0 0 8px;
  color: var(--tb-red);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tb-decision-hub h1,
.tb-decision-hub h2,
.tb-crypto-entry h2,
.tb-crypto-entry h3 {
  color: var(--tb-ink);
  letter-spacing: -.035em;
}

.tb-decision-hub__hero h2 {
	margin: 0 0 14px;
	font-size: clamp(2.1rem, 5vw, 4.1rem);
	line-height: 1.02;
}

.tb-decision-hub__hero p:not(.tb-decision-hub__eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--tb-muted);
  font-size: 1.08rem;
}

.tb-decision-hub__promise {
  display: grid;
  gap: 6px;
  padding: 22px;
  color: #fff;
  background: var(--tb-green);
  border-radius: 20px;
}

.tb-decision-hub__promise span { opacity: .82; }

.tb-decision-hub__filters {
  display: flex;
  gap: 8px;
  margin: 0 0 24px;
  padding-bottom: 4px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.tb-decision-hub__filters button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 9px 15px;
  color: var(--tb-ink);
  background: #fff;
  border: 1px solid var(--tb-line);
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.tb-decision-hub__filters button[aria-pressed="true"] {
  color: #fff;
  background: var(--tb-green);
  border-color: var(--tb-green);
}

.tb-decision-hub__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.tb-decision-hub__card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  min-height: 150px;
  padding: 22px;
  color: var(--tb-ink) !important;
  text-decoration: none !important;
  background: #fff;
  border: 1px solid var(--tb-line);
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(24, 39, 52, .05);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.tb-decision-hub__card:hover,
.tb-decision-hub__card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(240, 71, 82, .45);
  box-shadow: 0 16px 34px rgba(24, 39, 52, .1);
}

.tb-decision-hub__card[hidden] { display: none; }

.tb-decision-hub__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  font-size: 1.45rem;
  background: #fff1ef;
  border-radius: 14px;
}

.tb-decision-hub__card-copy { display: grid; gap: 8px; }
.tb-decision-hub__card-copy strong { font-size: 1.08rem; line-height: 1.25; }
.tb-decision-hub__card-copy span { color: var(--tb-muted); font-size: .93rem; line-height: 1.45; }
.tb-decision-hub__arrow { color: var(--tb-red); font-size: 1.35rem; font-weight: 800; }

.tb-decision-hub__method {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 24px;
  padding-top: 22px;
  color: var(--tb-muted);
  border-top: 1px solid var(--tb-line);
  font-size: .9rem;
}
.tb-decision-hub__method span::before { content: "✓"; margin-right: 6px; color: #0d765f; font-weight: 800; }

.tb-home-hub__catalog-link {
  align-items: center;
  color: #0b4746;
  display: inline-flex;
  font-weight: 750;
  gap: .55rem;
  justify-content: center;
  margin: 1.25rem auto 0;
  text-decoration: none;
  width: 100%;
}
.tb-home-hub__catalog-link:hover,
.tb-home-hub__catalog-link:focus-visible {
  color: #ef4655;
  text-decoration: underline;
  text-underline-offset: .25rem;
}

.tb-crypto-entry {
  margin: 34px 0 44px;
  padding: clamp(24px, 4vw, 44px);
  background: linear-gradient(145deg, #fff 0%, #fff8f5 100%);
  border: 1px solid #eadfd9;
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(24, 39, 52, .08);
}

.tb-crypto-entry header { max-width: 850px; margin-bottom: 24px; }
.tb-crypto-entry h2 { margin: 0 0 10px !important; font-size: clamp(1.7rem, 3vw, 2.6rem) !important; }
.tb-crypto-entry header > p:last-child { color: var(--tb-muted); }

.tb-crypto-entry__choices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.tb-crypto-entry__choices button {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 4px 12px;
  align-items: center;
  min-height: 116px;
  padding: 18px;
  color: var(--tb-ink);
  text-align: left;
  background: #fff;
  border: 1px solid #e4dfdc;
  border-radius: 18px;
  font: inherit;
  cursor: pointer;
}
.tb-crypto-entry__choices button:hover,
.tb-crypto-entry__choices button:focus-visible { border-color: var(--tb-red); box-shadow: 0 8px 22px rgba(240, 71, 82, .12); }
.tb-crypto-entry__choices button > span { grid-row: 1 / 3; font-size: 1.6rem; }
.tb-crypto-entry__choices strong { line-height: 1.25; }
.tb-crypto-entry__choices small { color: var(--tb-muted); line-height: 1.35; }

.tb-crypto-entry__result {
  margin-top: 22px;
  padding: clamp(22px, 3vw, 34px);
  color: #fff;
  background: var(--tb-green);
  border-radius: 20px;
}
.tb-crypto-entry__result[hidden] { display: none; }
.tb-crypto-entry__result h3 { margin: 0 0 12px !important; color: #fff; }
.tb-crypto-entry__result ul { margin: 14px 0 20px; }
.tb-crypto-entry__result li + li { margin-top: 6px; }
.tb-crypto-entry__guardrail { padding: 14px 16px; background: rgba(255,255,255,.1); border-radius: 12px; }
.tb-crypto-entry__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.tb-crypto-entry__actions a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 18px;
  color: #fff !important;
  font-weight: 800;
  text-decoration: none !important;
  background: var(--tb-red);
  border-radius: 12px;
}
.tb-crypto-entry__actions a.is-secondary { background: transparent; border: 1px solid rgba(255,255,255,.5); }
.tb-crypto-entry__restart { margin-top: 14px; }
.tb-crypto-entry__restart button { padding: 8px 0; color: var(--tb-green); background: transparent; border: 0; font: inherit; font-weight: 800; cursor: pointer; }
.tb-crypto-entry__disclosure { margin: 18px 0 0; color: var(--tb-muted); font-size: .8rem; }

.tb-decision-result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(120, 130, 140, .22);
  color: inherit;
  font-size: .78rem;
  opacity: .82;
}
.tb-decision-result-meta button { padding: 0; color: inherit; background: none; border: 0; text-decoration: underline; cursor: pointer; }

.tb-server-contextual-footer .cta-title { margin: 0 0 8px !important; font-size: 26px !important; font-weight: 800; }
.tb-server-contextual-footer__icon { display: grid; width: 150px; height: 150px; place-items: center; font-size: 4rem; background: #edf7f3; border-radius: 22px; }

@media (max-width: 920px) {
  .tb-decision-hub__hero { grid-template-columns: 1fr; }
  .tb-decision-hub__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .tb-decision-hub { margin: 18px 12px 40px; padding: 22px 16px; border-radius: 22px; }
  .tb-decision-hub__grid,
  .tb-crypto-entry__choices { grid-template-columns: 1fr; }
  .tb-decision-hub__card { min-height: 0; padding: 17px; }
  .tb-decision-hub__method { display: grid; }
  .tb-crypto-entry { margin: 24px 0 36px; padding: 22px 16px; border-radius: 20px; }
  .tb-crypto-entry__choices button { min-height: 96px; }
  .tb-crypto-entry__actions { display: grid; }
  .tb-crypto-entry__actions a { justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .tb-decision-hub__card { transition: none; }
}
