/**
 * Public marketing homepage — clean rebuild shell (dark premium SaaS).
 * Requires tokens.css; scoped with body.tb-public-home where useful.
 */

/* —— Simplified header on public home —— */
.tb-public-home .tb-topbar {
  min-height: 3.25rem;
  padding: var(--tb-space-2) var(--tb-space-4);
  background: rgba(5, 10, 18, 0.96);
}

.tb-public-home .tb-topbar__actions .tb-badge {
  display: none;
}

/* —— Main column —— */
.tb-public-main {
  flex: 1;
  width: 100%;
  max-width: min(100%, 72rem);
  margin-inline: auto;
  padding: 0 var(--tb-space-4) var(--tb-space-12);
}

@media (min-width: 48rem) {
  .tb-public-main {
    padding: 0 var(--tb-space-6) var(--tb-space-12);
  }
}

/* —— Hero —— */
.tb-public-hero {
  padding: var(--tb-space-10) 0 var(--tb-space-10);
  text-align: center;
  border-radius: 0 0 var(--tb-radius-xl) var(--tb-radius-xl);
  background:
    radial-gradient(ellipse 90% 70% at 50% -20%, rgba(45, 212, 191, 0.14), transparent 55%),
    linear-gradient(180deg, var(--tb-color-bg-panel) 0%, var(--tb-color-bg-base) 100%);
  border: 1px solid var(--tb-color-border-subtle);
  border-top: none;
  margin: 0 calc(-1 * var(--tb-space-4)) var(--tb-space-10);
  padding-inline: var(--tb-space-4);
}

@media (min-width: 48rem) {
  .tb-public-hero {
    margin-inline: calc(-1 * var(--tb-space-6));
    padding-inline: var(--tb-space-8);
  }
}

.tb-public-hero__inner {
  max-width: 44rem;
  margin-inline: auto;
}

.tb-public-hero__title {
  margin: 0 0 var(--tb-space-4);
  font-size: clamp(1.5rem, 4.5vw, 2.25rem);
  font-weight: var(--tb-font-heavy);
  letter-spacing: var(--tb-tracking-tight);
  line-height: var(--tb-leading-tight);
  color: var(--tb-color-text-primary);
}

.tb-public-hero__lead {
  margin: 0 0 var(--tb-space-5);
  font-size: var(--tb-text-base);
  line-height: var(--tb-leading-relaxed);
  color: var(--tb-color-text-secondary);
}

.tb-public-hero__sub {
  margin: 0 0 var(--tb-space-6);
  font-size: var(--tb-text-sm);
  line-height: var(--tb-leading-relaxed);
  color: var(--tb-color-text-muted);
}

.tb-public-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--tb-space-3);
  justify-content: center;
  align-items: center;
}

/* —— Dashboard preview panel —— */
.tb-public-preview {
  margin-bottom: var(--tb-space-10);
}

.tb-public-preview__label {
  margin: 0 0 var(--tb-space-3);
  font-size: var(--tb-text-xs);
  font-weight: var(--tb-font-heavy);
  letter-spacing: var(--tb-tracking-wide);
  text-transform: uppercase;
  color: var(--tb-color-accent);
}

.tb-public-preview__panel {
  border-radius: var(--tb-radius-lg);
  border: 1px solid var(--tb-color-border-subtle);
  background: linear-gradient(165deg, var(--tb-color-bg-panel) 0%, var(--tb-color-bg-inset) 100%);
  box-shadow: var(--tb-shadow-lg), var(--tb-shadow-inset-glow);
  padding: var(--tb-space-4);
  overflow: hidden;
}

.tb-public-preview__mock {
  display: grid;
  grid-template-columns: minmax(0, 5rem) minmax(0, 1fr);
  gap: var(--tb-space-3);
  min-height: 10rem;
}

@media (min-width: 40rem) {
  .tb-public-preview__mock {
    grid-template-columns: minmax(0, 6.5rem) minmax(0, 1fr) minmax(0, 5rem);
  }
}

.tb-public-preview__rail {
  border-radius: var(--tb-radius-sm);
  background: rgba(148, 163, 184, 0.08);
  border: 1px solid var(--tb-color-border-subtle);
}

.tb-public-preview__canvas {
  display: flex;
  flex-direction: column;
  gap: var(--tb-space-2);
}

.tb-public-preview__bar {
  height: 0.5rem;
  border-radius: var(--tb-radius-pill);
  background: rgba(148, 163, 184, 0.12);
}

.tb-public-preview__bar--accent {
  width: 55%;
  background: linear-gradient(90deg, var(--tb-color-accent-strong), var(--tb-color-accent));
}

.tb-public-preview__tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--tb-space-2);
}

.tb-public-preview__tile {
  min-height: 2.5rem;
  border-radius: var(--tb-radius-sm);
  background: rgba(45, 212, 191, 0.06);
  border: 1px solid rgba(45, 212, 191, 0.12);
}

.tb-public-preview__aside {
  display: none;
  border-radius: var(--tb-radius-sm);
  background: rgba(148, 163, 184, 0.06);
  border: 1px dashed var(--tb-color-border-strong);
}

@media (min-width: 40rem) {
  .tb-public-preview__aside {
    display: block;
  }
}

.tb-public-preview__caption {
  margin: var(--tb-space-3) 0 0;
  font-size: var(--tb-text-xs);
  color: var(--tb-color-text-muted);
  text-align: center;
}

/* —— Platform cards —— */
.tb-public-cards {
  margin-bottom: var(--tb-space-10);
}

.tb-public-cards__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--tb-dash-gap);
}

@media (min-width: 36rem) {
  .tb-public-cards__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 64rem) {
  .tb-public-cards__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.tb-public-card {
  border-radius: var(--tb-radius-lg);
  border: 1px solid var(--tb-color-border-subtle);
  padding: var(--tb-space-5);
  background: linear-gradient(155deg, var(--tb-color-bg-panel) 0%, var(--tb-color-bg-raised) 100%);
  min-height: 8rem;
  display: flex;
  flex-direction: column;
  gap: var(--tb-space-2);
}

.tb-public-card__icon {
  font-size: 1.35rem;
  line-height: 1;
  color: var(--tb-color-accent);
}

.tb-public-card__title {
  margin: 0;
  font-size: var(--tb-text-md);
  font-weight: var(--tb-font-heavy);
  color: var(--tb-color-text-primary);
}

.tb-public-card__text {
  margin: 0;
  font-size: var(--tb-text-sm);
  color: var(--tb-color-text-secondary);
  line-height: var(--tb-leading-snug);
}

/* —— Trust section —— */
.tb-public-trust {
  margin-bottom: var(--tb-space-10);
  padding: var(--tb-space-8) var(--tb-space-5);
  border-radius: var(--tb-radius-lg);
  border: 1px solid var(--tb-color-border-subtle);
  background: rgba(148, 163, 184, 0.04);
  text-align: center;
}

.tb-public-trust__title {
  margin: 0 0 var(--tb-space-3);
  font-size: var(--tb-text-xl);
  font-weight: var(--tb-font-heavy);
  color: var(--tb-color-text-primary);
}

.tb-public-trust__text {
  margin: 0 auto;
  max-width: 36rem;
  font-size: var(--tb-text-sm);
  color: var(--tb-color-text-secondary);
  line-height: var(--tb-leading-relaxed);
}

/* —— Final CTA —— */
.tb-public-final {
  padding: var(--tb-space-8) var(--tb-space-4);
  border-radius: var(--tb-radius-lg);
  border: 1px solid var(--tb-color-border-accent);
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.08), var(--tb-color-bg-panel));
  text-align: center;
}

.tb-public-final__title {
  margin: 0 0 var(--tb-space-3);
  font-size: var(--tb-text-lg);
  font-weight: var(--tb-font-heavy);
  color: var(--tb-color-text-primary);
}

.tb-public-final__text {
  margin: 0 0 var(--tb-space-5);
  font-size: var(--tb-text-sm);
  color: var(--tb-color-text-secondary);
}

.tb-public-final .tb-public-cta-row {
  justify-content: center;
}

/* UX-3.1 — mobile & conversion */
html, body { overflow-x: hidden; max-width: 100vw; }
.tb-public-cta-row--stack { flex-direction: column; align-items: stretch; width: 100%; max-width: 22rem; margin-inline: auto; }
.tb-btn--block-mobile { width: 100%; justify-content: center; }
@media (min-width: 30rem) {
  .tb-public-cta-row--stack { flex-direction: row; flex-wrap: wrap; max-width: none; align-items: center; justify-content: center; }
  .tb-btn--block-mobile { width: auto; }
}
.tb-interest-form { margin-top: var(--tb-space-6); text-align: left; max-width: 28rem; margin-inline: auto; padding: var(--tb-space-5); }
.tb-interest-form .tb-form-field { display: block; margin-top: var(--tb-space-4); }
.tb-interest-form .tb-form-field:first-of-type { margin-top: 0; }
.tb-interest-errors { margin: 0; padding-left: 1.25rem; text-align: left; }
.tb-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.tb-sample-table-wrap, .tb-checklist-sheet { overflow-x: auto; -webkit-overflow-scrolling: touch; }
@media (max-width: 480px) {
  .tb-public-hero { padding: var(--tb-space-8) var(--tb-space-3) var(--tb-space-8); margin-inline: calc(-1 * var(--tb-space-3)); }
  .tb-public-hero__title { font-size: clamp(1.35rem, 5vw, 1.75rem); }
  .tb-public-card { min-height: auto; }
  .tb-public-trust, .tb-public-final { padding: var(--tb-space-6) var(--tb-space-3); }
}

/* CCS-PUBLIC-4.0 */
.tb-public-journey {
  margin-bottom: var(--tb-space-10);
  padding: var(--tb-space-6) var(--tb-space-5);
  border-radius: var(--tb-radius-lg);
  border: 1px solid var(--tb-color-border-subtle);
  background: rgba(148, 163, 184, 0.04);
}

.tb-public-journey__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--tb-space-3);
  grid-template-columns: 1fr;
}

@media (min-width: 36rem) {
  .tb-public-journey__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 64rem) {
  .tb-public-journey__steps--numbered { grid-template-columns: 1fr; max-width: 40rem; margin-inline: auto; }
}

.tb-public-journey__steps li {
  padding: var(--tb-space-4);
  border-radius: var(--tb-radius-md);
  border: 1px solid var(--tb-color-border-subtle);
  background: var(--tb-color-bg-panel);
}

.tb-public-journey__steps li strong {
  display: block;
  color: var(--tb-color-accent);
  font-size: var(--tb-text-sm);
  margin-bottom: var(--tb-space-1);
}

.tb-public-journey__steps li span {
  display: block;
  font-size: var(--tb-text-sm);
  color: var(--tb-color-text-secondary);
  line-height: var(--tb-leading-snug);
}

.tb-public-badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: var(--tb-text-xs);
  font-weight: var(--tb-font-heavy);
  letter-spacing: 0.03em;
  margin-bottom: var(--tb-space-2);
}

.tb-public-badge--free {
  background: rgba(52, 211, 153, 0.12);
  color: #6ee7b7;
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.tb-public-badge--paid {
  background: rgba(45, 212, 191, 0.12);
  color: var(--tb-color-accent);
  border: 1px solid rgba(45, 212, 191, 0.3);
}

.tb-public-badge--live {
  background: rgba(52, 211, 153, 0.12);
  color: #6ee7b7;
  border: 1px solid rgba(52, 211, 153, 0.25);
}

.tb-public-badge--soon {
  background: rgba(251, 191, 36, 0.1);
  color: #fcd34d;
  border: 1px solid rgba(251, 191, 36, 0.25);
}

.tb-public-card--product {
  min-height: 10rem;
}

.tb-public-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--tb-space-2);
  margin-top: auto;
  padding-top: var(--tb-space-3);
}

.tb-sample-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--tb-space-3);
  justify-content: center;
  margin-bottom: var(--tb-space-6);
}

.tb-sample-includes {
  margin-top: var(--tb-space-6);
  padding-top: var(--tb-space-5);
  border-top: 1px solid var(--tb-color-border-subtle);
}

.tb-sample-includes h2 {
  font-size: var(--tb-text-md);
  margin: 0 0 var(--tb-space-3);
}

.tb-checklist-intro .tb-public-cards__grid {
  grid-template-columns: 1fr;
}

@media (min-width: 36rem) {
  .tb-checklist-intro .tb-public-cards__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media print {
  .tb-checklist-no-print { display: none !important; }
  .tb-checklist-print-only { display: block !important; }
  .tb-checklist-sheet {
    color: #000 !important;
    background: #fff !important;
    border: none !important;
    box-shadow: none !important;
  }
  .tb-checklist-sheet h2 { color: #000 !important; page-break-after: avoid; }
  .tb-checklist-sheet ul { color: #000; }
  .tb-checklist-sheet a { color: #000; }
  body.tb-checklist-print { background: #fff !important; }
  .tb-sample-no-print { display: none !important; }
  .tb-sample-sheet { color: #000 !important; background: #fff !important; }
  .tb-sample-table th { background: #eee !important; color: #000 !important; }
}

/* CCS-PUBLIC-4.1 */
.tb-public-cards__grid--two {
  grid-template-columns: 1fr;
}
@media (min-width: 40rem) {
  .tb-public-cards__grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.tb-public-trust__list {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  max-width: 36rem;
  text-align: left;
}

.tb-public-trust__list li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.25rem;
  font-size: var(--tb-text-sm);
  color: var(--tb-color-text-secondary);
  line-height: var(--tb-leading-relaxed);
}

.tb-public-trust__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--tb-color-accent);
  font-weight: var(--tb-font-heavy);
}

.tb-site-footer {
  margin-top: var(--tb-space-10);
  padding: var(--tb-space-8) var(--tb-space-4) var(--tb-space-10);
  border-top: 1px solid var(--tb-color-border-subtle);
  text-align: center;
}

.tb-site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--tb-space-3) var(--tb-space-5);
  justify-content: center;
  margin-bottom: var(--tb-space-4);
}

.tb-site-footer__nav a {
  color: var(--tb-color-accent);
  font-size: var(--tb-text-sm);
  text-decoration: none;
}

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

.tb-site-footer__text {
  margin: 0 0 var(--tb-space-2);
  font-size: var(--tb-text-sm);
  color: var(--tb-color-text-secondary);
  max-width: 40rem;
  margin-inline: auto;
}

.tb-site-footer__meta {
  margin: 0;
  font-size: var(--tb-text-xs);
  color: var(--tb-color-text-muted);
}

.tb-action-plan-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
  table-layout: fixed;
}

.tb-action-plan-table th,
.tb-action-plan-table td {
  border: 1px solid var(--tb-color-border-strong, #334155);
  padding: 0.5rem 0.4rem;
  vertical-align: top;
  word-wrap: break-word;
}

.tb-checklist-sheet__hint {
  font-size: var(--tb-text-sm);
  color: var(--tb-color-text-muted);
  margin: 0 0 var(--tb-space-3);
}

/* CCS-PUBLIC-4.2 / 4.2B — product proof visuals */
.tb-product-proof-section {
  max-width: var(--tb-content-wide, 64rem);
  margin: 0 auto var(--tb-space-8);
  padding: 0 var(--tb-space-4);
}

.tb-product-proof-split {
  display: grid;
  gap: var(--tb-space-6);
  align-items: center;
}

@media (min-width: 48rem) {
  .tb-product-proof-split {
    grid-template-columns: minmax(0, 1fr) minmax(12rem, 22rem);
  }
  .tb-product-proof-split--reverse {
    grid-template-columns: minmax(12rem, 22rem) minmax(0, 1fr);
  }
  .tb-product-proof-split--reverse .tb-product-proof-figure { order: -1; }
  .tb-product-proof-split--checklist,
  .tb-product-proof-split--toolkit {
    grid-template-columns: minmax(0, 1fr) minmax(14rem, 26rem);
  }
}

@media (min-width: 85.375rem) {
  .tb-product-proof-split--checklist,
  .tb-product-proof-split--toolkit {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 28rem);
  }
  .tb-product-proof-split {
    grid-template-columns: minmax(0, 1fr) minmax(14rem, 24rem);
  }
  .tb-product-proof-split--reverse {
    grid-template-columns: minmax(14rem, 24rem) minmax(0, 1fr);
  }
}

.tb-product-proof-split__copy {
  min-width: 0;
}

.tb-product-proof-figure,
.tb-product-proof__frame {
  margin: 0;
  max-width: 100%;
  min-width: 0;
}

.tb-product-proof__frame {
  padding: var(--tb-space-3);
  border-radius: var(--tb-radius-lg, 0.75rem);
  border: 1px solid var(--tb-color-border-subtle);
  background: var(--tb-color-surface-raised, rgba(15, 23, 42, 0.65));
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.tb-product-proof--hero {
  max-width: 28rem;
  margin-inline: auto;
}

.tb-product-proof--card {
  max-width: 10.5rem;
  margin-bottom: var(--tb-space-3);
}

.tb-product-proof--thumb {
  max-width: 3.75rem;
  padding: var(--tb-space-2);
  margin: 0;
  box-shadow: none;
}

.tb-product-proof-figure--checklist,
.tb-product-proof-figure--toolkit {
  max-width: 26rem;
  margin-inline: auto;
}

.tb-product-proof__img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--tb-radius-md, 0.5rem);
  border: 0;
  background: transparent;
  object-fit: contain;
  object-position: center top;
}

.tb-product-proof__img--hero {
  max-height: 18rem;
}

.tb-product-proof__img--card {
  max-height: 7.5rem;
}

.tb-product-proof__img--thumb {
  max-height: 3rem;
}

.tb-product-proof__caption {
  margin: var(--tb-space-3) 0 0;
  font-size: var(--tb-text-sm);
  color: var(--tb-color-text-secondary);
  line-height: var(--tb-leading-relaxed);
}

.tb-product-proof-built {
  max-width: var(--tb-content-wide, 64rem);
  margin: 0 auto var(--tb-space-8);
  padding: var(--tb-space-5) var(--tb-space-4);
  border: 1px solid var(--tb-color-border-subtle);
  border-radius: var(--tb-radius-lg, 0.75rem);
  background: var(--tb-color-surface-raised, rgba(15, 23, 42, 0.5));
}

.tb-product-proof-built__list {
  margin: var(--tb-space-4) 0 0;
  padding: 0;
  list-style: none;
}

.tb-product-proof-built__list li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.1rem;
  font-size: var(--tb-text-sm);
  color: var(--tb-color-text-secondary);
  line-height: var(--tb-leading-relaxed);
}

.tb-product-proof-built__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--tb-color-accent);
}

.tb-product-proof-section--ccs {
  padding-top: var(--tb-space-2);
  border-top: 1px solid var(--tb-color-border-subtle);
}

.tb-public-journey__steps {
  margin: var(--tb-space-4) 0 0;
}

.tb-sample-proof-header {
  display: flex;
  align-items: center;
  gap: var(--tb-space-3);
  margin-bottom: var(--tb-space-4);
}

.tb-sample-proof-icon.tb-product-proof--thumb {
  flex-shrink: 0;
}

.tb-public-card--soon .tb-public-card__text {
  color: var(--tb-color-text-muted);
}

@media print {
  .tb-product-proof-section,
  .tb-product-proof-built,
  .tb-product-proof-figure,
  .tb-product-proof__frame,
  .tb-product-proof--card,
  .tb-product-proof--hero,
  .tb-sample-proof-header { display: none !important; }
}

/* CCS-PUBLIC-4.2C — homepage visual hero rebuild */
.tb-home .tb-public-hero {
  text-align: center;
  padding-bottom: var(--tb-space-8);
}

.tb-home-hero-grid {
  display: grid;
  gap: var(--tb-space-8);
  align-items: center;
  max-width: 68rem;
  margin-inline: auto;
}

.tb-home-hero__copy {
  min-width: 0;
}

.tb-home-hero__eyebrow {
  margin: 0 0 var(--tb-space-3);
  font-size: var(--tb-text-xs);
  font-weight: var(--tb-font-heavy);
  letter-spacing: var(--tb-tracking-wide);
  text-transform: uppercase;
  color: var(--tb-color-accent);
}

.tb-home-hero__cta {
  margin-bottom: var(--tb-space-3);
}

.tb-home-hero__demo {
  margin: 0;
  font-size: var(--tb-text-sm);
}

.tb-home-hero__demo-link {
  color: var(--tb-color-accent);
  text-decoration: none;
  font-weight: var(--tb-font-medium, 500);
}

.tb-home-hero__demo-link:hover {
  text-decoration: underline;
}

.tb-home-hero-visual {
  position: relative;
  min-width: 0;
}

.tb-home-hero-visual__frame.tb-product-proof__frame {
  max-width: none;
  margin: 0;
  padding: var(--tb-space-2);
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.tb-home-hero-visual__frame::before {
  content: "";
  position: absolute;
  inset: 8% 0 -4% 0;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(45, 212, 191, 0.22), transparent 70%);
  pointer-events: none;
}

.tb-home-hero-visual .tb-product-proof__img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: clamp(14rem, 38vw, 22rem);
  object-fit: contain;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.45));
}

@media (min-width: 56rem) {
  .tb-home .tb-public-hero {
    text-align: left;
  }

  .tb-home-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: var(--tb-space-6) var(--tb-space-8);
  }

  .tb-home-hero__cta {
    justify-content: flex-start;
  }

  .tb-home-hero-visual .tb-product-proof__img {
    max-height: 24rem;
  }
}

.tb-home-journey {
  margin: 0 calc(-1 * var(--tb-space-4)) var(--tb-space-10);
  padding: var(--tb-space-8) var(--tb-space-4);
  border-radius: var(--tb-radius-xl);
  border: 1px solid var(--tb-color-border-subtle);
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(45, 212, 191, 0.06), transparent 55%),
    linear-gradient(180deg, rgba(30, 41, 59, 0.5) 0%, rgba(15, 23, 42, 0.35) 100%);
}

@media (min-width: 48rem) {
  .tb-home-journey {
    margin-inline: calc(-1 * var(--tb-space-6));
    padding-inline: var(--tb-space-8);
  }
}

.tb-home-journey__inner {
  max-width: 56rem;
  margin-inline: auto;
  text-align: center;
}

.tb-home-journey__title {
  margin: 0 0 var(--tb-space-6);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: var(--tb-font-heavy);
  color: var(--tb-color-text-primary);
  letter-spacing: var(--tb-tracking-tight);
}

.tb-home-journey-proof {
  margin-bottom: var(--tb-space-6);
}

.tb-home-journey-proof__visual.tb-product-proof__frame {
  max-width: 100%;
  margin-inline: auto;
  padding: var(--tb-space-3) var(--tb-space-4);
  border: 1px solid rgba(45, 212, 191, 0.15);
  background: rgba(15, 23, 42, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.tb-home-journey-proof .tb-product-proof__img {
  max-height: none;
  width: 100%;
  max-height: clamp(5.5rem, 18vw, 9.5rem);
  object-fit: contain;
}

@media (min-width: 48rem) {
  .tb-home-journey-proof .tb-product-proof__img {
    max-height: clamp(6.5rem, 12vw, 10.5rem);
  }
}

@media (min-width: 85.375rem) {
  .tb-home-journey-proof .tb-product-proof__img {
    max-height: 11rem;
  }
}

.tb-home-journey__steps {
  text-align: left;
}

@media (min-width: 48rem) {
  .tb-home-journey__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 64rem) {
  .tb-home-journey__steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.tb-home-offers,
.tb-home-coming {
  margin-bottom: var(--tb-space-10);
}

.tb-home-offers__grid {
  display: grid;
  gap: var(--tb-space-5);
  align-items: stretch;
}

@media (min-width: 40rem) {
  .tb-home-offers__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.tb-offer-card--visual {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  overflow: hidden;
}

.tb-offer-card__media {
  flex-shrink: 0;
  padding: var(--tb-space-4) var(--tb-space-4) 0;
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.45) 0%, transparent 100%);
}

.tb-offer-card__figure.tb-product-proof__frame {
  max-width: 100%;
  margin: 0;
  padding: var(--tb-space-2);
  border: 1px solid var(--tb-color-border-subtle);
  background: rgba(15, 23, 42, 0.5);
  box-shadow: none;
}

.tb-offer-card__media .tb-product-proof__img {
  max-height: 10rem;
  width: 100%;
  object-fit: contain;
}

.tb-offer-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--tb-space-4) var(--tb-space-5) var(--tb-space-5);
  min-width: 0;
}

@media (min-width: 40rem) {
  .tb-offer-card--visual {
    flex-direction: row;
    align-items: stretch;
  }

  .tb-offer-card__media {
    flex: 0 0 42%;
    max-width: 42%;
    padding: var(--tb-space-4);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .tb-offer-card__media .tb-product-proof__img {
    max-height: 11rem;
  }

  .tb-offer-card__body {
    flex: 1;
    padding: var(--tb-space-5);
  }
}

@media (max-width: 39.99rem) {
  .tb-offer-card--visual .tb-offer-card__media {
    padding-bottom: var(--tb-space-2);
  }
}

.tb-offer-card--compact {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--tb-space-4);
  padding: var(--tb-space-5);
}

.tb-offer-card__media--compact {
  flex: 0 0 auto;
  padding: 0;
  background: none;
}

.tb-offer-card__figure--thumb {
  max-width: 4.5rem;
}

.tb-offer-card--compact .tb-offer-card__body {
  padding: 0;
}

.tb-home-trust {
  margin-bottom: var(--tb-space-10);
}

.tb-home-final.tb-public-final {
  padding: var(--tb-space-10) var(--tb-space-5);
  background:
    radial-gradient(ellipse 90% 60% at 50% 100%, rgba(45, 212, 191, 0.12), transparent 60%),
    linear-gradient(135deg, rgba(45, 212, 191, 0.1), var(--tb-color-bg-panel));
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.tb-home-final .tb-public-final__title {
  font-size: clamp(1.25rem, 3vw, 1.625rem);
}

@media print {
  .tb-home-hero-visual,
  .tb-home-journey,
  .tb-offer-card__media { display: none !important; }
}
