:root {
  --font-size: 16px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --brand-blue: #1d4ed8;
  --brand-green: #16a34a;
  --brand-red: #dc2626;
  --brand-gold: #d4af37;
  --background: #f8fafc;
  --foreground: #111827;
  --card: #ffffff;
  --primary: #1d4ed8;
  --primary-dark: #1e40af;
  --primary-foreground: #ffffff;
  --secondary: #eef2ff;
  --muted: #f1f5f9;
  --muted-foreground: #6b7280;
  --border: #e5e7eb;
  --input-background: #f8fafc;
  --radius: 12px;
  --radius-lg: 16px;
  --container: 1280px;
  --sidebar-width: 340px;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-14: 3.5rem;
  --space-16: 4rem;
  --tbn-ad-spacing: var(--space-10);
  --tbn-gutter: var(--space-4);
}
@media (min-width: 768px) {
  :root { --tbn-gutter: var(--space-6); }
}

*, *::before, *::after { box-sizing: border-box; }
html { font-size: var(--font-size); scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.01em; margin: 0; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; }
::selection { background: rgba(29, 78, 216, 0.15); }

.tbn-site { min-height: 100vh; display: flex; flex-direction: column; background: var(--background); overflow-x: clip; max-width: 100%; }
.tbn-main { flex: 1; padding-bottom: 5rem; min-width: 0; max-width: 100%; }
@media (min-width: 1024px) { .tbn-main { padding-bottom: 0; } }

.tbn-container { width: 100%; max-width: var(--container); margin: 0 auto; padding: var(--space-6) var(--tbn-gutter); min-width: 0; box-sizing: border-box; }
.tbn-container-marketing { padding-top: var(--space-8); padding-bottom: var(--space-8); display: flex; flex-direction: column; gap: var(--space-16); }
.tbn-container-marketing--contact { gap: var(--space-14); }
.tbn-dept-stack { display: flex; flex-direction: column; gap: var(--space-4); }
.tbn-container-narrow { max-width: 820px; }
.tbn-stack { display: flex; flex-direction: column; gap: var(--space-10); min-width: 0; max-width: 100%; }
.tbn-stack > * { min-width: 0; max-width: 100%; }
.tbn-stack-sm { gap: var(--space-10); }
.tbn-stack-lg { gap: var(--space-16); }

.tbn-grid-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
.tbn-grid-stats > * { min-width: 0; }
@media (min-width: 1024px) { .tbn-grid-stats { grid-template-columns: repeat(4, 1fr); } }
.tbn-grid-2 { display: grid; gap: var(--space-4); }
@media (min-width: 640px) { .tbn-grid-2 { grid-template-columns: repeat(2, 1fr); } }
.tbn-grid-2-md { display: grid; gap: var(--space-4); grid-template-columns: 1fr; }
@media (min-width: 640px) { .tbn-grid-2-md { grid-template-columns: repeat(2, 1fr); } }
.tbn-gold-promo-grid { display: grid; gap: var(--space-6); }
@media (min-width: 768px) { .tbn-gold-promo-grid { grid-template-columns: repeat(2, 1fr); } }
.tbn-card-pad { padding: var(--space-6); }
.tbn-card-pad-lg { padding: var(--space-8); }
.tbn-contact-form-grid { display: grid; gap: var(--space-8); }
.tbn-page-intro { margin-top: var(--space-1); font-size: 2.75rem; font-weight: 700; }
.tbn-page-intro-desc { margin-top: var(--space-2); max-width: 42rem; font-size: 1rem; }
.tbn-empty-state { border-radius: var(--radius-lg); border: 1px dashed var(--border); background: var(--card); padding: var(--space-12) var(--space-6); text-align: center; }
.tbn-empty-state h2 { font-size: 1.25rem; font-weight: 700; }
.tbn-empty-state p { margin-top: var(--space-2); font-size: .9375rem; color: var(--muted-foreground); }
.tbn-gold-promo-card { display: flex; flex-direction: column; justify-content: space-between; gap: var(--space-4); }
.tbn-gold-promo-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-2); font-size: .8125rem; color: var(--muted-foreground); }
.tbn-gold-promo-features li { display: flex; align-items: center; gap: var(--space-2); }
.tbn-gold-promo-dot { width: .375rem; height: .375rem; border-radius: 999px; background: var(--brand-gold); flex-shrink: 0; }
.tbn-widget-empty { padding: var(--space-6) var(--space-4); text-align: center; font-size: .875rem; color: var(--muted-foreground); }

.font-display { font-family: var(--font-display); }
.font-body { font-family: var(--font-body); }
.font-numeric { font-family: var(--font-mono); font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.text-muted { color: var(--muted-foreground); }
.text-primary { color: var(--primary); }
.text-white { color: #fff; }
.text-brand-green { color: var(--brand-green); }

.shadow-soft { box-shadow: 0 1px 2px rgba(16,24,40,.04), 0 4px 16px rgba(16,24,40,.06); }
.shadow-soft-lg { box-shadow: 0 4px 12px rgba(16,24,40,.06), 0 12px 32px rgba(16,24,40,.1); }
.card-lift { transition: transform .25s ease, box-shadow .25s ease; }
.card-lift:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(16,24,40,.08), 0 20px 48px rgba(16,24,40,.12); }

@keyframes tbn-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.animate-marquee { animation: tbn-marquee 40s linear infinite; }
.animate-marquee-market { animation: tbn-marquee 60s linear infinite; }
.marquee-track:hover .animate-marquee,
.marquee-track:hover .animate-marquee-market { animation-play-state: paused; }
@keyframes tbn-pulse { 0% { box-shadow: 0 0 0 0 rgba(22,163,74,.55); } 70% { box-shadow: 0 0 0 6px rgba(22,163,74,0); } 100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); } }
@keyframes tbn-pulse-live { 0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6); opacity: 1; } 70% { box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); opacity: 0.85; } 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); opacity: 1; } }
.live-dot { animation: tbn-pulse 1.8s ease-out infinite; }
.no-scrollbar { scrollbar-width: none; -ms-overflow-style: none; }
.no-scrollbar::-webkit-scrollbar { display: none; }

.tbn-icon { width: 1em; height: 1em; display: inline-block; vertical-align: middle; }

/* Header */
.tbn-header { position: sticky; top: 0; z-index: 50; }
.tbn-header-bar { border-bottom: 1px solid var(--border); background: rgba(255,255,255,.9); backdrop-filter: blur(12px); }
.tbn-header-inner { max-width: var(--container); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 4rem; padding: 0 var(--tbn-gutter); }
.tbn-logo { display: flex; align-items: center; gap: .625rem; }
.tbn-logo-mark { width: 2.25rem; height: 2.25rem; display: grid; place-items: center; border-radius: .75rem; background: var(--primary); color: var(--primary-foreground); }
.tbn-logo-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; line-height: 1; }
.tbn-logo-tagline { font-size: .6875rem; font-weight: 500; text-transform: uppercase; letter-spacing: .25em; color: var(--muted-foreground); }
.tbn-custom-logo-wrap { display: flex; align-items: center; }
.tbn-custom-logo-wrap .custom-logo-link { display: flex; align-items: center; line-height: 0; }
.tbn-custom-logo-wrap .custom-logo { max-height: 48px; width: auto; max-width: 220px; height: auto; }
.tbn-custom-logo-wrap--footer .custom-logo { max-height: 40px; }
.tbn-search-btn { width: 2.25rem; height: 2.25rem; display: grid; place-items: center; border: 0; border-radius: .5rem; background: transparent; color: var(--muted-foreground); cursor: pointer; }
.tbn-search-btn:hover { background: var(--secondary); color: var(--foreground); }
.tbn-search-panel { border-top: 1px solid var(--border); background: var(--card); padding: .75rem 1rem; }
.tbn-search-form { max-width: var(--container); margin: 0 auto; display: flex; align-items: center; gap: .75rem; padding: 0 var(--tbn-gutter); border: 1px solid var(--primary); border-radius: .75rem; box-shadow: var(--shadow-soft); }
.tbn-search-form input { flex: 1; height: 2.75rem; border: 0; background: transparent; outline: none; font-size: .9375rem; }
.tbn-nav-desktop { display: none; border-top: 1px solid var(--border); }
@media (min-width: 1024px) { .tbn-nav-desktop { display: block; } }
.tbn-nav-desktop-inner { max-width: var(--container); margin: 0 auto; display: flex; gap: .25rem; overflow-x: auto; padding: 0 var(--tbn-gutter); }
.tbn-nav-link { position: relative; white-space: nowrap; padding: .625rem .75rem; font-size: .875rem; font-weight: 500; color: rgba(17,24,39,.8); transition: color .2s; }
.tbn-nav-link:hover, .tbn-nav-link.is-active { color: var(--primary); }
.tbn-nav-link.is-active::after { content: ''; position: absolute; left: .75rem; right: .75rem; bottom: 0; height: 2px; border-radius: 999px; background: var(--primary); }
.tbn-nav-mobile { border-bottom: 1px solid var(--border); background: var(--card); }
@media (min-width: 1024px) { .tbn-nav-mobile { display: none; } }
.tbn-nav-mobile-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .25rem; max-height: 70vh; overflow-y: auto; padding: .75rem; }
.tbn-nav-mobile-link { border-radius: .5rem; padding: .625rem .75rem; font-size: .9375rem; font-weight: 500; color: rgba(17,24,39,.8); }
.tbn-nav-mobile-link.is-active, .tbn-nav-mobile-link:hover { background: var(--secondary); color: var(--primary); }
.tbn-hidden { display: none !important; }

/* Mobile bottom nav */
.tbn-bottom-nav { position: fixed; inset: auto 0 0 0; z-index: 50; border-top: 1px solid var(--border); background: rgba(255,255,255,.95); backdrop-filter: blur(12px); }
@media (min-width: 1024px) { .tbn-bottom-nav { display: none; } }
.tbn-bottom-nav-inner { display: flex; justify-content: space-around; }
.tbn-bottom-nav a, .tbn-bottom-nav button { display: flex; flex-direction: column; align-items: center; gap: .25rem; padding: .625rem 0; font-size: .6875rem; font-weight: 500; color: var(--muted-foreground); background: none; border: 0; cursor: pointer; }
.tbn-bottom-nav a.is-active, .tbn-bottom-nav button.is-active { color: var(--primary); }
.tbn-bottom-nav svg { width: 1.25rem; height: 1.25rem; }

/* Footer */
.tbn-footer { margin-top: 4rem; border-top: 1px solid var(--border); background: #0b1220; color: #cbd5e1; }
.tbn-footer-inner { max-width: var(--container); margin: 0 auto; padding: 3.5rem var(--tbn-gutter); }
.tbn-footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .tbn-footer-grid { grid-template-columns: 1.4fr repeat(4, 1fr); } }
.tbn-footer-col h4 { font-family: var(--font-body); font-size: .875rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: #fff; margin-bottom: 1rem; }
.tbn-footer-col ul li { margin-bottom: .625rem; font-size: .875rem; }
.tbn-footer-col a { color: #94a3b8; transition: color .2s; }
.tbn-footer-col a:hover { color: #fff; }
.tbn-footer-newsletter { margin-top: 3rem; display: flex; flex-direction: column; gap: 1rem; align-items: center; text-align: center; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); background: rgba(255,255,255,.05); padding: 1.5rem; }
@media (min-width: 640px) { .tbn-footer-newsletter { flex-direction: row; text-align: left; } }
.tbn-newsletter-form { display: flex; flex-direction: column; width: 100%; gap: .5rem; margin-top: 1rem; }
.tbn-footer-newsletter .tbn-newsletter-form { margin-top: 0; }
.tbn-newsletter-form .tbn-btn { width: 100%; }
@media (min-width: 640px) {
  .tbn-footer-newsletter .tbn-newsletter-form { flex-direction: row; max-width: 28rem; }
  .tbn-footer-newsletter .tbn-newsletter-form .tbn-btn { width: auto; }
}
.tbn-footer-newsletter input { flex: 1; border-radius: .75rem; background: rgba(255,255,255,.1); border: 0; padding: .625rem .75rem; color: #fff; outline: none; }
.tbn-footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-direction: column; gap: .75rem; align-items: center; justify-content: space-between; font-size: .8125rem; color: #64748b; }
@media (min-width: 640px) { .tbn-footer-bottom { flex-direction: row; } }

/* Buttons & inputs */
.tbn-btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; border-radius: .75rem; padding: .625rem 1rem; font-size: .875rem; font-weight: 600; border: 0; cursor: pointer; transition: opacity .2s, background .2s; }
.tbn-btn-primary { background: var(--primary); color: var(--primary-foreground); }
.tbn-btn-primary:hover { opacity: .9; }
.tbn-btn-gold { background: var(--brand-gold); color: #fff; }
.tbn-btn-secondary { background: var(--secondary); color: var(--primary); }
.tbn-btn-white { background: #fff; color: var(--primary); }
.tbn-input { width: 100%; border-radius: .75rem; border: 1px solid var(--border); background: var(--input-background); padding: .625rem .875rem; font-size: .9375rem; outline: none; }
.tbn-input:focus { border-color: var(--primary); box-shadow: 0 0 0 2px rgba(29,78,216,.2); }
.tbn-newsletter-input { background: rgba(255,255,255,.15); border: 0; color: #fff; }
.tbn-newsletter-input::placeholder { color: #fff; opacity: 1; }
.tbn-newsletter-input::-webkit-input-placeholder { color: #fff; opacity: 1; }
.tbn-newsletter-input::-moz-placeholder { color: #fff; opacity: 1; }

/* Cards & badges */
.tbn-card { overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--card); box-shadow: 0 1px 2px rgba(16,24,40,.04), 0 4px 16px rgba(16,24,40,.06); }
.tbn-badge { display: inline-flex; align-items: center; width: max-content; max-width: 100%; white-space: nowrap; border-radius: 999px; padding: .125rem .625rem; font-size: .75rem; font-weight: 600; }
.tbn-badge-default { background: var(--secondary); color: var(--primary); }
.tbn-badge-markets { background: #eff6ff; color: #1d4ed8; }
.tbn-badge-commodities { background: #fffbeb; color: #b45309; }
.tbn-badge-economy { background: #ecfdf5; color: #047857; }
.tbn-badge-finance { background: #eef2ff; color: #4338ca; }
.tbn-badge-technology { background: #f5f3ff; color: #6d28d9; }
.tbn-badge-global { background: #ecfeff; color: #0e7490; }
.tbn-badge-opinion { background: #fff1f2; color: #be123c; }
.tbn-badge-business { background: #f1f5f9; color: #334155; }
.tbn-badge-gold { background: #fef9c3; color: #a16207; }

.tbn-impact-high { background: #fff1f2; color: #be123c; border-radius: 999px; padding: .125rem .5rem; font-size: .6875rem; font-weight: 600; }
.tbn-impact-medium { background: #fffbeb; color: #b45309; border-radius: 999px; padding: .125rem .5rem; font-size: .6875rem; font-weight: 600; }
.tbn-impact-low { background: #ecfdf5; color: #047857; border-radius: 999px; padding: .125rem .5rem; font-size: .6875rem; font-weight: 600; }

/* Section heading */
.tbn-section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1.25rem; }
.tbn-section-heading h2 { position: relative; padding-left: .875rem; font-size: 1.5rem; font-weight: 700; }
.tbn-section-heading h2::before { content: ''; position: absolute; left: 0; top: .25rem; width: 4px; height: calc(100% - .5rem); border-radius: 999px; background: var(--primary); }
.tbn-section-eyebrow { margin-bottom: .25rem; font-size: .8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--primary); }

/* Ad slot */
.tbn-ad-slot-wrap { margin-block: var(--tbn-ad-spacing); overflow: hidden; }
.tbn-ad-slot-wrap--sidebar { margin-block: 0; margin-top: var(--space-4); }
.tbn-ad-slot { position: relative; display: grid; place-items: center; overflow: hidden; border-radius: var(--radius-lg); border: 1px dashed var(--border); background: repeating-linear-gradient(45deg,#f8fafc,#f8fafc 12px,#f1f5f9 12px,#f1f5f9 24px); width: 100%; max-width: 100%; margin: 0 auto; }
.tbn-ad-slot--sized { width: 100%; max-width: calc(var(--tbn-ad-w, 970) * 1px); max-height: calc(var(--tbn-ad-h, 90) * 1px); aspect-ratio: var(--tbn-ad-w, 970) / var(--tbn-ad-h, 90); }
.tbn-ad-slot-wrap--sidebar .tbn-ad-slot { max-width: 100%; }
.tbn-ad-slot-label { font-size: .6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: .2em; color: var(--muted-foreground); }
.tbn-ad-slot-size { font-family: var(--font-mono); font-size: .8125rem; color: rgba(107,114,128,.7); }
.tbn-ad-slot--image { display: grid; place-items: center; border: 0; background: transparent; overflow: hidden; }
.tbn-ad-slot--image a { display: block; width: 100%; height: 100%; line-height: 0; }
.tbn-ad-slot--image > img { width: 100%; height: 100%; max-width: 100%; max-height: 100%; display: block; object-fit: contain; border-radius: var(--radius-lg); }
.tbn-ad-slot--image img { width: 100%; height: 100%; max-width: 100%; max-height: 100%; display: block; object-fit: contain; border-radius: var(--radius-lg); }
.tbn-forex-event { border-bottom: 1px solid var(--border); }
.tbn-forex-event-time { font-size: .8125rem; font-weight: 600; color: var(--muted-foreground); }
.tbn-forex-event-flag { font-size: 1.125rem; }
.tbn-forex-event-title { font-size: .875rem; font-weight: 500; margin: 0; }
.tbn-forex-event-currency { font-size: .75rem; color: var(--muted-foreground); margin: 0; }
.tbn-forex-event-link { display: flex; align-items: center; gap: .75rem; padding: .625rem 1rem; min-width: 0; color: inherit; text-decoration: none; transition: background .2s; }
.tbn-forex-event-link:hover { background: rgba(238,242,255,.4); }
.tbn-forex-event-row { display: flex; align-items: center; gap: .75rem; padding: .625rem 1rem; min-width: 0; }
.tbn-forex-event-main { min-width: 0; flex: 1; }
.tbn-forex-event-main p:first-child { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tbn-forex-impact { flex-shrink: 0; }

/* Market watch */
#tbn-market-watch { min-width: 0; max-width: 100%; }
.tbn-market-watch-header { display: flex; align-items: center; justify-content: space-between; gap: .5rem; margin-bottom: .75rem; }
.tbn-market-watch-title { display: flex; align-items: center; gap: .5rem; font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--muted-foreground); }
.tbn-market-dot { width: .5rem; height: .5rem; border-radius: 999px; background: var(--brand-green); }
.tbn-market-ticker { margin-top: 0; }
.tbn-market-ticker-label { background: var(--primary); }
.tbn-market-ticker-content { gap: 2.5rem; }
.tbn-market-ticker-item { display: inline-flex; align-items: center; gap: .5rem; white-space: nowrap; font-size: .875rem; }
.tbn-market-ticker-dot { color: var(--primary); font-weight: 600; }
.tbn-market-ticker-name { font-weight: 600; }
.tbn-market-ticker-symbol { font-size: .75rem; color: var(--muted-foreground); }
.tbn-market-ticker-price { font-weight: 600; }
.tbn-market-ticker-change { font-size: .8125rem; font-weight: 600; font-family: var(--font-mono); }
.tbn-market-scroll { display: flex; gap: 1rem; overflow-x: auto; padding-bottom: .25rem; scroll-snap-type: x mandatory; min-width: 0; max-width: 100%; -webkit-overflow-scrolling: touch; }
.tbn-market-card { position: relative; flex-shrink: 0; width: 230px; scroll-snap-align: start; border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--card); padding: 1rem; }
.tbn-market-card-sm { position: relative; flex: 1; border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--card); padding: 1rem; }
.tbn-market-live-dot { position: absolute; top: .75rem; right: .75rem; width: .5rem; height: .5rem; border-radius: 999px; }
.tbn-market-live-dot--up { background: var(--brand-green); animation: tbn-pulse 1.8s ease-out infinite; }
.tbn-market-live-dot--down { background: #ef4444; animation: tbn-pulse-live 1.8s ease-out infinite; }
.tbn-market-card-top { display: flex; align-items: center; gap: .625rem; }
.tbn-market-icon { width: 2.25rem; height: 2.25rem; display: grid; place-items: center; border-radius: .75rem; background: var(--secondary); color: var(--primary); }
.tbn-market-price { margin-top: .75rem; font-family: var(--font-mono); font-size: 1.25rem; }
.tbn-market-change { margin-top: .25rem; display: flex; align-items: center; gap: .25rem; font-size: .8125rem; font-weight: 600; font-family: var(--font-mono); }
.tbn-currency-picker { position: relative; }
.tbn-currency-btn { display: flex; align-items: center; gap: .375rem; border-radius: .5rem; border: 1px solid var(--border); background: var(--card); padding: .375rem .625rem; font-size: .8125rem; font-weight: 600; cursor: pointer; }
.tbn-currency-menu { position: absolute; right: 0; top: calc(100% + 6px); z-index: 50; width: 11rem; overflow: hidden; border-radius: .75rem; border: 1px solid var(--border); background: var(--card); box-shadow: 0 4px 12px rgba(16,24,40,.06), 0 12px 32px rgba(16,24,40,.1); }
.tbn-currency-menu button { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: .5rem; padding: .625rem .75rem; border: 0; background: transparent; cursor: pointer; font-size: .8125rem; }
.tbn-currency-menu button:hover { background: var(--secondary); }

/* News ticker */
.tbn-ticker { display: flex; align-items: stretch; overflow: hidden; border-radius: .75rem; border: 1px solid var(--border); background: var(--card); min-width: 0; max-width: 100%; }
.tbn-ticker-label { flex-shrink: 0; display: flex; align-items: center; gap: .375rem; background: var(--brand-red); color: #fff; padding: 0 .75rem; font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.tbn-ticker-track { position: relative; flex: 1; overflow: hidden; padding: .625rem 0; min-width: 0; }
.tbn-ticker-content { display: flex; width: max-content; align-items: center; gap: 2rem; white-space: nowrap; padding: 0 1.5rem; font-size: .875rem; }
.tbn-ticker-dot { color: var(--brand-red); font-weight: 600; margin-right: .5rem; }

/* Hero */
.tbn-hero { display: grid; gap: 1.5rem; min-width: 0; max-width: 100%; grid-template-columns: minmax(0, 1fr); }
.tbn-hero > * { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) { .tbn-hero { grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); } }

/* Featured card — mobile: image above heading (stacked) */
.tbn-hero-featured {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  aspect-ratio: auto;
  min-height: 0;
  min-width: 0;
  max-width: 100%;
}
.tbn-hero-featured img {
  position: relative;
  inset: auto;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  flex-shrink: 0;
}
.tbn-hero-overlay { display: none; }
.tbn-hero-content { position: relative; padding: 1rem 1.125rem 1.25rem; }
.tbn-hero-content h2 {
  max-width: 100%;
  margin-top: .5rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--foreground);
  overflow-wrap: anywhere;
  word-break: break-word;
}
.tbn-hero-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: .75rem;
  font-size: .8125rem;
  color: var(--muted-foreground);
  flex-wrap: wrap;
}

/* Featured card — tablet/desktop: image overlay with text on top */
@media (min-width: 768px) {
  .tbn-hero-featured {
    aspect-ratio: 16 / 9;
    justify-content: flex-end;
    background: #0f172a;
    border: 0;
  }
  .tbn-hero-featured img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    opacity: .9;
  }
  .tbn-hero-overlay {
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #020617, rgba(2,6,23,.6), transparent);
  }
  .tbn-hero-content { padding: 2rem; }
  .tbn-hero-content h2 {
    margin-top: .75rem;
    font-size: 2.375rem;
    line-height: 1.15;
    color: #fff;
  }
  .tbn-hero-meta { margin-top: 1rem; color: #cbd5e1; }
}

.tbn-hero-list li a { display: flex; align-items: flex-start; gap: .75rem; padding: .875rem; transition: background .2s; min-width: 0; }
.tbn-hero-list li a:hover { background: rgba(238,242,255,.4); }
.tbn-hero-list li a > div:not(.tbn-hero-list-thumb) { min-width: 0; flex: 1 1 auto; }
.tbn-hero-list-thumb {
  width: 5rem;
  height: 5rem;
  min-width: 5rem;
  max-width: 5rem;
  min-height: 5rem;
  max-height: 5rem;
  flex: 0 0 5rem;
  align-self: flex-start;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: .75rem;
  background: var(--muted);
  position: relative;
}
.tbn-hero-list-thumb img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
.tbn-dot-sep { width: .25rem; height: .25rem; border-radius: 999px; background: #64748b; }

/* Article card */
.tbn-article-card { display: flex; flex-direction: column; overflow: hidden; height: 100%; border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--card); min-width: 0; max-width: 100%; }
.tbn-article-card-image { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--muted); flex-shrink: 0; }
.tbn-article-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.tbn-article-card:hover .tbn-article-card-image img { transform: scale(1.05); }
.tbn-article-card-body { display: flex; flex: 1; flex-direction: column; padding: 1rem; }
.tbn-article-card-title { font-size: 1.125rem; font-weight: 600; line-height: 1.35; min-height: 3.0375rem; transition: color .2s; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; }
.tbn-article-card:hover .tbn-article-card-title { color: var(--primary); }
.tbn-article-card-excerpt { margin-top: .5rem; font-size: .875rem; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; min-height: calc(0.875rem * 1.45 * 2); max-height: calc(0.875rem * 1.45 * 2); }
.tbn-article-card-meta { display: flex; align-items: center; gap: .75rem; margin-top: auto; padding-top: 1rem; font-size: .8125rem; color: var(--muted-foreground); flex-wrap: wrap; }

.tbn-grid-news { display: grid; gap: var(--space-5); align-items: stretch; min-width: 0; max-width: 100%; }
.tbn-grid-news > * { min-width: 0; max-width: 100%; }
@media (min-width: 640px) { .tbn-grid-news { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .tbn-grid-news { grid-template-columns: repeat(3, 1fr); } }
.tbn-blog-main { display: flex; flex-direction: column; min-width: 0; }
.tbn-pagination { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: .375rem; margin-top: 2rem; }
.tbn-pagination-link { display: inline-grid; place-items: center; min-width: 2.25rem; height: 2.25rem; padding: 0 .5rem; border-radius: .5rem; border: 1px solid var(--border); background: var(--card); font-size: .875rem; font-weight: 600; color: var(--muted-foreground); text-decoration: none; transition: background .2s, color .2s; }
.tbn-pagination-link:hover { background: var(--secondary); color: var(--foreground); }
.tbn-pagination-link.current { background: var(--primary); border-color: var(--primary); color: #fff; }
.tbn-pagination .dots { border: 0; background: transparent; min-width: auto; padding: 0 .25rem; }

.tbn-layout-sidebar { display: grid; gap: var(--space-8); min-width: 0; max-width: 100%; grid-template-columns: minmax(0, 1fr); }
.tbn-layout-sidebar > * { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) { .tbn-layout-sidebar { grid-template-columns: minmax(0, 1fr) var(--sidebar-width); } }
.tbn-sidebar, .tbn-widget-card { min-width: 0; max-width: 100%; }

/* Sidebar widget */
.tbn-widget-card { overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--card); margin-bottom: 1.5rem; }
.tbn-widget-header { display: flex; align-items: center; gap: .5rem; border-bottom: 1px solid var(--border); padding: .75rem 1rem; font-size: .875rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.tbn-widget-header svg { width: 1rem; height: 1rem; color: var(--primary); }

/* Gold widget */
.tbn-gold-header { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; background: linear-gradient(to right, #d4af37, #b8860b); color: #fff; }
.tbn-gold-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--border); }
.tbn-gold-grid > div { padding: 1rem; text-align: center; border-right: 1px solid var(--border); }
.tbn-gold-grid > div:last-child { border-right: 0; }

/* Calculator */
.tbn-calc-layout { display: grid; gap: 1.5rem; align-items: stretch; }
@media (min-width: 1024px) { .tbn-calc-layout { grid-template-columns: 1fr .9fr; } }
.tbn-calc-tabs { display: grid; grid-template-columns: repeat(2, 1fr); gap: .25rem; padding: 1rem; }
.tbn-calc-tab { display: flex; align-items: center; justify-content: center; gap: .5rem; border-radius: .75rem; padding: .625rem .75rem; font-size: .875rem; font-weight: 600; border: 0; cursor: pointer; background: var(--secondary); color: var(--muted-foreground); }
.tbn-calc-tab.is-active { background: var(--primary); color: var(--primary-foreground); }
.tbn-calc-fields { display: grid; gap: 1rem; padding: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .tbn-calc-fields { grid-template-columns: repeat(2, 1fr); } }
.tbn-calc-field label span { display: block; margin-bottom: .375rem; font-size: .8125rem; font-weight: 600; }
.tbn-calc-result-card { display: flex; flex-direction: column; height: 100%; }
.tbn-calc-result-header { display: flex; align-items: center; gap: .75rem; border-bottom: 1px solid var(--border); padding: 1.25rem; }
.tbn-calc-result-header-icon { width: 2.75rem; height: 2.75rem; display: grid; place-items: center; border-radius: .75rem; background: linear-gradient(to bottom right, #16a34a, #15803d); color: #fff; flex-shrink: 0; }
.tbn-calc-result-heading { font-size: 1.375rem; font-weight: 700; margin: 0; }
.tbn-calc-result-subheading { font-size: .8125rem; margin: 0; }
.tbn-calc-result-body { flex: 1; }
.tbn-calc-result-total-wrap { margin-top: auto; position: relative; overflow: hidden; padding: 1.5rem; background: linear-gradient(to bottom right, #16a34a, #15803d); color: #fff; }
.tbn-calc-result-total { margin-top: .25rem; font-family: var(--font-mono); font-size: 2rem; font-weight: 700; line-height: 1; word-break: break-all; }
@media (min-width: 640px) { .tbn-calc-result-total { font-size: 2.5rem; } }
.tbn-calc-row { display: flex; align-items: center; justify-content: space-between; gap: .5rem; padding: .875rem 1.25rem; border-bottom: 1px solid var(--border); }
.tbn-calc-row-highlight { background: #ecfdf5; }

/* Page hero (static pages) */
.tbn-page-hero { position: relative; overflow: hidden; border-radius: 1.5rem; background: linear-gradient(to bottom right, #0f172a, #0f172a, var(--primary)); padding: 3.5rem var(--space-6); text-align: center; }
@media (min-width: 768px) { .tbn-page-hero { padding: var(--space-16) var(--space-12); } }
.tbn-page-hero--left { text-align: left; }
.tbn-page-hero-eyebrow { font-size: .8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: .2em; color: #93c5fd; }
.tbn-page-hero-desc { margin-top: var(--space-4); max-width: 42rem; font-size: 1.125rem; color: #cbd5e1; }
.tbn-page-hero-desc--center { margin-left: auto; margin-right: auto; }
.tbn-page-hero-actions { margin-top: var(--space-6); display: flex; flex-wrap: wrap; gap: var(--space-3); }
.tbn-stat-value { font-size: 2rem; font-weight: 700; color: var(--primary); margin: 0; }
.tbn-stat-label { margin-top: var(--space-1); }
.tbn-section-title-center { text-align: center; margin-bottom: var(--space-6); }
.tbn-page-hero h1 { margin-top: .75rem; font-size: 2.25rem; font-weight: 700; line-height: 1.15; color: #fff; }
@media (min-width: 768px) { .tbn-page-hero h1 { font-size: 3rem; } }

/* 404 page */
.tbn-error-page { display: flex; flex-direction: column; gap: var(--space-10); padding-bottom: var(--space-10); }
.tbn-error-hero { margin-top: var(--space-2); }
.tbn-error-code { margin: 0; font-family: var(--font-display); font-size: 4.5rem; font-weight: 700; line-height: 1; color: rgba(255,255,255,.18); }
@media (min-width: 768px) { .tbn-error-code { font-size: 6rem; } }
.tbn-error-search { max-width: 42rem; margin: 0 auto; width: 100%; }
.tbn-error-search-form { max-width: none; box-shadow: 0 1px 2px rgba(16,24,40,.04), 0 4px 16px rgba(16,24,40,.06); }
.tbn-error-recent { margin-top: var(--space-2); }

/* Blog listing */
.tbn-blog-featured {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--card);
  min-width: 0;
  max-width: 100%;
  grid-template-columns: minmax(0, 1fr);
}
.tbn-blog-featured > * {
  min-width: 0;
  max-width: 100%;
}
@media (min-width: 768px) {
  .tbn-blog-featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.tbn-blog-featured .tbn-badge,
.tbn-blog-featured .tbn-card-pad > .tbn-badge { align-self: flex-start; }
.tbn-blog-featured-title {
  margin-top: .75rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.tbn-blog-featured-excerpt {
  margin-top: .75rem;
  font-size: .9375rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.tbn-filter-bar { display: flex; gap: .5rem; overflow-x: auto; padding-bottom: .25rem; }
.tbn-filter-btn { white-space: nowrap; border-radius: 999px; border: 1px solid var(--border); background: var(--card); padding: .5rem 1rem; font-size: .875rem; font-weight: 500; cursor: pointer; }
.tbn-filter-btn.is-active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* Single post */
.tbn-breadcrumb {
  display: flex;
  align-items: center;
  gap: .375rem;
  font-size: .8125rem;
  color: var(--muted-foreground);
  flex-wrap: wrap;
  min-width: 0;
  max-width: 100%;
}
.tbn-breadcrumb a:hover { color: var(--primary); }
.tbn-breadcrumb > span {
  min-width: 0;
  flex: 1 1 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.tbn-single-layout {
  display: grid;
  gap: var(--space-10);
  margin-top: var(--space-6);
  min-width: 0;
  max-width: 100%;
  grid-template-columns: minmax(0, 1fr);
}
.tbn-single-layout > * {
  min-width: 0;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .tbn-single-layout {
    grid-template-columns: minmax(0, 1fr) var(--sidebar-width);
  }
}
.tbn-related-section { margin-top: 3.5rem; min-width: 0; max-width: 100%; }
.tbn-single-title {
  margin-top: .75rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}
@media (min-width: 768px) { .tbn-single-title { font-size: 2.625rem; line-height: 1.15; } }
.tbn-single-excerpt {
  margin-top: .75rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.tbn-highlights { margin-top: 2rem; border-radius: var(--radius-lg); border: 1px solid var(--border); background: rgba(238,242,255,.4); padding: 1.25rem; min-width: 0; max-width: 100%; }
.tbn-highlights li { display: flex; gap: .625rem; margin-bottom: .5rem; font-size: .9375rem; min-width: 0; }
.tbn-highlights li > * { min-width: 0; overflow-wrap: anywhere; word-break: break-word; }
.tbn-highlights li::before { content: ''; width: .375rem; height: .375rem; border-radius: 999px; background: var(--primary); margin-top: .5rem; flex-shrink: 0; }
.tbn-prose {
  margin-top: 2rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(17,24,39,.9);
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.tbn-prose p,
.tbn-prose li,
.tbn-prose h1,
.tbn-prose h2,
.tbn-prose h3,
.tbn-prose h4,
.tbn-prose h5,
.tbn-prose h6,
.tbn-prose blockquote {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.tbn-prose p { margin: 0 0 1.25rem; }
.tbn-prose p:last-child { margin-bottom: 0; }

/* Article heading hierarchy — tight line-height so wrapped lines don't look double-spaced */
.tbn-prose h1,
.tbn-prose h2,
.tbn-prose h3,
.tbn-prose h4,
.tbn-prose h5,
.tbn-prose h6,
.tbn-prose .wp-block-heading {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 1.75rem 0 .75rem;
}
.tbn-prose h1,
.tbn-prose h1.wp-block-heading { font-size: 1.75rem; }
.tbn-prose h2,
.tbn-prose h2.wp-block-heading { font-size: 1.5rem; }
.tbn-prose h3,
.tbn-prose h3.wp-block-heading { font-size: 1.25rem; }
.tbn-prose h4,
.tbn-prose h4.wp-block-heading {
  font-size: 1.125rem;
  font-family: var(--font-body);
  line-height: 1.35;
}
.tbn-prose h5,
.tbn-prose h5.wp-block-heading,
.tbn-prose h6,
.tbn-prose h6.wp-block-heading {
  font-size: 1rem;
  font-family: var(--font-body);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.tbn-prose h1:first-child,
.tbn-prose h2:first-child,
.tbn-prose h3:first-child,
.tbn-prose h4:first-child,
.tbn-prose .wp-block-heading:first-child {
  margin-top: 0;
}
/* If a title was split across consecutive heading blocks, keep them visually tight */
.tbn-prose h1 + h1,
.tbn-prose h2 + h2,
.tbn-prose h3 + h3,
.tbn-prose h4 + h4,
.tbn-prose .wp-block-heading + .wp-block-heading {
  margin-top: .15rem;
}
@media (max-width: 767px) {
  .tbn-prose h1,
  .tbn-prose h1.wp-block-heading { font-size: 1.5rem; line-height: 1.2; margin: 1.25rem 0 .5rem; }
  .tbn-prose h2,
  .tbn-prose h2.wp-block-heading { font-size: 1.3125rem; line-height: 1.22; margin: 1.25rem 0 .5rem; }
  .tbn-prose h3,
  .tbn-prose h3.wp-block-heading { font-size: 1.125rem; line-height: 1.3; margin: 1rem 0 .5rem; }
  .tbn-prose h4,
  .tbn-prose h4.wp-block-heading { font-size: 1.0625rem; margin: 1rem 0 .5rem; }
}

/* Restore lists inside article body (global ul/ol resets list-style) */
.tbn-prose ul,
.tbn-prose ol {
  margin: 0 0 1.25rem;
  padding-left: 1.35rem;
  list-style: revert;
}
.tbn-prose ul { list-style-type: disc; }
.tbn-prose ol { list-style-type: decimal; }
.tbn-prose li { margin: 0 0 .4rem; padding-left: .15rem; line-height: 1.6; }
.tbn-prose li:last-child { margin-bottom: 0; }
.tbn-prose li > ul,
.tbn-prose li > ol { margin: .4rem 0 .25rem; }

.tbn-prose blockquote {
  margin: 0 0 1.25rem;
  padding: .75rem 1rem;
  border-left: 3px solid var(--primary);
  background: rgba(238,242,255,.35);
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.6;
}
.tbn-prose hr {
  margin: 1.5rem 0;
  border: 0;
  border-top: 1px solid var(--border);
}
.tbn-prose a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }

.tbn-prose img,
.tbn-prose video,
.tbn-prose iframe,
.tbn-prose embed,
.tbn-prose object,
.tbn-prose svg,
.tbn-prose figure,
.tbn-prose .wp-block-image,
.tbn-prose .wp-block-embed,
.tbn-prose .wp-block-video,
.tbn-prose .wp-block-media-text,
.tbn-prose .wp-block-group,
.tbn-prose .wp-block-columns,
.tbn-prose .wp-block-column {
  max-width: 100% !important;
  height: auto;
}
.tbn-prose iframe,
.tbn-prose embed,
.tbn-prose video {
  width: 100%;
}
.tbn-prose .alignfull,
.tbn-prose .alignwide {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}
.tbn-prose pre,
.tbn-prose code {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  white-space: pre-wrap;
  word-break: break-word;
}
.tbn-prose .wp-block-table,
.tbn-prose figure:has(table),
.tbn-prose > table {
  margin: 1.5rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  display: block;
}
@media (max-width: 767px) {
  .tbn-prose .wp-block-table,
  .tbn-prose figure:has(table),
  .tbn-prose > table { box-shadow: inset -12px 0 12px -12px rgba(0, 0, 0, 0.08); }
}
.tbn-prose table { width: max-content; min-width: 100%; border-collapse: collapse; font-size: .875rem; line-height: 1.4; }
.tbn-prose th,
.tbn-prose td { padding: .625rem .75rem; border: 1px solid var(--border); text-align: left; vertical-align: top; white-space: nowrap; }
.tbn-prose th { background: var(--muted); font-weight: 600; }
.tbn-prose td:first-child,
.tbn-prose th:first-child { white-space: normal; min-width: 7rem; }

/* Utilities */
.tbn-up { color: var(--brand-green); }
.tbn-down { color: var(--brand-red); }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Marketing pages */
.tbn-page-hero-glow { pointer-events: none; position: absolute; border-radius: 999px; filter: blur(48px); }
.tbn-page-hero-glow--gold { right: -2.5rem; top: -2.5rem; width: 16rem; height: 16rem; background: rgba(212,175,55,.1); }
.tbn-page-hero-glow--blue { bottom: -4rem; left: -2.5rem; width: 18rem; height: 18rem; background: rgba(29,78,216,.3); }
.tbn-page-hero-inner { position: relative; }
.tbn-page-hero--story h1 { max-width: 48rem; }
@media (min-width: 768px) { .tbn-page-hero--story h1 { font-size: 3.25rem; } }
.tbn-icon-box { width: 2.75rem; height: 2.75rem; display: grid; place-items: center; border-radius: .75rem; background: var(--secondary); color: var(--primary); }
.tbn-icon-box-sm { width: 2.5rem; height: 2.5rem; }
.tbn-detail-card { display: block; padding: 1.25rem; overflow: visible; }
.tbn-card.tbn-detail-card { overflow: visible; }
.tbn-detail-card .tbn-icon-box { margin-bottom: .75rem; }
.tbn-detail-label { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--muted-foreground); }
.tbn-detail-value { margin-top: .125rem; font-size: .875rem; font-weight: 500; line-height: 1.45; overflow-wrap: anywhere; word-break: break-word; hyphens: auto; }
.tbn-marketing-grid-form { display: grid; gap: var(--space-8); }
@media (min-width: 1024px) { .tbn-marketing-grid-form { grid-template-columns: 1.3fr 1fr; } }
.tbn-marketing-grid-2 { display: grid; gap: var(--space-8); align-items: stretch; }
@media (min-width: 1024px) { .tbn-marketing-grid-2 { grid-template-columns: repeat(2, 1fr); } }
.tbn-marketing-grid-3 { display: grid; gap: var(--space-5); }
@media (min-width: 640px) { .tbn-marketing-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tbn-marketing-grid-3 { grid-template-columns: repeat(3, 1fr); } }
.tbn-marketing-grid-4 { display: grid; gap: var(--space-5); }
@media (min-width: 768px) { .tbn-marketing-grid-4 { grid-template-columns: repeat(4, 1fr); } }
.tbn-section-title-center h2 { margin-top: .25rem; font-size: 1.75rem; font-weight: 700; }
.tbn-form-label { display: block; margin-bottom: .375rem; font-size: .8125rem; font-weight: 600; }
.tbn-form-stack { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.25rem; }
.tbn-form-feedback { margin: 0; font-size: .875rem; font-weight: 500; }
.tbn-form-feedback.is-success { color: var(--brand-green, #16a34a); }
.tbn-form-feedback.is-error { color: #dc2626; }
.tbn-footer-newsletter .tbn-form-feedback { color: #86efac; }
.tbn-footer-newsletter .tbn-form-feedback.is-error { color: #fca5a5; }
.tbn-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.tbn-btn.is-loading { opacity: .7; cursor: wait; }
.tbn-dept-card { padding: 1.25rem; }
.tbn-dept-head { display: flex; align-items: center; gap: .75rem; }
.tbn-dept-head h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; margin: 0; }
.tbn-social-row { display: flex; align-items: center; gap: .75rem; margin-top: .75rem; }
.tbn-social-row--footer { margin-top: 1.25rem; }
.tbn-social-link { width: 2.5rem; height: 2.5rem; display: grid; place-items: center; border-radius: .5rem; background: var(--secondary); color: var(--primary); transition: background .2s, color .2s; }
.tbn-social-link:hover { background: var(--primary); color: var(--primary-foreground); }
.tbn-social-row--footer .tbn-social-link { background: rgba(255,255,255,.05); color: #cbd5e1; }
.tbn-social-row--footer .tbn-social-link:hover { background: var(--primary); color: #fff; }
.tbn-footer-tagline { margin-top: 1rem; max-width: 20rem; font-size: .875rem; line-height: 1.6; color: #94a3b8; }
.tbn-footer-newsletter-text { flex: 1; }
.tbn-footer-newsletter-title { font-size: 1.125rem; font-weight: 600; color: #fff; margin: 0; }
.tbn-footer-newsletter-desc { font-size: .875rem; color: #94a3b8; margin: 0; }
.tbn-footer-bottom-links { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.tbn-footer-bottom-links a { color: #64748b; transition: color .2s; }
.tbn-footer-bottom-links a:hover { color: #fff; }
.tbn-footer-bottom-sep { width: .25rem; height: .25rem; border-radius: 999px; background: #475569; }
.tbn-faq { max-width: 42rem; margin: 0 auto; overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--card); box-shadow: 0 1px 2px rgba(16,24,40,.04), 0 4px 16px rgba(16,24,40,.06); }
.tbn-faq-item { border-bottom: 1px solid var(--border); }
.tbn-faq-item:last-child { border-bottom: 0; }
.tbn-faq-trigger { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: .75rem; padding: 1rem 1.25rem; border: 0; background: transparent; font-size: .9375rem; font-weight: 500; text-align: left; cursor: pointer; }
.tbn-faq-trigger:hover { background: rgba(238,242,255,.4); }
.tbn-faq-icon { font-size: 1.25rem; line-height: 1; color: var(--muted-foreground); }
.tbn-faq-answer { display: none; padding: 0 1.25rem 1rem; font-size: .875rem; line-height: 1.6; color: var(--muted-foreground); }
.tbn-faq-item.is-open .tbn-faq-answer { display: block; }
.tbn-quote-card { display: flex; flex-direction: column; justify-content: center; padding: 2rem; border-radius: 1.5rem; border: 1px solid var(--border); background: linear-gradient(to bottom right, var(--primary), var(--primary-dark)); color: #fff; box-shadow: 0 1px 2px rgba(16,24,40,.04), 0 4px 16px rgba(16,24,40,.06); }
@media (min-width: 768px) { .tbn-quote-card { padding: 2.5rem; } }
.tbn-quote-card p { margin: 0; }
.tbn-quote-text { margin-top: .75rem; font-family: var(--font-display); font-size: 1.375rem; font-weight: 600; line-height: 1.35; }
@media (min-width: 768px) { .tbn-quote-text { font-size: 1.625rem; } }
.tbn-quote-author { margin-top: 1rem; font-size: .875rem; font-weight: 500; color: #bfdbfe; }
.tbn-value-card .tbn-icon-box { margin-bottom: 1rem; }
.tbn-value-card h3 { font-family: var(--font-body); font-size: 1.125rem; font-weight: 600; margin: 0; }
.tbn-timeline-year { font-family: var(--font-mono); font-size: .8125rem; font-weight: 700; color: var(--brand-gold); }
.tbn-timeline-step { width: 1.75rem; height: 1.75rem; display: grid; place-items: center; border-radius: 999px; background: var(--primary); font-size: .8125rem; font-weight: 700; color: #fff; }
.tbn-timeline-head { display: flex; align-items: center; gap: .5rem; margin-top: .5rem; }
.tbn-team-avatar { width: 4rem; height: 4rem; margin: 0 auto; display: grid; place-items: center; border-radius: 999px; background: linear-gradient(to bottom right, var(--primary), var(--primary-dark)); font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: #fff; }
.tbn-cta-banner { overflow: hidden; border-radius: 1.5rem; border: 1px solid var(--border); background: linear-gradient(to bottom right, #fff, rgba(238,242,255,.6)); padding: 2rem; text-align: center; box-shadow: 0 1px 2px rgba(16,24,40,.04), 0 4px 16px rgba(16,24,40,.06); }
@media (min-width: 768px) { .tbn-cta-banner { padding: 3rem; } }
.tbn-cta-banner h2 { font-size: 1.75rem; font-weight: 700; margin: 0; }
@media (min-width: 768px) { .tbn-cta-banner h2 { font-size: 2.125rem; } }
.tbn-cta-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .75rem; margin-top: 1.5rem; }
.tbn-btn-outline-white { display: inline-flex; align-items: center; justify-content: center; border-radius: .75rem; border: 1px solid rgba(255,255,255,.3); padding: .75rem 1.25rem; font-size: .9375rem; font-weight: 600; color: #fff; transition: background .2s; }
.tbn-btn-outline-white:hover { background: rgba(255,255,255,.1); }
.tbn-stat-card .tbn-icon-box { margin-bottom: .75rem; }
.tbn-stat-card .tbn-stat-value { font-family: var(--font-mono); font-size: 1.75rem; }
.tbn-format-specs { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); list-style: none; }
.tbn-format-specs li { display: flex; align-items: center; gap: .5rem; margin-bottom: .5rem; font-size: .8125rem; color: rgba(17,24,39,.8); }
.tbn-format-specs li:last-child { margin-bottom: 0; }
.tbn-format-specs svg { flex-shrink: 0; color: var(--brand-green); }
.tbn-audience-panel { display: grid; gap: 1.5rem; overflow: hidden; border-radius: 1.5rem; background: linear-gradient(to bottom right, var(--primary), var(--primary-dark)); padding: 1.5rem; color: #fff; box-shadow: 0 1px 2px rgba(16,24,40,.04), 0 4px 16px rgba(16,24,40,.06); }
@media (min-width: 768px) { .tbn-audience-panel { grid-template-columns: repeat(2, 1fr); padding: 2.5rem; } }
.tbn-audience-panel h2 { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: #fff; margin: 0; }
.tbn-audience-list { margin-top: 1.25rem; display: grid; gap: .625rem; list-style: none; }
@media (min-width: 640px) { .tbn-audience-list { grid-template-columns: repeat(2, 1fr); } }
.tbn-audience-list li { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; color: #eff6ff; }
.tbn-audience-cta { display: flex; flex-direction: column; justify-content: center; border-radius: var(--radius-lg); background: rgba(255,255,255,.1); padding: 1.5rem; }
.tbn-process-step { font-family: var(--font-display); font-size: 1.875rem; font-weight: 700; color: var(--brand-gold); }

/* Legal pages */
.tbn-legal-page { display: flex; flex-direction: column; gap: var(--space-8); }
.tbn-page-header { border-bottom: 1px solid var(--border); padding-bottom: 1.5rem; }
.tbn-page-header h1 { margin-top: .25rem; font-size: 2.125rem; font-weight: 700; line-height: 1.15; }
@media (min-width: 768px) { .tbn-page-header h1 { font-size: 2.625rem; } }
.tbn-legal-updated { margin-top: -1rem; font-size: .8125rem; color: var(--muted-foreground); }
.tbn-legal-sections { display: flex; flex-direction: column; gap: var(--space-6); }
.tbn-legal-sections h2 { font-size: 1.1875rem; font-weight: 700; margin: 0; }
.tbn-legal-sections p { margin-top: .5rem; font-size: .9375rem; line-height: 1.6; color: var(--muted-foreground); }

/* Comments */
.tbn-comments { margin-top: 3rem; }
.tbn-comments-header { display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; }
.tbn-comments-header h2 { font-size: 1.375rem; font-weight: 700; margin: 0; }
.tbn-comments-header svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.tbn-comment-compose { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1.5rem; padding: 1rem; border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--card); box-shadow: 0 1px 2px rgba(16,24,40,.04), 0 4px 16px rgba(16,24,40,.06); }
.tbn-comment-avatar { width: 2.5rem; height: 2.5rem; flex-shrink: 0; display: grid; place-items: center; border-radius: 999px; background: var(--secondary); font-weight: 600; color: var(--primary); }
.tbn-comment-compose-body { flex: 1; min-width: 0; }
.tbn-comment-form { margin: 0; }
.tbn-comment-form p { margin: 0; }
.tbn-comment-form .comment-form-author,
.tbn-comment-form .comment-form-email { margin-bottom: .75rem; }
.tbn-comment-form label { display: block; margin-bottom: .375rem; font-size: .8125rem; font-weight: 600; }
.tbn-comment-form textarea { width: 100%; resize: none; border-radius: .75rem; border: 1px solid var(--border); background: var(--input-background); padding: .5rem .75rem; font-size: .875rem; outline: none; }
.tbn-comment-form textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 2px rgba(29,78,216,.2); }
.tbn-comment-form .form-submit { margin-top: .5rem; display: flex; justify-content: flex-end; }
.tbn-comment-form .submit { display: inline-flex; align-items: center; gap: .5rem; border: 0; border-radius: .75rem; background: var(--primary); color: var(--primary-foreground); padding: .5rem 1rem; font-size: .875rem; font-weight: 600; cursor: pointer; }
.tbn-comment-form .submit:hover { opacity: .9; }
.tbn-comment-list { display: flex; flex-direction: column; gap: 1rem; list-style: none; margin: 0; padding: 0; }
.tbn-comment-item { display: flex; gap: .75rem; }
.tbn-comment-bubble { flex: 1; padding: 1rem; border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--card); box-shadow: 0 1px 2px rgba(16,24,40,.04), 0 4px 16px rgba(16,24,40,.06); }
.tbn-comment-meta { display: flex; align-items: center; gap: .5rem; font-size: .875rem; font-weight: 600; }
.tbn-comment-time { font-size: .75rem; font-weight: 400; color: var(--muted-foreground); }
.tbn-comment-text { margin-top: .25rem; font-size: .875rem; line-height: 1.5; color: rgba(17,24,39,.9); }
.tbn-comments .comment-reply-link { display: none; }
