/* =============================================
   TOLD BY — Ghost Theme
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #FAF7F2;
  --black: #0F0F0F;
  --orange: #E05C2A;
  --sage: #4A7C6F;
  --sage-light: #D4E8E4;
  --sage-dark: #2D5C52;
  --peach: #FAD9CC;
  --muted: #888;
  --border: rgba(15,15,15,0.1);
  --font: 'DM Sans', sans-serif;
}

html { font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); background: var(--cream); color: var(--black); }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* =============================================
   ANIMATED LOGO
   ============================================= */

.tb-logo,
.tb-footer-logo {
  font-family: var(--font);
  font-weight: 500;
  font-size: 20px;
  color: var(--black);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  letter-spacing: -0.01em;
  gap: 0;
}

.tb-footer-logo { color: var(--cream); }

.tb-logo-cursor {
  display: inline-block;
  width: 15px;
  height: 26px;
  background: var(--orange);
  border-radius: 3px;
  margin-left: 7px;
  animation: tb-blink 1.1s step-start infinite;
  flex-shrink: 0;
}

@keyframes tb-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* =============================================
   NAVIGATION
   ============================================= */

.tb-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  height: 64px;
  border-bottom: 0.5px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--cream);
  z-index: 100;
}

.tb-nav-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.tb-nav-link {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.tb-nav-link:hover,
.tb-nav-link.active { color: var(--black); }

.tb-nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tb-btn-ghost {
  font-size: 13px;
  color: var(--black);
  text-decoration: none;
  font-weight: 400;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font);
}

.tb-btn-solid {
  font-size: 13px;
  background: var(--orange);
  color: #fff;
  padding: 8px 18px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
  cursor: pointer;
  border: none;
  font-family: var(--font);
  display: inline-block;
}

.tb-btn-solid:hover { opacity: 0.88; }

.tb-btn-outline {
  font-size: 13px;
  background: transparent;
  color: var(--black);
  padding: 8px 18px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  border: 0.5px solid rgba(15,15,15,0.25);
  transition: all 0.2s;
  display: inline-block;
}

.tb-btn-outline:hover {
  background: var(--black);
  color: var(--cream);
}

.tb-search-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  display: flex;
  align-items: center;
  padding: 4px;
  transition: color 0.2s;
}

.tb-search-btn:hover { color: var(--black); }

/* =============================================
   HERO — SPLIT LAYOUT
   ============================================= */

.tb-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  border-bottom: 0.5px solid var(--border);
}

.tb-hero-left {
  padding: 4rem 3rem 4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.tb-hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tb-hero-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}

.tb-hero-h1 {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 480px;
}

.tb-hero-tagline {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  font-weight: 300;
  max-width: 380px;
}

.tb-hero-form {
  display: flex;
  max-width: 400px;
}

.tb-hero-input {
  flex: 1;
  padding: 11px 14px;
  border: 0.5px solid rgba(15,15,15,0.25);
  border-right: none;
  background: #fff;
  font-size: 14px;
  font-family: var(--font);
  border-radius: 4px 0 0 4px;
  outline: none;
  color: var(--black);
}

.tb-hero-input::placeholder { color: #aaa; }

.tb-hero-btn {
  padding: 11px 20px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font);
  border: none;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.tb-hero-btn:hover { opacity: 0.88; }

.tb-hero-signin,
.tb-hero-member {
  font-size: 12px;
  color: var(--muted);
}

.tb-hero-signin a,
.tb-hero-member a {
  color: var(--black);
  text-decoration: underline;
  cursor: pointer;
}

.tb-hero-right {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.tb-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.tb-hero-img-placeholder {
  width: 100%;
  height: 100%;
  background: #1a1a1a;
}

/* =============================================
   LATEST POSTS
   ============================================= */

.tb-latest {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
}

.tb-section-title {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tb-section-title::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: var(--border);
}

.tb-post-grid {
  display: flex;
  flex-direction: column;
}

.tb-post-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 0.5px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

.tb-post-item:hover { opacity: 0.7; }

.tb-post-thumb {
  background: #E8E2D8;
  border-radius: 4px;
  aspect-ratio: 16/10;
  overflow: hidden;
  flex-shrink: 0;
}

.tb-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tb-post-item:hover .tb-post-thumb img {
  transform: scale(1.03);
}

.tb-post-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: #E8E2D8;
}

.tb-post-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}

.tb-post-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: var(--sage-light);
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  text-decoration: none;
}

.tb-post-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.tb-post-excerpt {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  font-weight: 300;
}

.tb-post-meta {
  font-size: 11px;
  color: var(--muted);
}

.tb-empty {
  padding: 4rem 0;
  color: var(--muted);
}

.tb-empty p {
  font-size: 14px;
  font-weight: 300;
}

.tb-load-more {
  display: block;
  margin: 2.5rem auto 0;
  padding: 10px 32px;
  border: 0.5px solid rgba(15,15,15,0.2);
  background: transparent;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font);
  cursor: pointer;
  border-radius: 4px;
  color: var(--black);
  transition: all 0.2s;
}

.tb-load-more:hover {
  background: var(--black);
  color: var(--cream);
  border-color: var(--black);
}

/* =============================================
   SINGLE POST
   ============================================= */

.tb-article {
  max-width: 680px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.tb-article-header {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tb-article-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.tb-article-excerpt {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  font-weight: 300;
}

.tb-article-meta {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  gap: 0.5rem;
}

.tb-article-image {
  margin-bottom: 2.5rem;
  border-radius: 4px;
  overflow: hidden;
}

.tb-article-image img {
  width: 100%;
}

.tb-article-image figcaption {
  font-size: 12px;
  color: var(--muted);
  padding: 0.5rem 0;
  font-weight: 300;
}

.tb-article-body {
  font-size: 17px;
  line-height: 1.75;
  font-weight: 300;
  color: #222;
}

.tb-article-body h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.01em;
  color: var(--black);
}

.tb-article-body h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 2rem 0 0.75rem;
  color: var(--black);
}

.tb-article-body p { margin-bottom: 1.5rem; }

.tb-article-body a {
  color: var(--orange);
  text-decoration: underline;
}

.tb-article-body ul,
.tb-article-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.tb-article-body li { margin-bottom: 0.5rem; }

.tb-article-body blockquote {
  border-left: 3px solid var(--orange);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  font-size: 19px;
  color: #444;
  font-style: italic;
}

.tb-article-body img {
  border-radius: 4px;
  margin: 2rem 0;
}

.tb-article-blurred {
  max-height: 200px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, black 0%, transparent 80%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 80%);
  pointer-events: none;
}

/* Paywall */
.tb-paywall {
  border: 0.5px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
  text-align: center;
  margin: 2rem 0;
  background: #fff;
}

.tb-paywall-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.tb-paywall-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.tb-paywall-body {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  font-weight: 300;
  max-width: 360px;
  margin: 0 auto 1.5rem;
}

.tb-paywall-signin {
  font-size: 12px;
  color: var(--muted);
  margin-top: 0.75rem;
}

.tb-paywall-signin a {
  color: var(--black);
  text-decoration: underline;
  cursor: pointer;
}

.tb-article-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 0.5px solid var(--border);
}

.tb-article-footer-label {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 1rem;
  font-weight: 300;
}

/* =============================================
   ABOUT PAGE
   ============================================= */

.tb-about-hero {
  background: var(--black);
  padding: 4rem 2rem;
  border-bottom: 0.5px solid var(--border);
}

.tb-about-hero-text {
  max-width: 860px;
  margin: 0 auto;
}

.tb-about-hero .tb-hero-eyebrow { color: var(--orange); margin-bottom: 1rem; }
.tb-about-hero .tb-hero-eyebrow::before { background: var(--orange); }

.tb-about-h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cream);
  max-width: 600px;
}

.tb-about-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 4rem;
  align-items: start;
}

.tb-about-body {
  font-size: 16px;
  line-height: 1.75;
  font-weight: 300;
  color: #333;
}

.tb-about-body h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.01em;
}

.tb-about-body h2:first-child { margin-top: 0; }

.tb-about-body p { margin-bottom: 1.25rem; }

.tb-about-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.tb-about-photo {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.tb-about-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.tb-credential {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 1rem;
  background: #fff;
  border-radius: 4px;
  border: 0.5px solid var(--border);
}

.tb-credential-num {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--orange);
}

.tb-credential-label {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
}

/* =============================================
   GENERIC PAGE
   ============================================= */

.tb-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.tb-page-title {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.tb-page-body {
  font-size: 16px;
  line-height: 1.75;
  font-weight: 300;
  color: #333;
}

/* =============================================
   FOOTER
   ============================================= */

.tb-footer {
  background: var(--black);
  color: var(--cream);
  padding: 3rem 2rem 2rem;
}

.tb-footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 860px;
  margin: 0 auto;
  padding-bottom: 2rem;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.tb-footer-tagline {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  font-weight: 300;
  max-width: 280px;
  margin-top: 0.75rem;
}

.tb-footer-form-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 0.75rem;
}

.tb-footer-form { display: flex; max-width: 320px; }

.tb-footer-input {
  flex: 1;
  padding: 10px 14px;
  border: 0.5px solid rgba(255,255,255,0.12);
  border-right: none;
  background: rgba(255,255,255,0.05);
  font-size: 13px;
  font-family: var(--font);
  border-radius: 4px 0 0 4px;
  outline: none;
  color: var(--cream);
}

.tb-footer-input::placeholder { color: #555; }

.tb-footer-btn {
  padding: 10px 16px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  font-family: var(--font);
  border: none;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.tb-footer-btn:hover { opacity: 0.88; }

.tb-footer-form-message {
  font-size: 12px;
  color: #c0392b;
  margin-top: 0.5rem;
}

.tb-footer-form-success {
  font-size: 12px;
  color: var(--sage);
  margin-top: 0.5rem;
}

.tb-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}

.tb-footer-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.tb-footer-link {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}

.tb-footer-link:hover { color: var(--cream); }

.tb-footer-copy { font-size: 12px; color: #444; }

.tb-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  color: #555;
  text-decoration: none;
  transition: all 0.2s;
}

.tb-linkedin:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 768px) {
  .tb-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .tb-hero-right {
    height: 320px;
    order: -1;
  }

  .tb-hero-left {
    padding: 2.5rem 1.5rem;
  }

  .tb-hero-h1 { font-size: 28px; }

  .tb-about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tb-about-sidebar { order: -1; }

  .tb-about-photo { max-width: 240px; }

  .tb-footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tb-post-item {
    grid-template-columns: 100px 1fr;
    gap: 1rem;
  }

  .tb-nav-left .tb-nav-link { display: none; }

  .tb-article { padding: 2rem 1.5rem 4rem; }
}

@media (max-width: 480px) {
  .tb-nav { padding: 0 1rem; }
  .tb-latest { padding: 2rem 1.5rem 3rem; }
}

/* =============================================
   GHOST CARD WIDTHS (required)
   ============================================= */

.kg-width-wide {
  margin-left: calc(25% - 25vw);
  margin-right: calc(25% - 25vw);
  max-width: 1000px;
}

.kg-width-full {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
}

.kg-image { max-width: 100%; }
.kg-image-card { margin: 1.5rem 0; }
.kg-image-card img { border-radius: 4px; }
.kg-gallery-container { display: flex; flex-direction: column; }
.kg-gallery-row { display: flex; flex-direction: row; justify-content: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.kg-gallery-image img { display: block; width: 100%; height: 100%; object-fit: cover; }
.kg-embed-card { margin: 1.5rem 0; }
.kg-embed-card iframe { max-width: 100%; }
.kg-bookmark-card { margin: 1.5rem 0; border: 0.5px solid var(--border); border-radius: 4px; overflow: hidden; }
.kg-bookmark-container { display: flex; text-decoration: none; color: inherit; }
.kg-bookmark-content { padding: 1rem; flex: 1; }
.kg-bookmark-title { font-weight: 600; font-size: 14px; margin-bottom: 0.25rem; }
.kg-bookmark-description { font-size: 12px; color: var(--muted); }
.kg-bookmark-thumbnail { width: 160px; flex-shrink: 0; }
.kg-bookmark-thumbnail img { width: 100%; height: 100%; object-fit: cover; }

.tb-footer-member {
  font-size: 13px;
  color: #666;
  font-weight: 300;
}

.tb-footer-member a {
  color: var(--cream);
  text-decoration: underline;
  cursor: pointer;
}

/* =============================================
   MEMBERSHIP PAGE
   ============================================= */

.tb-membership-hero {
  background: var(--black);
  padding: 5rem 2rem;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
}

.tb-membership-hero-inner {
  max-width: 680px;
  margin: 0 auto;
}

.tb-membership-hero .tb-hero-eyebrow {
  color: var(--orange);
  margin-bottom: 1.25rem;
}

.tb-membership-hero .tb-hero-eyebrow::before {
  background: var(--orange);
}

.tb-membership-h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 1.25rem;
  max-width: 600px;
}

.tb-membership-sub {
  font-size: 16px;
  color: #777;
  line-height: 1.6;
  font-weight: 300;
  max-width: 480px;
}

.tb-membership-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* Pricing card */
.tb-membership-card {
  display: flex;
  justify-content: center;
}

.tb-membership-card-inner {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 8px;
  padding: 3rem;
  max-width: 540px;
  width: 100%;
}

.tb-membership-price-block {
  text-align: center;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 0.5px solid var(--border);
}

.tb-membership-tier {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.tb-membership-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  margin-bottom: 0.5rem;
}

.tb-membership-currency {
  font-size: 24px;
  font-weight: 500;
  color: var(--black);
  padding-top: 8px;
}

.tb-membership-amount {
  font-size: 72px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--black);
}

.tb-membership-period {
  font-size: 18px;
  color: var(--muted);
  font-weight: 300;
  align-self: flex-end;
  padding-bottom: 10px;
}

.tb-membership-price-note {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
}

/* Benefits list */
.tb-membership-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.tb-benefit {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.tb-benefit-icon {
  color: var(--orange);
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
}

.tb-benefit strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--black);
}

.tb-benefit p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  font-weight: 300;
}

.tb-membership-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  background: var(--orange);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.2s;
  cursor: pointer;
  margin-bottom: 1rem;
}

.tb-membership-cta:hover { opacity: 0.88; }

.tb-membership-cta--member {
  background: var(--black);
}

.tb-membership-signin {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}

.tb-membership-signin a {
  color: var(--black);
  text-decoration: underline;
  cursor: pointer;
}

/* About section */
.tb-membership-about {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: start;
  padding-top: 2rem;
  border-top: 0.5px solid var(--border);
}

.tb-membership-about-img img {
  width: 100%;
  border-radius: 4px;
}

.tb-membership-about-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tb-membership-about-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  font-weight: 300;
}

.tb-membership-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.tb-mc {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 1rem;
  background: var(--cream);
  border-radius: 4px;
  border: 0.5px solid var(--border);
}

.tb-mc-num {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--orange);
}

.tb-mc-label {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .tb-membership-about {
    grid-template-columns: 1fr;
  }

  .tb-membership-about-img {
    max-width: 280px;
  }

  .tb-membership-card-inner {
    padding: 2rem 1.5rem;
  }

  .tb-membership-amount { font-size: 56px; }
}

.tb-nav-link--highlight {
  color: var(--orange) !important;
}

/* =============================================
   TWO-TIER PRICING
   ============================================= */

.tb-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 780px;
  margin: 0 auto;
}

.tb-tier-card {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.tb-tier-card--featured {
  border-color: var(--orange);
  border-width: 1.5px;
}

.tb-tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  font-weight: 500;
}

.tb-tier-header {
  text-align: center;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 0.5px solid var(--border);
}

.tb-tier-name {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.tb-tier-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  margin-bottom: 0.4rem;
}

.tb-tier-currency {
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
  padding-top: 6px;
}

.tb-tier-amount {
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--black);
}

.tb-tier-period {
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
  align-self: flex-end;
  padding-bottom: 8px;
}

.tb-tier-note {
  font-size: 11px;
  color: var(--muted);
  font-weight: 300;
}

.tb-membership-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  flex: 1;
}

.tb-benefit--highlight strong {
  color: var(--orange);
}

.tb-membership-cta--team {
  background: var(--black);
}

@media (max-width: 640px) {
  .tb-tiers {
    grid-template-columns: 1fr;
  }
}

.tb-tier-saving {
  font-size: 12px;
  color: var(--sage);
  font-weight: 500;
  margin-top: 0.25rem;
}

/* =============================================
   CLIENT MARQUEE
   ============================================= */

.tb-clients {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 0.5px solid var(--border);
}

.tb-clients-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.tb-clients-track-wrap {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.tb-clients-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
  animation: tb-marquee 20s linear infinite;
  width: max-content;
}

.tb-clients-track:hover {
  animation-play-state: paused;
}

@keyframes tb-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.tb-client {
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.tb-client-dot {
  font-size: 13px;
  color: var(--orange);
  flex-shrink: 0;
}
