/* Logged-out marketing home — ported from 260713-photo-home */
/* Tokens only; scoped under body.tbp-marketing */

/* Beat main.css / utilities.css body+element !important colors.
   Do NOT put body in the inherit group — that inherits Bootstrap’s
   near-black from <html> and paints the whole page black. */
body.tbp-marketing {
  font-family: var(--font-body);
  background: var(--bg) !important;
  color: var(--text) !important;
  font-size: 15px;
  line-height: 1.5;
}
/* Neutralize main.css element hammers so descendants can use tokens.
   Color is inherited from body (--text) unless a more specific rule sets it.
   Skip when body also has .tbp-catalog — hybrid catalog pages own their type
   via catalog.css / forms.css; this inherit hammer was forcing !important wars. */
body.tbp-marketing:not(.tbp-catalog) p,
body.tbp-marketing:not(.tbp-catalog) span,
body.tbp-marketing:not(.tbp-catalog) div,
body.tbp-marketing:not(.tbp-catalog) td,
body.tbp-marketing:not(.tbp-catalog) th,
body.tbp-marketing:not(.tbp-catalog) li,
body.tbp-marketing:not(.tbp-catalog) .text-muted,
body.tbp-marketing:not(.tbp-catalog) .small,
body.tbp-marketing:not(.tbp-catalog) .form-text,
body.tbp-marketing:not(.tbp-catalog) .timeline-content,
body.tbp-marketing:not(.tbp-catalog) .card-text,
body.tbp-marketing:not(.tbp-catalog) .card-body,
body.tbp-marketing:not(.tbp-catalog) h1,
body.tbp-marketing:not(.tbp-catalog) h2,
body.tbp-marketing:not(.tbp-catalog) h3,
body.tbp-marketing:not(.tbp-catalog) h4,
body.tbp-marketing:not(.tbp-catalog) h5,
body.tbp-marketing:not(.tbp-catalog) h6 {
  color: inherit !important;
}

body.tbp-marketing .tbp-marketing-main {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}
body.tbp-marketing .tbp-marketing-flash {
  position: relative;
  z-index: 30;
  margin: 0;
  border-radius: 0;
}


    

    

    body.tbp-marketing{ scroll-behavior: smooth; }


    /* —— Mockup chrome (shared script fills .mockup-bar) —— */

    /* Tier 1 nav → layout/shell.css (.tbp-nav) */

    body.tbp-marketing .btn{
      display: inline-flex; align-items: center; justify-content: center;
      padding: 11px 22px; border-radius: 3px;
      font-size: .88rem; font-weight: 600; text-decoration: none;
      border: 1.5px solid transparent;
      transition: opacity .15s, transform .15s, background .15s, border-color .15s;
    }
    body.tbp-marketing .btn:hover{ opacity: .94; transform: translateY(-1px); }
    body.tbp-marketing .btn-primary{
      background: var(--bs-primary); color: var(--color-white) !important; border-color: var(--bs-primary) !important;
    }
    body.tbp-marketing .btn-primary:hover{
      background: var(--color-primary-dark); border-color: var(--color-primary-dark) !important; color: var(--color-white) !important;
    }
    body.tbp-marketing .btn-solo{
      background: var(--solo); color: var(--text) !important; border-color: var(--solo) !important; font-weight: 700;
      display: inline-flex; align-items: center; gap: 8px;
    }
    body.tbp-marketing .btn-ghost{
      background: var(--overlay-black-35); color: var(--text) !important;
      border-color: var(--overlay-white-35) !important; backdrop-filter: blur(4px);
    }
    body.tbp-marketing .btn-ghost:hover{ border-color: var(--overlay-white-7) !important; background: var(--overlay-black-5); }
    body.tbp-marketing .btn-outline{
      background: transparent; color: var(--text) !important; border-color: var(--border) !important;
    }
    body.tbp-marketing .btn-outline:hover{ border-color: var(--gray) !important; }
    body.tbp-marketing .btn-sm{ padding: 7px 14px; font-size: .8rem; }

    /* —— Hero: Variant D composition over photo —— */
    body.tbp-marketing .hero{
      position: relative;
      min-height: 100vh;
      min-height: 100dvh;
      display: flex;
      align-items: center;
      overflow: hidden;
      color: var(--text) !important;
    }
    body.tbp-marketing .hero-photo{
      position: absolute; inset: 0;
      background:
        linear-gradient(90deg, var(--overlay-scrim) 0%, var(--overlay-scrim-mid) 42%, var(--overlay-scrim-strong) 100%),
        linear-gradient(0deg, var(--overlay-scrim-bottom) 0%, transparent 45%),
        url("/images/marketing/home/werks.jpg") center 30% / cover no-repeat;
      transform: scale(1.04);
      animation: heroZoom 18s ease-out forwards;
    }
    @keyframes heroZoom{
      from { transform: scale(1.08); }
      to { transform: scale(1.02); }
    }
    body.tbp-marketing .hero-layout{
      position: relative; z-index: 2;
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 36px;
      align-items: center;
      width: min(1180px, 100%);
      margin: 0 auto;
      padding: 100px 40px 56px;
      animation: heroIn .9s ease-out both;
    }
    @keyframes heroIn{
      from { opacity: 0; transform: translateY(18px); }
      to { opacity: 1; transform: translateY(0); }
    }
    body.tbp-marketing .hero-inner{
      width: auto;
      max-width: 34rem;
      padding: 0;
    }
    body.tbp-marketing .hero-eyebrow{
      font-size: .72rem; font-weight: 600; letter-spacing: .14em;
      text-transform: uppercase; color: var(--overlay-white-7) !important;
      margin-bottom: 12px;
    }
    body.tbp-marketing .hero-eyebrow span{ color: var(--red) !important; margin: 0 .35em; }
    body.tbp-marketing .hero h1{
      font-family: var(--font-display);
      font-size: clamp(3rem, 8vw, 4.6rem);
      font-weight: 400; letter-spacing: 1px; line-height: .95;
      margin-bottom: 16px;
      text-shadow: 0 2px 24px var(--overlay-black-45);
    }
    body.tbp-marketing .hero h1 em{
      font-style: normal; color: var(--text) !important;
      border-bottom: 3px solid var(--red);
    }
    body.tbp-marketing .hero-sub{
      font-size: 1.05rem; color: var(--overlay-white-88) !important;
      max-width: 34rem; margin-bottom: 22px; line-height: 1.55;
    }
    body.tbp-marketing .hero-sub strong{ color: var(--text) !important; font-weight: 600; }
    body.tbp-marketing .hero-actions{ display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; }
    body.tbp-marketing .hero-note{
      font-size: .78rem; color: var(--overlay-white-55) !important; max-width: 34rem;
    }
    body.tbp-marketing .hero-note a{ color: var(--overlay-white-85) !important; }

    body.tbp-marketing .hero-visual{ text-align: center; min-width: 0; }
    body.tbp-marketing .hero-carousel{
      position: relative;
      max-width: 420px;
      margin: 0 auto;
    }
    body.tbp-marketing .hero-carousel-frame{
      position: relative;
      aspect-ratio: 4 / 3;
      border-radius: 10px;
      overflow: hidden;
      background: var(--overlay-features-mid);
      border: 1px solid var(--overlay-white-14);
      box-shadow: 0 18px 50px var(--overlay-black-45);
      backdrop-filter: blur(6px);
    }
    body.tbp-marketing .hero-slide{
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      padding: 18px;
      opacity: 0;
      pointer-events: none;
      transition: opacity .45s ease;
    }
    body.tbp-marketing .hero-slide.is-active{
      opacity: 1;
      pointer-events: auto;
    }
    body.tbp-marketing .hero-slide img{
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      object-fit: contain;
      border-radius: 4px;
    }
    body.tbp-marketing .hero-slide.is-logo img{
      filter: drop-shadow(0 8px 24px var(--overlay-black-5));
    }
    body.tbp-marketing .hero-slide.is-video{
      padding: 0;
      background: #000;
      cursor: pointer;
      text-decoration: none;
      color: inherit !important;
    }
    body.tbp-marketing .hero-slide.is-video img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      border-radius: 0;
      transform: scale(1.02);
      transition: transform .35s ease, opacity .35s ease;
      opacity: .92;
    }
    body.tbp-marketing .hero-slide.is-video:hover img,
    body.tbp-marketing .hero-slide.is-video:focus-visible img{
      transform: scale(1.05);
      opacity: 1;
    }
    body.tbp-marketing .hero-slide-play{
      position: absolute;
      left: 50%;
      top: 50%;
      width: 56px;
      height: 56px;
      margin: -28px 0 0 -28px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--overlay-black-72);
      border: 2px solid var(--overlay-white-85);
      color: var(--overlay-white-92) !important;
      font-size: 1.55rem;
      line-height: 1;
      padding-left: 3px;
      box-shadow: 0 8px 24px var(--overlay-black-45);
      transition: transform .2s ease, background .2s ease;
    }
    body.tbp-marketing .hero-slide.is-video:hover .hero-slide-play,
    body.tbp-marketing .hero-slide.is-video:focus-visible .hero-slide-play{
      transform: scale(1.06);
      background: var(--red);
      border-color: var(--red);
    }
    body.tbp-marketing .hero-slide.is-video .hero-slide-hint{
      opacity: 1;
      transform: translateY(0);
    }
    body.tbp-marketing .hero-slide.is-shot{
      cursor: zoom-in;
      text-decoration: none;
      color: inherit !important;
    }
    body.tbp-marketing .hero-slide.is-shot img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top left;
      border-radius: 0;
      transform: scale(1.02);
      transition: transform .35s ease;
    }
    body.tbp-marketing .hero-slide.is-shot:hover img{ transform: scale(1.05); }
    body.tbp-marketing .hero-slide-hint{
      position: absolute; left: 12px; right: 12px; bottom: 12px;
      padding: 8px 10px;
      border-radius: 4px;
      background: var(--overlay-black-72);
      color: var(--overlay-white-92) !important;
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .02em;
      opacity: 0;
      transform: translateY(4px);
      transition: opacity .2s, transform .2s;
    }
    body.tbp-marketing .hero-slide.is-shot:hover .hero-slide-hint, body.tbp-marketing .hero-slide.is-shot:focus-visible .hero-slide-hint{
      opacity: 1; transform: translateY(0);
    }
    body.tbp-marketing .hero-carousel-controls{
      display: flex; align-items: center; justify-content: center;
      gap: 10px; margin-top: 12px;
    }
    body.tbp-marketing .hero-carousel-arrow{
      color: var(--overlay-white-75) !important;
      background: var(--overlay-black-35);
      border: 1px solid var(--overlay-white-28);
      border-radius: 4px;
      padding: 3px 10px;
      cursor: pointer;
      font-size: .85rem;
      line-height: 1.4;
    }
    body.tbp-marketing .hero-carousel-arrow:hover{
      color: var(--text) !important; border-color: var(--overlay-white-55) !important;
    }
    body.tbp-marketing .hero-carousel-meta{
      font-size: .72rem; color: var(--overlay-white-65) !important;
      min-width: 10rem;
    }
    body.tbp-marketing .hero-carousel-dots{
      display: flex; justify-content: center; gap: 7px; margin-top: 10px;
    }
    body.tbp-marketing .hero-carousel-dots button{
      width: 7px; height: 7px; border-radius: 50%;
      border: none; padding: 0; cursor: pointer;
      background: var(--overlay-white-28);
    }
    body.tbp-marketing .hero-carousel-dots button[aria-current="true"]{
      background: var(--red);
    }
    body.tbp-marketing .hero-carousel-caption{
      margin-top: 10px;
      font-size: .78rem;
      color: var(--overlay-white-55) !important;
      line-height: 1.4;
    }

    body.tbp-marketing .hero-lightbox{
      position: fixed; inset: 0; z-index: 100;
      display: none; align-items: center; justify-content: center;
      padding: 24px;
      background: var(--overlay-black-88);
    }
    body.tbp-marketing .hero-lightbox.is-open{ display: flex; }
    body.tbp-marketing .hero-lightbox-inner{
      position: relative;
      max-width: min(1100px, 96vw);
      max-height: 90vh;
    }
    body.tbp-marketing .hero-lightbox-inner img{
      display: block;
      max-width: 100%;
      max-height: 82vh;
      width: auto; height: auto;
      margin: 0 auto;
      border-radius: 6px;
      box-shadow: 0 20px 60px var(--overlay-black-5);
    }
    body.tbp-marketing .hero-lightbox-cap{
      margin-top: 12px; text-align: center;
      color: var(--overlay-white-8) !important; font-size: .9rem;
    }
    body.tbp-marketing .hero-lightbox-close{
      position: absolute; top: -8px; right: -8px;
      width: 36px; height: 36px; border-radius: 50%;
      border: 1px solid var(--overlay-white-35);
      background: var(--overlay-close); color: var(--text) !important;
      cursor: pointer; font-size: 1.2rem; line-height: 1;
    }
    body.tbp-marketing .hero-lightbox-close:hover{ border-color: var(--text) !important; }

    /* —— Pillars strip —— */
    body.tbp-marketing .pillars{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-bottom: 1px solid var(--border);
      background: var(--surface);
    }
    body.tbp-marketing .pillar{
      padding: 22px 28px;
      border-right: 1px solid var(--border);
      text-align: center;
    }
    body.tbp-marketing .pillar:last-child{ border-right: none; }
    body.tbp-marketing .pillar strong{
      display: block;
      font-family: var(--font-display);
      font-size: 1.35rem; letter-spacing: .06em; font-weight: 400;
      margin-bottom: 4px;
    }
    body.tbp-marketing .pillar span{ font-size: .8rem; color: var(--muted) !important; }

    /* —— Magic sign-in (variant D) under pillars, atomga4 behind —— */
    body.tbp-marketing .magic-gateway{
      position: relative;
      padding: 64px 40px 72px;
      overflow: hidden;
      isolation: isolate;
    }
    body.tbp-marketing .magic-gateway-bg{
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        linear-gradient(180deg, var(--overlay-photo) 0%, var(--overlay-photo-mid) 100%),
        url("/images/marketing/home/atomga4.jpg") center 40% / cover no-repeat;
    }
    body.tbp-marketing .magic-gateway-inner{
      max-width: 620px;
      margin: 0 auto;
      position: relative;
    }
    body.tbp-marketing .magic-gateway .section-label{
      text-align: center;
      color: var(--overlay-white-65) !important;
    }
    body.tbp-marketing .magic-gateway .section-title{
      text-align: center;
      color: var(--text) !important;
      text-shadow: 0 2px 16px var(--overlay-black-45);
    }
    body.tbp-marketing .magic-gateway .section-lead{
      text-align: center;
      margin-left: auto;
      margin-right: auto;
      color: var(--overlay-white-78) !important;
    }
    body.tbp-marketing .magic-gateway-card{
      background: var(--surface-3);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 28px 28px 24px;
      box-shadow: 0 12px 40px var(--overlay-black-45);
    }
    body.tbp-marketing .magic-gateway-card h3{
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--text) !important;
    }
    body.tbp-marketing .magic-gateway-card h3 .bi{ color: var(--muted) !important; }
    body.tbp-marketing .magic-gateway-card > p{
      font-size: 0.9rem;
      color: var(--gray) !important;
      line-height: 1.55;
      margin-bottom: 20px;
    }
    body.tbp-marketing .magic-field{ margin-bottom: 14px; }
    body.tbp-marketing .magic-field label{
      display: block;
      font-size: 0.74rem;
      font-weight: 600;
      color: var(--muted) !important;
      margin-bottom: 5px;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }
    body.tbp-marketing .magic-field input{
      width: 100%;
      padding: 11px 14px;
      border-radius: 6px;
      border: 1px solid var(--border);
      background: var(--surface-2);
      color: var(--text) !important;
      font-family: var(--font-body);
      font-size: 0.9rem;
    }
    body.tbp-marketing .magic-field input::placeholder{ color: var(--muted) !important; }
    body.tbp-marketing .magic-field input:focus{
      outline: none;
      border-color: var(--gray) !important;
      box-shadow: 0 0 0 3px var(--solo-dim);
      background: var(--surface);
    }
    body.tbp-marketing .magic-inline{
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      align-items: flex-end;
    }
    body.tbp-marketing .magic-inline .magic-field{
      flex: 1 1 200px;
      margin-bottom: 0;
    }
    body.tbp-marketing .magic-footnote{
      margin-top: 16px;
      font-size: 0.78rem;
      color: var(--muted) !important;
      line-height: 1.55;
    }
    body.tbp-marketing .magic-footnote a{
      color: var(--gray) !important;
      text-decoration: none;
      font-weight: 600;
    }
    body.tbp-marketing .magic-footnote a:hover{
      color: var(--text) !important;
      text-decoration: underline;
    }
    body.tbp-marketing .magic-oauth{
      margin-top: 18px;
      padding-top: 16px;
      border-top: 1px solid var(--border);
    }
    body.tbp-marketing .magic-oauth-btns{
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    body.tbp-marketing .btn-oauth{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      flex: 1 1 140px;
      padding: 10px 14px;
      border-radius: 3px;
      font-size: 0.84rem;
      font-weight: 600;
      text-decoration: none;
      border: 1.5px solid var(--border);
      background: var(--overlay-black-35);
      color: var(--text) !important;
      transition: border-color .15s, background .15s;
      cursor: pointer;
      font-family: inherit;
    }
    body.tbp-marketing .btn-oauth:hover{
      border-color: var(--gray) !important;
      background: var(--overlay-black-45);
      color: var(--text) !important;
    }
    body.tbp-marketing .btn-oauth .bi-google, body.tbp-marketing .btn-oauth svg{ flex-shrink: 0; }
    body.tbp-marketing .btn-oauth .bi-facebook{ color: var(--brand-facebook) !important; font-size: 1.1rem; }

    @media (max-width: 900px){
      body.tbp-marketing .magic-gateway{ padding: 48px 24px 56px; }
      body.tbp-marketing .magic-inline{ flex-direction: column; }
      body.tbp-marketing .magic-inline .btn-solo{ width: 100%; justify-content: center; }
    }

    /* —— Photo chapters (OPP) —— */
    body.tbp-marketing .chapter{
      display: grid;
      grid-template-columns: 1.15fr 1fr;
      min-height: 520px;
      background: var(--bg);
    }
    body.tbp-marketing .chapter.reverse{ grid-template-columns: 1fr 1.15fr; }
    body.tbp-marketing .chapter.reverse .chapter-copy{ order: 1; }
    body.tbp-marketing .chapter.reverse .chapter-media{ order: 2; }

    body.tbp-marketing .chapter-media{
      position: relative;
      min-height: 320px;
      overflow: hidden;
    }
    body.tbp-marketing .chapter-media img{
      width: 100%; height: 100%;
      object-fit: cover; object-position: center;
      display: block;
      transition: transform 8s ease;
    }
    body.tbp-marketing .chapter:hover .chapter-media img{ transform: scale(1.04); }
    body.tbp-marketing .chapter-media .cap{
      position: absolute; left: 16px; bottom: 14px;
      font-size: .68rem; letter-spacing: .04em; text-transform: uppercase;
      color: var(--overlay-white-75) !important;
      text-shadow: 0 1px 8px var(--overlay-black-8);
    }

    body.tbp-marketing .chapter-copy{
      display: flex; flex-direction: column; justify-content: center;
      padding: 48px 56px;
      background: var(--surface);
      border-left: 1px solid var(--border);
    }
    body.tbp-marketing .chapter.reverse .chapter-copy{ border-left: none; border-right: 1px solid var(--border); }
    body.tbp-marketing .chapter-copy p.chapter-label{
      font-size: .7rem; font-weight: 700; letter-spacing: .12em;
      text-transform: uppercase; color: var(--red) !important; margin-bottom: 10px;
    }
    body.tbp-marketing .chapter-copy h2{
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 400; letter-spacing: .5px; line-height: 1.05;
      margin-bottom: 14px;
    }
    body.tbp-marketing .chapter-copy p{
      color: var(--gray) !important; font-size: .95rem; max-width: 28rem;
      margin-bottom: 20px; line-height: 1.6;
    }
    body.tbp-marketing .chapter-tools{
      display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px;
      list-style: none;
    }
    body.tbp-marketing .chapter-tools li{
      font-size: .72rem; color: var(--muted) !important;
      border: 1px solid var(--border); padding: 4px 10px; border-radius: 2px;
    }

    /* —— Kill the Chaos (from variant D) over atomga3 —— */
    body.tbp-marketing .features{
      position: relative;
      padding: 64px 40px 80px;
      overflow: hidden;
      isolation: isolate;
    }
    body.tbp-marketing .features-bg{
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, var(--overlay-features-top) 0%, var(--overlay-features-mid) 40%, var(--overlay-features-bottom) 100%),
        url("/images/marketing/home/atomga3.webp") center 35% / cover no-repeat;
      z-index: -1;
    }
    body.tbp-marketing .features .section-label, body.tbp-marketing .features .section-title, body.tbp-marketing .features .section-lead, body.tbp-marketing .features .features-blocks{
      max-width: 1100px;
      margin-left: auto;
      margin-right: auto;
    }
    body.tbp-marketing .section-label{
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--red) !important;
      margin-bottom: 10px;
    }
    body.tbp-marketing .section-title{
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 400;
      letter-spacing: .5px;
      margin-bottom: 12px;
    }
    body.tbp-marketing .section-lead{
      font-size: .95rem;
      color: var(--gray) !important;
      max-width: 36rem;
      margin-bottom: 36px;
      line-height: 1.55;
    }
    body.tbp-marketing .features-blocks{
      display: flex;
      flex-direction: column;
      gap: 40px;
    }
    body.tbp-marketing .features-row-label{
      font-family: var(--font-display);
      font-size: 1.35rem;
      letter-spacing: 1px;
      margin-bottom: 16px;
      color: var(--text) !important;
    }
    body.tbp-marketing .features-row-label span{ color: var(--solo) !important; }
    body.tbp-marketing .features-grid{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    body.tbp-marketing .feature-card{
      background: var(--overlay-card);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 26px 22px;
      position: relative;
      backdrop-filter: blur(6px);
      transition: box-shadow .2s, border-color .2s, transform .2s;
    }
    body.tbp-marketing .feature-card::before{
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      border-radius: 8px 8px 0 0;
      background: var(--solo);
    }
    body.tbp-marketing .feature-card:hover{
      box-shadow: 0 8px 32px var(--overlay-black-45);
      border-color: var(--muted) !important;
      transform: translateY(-2px);
    }
    body.tbp-marketing .feature-head{
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }
    body.tbp-marketing .feature-icon{
      width: 44px;
      height: 44px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1.5px solid var(--overlay-white-28);
      border-radius: 10px;
      font-size: 1.2rem;
      line-height: 1;
      color: var(--text) !important;
      background: transparent;
    }
    body.tbp-marketing .feature-card h3{
      font-family: var(--font-display);
      font-size: 1.28rem;
      letter-spacing: 0.5px;
      margin: 0;
      line-height: 1.15;
    }
    body.tbp-marketing .feature-card p{
      font-size: 0.86rem;
      color: var(--gray) !important;
      line-height: 1.55;
    }

    @media (max-width: 900px){
      body.tbp-marketing .features-grid{ grid-template-columns: 1fr; }
      body.tbp-marketing .features{ padding: 48px 24px 64px; }
    }

    /* —— Proof —— */
    body.tbp-marketing .proof{
      padding: 64px 40px;
      text-align: center;
      background: var(--bg);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    body.tbp-marketing .proof blockquote{
      font-size: clamp(1.15rem, 2.4vw, 1.45rem);
      font-style: italic; color: var(--text) !important;
      max-width: 40rem; margin: 0 auto 14px; line-height: 1.55;
    }
    body.tbp-marketing .proof cite{
      font-style: normal; font-size: .85rem; color: var(--muted) !important; font-weight: 600;
    }

    /* —— Strip of faces / energy —— */
    body.tbp-marketing .filmstrip{
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      height: 220px;
      overflow: hidden;
    }
    body.tbp-marketing .filmstrip a{
      display: block; overflow: hidden; position: relative;
      height: 100%;
    }
    body.tbp-marketing .filmstrip img{
      width: 100%; height: 100%; object-fit: cover;
      object-position: center 18%;
      filter: grayscale(.25) brightness(.85);
      transition: transform .6s ease, filter .4s ease;
    }
    body.tbp-marketing .filmstrip a:nth-child(1) img{ object-position: center 12%; } /* Ken Bastille — portrait */
    body.tbp-marketing .filmstrip a:nth-child(2) img{ object-position: center 15%; } /* David Bastille — portrait */
    body.tbp-marketing .filmstrip a:nth-child(3) img{ object-position: center 30%; }
    body.tbp-marketing .filmstrip a:nth-child(4) img{ object-position: center 25%; }
    body.tbp-marketing .filmstrip a:hover img{
      transform: scale(1.06);
      filter: grayscale(0) brightness(1);
    }

    /* —— Bottom CTA —— */
    body.tbp-marketing .cta{
      padding: 72px 40px;
      text-align: center;
      background: var(--surface-2);
    }
    body.tbp-marketing .cta h2{
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 400; letter-spacing: .5px;
      margin-bottom: 12px;
    }
    body.tbp-marketing .cta p{ color: var(--gray) !important; max-width: 28rem; margin: 0 auto 24px; }
    body.tbp-marketing .cta-actions{ display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

    /* Home-only minimal footer (two divs). Shared .site-footer body is block/centered. */
    body.tbp-marketing footer.tbp-mkt-footer:not(.site-footer){
      padding: 28px 40px;
      border-top: 1px solid var(--border);
      display: flex; flex-wrap: wrap; gap: 12px 24px;
      justify-content: space-between; align-items: center;
      font-size: .78rem; color: var(--muted) !important;
    }
    body.tbp-marketing footer.tbp-mkt-footer:not(.site-footer) a{
      color: var(--gray) !important; text-decoration: none; margin-right: .65rem;
    }
    body.tbp-marketing footer.tbp-mkt-footer:not(.site-footer) a:hover{
      color: var(--text) !important;
    }

    @media (max-width: 900px){
      body.tbp-marketing .pillars{ grid-template-columns: 1fr; }
      body.tbp-marketing .pillar{ border-right: none; border-bottom: 1px solid var(--border); }
      body.tbp-marketing .chapter, body.tbp-marketing .chapter.reverse{ grid-template-columns: 1fr; }
      body.tbp-marketing .chapter.reverse .chapter-copy, body.tbp-marketing .chapter.reverse .chapter-media{ order: unset; }
      body.tbp-marketing .chapter-copy{ border: none !important; padding: 36px 28px; }
      body.tbp-marketing .chapter-media{ min-height: 280px; }
      body.tbp-marketing .hero-layout{
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 96px 24px 48px;
      }
      body.tbp-marketing .hero-visual{ order: -1; }
      body.tbp-marketing .hero-carousel{ max-width: 360px; }
      body.tbp-marketing .filmstrip{ grid-template-columns: repeat(2, 1fr); height: 320px; }
    }
  

body.tbp-marketing .btn-primary {
  background: var(--bs-primary) !important;
  color: var(--color-white) !important;
  border-color: var(--bs-primary) !important;
}
body.tbp-marketing .btn-primary:hover {
  background: var(--color-primary-dark) !important;
  border-color: var(--color-primary-dark) !important;
  color: var(--color-white) !important;
}
body.tbp-marketing .btn-solo {
  background: var(--solo) !important;
  color: var(--text) !important;
  border-color: var(--solo) !important;
}
body.tbp-marketing .btn-ghost {
  color: var(--text) !important;
}
body.tbp-marketing .btn-outline {
  color: var(--text) !important;
  border-color: var(--border) !important;
  background: transparent !important;
}
body.tbp-marketing a { text-decoration: none; }
body.tbp-marketing footer.tbp-mkt-footer {
  background: transparent;
  color: var(--muted) !important;
}

/* Shared site-footer body on marketing pages (community, legal, …) */
body.tbp-marketing footer.site-footer {
  display: block;
  text-align: center;
  justify-content: unset;
  align-items: unset;
  gap: unset;
}

/* —— Shared marketing chrome (community, legal, pricing, …) ——
   Page-specific extras stay thin; do not duplicate these per page. */

body.tbp-marketing .mkt-banner {
  position: relative;
  height: clamp(180px, 28vw, 260px);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
body.tbp-marketing .mkt-banner-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--overlay-features-top) 0%, var(--overlay-scrim-soft) 45%, var(--overlay-nav) 100%),
    linear-gradient(0deg, var(--overlay-nav) 0%, transparent 50%),
    var(--mkt-banner-image, url("/images/marketing/home/sqwerv.jpg")) center 38% / cover no-repeat;
}
body.tbp-marketing .mkt-banner-copy {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 880px;
  margin: 0 auto;
  padding: 28px 24px;
}
body.tbp-marketing .mkt-banner-copy .eyebrow {
  color: var(--overlay-white-65) !important;
  margin-bottom: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
body.tbp-marketing .mkt-banner-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.4rem);
  letter-spacing: 0.5px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--text) !important;
  margin-bottom: 6px;
  text-shadow: 0 2px 18px var(--overlay-black-45);
}
body.tbp-marketing .mkt-banner-copy .lede {
  color: var(--overlay-white-82) !important;
  margin-bottom: 0;
  max-width: 32rem;
  font-size: 0.95rem;
}

body.tbp-marketing .mkt-page {
  max-width: 880px;
  margin: 0 auto;
  padding: var(--space-12) var(--space-10) var(--space-15);
}
body.tbp-marketing .mkt-page .section-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted) !important;
  margin-bottom: var(--space-5);
}

body.tbp-marketing .mkt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-md);
}
body.tbp-marketing .mkt-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
/* Surface DNA: components/panels.css (.tbp-card) */
body.tbp-marketing .tbp-card {
  display: block;
  text-decoration: none;
  color: var(--text) !important;
}
body.tbp-marketing .tbp-card:hover {
  color: var(--text) !important;
}

/* Destination tiles (community / help / legal): white icon left of title — same DNA as home .feature-head */
body.tbp-marketing .tbp-card:has(> i.bi):has(> strong) {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: var(--space-5);
  row-gap: var(--space-4);
  align-items: center;
}
body.tbp-marketing .tbp-card:has(> i.bi):has(> strong) > i.bi {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--overlay-white-28);
  border-radius: 10px;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--muted) !important;
  background: transparent;
}

/* Help / marketing prose: icons stay monochrome — never brand or Bootstrap accent colors */
body.tbp-marketing .mkt-page .bi,
body.tbp-marketing .mkt-prose .bi {
  color: var(--muted) !important;
}
body.tbp-marketing .mkt-page .btn .bi,
body.tbp-marketing .mkt-prose .btn .bi {
  color: inherit !important;
}
body.tbp-marketing .mkt-prose .text-info,
body.tbp-marketing .mkt-prose .text-primary,
body.tbp-marketing .mkt-prose .text-success,
body.tbp-marketing .mkt-prose .text-warning,
body.tbp-marketing .mkt-prose .text-danger {
  color: inherit !important;
}
body.tbp-marketing .tbp-card:has(> i.bi):has(> strong) > strong {
  grid-column: 2;
  grid-row: 1;
  display: block;
  margin: 0;
  font-size: 0.95rem;
  color: var(--text) !important;
}
body.tbp-marketing .tbp-card:has(> i.bi):has(> strong) > span:not(.btn) {
  grid-column: 1 / -1;
  grid-row: 2;
}

/* Button icons inherit label color — don't use the card icon recipe */
body.tbp-marketing .tbp-card .btn i {
  font-size: inherit;
  color: inherit !important;
  display: inline-block;
  margin-bottom: 0;
  line-height: 1;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
}
body.tbp-marketing .tbp-card strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--text) !important;
}
body.tbp-marketing .tbp-card span:not(.btn),
body.tbp-marketing .tbp-card p {
  font-size: 0.8rem;
  color: var(--muted) !important;
  line-height: 1.4;
  margin: 0;
}

body.tbp-marketing .mkt-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  height: 110px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
body.tbp-marketing .mkt-strip a {
  display: block;
  overflow: hidden;
  border-right: 1px solid var(--border);
}
body.tbp-marketing .mkt-strip a:last-child {
  border-right: none;
}
body.tbp-marketing .mkt-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.25) brightness(0.9);
  transition: filter 0.25s, transform 0.35s;
}
body.tbp-marketing .mkt-strip a:hover img {
  filter: grayscale(0) brightness(1);
  transform: scale(1.06);
}
body.tbp-marketing .mkt-strip a:nth-child(1) img { object-position: center 22%; }
body.tbp-marketing .mkt-strip a:nth-child(2) img { object-position: center 30%; }
body.tbp-marketing .mkt-strip a:nth-child(3) img { object-position: center 35%; }
body.tbp-marketing .mkt-strip a:nth-child(4) img { object-position: center 28%; }
body.tbp-marketing .mkt-strip a:nth-child(5) img { object-position: center 40%; }
body.tbp-marketing .mkt-strip a:nth-child(6) img { object-position: center 25%; }

body.tbp-marketing footer.site-footer.tbp-mkt-footer--center,
body.tbp-marketing footer.site-footer {
  padding: var(--space-10) var(--space-12);
  border-top: 1px solid var(--border);
}
body.tbp-marketing footer.site-footer .site-footer__tagline a,
body.tbp-marketing footer.site-footer .site-footer__nav a,
body.tbp-marketing footer.site-footer .site-footer-social__btn,
body.tbp-marketing footer.site-footer .site-footer-social__invite {
  color: var(--gray) !important;
  margin-right: 0;
}
body.tbp-marketing footer.site-footer .site-footer__tagline a:hover,
body.tbp-marketing footer.site-footer .site-footer__nav a:hover,
body.tbp-marketing footer.site-footer .site-footer-social__btn:hover,
body.tbp-marketing footer.site-footer .site-footer-social__invite:hover {
  color: var(--text) !important;
}

/* Legal / long-form markdown inside marketing shell.
   Use body type for headings — Bebas + tight line-height clips descenders
   and makes multi-line legal titles unreadable. */
body.tbp-marketing .mkt-prose {
  color: var(--gray) !important;
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 100%;
}
body.tbp-marketing .mkt-prose h1,
body.tbp-marketing .mkt-prose h2,
body.tbp-marketing .mkt-prose h3,
body.tbp-marketing .mkt-prose h4 {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text) !important;
  margin: 1.6em 0 0.5em;
  line-height: 1.35;
  overflow: visible;
  text-transform: none;
}
body.tbp-marketing .mkt-prose h1 { font-size: 1.55rem; margin-top: 0; }
body.tbp-marketing .mkt-prose h2 { font-size: 1.25rem; }
body.tbp-marketing .mkt-prose h3 { font-size: 1.1rem; }
body.tbp-marketing .mkt-prose h4 { font-size: 1rem; }
body.tbp-marketing .mkt-prose p,
body.tbp-marketing .mkt-prose li {
  color: var(--gray) !important;
  margin-bottom: 0.85em;
}
body.tbp-marketing .mkt-prose strong,
body.tbp-marketing .mkt-prose b {
  color: var(--text) !important;
  font-weight: 700;
}
body.tbp-marketing .mkt-prose hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 1.75em 0;
}
body.tbp-marketing .mkt-prose a {
  color: var(--text) !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}
body.tbp-marketing .mkt-prose a:hover {
  color: var(--red) !important;
}
body.tbp-marketing .mkt-prose ul,
body.tbp-marketing .mkt-prose ol {
  padding-left: 1.25rem;
  margin-bottom: 1em;
}

/* Help HTML sometimes embeds Bootstrap .row — keep wide children in bounds
   without overflow-x:clip (that can force overflow-y clipping on headings). */
body.tbp-marketing .mkt-prose > * {
  max-width: 100%;
}
body.tbp-marketing .mkt-prose > .row {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
}
body.tbp-marketing .mkt-prose .mkt-grid {
  margin-bottom: var(--space-8);
}
@media (max-width: 720px) {
  body.tbp-marketing .mkt-prose .mkt-grid {
    grid-template-columns: 1fr;
  }
}
body.tbp-marketing .mkt-doc-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
body.tbp-marketing .mkt-doc-nav a {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 4px;
  border: 1px solid var(--border);
  color: var(--gray) !important;
  background: var(--surface-2);
}
body.tbp-marketing .mkt-doc-nav a:hover,
body.tbp-marketing .mkt-doc-nav a.is-active {
  color: var(--text) !important;
  border-color: var(--gray);
  background: var(--surface-3);
}
body.tbp-marketing .mkt-doc-nav a.is-active {
  border-color: var(--red);
}
body.tbp-marketing .mkt-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray) !important;
  margin-bottom: 16px;
}
body.tbp-marketing .mkt-back:hover {
  color: var(--text) !important;
}

/* Help / pricing extras (still shared marketing chrome) */
body.tbp-marketing .mkt-page--wide {
  max-width: 1100px;
}
/* Featured paint: .tbp-card--featured in panels.css; spotlight spacing when first in page */
body.tbp-marketing .mkt-page > .tbp-card--featured {
  margin-bottom: var(--space-11);
}

/* Static paint: .tbp-card--static in panels.css; layout only here */
body.tbp-marketing .tbp-card--static:hover {
  transform: none;
}
body.tbp-marketing .mkt-tag-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0 0;
  padding: 0;
}
body.tbp-marketing .mkt-tag-list li {
  font-size: 0.72rem;
  color: var(--muted) !important;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 3px 8px;
}
body.tbp-marketing .mkt-footnote {
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--muted) !important;
  text-align: center;
}
body.tbp-marketing .mkt-footnote a {
  color: var(--gray) !important;
  font-weight: 600;
  text-decoration: underline;
}

/* Surface DNA: markup includes .tbp-panel; flush so button/body fill the well */
body.tbp-marketing .mkt-accordion .accordion-item.tbp-panel {
  padding: 0;
  overflow: hidden;
  color: var(--text) !important;
}
body.tbp-marketing .mkt-accordion .accordion-button {
  background: var(--surface-2) !important;
  color: var(--text) !important;
  box-shadow: none !important;
}
body.tbp-marketing .mkt-accordion .accordion-button:not(.collapsed) {
  background: var(--surface-3) !important;
  color: var(--text) !important;
}
body.tbp-marketing .mkt-accordion .accordion-button::after {
  filter: invert(1);
}
body.tbp-marketing .mkt-accordion .accordion-body {
  background: var(--surface);
  color: var(--gray) !important;
}
body.tbp-marketing .mkt-accordion .accordion-body p,
body.tbp-marketing .mkt-accordion .accordion-body strong {
  color: inherit !important;
}

body.tbp-marketing .mkt-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-lg);
  margin-bottom: var(--space-14);
}
/* Surface DNA: components/panels.css (.tbp-card); layout only here */
body.tbp-marketing .mkt-plan {
  position: relative;
  display: flex;
  flex-direction: column;
}
body.tbp-marketing .mkt-plan-badge {
  position: absolute;
  top: -10px;
  left: 16px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--text) !important;
  padding: 4px 10px;
  border-radius: 2px;
  margin: 0;
}
body.tbp-marketing .mkt-plan-badge--current {
  left: auto;
  right: 16px;
  background: var(--success);
}
body.tbp-marketing .mkt-plan-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--text) !important;
  margin: 8px 0 10px;
}
body.tbp-marketing .mkt-plan-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text) !important;
  margin: 0 0 4px;
  line-height: 1.1;
}
body.tbp-marketing .mkt-plan-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted) !important;
}
body.tbp-marketing .mkt-plan-yearly,
body.tbp-marketing .mkt-plan-storage {
  font-size: 0.8rem;
  color: var(--muted) !important;
  margin: 0 0 8px;
}
body.tbp-marketing .mkt-plan-storage strong {
  color: var(--text) !important;
}
body.tbp-marketing .mkt-plan-features {
  list-style: none;
  padding: 0;
  margin: 12px 0 18px;
  flex: 1;
}
body.tbp-marketing .mkt-plan-features li {
  font-size: 0.84rem;
  color: var(--gray) !important;
  padding: 5px 0 5px 1.1rem;
  position: relative;
}
body.tbp-marketing .mkt-plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success) !important;
  font-size: 0.75rem;
}
body.tbp-marketing .mkt-plan-features--muted {
  font-style: italic;
  color: var(--muted) !important;
}
body.tbp-marketing .mkt-plan-features--muted::before {
  content: none;
}
body.tbp-marketing .mkt-plan-cta .btn {
  width: 100%;
}
body.tbp-marketing .mkt-plan-cta .btn:disabled {
  opacity: 0.55;
  cursor: default;
}

/* Frame DNA: components/panels.css (.tbp-panel--frame) */
body.tbp-marketing .mkt-table-wrap {
  overflow-x: auto;
  margin-bottom: var(--space-13);
}
body.tbp-marketing .mkt-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
body.tbp-marketing .mkt-table th,
body.tbp-marketing .mkt-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  color: var(--gray) !important;
}
body.tbp-marketing .mkt-table th {
  background: var(--surface-3);
  color: var(--text) !important;
  font-weight: 600;
}
body.tbp-marketing .mkt-table tbody tr:last-child td {
  border-bottom: none;
}

/* Surface DNA: components/panels.css (.tbp-panel) */
/* Surface DNA: markup includes .tbp-panel; pad from panel kit */
body.tbp-marketing .mkt-cta-block {
  margin-top: var(--space-14);
  text-align: center;
}
body.tbp-marketing .mkt-cta-block h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--text) !important;
  margin: 0 0 10px;
}
body.tbp-marketing .mkt-cta-block p {
  color: var(--gray) !important;
  max-width: 28rem;
  margin: 0 auto 18px;
}
body.tbp-marketing .mkt-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* —— Video tutorial show (shared /videos/:slug) —— */
body.tbp-marketing .mkt-video {
  margin-bottom: var(--space-11);
}
body.tbp-marketing .mkt-video__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--row-radius);
  overflow: hidden;
  margin-bottom: var(--space-5);
}
body.tbp-marketing .mkt-video__player video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
body.tbp-marketing .mkt-video__lede {
  color: var(--gray) !important;
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 var(--space-5);
}
body.tbp-marketing .mkt-video__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--space-6);
}
body.tbp-marketing .mkt-video__chapters .section-label {
  margin-bottom: var(--space-3);
}
body.tbp-marketing .mkt-video__chapters ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
body.tbp-marketing .mkt-video__chapter {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--row-radius);
  background: var(--panel-bg-muted);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
body.tbp-marketing .mkt-video__chapter:hover {
  border-color: var(--border-hover);
  background: var(--panel-bg);
}
body.tbp-marketing .mkt-video__chapter-label {
  font-size: 0.9rem;
  color: var(--text);
}
body.tbp-marketing .mkt-video__chapter-range {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 900px) {
  body.tbp-marketing .mkt-grid--3 {
    grid-template-columns: 1fr;
  }
  body.tbp-marketing .mkt-plan-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  body.tbp-marketing .mkt-grid {
    grid-template-columns: 1fr;
  }
  body.tbp-marketing .mkt-strip {
    grid-template-columns: repeat(3, 1fr);
    height: 200px;
  }
  body.tbp-marketing .mkt-strip a:nth-child(3) {
    border-right: none;
  }
  body.tbp-marketing .mkt-strip a:nth-child(n + 4) {
    border-top: 1px solid var(--border);
  }
}
