/* ============================================================
   TPC STARTER TOOLKIT — toolkit.css
   Version: 2.0.0
   Scope: All rules namespaced under .tpc-toolkit
   Brand: #FD4604 (orange) | #212121 (dark) | #FFFFFF (white)
   ============================================================ */


/* ============================================================
   SECTION 1 — DESIGN TOKENS
   ============================================================ */

.tpc-toolkit {

  /* Brand colors */
  --tpc-orange:         #FD4604;
  --tpc-dark:           #212121;
  --tpc-white:          #FFFFFF;
  --tpc-bg:             #FFFFFF;

  /* Derived colors */
  --tpc-orange-08:      rgba(253, 70, 4, 0.08);
  --tpc-orange-12:      rgba(253, 70, 4, 0.12);
  --tpc-orange-20:      rgba(253, 70, 4, 0.20);
  --tpc-charcoal:       #2C2C2C;
  --tpc-warm-grey:      #8C8070;
  --tpc-cream:          #FAF7F4;
  --tpc-border:         #E0D8D0;
  --tpc-border-light:   #C4B8A8;

  /* Callout colors */
  --tpc-info-bg:            #EEF3F7;
  --tpc-info-border:        #5B8DB8;
  --tpc-warn-bg:            #FDF4E3;
  --tpc-warn-border:        #D4A017;
  --tpc-success-bg:         #EFF7EF;
  --tpc-success-border:     #4A8C4A;

  /* Progressive tints */
  --tpc-tint-1:   #FDF8F4;
  --tpc-tint-2:   #FDF0E6;
  --tpc-tint-3:   #FAE8D5;
  --tpc-tint-4:   #F7D4AA;
  --tpc-tint-5:   #FD4604;

  /* Pull quote background */
  --tpc-pull-bg:        #F5EFE6;
  --tpc-worksheet-bg:   #FAF7F3;

  /* Typography */
  --tpc-font-heading:   'Nunito Sans', sans-serif;
  --tpc-font-body:      'Open Sans', sans-serif;

  --tpc-size-display:   1.75rem;
  --tpc-size-h1:        1.5rem;
  --tpc-size-h2:        0.875rem;
  --tpc-size-h3:        0.8125rem;
  --tpc-size-body:      1rem;
  --tpc-size-pull:      1.0625rem;
  --tpc-size-small:     0.8125rem;
  --tpc-size-xs:        0.75rem;

  --tpc-weight-regular: 400;
  --tpc-weight-medium:  600;
  --tpc-weight-bold:    700;

  --tpc-lh-tight:       1.2;
  --tpc-lh-heading:     1.3;
  --tpc-lh-body:        1.7;
  --tpc-lh-pull:        1.5;

  /* Spacing */
  --tpc-space-4:    0.25rem;
  --tpc-space-8:    0.5rem;
  --tpc-space-12:   0.75rem;
  --tpc-space-16:   1rem;
  --tpc-space-20:   1.25rem;
  --tpc-space-24:   1.5rem;
  --tpc-space-32:   2rem;
  --tpc-space-40:   2.5rem;
  --tpc-space-48:   3rem;
  --tpc-space-64:   4rem;

  /* Layout */
  --tpc-content-width:  700px;
  --tpc-wide-width:     960px;
  --tpc-nav-width:      240px;
  --tpc-section-gap:    4.5rem;
  --tpc-page-pad:       1.25rem;
  --tpc-page-pad-lg:    2rem;
  --tpc-header-height:  56px;

  /* Borders */
  --tpc-radius-sm:      4px;
  --tpc-radius-md:      8px;
  --tpc-radius-lg:      12px;
  --tpc-radius-pill:    999px;
  --tpc-border-callout: 4px;
  --tpc-border-sheet:   2px;

  /* Shadows */
  --tpc-shadow-sm:  0 1px 4px rgba(33, 33, 33, 0.08);
  --tpc-shadow-md:  0 4px 16px rgba(33, 33, 33, 0.10);
  --tpc-shadow-lg:  0 8px 32px rgba(33, 33, 33, 0.12);

  /* Transitions */
  --tpc-transition-fast: 0.15s ease;
  --tpc-transition-base: 0.25s ease;

  /* Z-index */
  --tpc-z-progress:  900;
  --tpc-z-header:    800;
  --tpc-z-nav:       700;
  --tpc-z-overlay:   600;
  --tpc-z-drawer:    650;
  --tpc-z-fab:       660;
}


/* ============================================================
   SECTION 2 — SCOPED RESET
   ============================================================ */

.tpc-toolkit *,
.tpc-toolkit *::before,
.tpc-toolkit *::after {
  box-sizing: border-box;
}

.tpc-toolkit {
  background-color: var(--tpc-bg);
  color: var(--tpc-charcoal);
  font-family: var(--tpc-font-body);
  font-size: var(--tpc-size-body);
  line-height: var(--tpc-lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.tpc-toolkit img {
  max-width: 100%;
  height: auto;
  display: block;
}

.tpc-toolkit ul,
.tpc-toolkit ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tpc-toolkit a {
  color: var(--tpc-orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.tpc-toolkit a:hover {
  text-decoration: none;
}

.tpc-toolkit button {
  cursor: pointer;
  font-family: var(--tpc-font-body);
  border: none;
  background: none;
  padding: 0;
}

.tpc-toolkit input,
.tpc-toolkit textarea,
.tpc-toolkit select {
  font-family: var(--tpc-font-body);
  font-size: 1rem;
}


/* ============================================================
   SECTION 3 — GUTENBERG BLOCK OVERRIDES
   ============================================================ */

.tpc-toolkit .wp-block-paragraph {
  margin-top: var(--tpc-space-16);
  margin-bottom: 0;
  max-width: 65ch;
}

.tpc-toolkit .wp-block-paragraph:first-child {
  margin-top: 0;
}

.tpc-toolkit .wp-block-heading {
  margin-top: var(--tpc-space-32);
  margin-bottom: var(--tpc-space-12);
  font-family: var(--tpc-font-heading);
  line-height: var(--tpc-lh-heading);
  color: var(--tpc-dark);
}

.tpc-toolkit .wp-block-heading:first-child {
  margin-top: 0;
}

.tpc-toolkit h2.wp-block-heading {
  font-size: var(--tpc-size-h1);
  font-weight: var(--tpc-weight-bold);
}

.tpc-toolkit h3.wp-block-heading {
  font-size: var(--tpc-size-h2);
  font-weight: var(--tpc-weight-bold);
}

.tpc-toolkit h4.wp-block-heading,
.tpc-toolkit h5.wp-block-heading {
  font-size: var(--tpc-size-h3);
  font-weight: var(--tpc-weight-bold);
}

.tpc-toolkit .wp-block-quote {
  border: none;
  border-left: none;
  padding: 0;
  margin: 0;
  font-style: normal;
  color: inherit;
}

.tpc-toolkit .wp-block-quote p {
  font-style: normal;
  font-size: inherit;
  color: inherit;
  margin: 0;
  max-width: none;
}

.tpc-toolkit .wp-block-quote cite,
.tpc-toolkit .wp-block-quote footer {
  display: none;
}

.tpc-toolkit .wp-block-table {
  margin: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tpc-toolkit .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  border: none;
  font-size: var(--tpc-size-body);
  min-width: 400px;
}

.tpc-toolkit .wp-block-table td,
.tpc-toolkit .wp-block-table th {
  border: none;
  padding: 0;
  text-align: left;
  vertical-align: middle;
}

.tpc-toolkit .wp-block-table figcaption {
  display: none;
}

.tpc-toolkit .wp-block-list {
  padding-left: 0;
  margin-top: var(--tpc-space-16);
  margin-bottom: 0;
}

.tpc-toolkit .wp-block-list li {
  list-style: none;
  margin-bottom: var(--tpc-space-8);
  padding: 0;
}

.tpc-toolkit .wp-block-list li::marker {
  display: none;
}

.tpc-toolkit .wp-block-list li:last-child {
  margin-bottom: 0;
}

.tpc-toolkit .wp-block-columns {
  gap: 0;
  margin-top: var(--tpc-space-24);
  margin-bottom: 0;
  flex-wrap: wrap;
}

/* Column !important overrides Gutenberg inline flex-basis styles */
.tpc-toolkit .wp-block-column {
  flex-basis: 100% !important;
  margin-left: 0 !important;
}

@media (min-width: 640px) {
  .tpc-toolkit .wp-block-columns {
    flex-wrap: nowrap;
    gap: var(--tpc-space-32);
  }

  .tpc-toolkit .wp-block-column {
    flex-basis: auto !important;
    flex: 1 1 0 !important;
    margin-left: 0 !important;
  }
}

.tpc-toolkit .wp-block-image {
  margin: var(--tpc-space-24) 0 0 0;
}

.tpc-toolkit .wp-block-image:first-child {
  margin-top: 0;
}

.tpc-toolkit .wp-block-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--tpc-radius-md);
}

.tpc-toolkit .wp-block-image figcaption {
  font-size: var(--tpc-size-small);
  color: var(--tpc-warm-grey);
  text-align: center;
  margin-top: var(--tpc-space-8);
}

.tpc-toolkit .wp-block-separator {
  border: none;
  border-top: 1px solid var(--tpc-border);
  margin: var(--tpc-space-32) 0 0 0;
  opacity: 1;
}

.tpc-toolkit .wp-block-group:not([class*="has-background"]) {
  padding: 0;
}

.tpc-toolkit .wp-block-buttons {
  margin-top: var(--tpc-space-24);
  gap: var(--tpc-space-12);
  flex-wrap: wrap;
}

.tpc-toolkit .wp-block-button__link {
  font-family: var(--tpc-font-heading);
  font-size: var(--tpc-size-small);
  font-weight: var(--tpc-weight-bold);
  border-radius: var(--tpc-radius-pill);
  padding: var(--tpc-space-12) var(--tpc-space-24);
  text-decoration: none;
  transition: opacity var(--tpc-transition-fast);
}

.tpc-toolkit .wp-block-button__link:hover {
  opacity: 0.88;
  text-decoration: none;
}


/* ============================================================
   SECTION 4 — ROOT LAYOUT
   ============================================================ */

.tpc-toolkit {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

.tpc-document {
  width: 100%;
  max-width: var(--tpc-content-width);
  margin-left: auto;
  margin-right: auto;
  padding: var(--tpc-space-32) var(--tpc-page-pad) var(--tpc-space-64);
}

@media (min-width: 960px) {
  .tpc-document {
    margin-left: calc(var(--tpc-nav-width) + var(--tpc-space-32));
    margin-right: auto;
    padding: var(--tpc-space-48) var(--tpc-page-pad-lg) var(--tpc-space-64);
  }
}

@media (min-width: 1200px) {
  .tpc-document {
    padding-left: var(--tpc-space-40);
    padding-right: var(--tpc-space-40);
  }
}

.tpc-section {
  margin-top: var(--tpc-section-gap);
  scroll-margin-top: calc(var(--tpc-header-height) + var(--tpc-space-24));
}

.tpc-section:first-child {
  margin-top: 0;
}

.tpc-section__header {
  margin-bottom: var(--tpc-space-32);
}

.tpc-section__body > * + * {
  margin-top: var(--tpc-space-16);
}

.tpc-wide {
  width: 100%;
  max-width: var(--tpc-wide-width);
  margin-left: auto;
  margin-right: auto;
}

.tpc-full {
  width: 100%;
  max-width: none;
}

.tpc-centered {
  margin-left: auto;
  margin-right: auto;
}


/* ============================================================
   SECTION 5 — PROGRESS BAR
   ============================================================ */

.tpc-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: transparent;
  z-index: var(--tpc-z-progress);
  pointer-events: none;
}

.tpc-progress-fill {
  height: 100%;
  width: 0%;
  background-color: var(--tpc-orange);
  transition: width 0.1s linear;
  will-change: width;
}


/* ============================================================
   SECTION 6 — SITE MINI-HEADER
   ============================================================ */

.tpc-site-header {
  position: sticky;
  top: 3px;
  left: 0;
  right: 0;
  height: var(--tpc-header-height);
  background-color: var(--tpc-white);
  border-bottom: 1px solid var(--tpc-border);
  z-index: var(--tpc-z-header);
  display: flex;
  align-items: center;
}

.tpc-site-header__inner {
  width: 100%;
  max-width: calc(var(--tpc-content-width) + var(--tpc-nav-width) + var(--tpc-space-64));
  margin: 0 auto;
  padding: 0 var(--tpc-page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--tpc-space-16);
}

.tpc-site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.tpc-site-header__logo img {
  height: 32px;
  width: auto;
  display: block;
}

.tpc-site-header__nav {
  display: flex;
  align-items: center;
  gap: var(--tpc-space-20);
}

.tpc-site-header__nav-link {
  font-family: var(--tpc-font-heading);
  font-size: var(--tpc-size-small);
  font-weight: var(--tpc-weight-medium);
  color: var(--tpc-charcoal);
  text-decoration: none;
  transition: color var(--tpc-transition-fast);
  white-space: nowrap;
}

.tpc-site-header__nav-link:hover {
  color: var(--tpc-orange);
  text-decoration: none;
}

.tpc-site-header__nav-link--active {
  color: var(--tpc-orange);
  font-weight: var(--tpc-weight-bold);
}

@media (max-width: 479px) {
  .tpc-site-header__nav {
    display: none;
  }
}

@media (min-width: 960px) {
  .tpc-site-header__inner {
    padding: 0 var(--tpc-page-pad-lg);
  }
}


/* ============================================================
   SECTION 7 — DESKTOP FLOATING NAVIGATION
   ============================================================ */

.tpc-floating-nav {
  display: none;
}

@media (min-width: 960px) {
  .tpc-floating-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: calc(3px + var(--tpc-header-height) + var(--tpc-space-16));
    left: 0;
    width: var(--tpc-nav-width);
    height: calc(100vh - 3px - var(--tpc-header-height) - var(--tpc-space-16));
    overflow-y: auto;
    overflow-x: hidden;
    background-color: var(--tpc-white);
    border-right: 1px solid var(--tpc-border);
    padding: var(--tpc-space-16) var(--tpc-space-12) var(--tpc-space-24);
    z-index: var(--tpc-z-nav);
    scrollbar-width: thin;
    scrollbar-color: var(--tpc-border) transparent;
  }

  .tpc-floating-nav::-webkit-scrollbar {
    width: 4px;
  }

  .tpc-floating-nav::-webkit-scrollbar-thumb {
    background-color: var(--tpc-border);
    border-radius: var(--tpc-radius-pill);
  }
}

.tpc-floating-nav__header {
  margin-bottom: var(--tpc-space-16);
  padding-bottom: var(--tpc-space-12);
  border-bottom: 1px solid var(--tpc-border);
}

.tpc-floating-nav__site-name {
  display: block;
  font-family: var(--tpc-font-heading);
  font-size: var(--tpc-size-xs);
  font-weight: var(--tpc-weight-bold);
  color: var(--tpc-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--tpc-space-4);
}

.tpc-floating-nav__title {
  display: block;
  font-family: var(--tpc-font-body);
  font-size: var(--tpc-size-xs);
  color: var(--tpc-warm-grey);
}

.tpc-floating-nav__progress {
  margin-bottom: var(--tpc-space-16);
}

.tpc-floating-nav__progress-track {
  height: 3px;
  background-color: var(--tpc-border);
  border-radius: var(--tpc-radius-pill);
  overflow: hidden;
}

.tpc-floating-nav__progress-fill {
  height: 100%;
  width: 0%;
  background-color: var(--tpc-orange);
  border-radius: var(--tpc-radius-pill);
  transition: width 0.2s ease;
  will-change: width;
}

.tpc-floating-nav__section-label {
  display: block;
  font-size: var(--tpc-size-xs);
  font-weight: var(--tpc-weight-bold);
  color: var(--tpc-warm-grey);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: var(--tpc-space-8);
}

.tpc-floating-nav__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.tpc-nav-link {
  display: flex;
  align-items: center;
  gap: var(--tpc-space-8);
  padding: var(--tpc-space-8);
  border-radius: var(--tpc-radius-sm);
  text-decoration: none;
  color: var(--tpc-charcoal);
  font-family: var(--tpc-font-body);
  font-size: var(--tpc-size-xs);
  font-weight: var(--tpc-weight-regular);
  line-height: var(--tpc-lh-tight);
  border: 1px solid transparent;
  transition:
    background-color var(--tpc-transition-fast),
    color var(--tpc-transition-fast),
    border-color var(--tpc-transition-fast);
}

.tpc-nav-link:hover {
  background-color: var(--tpc-orange-08);
  color: var(--tpc-dark);
  text-decoration: none;
  border-color: transparent;
}

.tpc-nav-link.is-active {
  background-color: var(--tpc-orange-12);
  color: var(--tpc-orange);
  border-color: var(--tpc-orange-20);
  font-weight: var(--tpc-weight-medium);
}

.tpc-nav-link__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  min-width: 1.25rem;
  border-radius: var(--tpc-radius-sm);
  background-color: var(--tpc-cream);
  color: var(--tpc-charcoal);
  font-size: 0.625rem;
  font-weight: var(--tpc-weight-bold);
  font-family: var(--tpc-font-heading);
  transition:
    background-color var(--tpc-transition-fast),
    color var(--tpc-transition-fast);
}

.tpc-nav-link.is-active .tpc-nav-link__num {
  background-color: var(--tpc-orange);
  color: var(--tpc-white);
}

.tpc-nav-link__text {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* ============================================================
   SECTION 8 — MOBILE NAVIGATION
   ============================================================ */

.tpc-nav-fab {
  position: fixed;
  bottom: var(--tpc-space-24);
  right: var(--tpc-space-16);
  z-index: var(--tpc-z-fab);
  display: flex;
  align-items: center;
  gap: var(--tpc-space-8);
  padding: var(--tpc-space-12) var(--tpc-space-20);
  background-color: var(--tpc-orange);
  color: var(--tpc-white);
  font-family: var(--tpc-font-heading);
  font-size: var(--tpc-size-small);
  font-weight: var(--tpc-weight-bold);
  border: none;
  border-radius: var(--tpc-radius-pill);
  box-shadow: var(--tpc-shadow-lg);
  cursor: pointer;
  transition:
    transform var(--tpc-transition-fast),
    box-shadow var(--tpc-transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.tpc-nav-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(253, 70, 4, 0.35);
}

.tpc-nav-fab:active {
  transform: translateY(0);
}

.tpc-nav-fab__icon {
  font-size: 1rem;
  line-height: 1;
  pointer-events: none;
}

@media (min-width: 960px) {
  .tpc-nav-fab {
    display: none;
  }
}

.tpc-mobile-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(33, 33, 33, 0.45);
  z-index: var(--tpc-z-overlay);
}

.tpc-mobile-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--tpc-z-drawer);
  background-color: var(--tpc-white);
  border-top: 1px solid var(--tpc-border);
  border-radius: var(--tpc-radius-lg) var(--tpc-radius-lg) 0 0;
  padding: var(--tpc-space-20) var(--tpc-space-20) var(--tpc-space-32);
  max-height: 72vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  box-shadow: 0 -4px 32px rgba(33, 33, 33, 0.12);
  scrollbar-width: thin;
  scrollbar-color: var(--tpc-border) transparent;
}

.tpc-mobile-nav::before {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background-color: var(--tpc-border);
  border-radius: var(--tpc-radius-pill);
  margin: 0 auto var(--tpc-space-16);
}

.tpc-mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--tpc-space-16);
  padding-bottom: var(--tpc-space-12);
  border-bottom: 1px solid var(--tpc-border);
}

.tpc-mobile-nav__title {
  font-family: var(--tpc-font-heading);
  font-size: var(--tpc-size-h3);
  font-weight: var(--tpc-weight-bold);
  color: var(--tpc-dark);
}

.tpc-mobile-nav__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: var(--tpc-radius-sm);
  background-color: var(--tpc-cream);
  color: var(--tpc-warm-grey);
  font-size: var(--tpc-size-small);
  font-weight: var(--tpc-weight-bold);
  border: none;
  cursor: pointer;
  transition: background-color var(--tpc-transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.tpc-mobile-nav__close:hover {
  background-color: var(--tpc-border);
  color: var(--tpc-dark);
}

.tpc-mobile-nav__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--tpc-space-8);
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 359px) {
  .tpc-mobile-nav__list {
    grid-template-columns: 1fr;
  }
}

.tpc-mobile-nav__list .tpc-nav-link {
  padding: var(--tpc-space-12) var(--tpc-space-8);
  background-color: var(--tpc-cream);
  border: 1px solid var(--tpc-border);
  border-radius: var(--tpc-radius-md);
  font-size: var(--tpc-size-xs);
}

.tpc-mobile-nav__list .tpc-nav-link:hover {
  background-color: var(--tpc-orange-08);
  border-color: var(--tpc-orange-20);
}

.tpc-mobile-nav__list .tpc-nav-link.is-active {
  background-color: var(--tpc-orange-12);
  border-color: var(--tpc-orange-20);
  color: var(--tpc-orange);
}

@media (min-width: 960px) {
  .tpc-mobile-nav {
    display: none !important;
  }

  .tpc-mobile-overlay {
    display: none !important;
  }
}


/* ============================================================
   SECTION 9 — TYPOGRAPHY CLASSES
   ============================================================ */

.tpc-toolkit .tpc-text-orange { color: var(--tpc-orange); }
.tpc-toolkit .tpc-text-grey   { color: var(--tpc-warm-grey); }
.tpc-toolkit .tpc-text-dark   { color: var(--tpc-dark); }
.tpc-toolkit .tpc-text-caps   { text-transform: uppercase; letter-spacing: 0.06em; }
.tpc-toolkit .tpc-text-medium { font-weight: var(--tpc-weight-medium); }
.tpc-toolkit .tpc-text-small  { font-size: var(--tpc-size-small); line-height: var(--tpc-lh-tight); }
.tpc-toolkit .tpc-text-xs     { font-size: var(--tpc-size-xs); line-height: var(--tpc-lh-tight); }
.tpc-toolkit .tpc-text-center { text-align: center; }

.tpc-toolkit .tpc-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.tpc-toolkit .tpc-hidden-print { }
.tpc-toolkit .tpc-hidden-screen { display: none; }

/* Spacing utilities */
.tpc-toolkit .tpc-mt-12 { margin-top: var(--tpc-space-12); }
.tpc-toolkit .tpc-mt-16 { margin-top: var(--tpc-space-16); }
.tpc-toolkit .tpc-mt-20 { margin-top: var(--tpc-space-20); }
.tpc-toolkit .tpc-mt-24 { margin-top: var(--tpc-space-24); }
.tpc-toolkit .tpc-mt-32 { margin-top: var(--tpc-space-32); }
.tpc-toolkit .tpc-mt-40 { margin-top: var(--tpc-space-40); }
.tpc-toolkit .tpc-mt-48 { margin-top: var(--tpc-space-48); }
.tpc-toolkit .tpc-mt-64 { margin-top: var(--tpc-space-64); }


/* ============================================================
   SECTION 10 — CHAPTER LABELS
   ============================================================ */

.tpc-toolkit .tpc-chapter-label {
  display: block;
  font-family: var(--tpc-font-heading);
  font-size: var(--tpc-size-display);
  font-weight: var(--tpc-weight-bold);
  line-height: var(--tpc-lh-tight);
  color: var(--tpc-dark);
  letter-spacing: -0.01em;
  margin-top: 0;
  margin-bottom: var(--tpc-space-4);
}

@media (max-width: 479px) {
  .tpc-toolkit .tpc-chapter-label {
    font-size: 1.5rem;
  }
}

.tpc-toolkit .tpc-chapter-label--appendix {
  font-size: var(--tpc-size-h1);
  color: var(--tpc-warm-grey);
  font-weight: var(--tpc-weight-medium);
  letter-spacing: 0;
}


/* ============================================================
   SECTION 11 — SECTION HEADERS AND HEADINGS
   ============================================================ */

.tpc-toolkit .tpc-h1 {
  font-family: var(--tpc-font-heading);
  font-size: var(--tpc-size-h1);
  font-weight: var(--tpc-weight-bold);
  line-height: var(--tpc-lh-heading);
  color: var(--tpc-dark);
  letter-spacing: -0.01em;
  margin-top: var(--tpc-space-8);
  margin-bottom: 0;
}

.tpc-toolkit .tpc-chapter-label + .tpc-h1 {
  margin-top: 0;
}

@media (max-width: 479px) {
  .tpc-toolkit .tpc-h1 {
    font-size: 1.25rem;
  }
}

.tpc-toolkit .tpc-h2 {
  font-family: var(--tpc-font-heading);
  font-size: var(--tpc-size-h2);
  font-weight: var(--tpc-weight-bold);
  line-height: var(--tpc-lh-heading);
  color: var(--tpc-orange);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: var(--tpc-space-32);
  margin-bottom: var(--tpc-space-8);
}

.tpc-toolkit .tpc-h2:first-child {
  margin-top: 0;
}

.tpc-toolkit .tpc-h3 {
  font-family: var(--tpc-font-heading);
  font-size: var(--tpc-size-h3);
  font-weight: var(--tpc-weight-bold);
  line-height: var(--tpc-lh-heading);
  color: var(--tpc-dark);
  margin-top: var(--tpc-space-20);
  margin-bottom: var(--tpc-space-8);
}

.tpc-toolkit .tpc-h3:first-child {
  margin-top: 0;
}

.tpc-toolkit .tpc-transition-line {
  font-size: var(--tpc-size-body);
  font-weight: var(--tpc-weight-regular);
  color: var(--tpc-charcoal);
  font-style: italic;
  margin-top: var(--tpc-space-40);
  margin-bottom: 0;
  max-width: 65ch;
}


/* ============================================================
   SECTION 12 — PULL QUOTES
   ============================================================ */

.tpc-toolkit .tpc-pull-quote {
  position: relative;
  background-color: var(--tpc-pull-bg);
  border-left: var(--tpc-border-callout) solid var(--tpc-orange);
  border-radius: 0 var(--tpc-radius-md) var(--tpc-radius-md) 0;
  padding: var(--tpc-space-20) var(--tpc-space-24);
  margin-top: var(--tpc-space-32);
  margin-bottom: 0;
}

.tpc-toolkit .tpc-pull-quote p {
  font-family: var(--tpc-font-heading);
  font-size: var(--tpc-size-pull);
  font-weight: var(--tpc-weight-medium);
  line-height: var(--tpc-lh-pull);
  color: var(--tpc-dark);
  font-style: normal;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none;
}

.tpc-toolkit .tpc-pull-quote cite,
.tpc-toolkit .tpc-pull-quote footer {
  display: none;
}

.tpc-toolkit .tpc-pull-quote + * {
  margin-top: var(--tpc-space-32);
}

@media (min-width: 640px) {
  .tpc-toolkit .tpc-pull-quote {
    padding: var(--tpc-space-24) var(--tpc-space-32);
  }
}


/* ============================================================
   SECTION 13 — BODY COPY SYSTEM
   ============================================================ */

.tpc-toolkit .tpc-body {
  font-family: var(--tpc-font-body);
  font-size: var(--tpc-size-body);
  font-weight: var(--tpc-weight-regular);
  line-height: var(--tpc-lh-body);
  color: var(--tpc-charcoal);
  margin-top: var(--tpc-space-16);
  margin-bottom: 0;
  max-width: 65ch;
}

.tpc-toolkit .tpc-body:first-child {
  margin-top: 0;
}

.tpc-toolkit .tpc-body--medium {
  font-family: var(--tpc-font-body);
  font-size: var(--tpc-size-body);
  font-weight: var(--tpc-weight-medium);
  line-height: var(--tpc-lh-body);
  color: var(--tpc-dark);
  margin-top: var(--tpc-space-20);
  margin-bottom: 0;
  max-width: 65ch;
}

.tpc-toolkit .tpc-body--medium + * {
  margin-top: var(--tpc-space-20);
}

.tpc-toolkit .tpc-body--hinge {
  font-family: var(--tpc-font-body);
  font-size: var(--tpc-size-body);
  font-weight: var(--tpc-weight-medium);
  line-height: var(--tpc-lh-body);
  color: var(--tpc-dark);
  margin-top: var(--tpc-space-20);
  margin-bottom: 0;
  max-width: 65ch;
}

.tpc-toolkit .tpc-body--secondary {
  font-family: var(--tpc-font-body);
  font-size: var(--tpc-size-small);
  font-weight: var(--tpc-weight-regular);
  line-height: var(--tpc-lh-tight);
  color: var(--tpc-warm-grey);
  margin-top: var(--tpc-space-8);
  margin-bottom: 0;
  max-width: 65ch;
}

.tpc-toolkit .tpc-body--note {
  font-family: var(--tpc-font-body);
  font-size: var(--tpc-size-small);
  font-weight: var(--tpc-weight-regular);
  font-style: italic;
  line-height: var(--tpc-lh-tight);
  color: var(--tpc-warm-grey);
  margin-top: var(--tpc-space-8);
  margin-bottom: 0;
}

.tpc-toolkit .tpc-body--isolated {
  font-family: var(--tpc-font-body);
  font-size: var(--tpc-size-body);
  font-weight: var(--tpc-weight-regular);
  font-style: normal;
  line-height: var(--tpc-lh-body);
  color: var(--tpc-charcoal);
  margin-top: var(--tpc-space-32);
  margin-bottom: 0;
  max-width: 65ch;
}

.tpc-toolkit .tpc-body--isolated + * {
  margin-top: var(--tpc-space-32);
}

.tpc-toolkit .tpc-body a,
.tpc-toolkit .wp-block-paragraph a {
  color: var(--tpc-orange);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: opacity var(--tpc-transition-fast);
}

.tpc-toolkit .tpc-body a:hover,
.tpc-toolkit .wp-block-paragraph a:hover {
  opacity: 0.8;
  text-decoration: none;
}

.tpc-toolkit .wp-block-paragraph strong,
.tpc-toolkit .tpc-body strong {
  font-weight: var(--tpc-weight-bold);
  color: var(--tpc-dark);
}

.tpc-toolkit .wp-block-paragraph em,
.tpc-toolkit .tpc-body em {
  font-style: italic;
  color: inherit;
}

.tpc-toolkit .tpc-small {
  font-size: var(--tpc-size-small);
  color: var(--tpc-warm-grey);
  line-height: var(--tpc-lh-tight);
}

.tpc-toolkit .tpc-setup-note,
.tpc-toolkit .tpc-email-setup-note {
  font-size: var(--tpc-size-small);
  color: var(--tpc-warm-grey);
  font-style: italic;
  margin-top: var(--tpc-space-8);
}


/* ============================================================
   SECTION 14 — SECTION INTRO PATTERNS
   ============================================================ */

.tpc-toolkit .tpc-section-header {
  margin-bottom: var(--tpc-space-32);
}

.tpc-toolkit .tpc-opening-para {
  font-family: var(--tpc-font-body);
  font-size: var(--tpc-size-body);
  font-weight: var(--tpc-weight-regular);
  line-height: var(--tpc-lh-body);
  color: var(--tpc-charcoal);
  margin-top: var(--tpc-space-24);
  margin-bottom: 0;
  max-width: 65ch;
}

/* Story split layout */
.tpc-toolkit .tpc-story-split {
  display: flex;
  flex-direction: column;
  gap: var(--tpc-space-24);
  margin-top: var(--tpc-space-24);
  align-items: flex-start;
}

.tpc-toolkit .tpc-story-split .wp-block-column:last-child {
  border-radius: var(--tpc-radius-md);
  overflow: hidden;
}

.tpc-toolkit .tpc-story-split .wp-block-column:last-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--tpc-radius-md);
}

@media (min-width: 640px) {
  .tpc-toolkit .tpc-story-split {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--tpc-space-40);
  }

  .tpc-toolkit .tpc-story-split .wp-block-column:first-child {
    flex: 0 0 55% !important;
  }

  .tpc-toolkit .tpc-story-split .wp-block-column:last-child {
    flex: 1 !important;
  }
}

/* Cover section */
.tpc-toolkit .tpc-section--cover {
  text-align: center;
  padding: var(--tpc-space-48) var(--tpc-page-pad) var(--tpc-space-40);
  border-bottom: 1px solid var(--tpc-border);
  margin-bottom: 0;
}

.tpc-toolkit .tpc-cover-intro .tpc-chapter-label {
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  color: var(--tpc-orange);
}

.tpc-toolkit .tpc-cover-intro .tpc-h1 {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  color: var(--tpc-dark);
  font-weight: var(--tpc-weight-medium);
  margin-top: var(--tpc-space-8);
  letter-spacing: 0;
}

.tpc-toolkit .tpc-cover-intro .tpc-opening-para {
  color: var(--tpc-warm-grey);
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.tpc-toolkit .tpc-cover-image {
  margin-top: var(--tpc-space-32);
  border-radius: var(--tpc-radius-md);
  overflow: hidden;
}

.tpc-toolkit .tpc-cover-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--tpc-radius-md);
}

/* Thank you section */
.tpc-toolkit .tpc-section--thank-you {
  text-align: left;
  padding: var(--tpc-space-40) 0;
}

.tpc-toolkit .tpc-thank-you-opening {
  font-family: var(--tpc-font-heading);
  font-size: var(--tpc-size-h1);
  font-weight: var(--tpc-weight-medium);
  color: var(--tpc-dark);
  text-align: center;
  margin-top: var(--tpc-space-40);
  margin-bottom: var(--tpc-space-32);
  max-width: none;
}

/* Sign-off */
.tpc-toolkit .tpc-signoff {
  margin-top: var(--tpc-space-40);
  padding-top: var(--tpc-space-24);
  border-top: 1px solid var(--tpc-border);
}

.tpc-toolkit .tpc-signoff__name {
  font-family: var(--tpc-font-heading);
  font-size: var(--tpc-size-small);
  font-weight: var(--tpc-weight-bold);
  color: var(--tpc-dark);
  margin-top: 0;
  margin-bottom: var(--tpc-space-4);
}

.tpc-toolkit .tpc-signoff__brand,
.tpc-toolkit .tpc-signoff__url {
  font-family: var(--tpc-font-body);
  font-size: var(--tpc-size-small);
  color: var(--tpc-charcoal);
  display: block;
  margin-top: var(--tpc-space-4);
  margin-bottom: 0;
}

.tpc-toolkit .tpc-signoff__url {
  color: var(--tpc-orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.tpc-toolkit .tpc-signoff__tagline {
  font-family: var(--tpc-font-body);
  font-size: var(--tpc-size-small);
  font-style: italic;
  color: var(--tpc-warm-grey);
  display: block;
  margin-top: var(--tpc-space-8);
  margin-bottom: 0;
}


/* ============================================================
   SECTION 15 — CALLOUT BOXES
   ============================================================ */

.tpc-toolkit .tpc-callout {
  border-left-style: solid;
  border-left-width: var(--tpc-border-callout);
  border-radius: 0 var(--tpc-radius-md) var(--tpc-radius-md) 0;
  padding: var(--tpc-space-16) var(--tpc-space-20);
  margin-top: var(--tpc-space-20);
  margin-bottom: 0;
}

.tpc-toolkit .tpc-callout p,
.tpc-toolkit .tpc-callout .wp-block-paragraph,
.tpc-toolkit .tpc-callout .tpc-body {
  max-width: none;
  margin-top: 0;
}

.tpc-toolkit .tpc-callout p + p,
.tpc-toolkit .tpc-callout .wp-block-paragraph + .wp-block-paragraph {
  margin-top: var(--tpc-space-8);
}

.tpc-toolkit .tpc-callout--info .tpc-h2,
.tpc-toolkit .tpc-callout--warning .tpc-h2 {
  color: var(--tpc-dark);
}

.tpc-toolkit .tpc-callout strong {
  font-weight: var(--tpc-weight-bold);
  color: inherit;
}

.tpc-toolkit .tpc-callout--info {
  background-color: var(--tpc-info-bg);
  border-left-color: var(--tpc-info-border);
}

.tpc-toolkit .tpc-callout--warning {
  background-color: var(--tpc-warn-bg);
  border-left-color: var(--tpc-warn-border);
}

.tpc-toolkit .tpc-callout--success {
  background-color: var(--tpc-success-bg);
  border-left-color: var(--tpc-success-border);
}

.tpc-toolkit .tpc-callout--orientation {
  margin-top: 0;
  margin-bottom: var(--tpc-space-24);
}


/* ============================================================
   SECTION 16 — WORKSHEET ZONES
   ============================================================ */

.tpc-toolkit .tpc-worksheet {
  background-color: var(--tpc-worksheet-bg);
  border-left: var(--tpc-border-sheet) solid var(--tpc-orange);
  padding: var(--tpc-space-20) var(--tpc-space-24);
  margin-top: var(--tpc-space-24);
  margin-bottom: 0;
}

.tpc-toolkit .tpc-worksheet__label {
  display: block;
  font-family: var(--tpc-font-heading);
  font-size: var(--tpc-size-xs);
  font-weight: var(--tpc-weight-bold);
  color: var(--tpc-orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--tpc-space-4);
}

.tpc-toolkit .tpc-worksheet__instruction {
  font-size: var(--tpc-size-small);
  color: var(--tpc-warm-grey);
  font-style: italic;
  margin-bottom: var(--tpc-space-20);
}

.tpc-toolkit .tpc-worksheet__save-note {
  font-size: var(--tpc-size-xs);
  color: var(--tpc-warm-grey);
  font-style: italic;
  margin-top: var(--tpc-space-16);
  padding-top: var(--tpc-space-12);
  border-top: 1px solid var(--tpc-border-light);
}

.tpc-toolkit .tpc-fill-line {
  margin-top: var(--tpc-space-16);
}

.tpc-toolkit .tpc-fill-line__label {
  display: block;
  font-size: var(--tpc-size-xs);
  font-weight: var(--tpc-weight-bold);
  color: var(--tpc-orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--tpc-space-8);
}

.tpc-toolkit .tpc-fill-line__input {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--tpc-border-light);
  padding: var(--tpc-space-8) 0;
  font-family: var(--tpc-font-body);
  font-size: 1rem;
  color: var(--tpc-charcoal);
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  transition: border-color var(--tpc-transition-fast);
}

.tpc-toolkit .tpc-fill-line__input:focus {
  border-bottom-color: var(--tpc-orange);
}

.tpc-toolkit .tpc-fill-line__input::placeholder {
  color: var(--tpc-border-light);
  opacity: 1;
}

.tpc-toolkit .tpc-scorecard-section {
  margin-top: var(--tpc-space-24);
}

.tpc-toolkit .tpc-scorecard-niche-label {
  display: flex;
  align-items: baseline;
  gap: var(--tpc-space-12);
  margin-bottom: var(--tpc-space-24);
  padding-bottom: var(--tpc-space-16);
  border-bottom: 1px solid var(--tpc-border);
  font-family: var(--tpc-font-heading);
  font-size: var(--tpc-size-small);
  font-weight: var(--tpc-weight-bold);
  color: var(--tpc-orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.tpc-toolkit .tpc-criterion {
  padding: var(--tpc-space-20) 0;
  border-bottom: 1px solid var(--tpc-border-light);
}

.tpc-toolkit .tpc-criterion:last-of-type {
  border-bottom: none;
}

.tpc-toolkit .tpc-criterion__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--tpc-space-12);
  margin-bottom: var(--tpc-space-12);
  flex-wrap: wrap;
}

.tpc-toolkit .tpc-criterion__name {
  font-family: var(--tpc-font-heading);
  font-size: var(--tpc-size-h3);
  font-weight: var(--tpc-weight-bold);
  color: var(--tpc-orange);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}

.tpc-toolkit .tpc-criterion__scale-label {
  font-size: var(--tpc-size-xs);
  color: var(--tpc-warm-grey);
  white-space: nowrap;
  flex-shrink: 0;
}

.tpc-toolkit .tpc-criterion__guide-label {
  font-size: var(--tpc-size-small);
  font-weight: var(--tpc-weight-bold);
  color: var(--tpc-dark);
  display: block;
  margin-top: var(--tpc-space-12);
  margin-bottom: var(--tpc-space-4);
}

.tpc-toolkit .tpc-criterion__guide-text {
  font-size: var(--tpc-size-small);
  color: var(--tpc-charcoal);
  line-height: var(--tpc-lh-body);
  margin-top: 0;
  max-width: none;
}

.tpc-toolkit .tpc-score-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: var(--tpc-space-16) 0;
  border-top: 2px solid var(--tpc-dark);
  margin-top: var(--tpc-space-24);
}

.tpc-toolkit .tpc-score-total__label {
  font-family: var(--tpc-font-heading);
  font-size: var(--tpc-size-small);
  font-weight: var(--tpc-weight-bold);
  color: var(--tpc-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tpc-toolkit .tpc-score-total__value {
  font-family: var(--tpc-font-heading);
  font-size: var(--tpc-size-h1);
  font-weight: var(--tpc-weight-bold);
  color: var(--tpc-orange);
  min-width: 4rem;
  text-align: right;
}

.tpc-toolkit .tpc-score-interpretation {
  margin-top: var(--tpc-space-16);
  min-height: 0;
}


/* ============================================================
   SECTION 17 — SCORE ROWS
   ============================================================ */

.tpc-toolkit .tpc-score-row {
  margin-top: var(--tpc-space-16);
}

.tpc-toolkit .tpc-score-row__label {
  display: block;
  font-family: var(--tpc-font-heading);
  font-size: var(--tpc-size-small);
  font-weight: var(--tpc-weight-bold);
  color: var(--tpc-dark);
  margin-bottom: var(--tpc-space-12);
}

.tpc-toolkit .tpc-score-row__buttons {
  display: flex;
  gap: var(--tpc-space-8);
  flex-wrap: wrap;
}

.tpc-toolkit .tpc-score-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding: var(--tpc-space-4);
  margin: calc(var(--tpc-space-4) * -1);
  -webkit-tap-highlight-color: transparent;
}

.tpc-toolkit .tpc-score-btn input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
}

.tpc-toolkit .tpc-score-btn__face {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1.5px solid var(--tpc-orange);
  border-radius: 50%;
  font-family: var(--tpc-font-heading);
  font-size: var(--tpc-size-small);
  font-weight: var(--tpc-weight-bold);
  color: var(--tpc-charcoal);
  background-color: var(--tpc-white);
  transition:
    background-color var(--tpc-transition-fast),
    color var(--tpc-transition-fast),
    border-color var(--tpc-transition-fast);
}

.tpc-toolkit .tpc-score-btn input[type="radio"]:checked + .tpc-score-btn__face {
  background-color: var(--tpc-orange);
  color: var(--tpc-white);
  border-color: var(--tpc-orange);
}

.tpc-toolkit .tpc-score-btn input[type="radio"]:focus-visible + .tpc-score-btn__face {
  outline: 2px solid var(--tpc-orange);
  outline-offset: 3px;
}

@media (hover: hover) {
  .tpc-toolkit .tpc-score-btn:hover .tpc-score-btn__face {
    background-color: var(--tpc-orange-08);
    border-color: var(--tpc-orange);
  }
}


/* ============================================================
   SECTION 18 — CHECKLISTS
   ============================================================ */

.tpc-toolkit .tpc-checklist {
  list-style: none;
  padding: 0;
  margin-top: var(--tpc-space-16);
}

.tpc-toolkit .tpc-checklist__item {
  padding: var(--tpc-space-16) 0;
  border-bottom: 1px solid var(--tpc-border);
}

.tpc-toolkit .tpc-checklist__item:last-child {
  border-bottom: none;
}

.tpc-toolkit .tpc-roadmap__week .tpc-checklist {
  margin-top: var(--tpc-space-8);
}

.tpc-toolkit .tpc-roadmap__week .tpc-checklist__item {
  padding: var(--tpc-space-8) 0;
}

.tpc-toolkit .tpc-checklist__label {
  display: flex;
  align-items: flex-start;
  gap: var(--tpc-space-12);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  min-height: 2.75rem;
}

.tpc-toolkit .tpc-checklist__checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
}

.tpc-toolkit .tpc-checklist__label::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  border: 1.5px solid var(--tpc-orange);
  border-radius: var(--tpc-radius-sm);
  background-color: var(--tpc-white);
  margin-top: 0.125rem;
  transition:
    background-color var(--tpc-transition-fast),
    border-color var(--tpc-transition-fast);
}

.tpc-toolkit .tpc-checklist__label:has(
  .tpc-checklist__checkbox:checked
)::before {
  background-color: var(--tpc-orange);
  border-color: var(--tpc-orange);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 8px;
}

.tpc-toolkit .tpc-checklist__label.is-checked::before {
  background-color: var(--tpc-orange);
  border-color: var(--tpc-orange);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 8px;
}

.tpc-toolkit .tpc-checklist__label:has(
  .tpc-checklist__checkbox:focus-visible
)::before {
  outline: 2px solid var(--tpc-orange);
  outline-offset: 2px;
}

.tpc-toolkit .tpc-checklist__label.is-focused::before {
  outline: 2px solid var(--tpc-orange);
  outline-offset: 2px;
}

.tpc-toolkit .tpc-checklist__task {
  font-size: var(--tpc-size-body);
  line-height: var(--tpc-lh-tight);
  color: var(--tpc-charcoal);
  flex: 1;
}

.tpc-toolkit .tpc-roadmap__week .tpc-checklist__task {
  font-size: var(--tpc-size-small);
}

.tpc-toolkit .tpc-checklist__task-name {
  display: block;
  font-weight: var(--tpc-weight-bold);
  color: var(--tpc-dark);
  margin-bottom: var(--tpc-space-4);
}

.tpc-toolkit .tpc-checklist__output {
  display: block;
  font-size: var(--tpc-size-small);
  color: var(--tpc-warm-grey);
  font-style: italic;
  margin-top: var(--tpc-space-4);
  padding-left: calc(1.125rem + var(--tpc-space-12));
}


/* ============================================================
   SECTION 19 — DATA TABLES
   ============================================================ */

.tpc-toolkit .tpc-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: var(--tpc-space-20);
}

.tpc-toolkit .tpc-data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--tpc-size-small);
  min-width: 400px;
}

.tpc-toolkit .tpc-data-table thead th {
  background-color: var(--tpc-cream);
  border-bottom: 2px solid var(--tpc-orange);
  padding: var(--tpc-space-8) var(--tpc-space-12);
  font-family: var(--tpc-font-heading);
  font-size: var(--tpc-size-xs);
  font-weight: var(--tpc-weight-bold);
  color: var(--tpc-dark);
  text-align: left;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.tpc-toolkit .tpc-data-table tbody tr:nth-child(odd) {
  background-color: var(--tpc-cream);
}

.tpc-toolkit .tpc-data-table tbody tr:nth-child(even) {
  background-color: var(--tpc-white);
}

@media (hover: hover) {
  .tpc-toolkit .tpc-data-table tbody tr:hover {
    background-color: var(--tpc-orange-08);
  }
}

.tpc-toolkit .tpc-data-table tbody td {
  padding: var(--tpc-space-12);
  border-bottom: 1px solid var(--tpc-border);
  vertical-align: middle;
  color: var(--tpc-charcoal);
  line-height: var(--tpc-lh-tight);
}

.tpc-toolkit .tpc-data-table tbody tr:last-child td {
  border-bottom: none;
}

.tpc-toolkit .tpc-data-table td.tpc-table__secondary {
  color: var(--tpc-warm-grey);
  font-style: italic;
}

.tpc-toolkit .tpc-data-table td.tpc-table__orange,
.tpc-toolkit .tpc-data-table th.tpc-table__orange {
  color: var(--tpc-orange);
  font-weight: var(--tpc-weight-bold);
}

.tpc-toolkit .tpc-data-table tr.tpc-table__section-start td:first-child {
  border-left: 2px solid var(--tpc-orange);
  padding-left: calc(var(--tpc-space-12) - 2px);
}

.tpc-toolkit .tpc-data-table.tpc-table--tracking tbody td {
  min-height: 2rem;
  height: 2rem;
}

.tpc-toolkit .tpc-data-table thead {
  display: table-header-group;
}

.tpc-toolkit .tpc-bd-badge {
  display: inline-block;
  font-size: var(--tpc-size-xs);
  font-weight: var(--tpc-weight-bold);
  color: var(--tpc-orange);
  white-space: nowrap;
  margin-left: var(--tpc-space-4);
}


/* ============================================================
   SECTION 20 — NICHE COMPARISON GRID
   ============================================================ */

.tpc-toolkit .tpc-niche-grid {
  margin-top: var(--tpc-space-24);
}

.tpc-toolkit .tpc-niche-grid .tpc-data-table {
  min-width: 360px;
}

.tpc-toolkit .tpc-niche-grid .tpc-niche-name-cell {
  font-weight: var(--tpc-weight-medium);
  color: var(--tpc-dark);
  min-width: 140px;
}

.tpc-toolkit .tpc-niche-grid td.tpc-symbol-cell {
  text-align: center;
  width: 4rem;
}

.tpc-toolkit .tpc-niche-grid td.tpc-score-cell {
  text-align: center;
  width: 5rem;
  white-space: nowrap;
}

.tpc-toolkit .tpc-niche-select {
  display: flex;
  align-items: center;
  gap: var(--tpc-space-8);
  cursor: pointer;
}

.tpc-toolkit .tpc-niche-select input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.tpc-toolkit .tpc-niche-select__indicator {
  display: block;
  width: 0.875rem;
  height: 0.875rem;
  border: 1.5px solid var(--tpc-border-light);
  border-radius: 2px;
  flex-shrink: 0;
  transition:
    background-color var(--tpc-transition-fast),
    border-color var(--tpc-transition-fast);
}

.tpc-toolkit .tpc-niche-select:has(
  input[type="checkbox"]:checked
) .tpc-niche-select__indicator {
  background-color: var(--tpc-orange);
  border-color: var(--tpc-orange);
}

.tpc-toolkit .tpc-niche-select.is-checked .tpc-niche-select__indicator {
  background-color: var(--tpc-orange);
  border-color: var(--tpc-orange);
}

.tpc-toolkit .tpc-niche-grid tr.is-selected {
  background-color: var(--tpc-orange-08) !important;
}

/* Scoring symbols */
.tpc-toolkit .tpc-score-symbol {
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.tpc-toolkit .tpc-score-symbol--strong {
  background-color: var(--tpc-orange);
}

.tpc-toolkit .tpc-score-symbol--moderate {
  background: linear-gradient(
    to right,
    var(--tpc-orange) 50%,
    var(--tpc-border-light) 50%
  );
}

.tpc-toolkit .tpc-score-symbol--weaker {
  background-color: transparent;
  border: 1.5px solid var(--tpc-border-light);
}

.tpc-toolkit .tpc-star-rating {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.tpc-toolkit .tpc-star-rating .tpc-star--filled {
  color: var(--tpc-orange);
}

.tpc-toolkit .tpc-star-rating .tpc-star--empty {
  color: var(--tpc-border-light);
}

/* Scoring key */
.tpc-toolkit .tpc-scoring-key {
  display: flex;
  align-items: center;
  gap: var(--tpc-space-20);
  margin-top: var(--tpc-space-16);
  margin-bottom: var(--tpc-space-12);
  flex-wrap: wrap;
}

.tpc-toolkit .tpc-scoring-key__item {
  display: flex;
  align-items: center;
  gap: var(--tpc-space-8);
  font-size: var(--tpc-size-small);
  color: var(--tpc-warm-grey);
}

/* Niche blocks grid */
.tpc-toolkit .tpc-niche-blocks {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: var(--tpc-space-32);
}

@media (min-width: 640px) {
  .tpc-toolkit .tpc-niche-blocks {
    grid-template-columns: 1fr 1fr;
  }
}

.tpc-toolkit .tpc-niche-block {
  padding: var(--tpc-space-20) 0;
  border-bottom: 1px solid var(--tpc-border);
}

.tpc-toolkit .tpc-niche-block:last-child {
  border-bottom: none;
}

/* Fix for 5-item grid: item 5 sits alone in left column on desktop */
.tpc-toolkit .tpc-niche-block:last-child:nth-child(odd) {
  border-right: none;
  padding-right: 0;
}

@media (min-width: 640px) {
  .tpc-toolkit .tpc-niche-block:nth-child(odd) {
    padding-right: var(--tpc-space-24);
    border-right: 1px solid var(--tpc-border);
  }

  .tpc-toolkit .tpc-niche-block:nth-child(even) {
    padding-left: var(--tpc-space-24);
    border-right: none;
  }

  /* Remove bottom border from bottom row — fixed count: 5 items */
  .tpc-toolkit .tpc-niche-block:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

.tpc-toolkit .tpc-niche-block__header {
  display: flex;
  align-items: center;
  gap: var(--tpc-space-8);
  margin-bottom: var(--tpc-space-8);
}

.tpc-toolkit .tpc-niche-block__name {
  font-family: var(--tpc-font-heading);
  font-size: var(--tpc-size-h3);
  font-weight: var(--tpc-weight-bold);
  color: var(--tpc-dark);
  flex: 1;
  margin: 0;
}

.tpc-toolkit .tpc-niche-block__best-for {
  font-size: var(--tpc-size-small);
  color: var(--tpc-warm-grey);
  font-style: italic;
  margin-top: 0;
  margin-bottom: var(--tpc-space-8);
}

.tpc-toolkit .tpc-niche-block .wp-block-paragraph,
.tpc-toolkit .tpc-niche-block .tpc-body {
  max-width: none;
  font-size: var(--tpc-size-small);
  margin-top: 0;
}


/* ============================================================
   SECTION 21 — EMAIL CARDS
   ============================================================ */

.tpc-toolkit .tpc-email-card {
  background-color: #FAFAF8;
  border: 1px solid var(--tpc-border-light);
  border-radius: var(--tpc-radius-md);
  padding: var(--tpc-space-20) var(--tpc-space-24);
  margin-top: var(--tpc-space-24);
}

.tpc-toolkit .tpc-email-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--tpc-space-12);
}

.tpc-toolkit .tpc-email-card__day {
  font-family: var(--tpc-font-heading);
  font-size: var(--tpc-size-xs);
  font-weight: var(--tpc-weight-bold);
  color: var(--tpc-orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tpc-toolkit .tpc-email-icon {
  width: 2rem;
  height: 1.5rem;
  color: var(--tpc-orange);
  flex-shrink: 0;
}

.tpc-toolkit .tpc-email-card__meta {
  margin-bottom: var(--tpc-space-12);
}

.tpc-toolkit .tpc-email-card__meta-row {
  display: flex;
  align-items: baseline;
  gap: var(--tpc-space-8);
  margin-bottom: var(--tpc-space-4);
}

.tpc-toolkit .tpc-email-card__meta-row:last-child {
  margin-bottom: 0;
}

.tpc-toolkit .tpc-email-card__meta-label {
  font-family: var(--tpc-font-heading);
  font-size: var(--tpc-size-xs);
  font-weight: var(--tpc-weight-bold);
  color: var(--tpc-dark);
  white-space: nowrap;
  flex-shrink: 0;
}

.tpc-toolkit .tpc-email-card__subject {
  font-family: var(--tpc-font-heading);
  font-size: var(--tpc-size-small);
  font-weight: var(--tpc-weight-medium);
  color: var(--tpc-dark);
}

.tpc-toolkit .tpc-email-card__preview {
  font-size: var(--tpc-size-small);
  color: var(--tpc-warm-grey);
  font-style: italic;
}

.tpc-toolkit .tpc-email-card__divider {
  border: none;
  border-top: 1px solid var(--tpc-border-light);
  margin: var(--tpc-space-12) 0;
}

.tpc-toolkit .tpc-email-card__body {
  font-size: var(--tpc-size-body);
  line-height: var(--tpc-lh-body);
  color: var(--tpc-charcoal);
}

.tpc-toolkit .tpc-email-card__body p {
  margin-top: 0;
  margin-bottom: 0;
  max-width: none;
}

.tpc-toolkit .tpc-email-card__body p + p {
  margin-top: var(--tpc-space-12);
}

.tpc-toolkit .tpc-email-card__body strong {
  font-weight: var(--tpc-weight-bold);
  color: inherit;
}

.tpc-toolkit .tpc-email-list {
  list-style: none;
  padding: 0;
  margin: var(--tpc-space-12) 0;
  counter-reset: email-list;
}

.tpc-toolkit .tpc-email-list li {
  counter-increment: email-list;
  display: flex;
  gap: var(--tpc-space-8);
  margin-bottom: var(--tpc-space-4);
  font-size: var(--tpc-size-body);
  line-height: var(--tpc-lh-tight);
}

.tpc-toolkit .tpc-email-list li::before {
  content: counter(email-list) '.';
  color: var(--tpc-orange);
  font-weight: var(--tpc-weight-bold);
  flex-shrink: 0;
  min-width: 1.5rem;
}

.tpc-toolkit .tpc-email-list li:last-child {
  margin-bottom: 0;
}

.tpc-toolkit .tpc-email-card__signoff {
  margin-top: var(--tpc-space-16) !important;
  color: var(--tpc-dark);
  font-weight: var(--tpc-weight-medium);
}

.tpc-toolkit .tpc-email-cards {
  margin-top: var(--tpc-space-24);
  display: flex;
  flex-direction: column;
  gap: var(--tpc-space-24);
}

.tpc-toolkit .tpc-email-sequence-overview {
  margin-top: var(--tpc-space-24);
  margin-bottom: var(--tpc-space-32);
}

.tpc-toolkit .tpc-email-connecting-line {
  font-size: var(--tpc-size-small);
  color: var(--tpc-warm-grey);
  font-style: italic;
  margin-top: var(--tpc-space-16);
  margin-bottom: 0;
}


/* ============================================================
   SECTION 22 — FUNNEL DIAGRAM
   ============================================================ */

.tpc-toolkit .tpc-funnel-diagram {
  margin-top: var(--tpc-space-24);
}

.tpc-toolkit .tpc-funnel-stages {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--tpc-space-8);
}

@media (min-width: 640px) {
  .tpc-toolkit .tpc-funnel-stages {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }
}

.tpc-toolkit .tpc-funnel-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--tpc-space-16) var(--tpc-space-12);
  border: 1.5px solid var(--tpc-orange);
  border-radius: var(--tpc-radius-md);
  text-align: center;
  gap: var(--tpc-space-8);
  flex: 1;
}

.tpc-toolkit .tpc-funnel-stage--1 { background-color: var(--tpc-tint-1); }
.tpc-toolkit .tpc-funnel-stage--2 { background-color: var(--tpc-tint-2); }
.tpc-toolkit .tpc-funnel-stage--3 { background-color: var(--tpc-tint-3); }
.tpc-toolkit .tpc-funnel-stage--4 { background-color: var(--tpc-tint-4); }

.tpc-toolkit .tpc-funnel-stage--5 {
  background-color: var(--tpc-tint-5);
  border-color: var(--tpc-tint-5);
}

.tpc-toolkit .tpc-funnel-stage__icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--tpc-orange);
  flex-shrink: 0;
}

.tpc-toolkit .tpc-funnel-stage--5 .tpc-funnel-stage__icon {
  color: var(--tpc-white);
}

.tpc-toolkit .tpc-funnel-stage__name {
  font-family: var(--tpc-font-heading);
  font-size: var(--tpc-size-xs);
  font-weight: var(--tpc-weight-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tpc-dark);
}

.tpc-toolkit .tpc-funnel-stage--5 .tpc-funnel-stage__name {
  color: var(--tpc-white);
}

.tpc-toolkit .tpc-funnel-stage__sub {
  font-size: var(--tpc-size-xs);
  color: var(--tpc-warm-grey);
  font-style: italic;
  line-height: var(--tpc-lh-tight);
}

.tpc-toolkit .tpc-funnel-stage--5 .tpc-funnel-stage__sub {
  color: rgba(255, 255, 255, 0.80);
}

.tpc-toolkit .tpc-funnel-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--tpc-space-4);
  padding: 0 var(--tpc-space-4);
  flex-shrink: 0;
  color: var(--tpc-orange);
}

@media (max-width: 639px) {
  .tpc-toolkit .tpc-funnel-arrow {
    flex-direction: row;
    width: 100%;
    height: 2rem;
    padding: 0;
  }

  .tpc-toolkit .tpc-funnel-arrow svg {
    transform: rotate(90deg);
  }
}

.tpc-toolkit .tpc-funnel-arrow__label {
  font-family: var(--tpc-font-heading);
  font-size: 0.5625rem;
  font-weight: var(--tpc-weight-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tpc-orange);
  white-space: nowrap;
}

.tpc-toolkit .tpc-funnel-arrow svg {
  width: 1.5rem;
  height: 0.75rem;
  color: var(--tpc-orange);
}

.tpc-toolkit .tpc-funnel-diagram__caption {
  text-align: center;
  font-family: var(--tpc-font-heading);
  font-size: var(--tpc-size-small);
  font-weight: var(--tpc-weight-medium);
  color: var(--tpc-dark);
  margin-top: var(--tpc-space-20);
}


/* ============================================================
   SECTION 23 — ROADMAP GRID
   ============================================================ */

.tpc-toolkit .tpc-roadmap {
  margin-top: var(--tpc-space-24);
}

.tpc-toolkit .tpc-roadmap__grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--tpc-border);
  border-radius: var(--tpc-radius-md);
  overflow: hidden;
}

@media (min-width: 640px) {
  .tpc-toolkit .tpc-roadmap__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.tpc-toolkit .tpc-roadmap__week {
  padding: var(--tpc-space-24);
  border-bottom: 1px solid var(--tpc-border);
}

.tpc-toolkit .tpc-roadmap__week:last-child {
  border-bottom: none;
}

/* Fixed 4-week assumption: items 3 and 4 are the bottom row */
@media (min-width: 640px) {
  .tpc-toolkit .tpc-roadmap__week:nth-child(n+3) {
    border-bottom: none;
  }

  .tpc-toolkit .tpc-roadmap__week:nth-child(odd) {
    border-right: 1px solid var(--tpc-border);
  }
}

.tpc-toolkit .tpc-roadmap__week--1 { background-color: var(--tpc-tint-1); }
.tpc-toolkit .tpc-roadmap__week--2 { background-color: var(--tpc-tint-2); }
.tpc-toolkit .tpc-roadmap__week--3 { background-color: var(--tpc-tint-3); }
.tpc-toolkit .tpc-roadmap__week--4 { background-color: var(--tpc-tint-4); }

.tpc-toolkit .tpc-roadmap__week-title {
  font-family: var(--tpc-font-heading);
  font-size: var(--tpc-size-h3);
  font-weight: var(--tpc-weight-bold);
  color: var(--tpc-orange);
  margin-top: 0;
  margin-bottom: var(--tpc-space-4);
}

/* Week 4 contrast fix: tint-4 (#F7D4AA) + orange fails WCAG AA */
.tpc-toolkit .tpc-roadmap__week--4 .tpc-roadmap__week-title {
  color: #C43A00;
}

.tpc-toolkit .tpc-roadmap__goal {
  font-size: var(--tpc-size-small);
  color: var(--tpc-warm-grey);
  font-style: italic;
  margin-top: 0;
  margin-bottom: var(--tpc-space-16);
}

.tpc-toolkit .tpc-roadmap__output {
  font-size: var(--tpc-size-small);
  color: var(--tpc-warm-grey);
  font-style: italic;
  margin-top: var(--tpc-space-12);
  margin-bottom: 0;
}

.tpc-toolkit .tpc-roadmap__goal-statement {
  text-align: center;
  padding: var(--tpc-space-32) var(--tpc-space-16) var(--tpc-space-24);
}

.tpc-toolkit .tpc-roadmap__min-goal {
  font-family: var(--tpc-font-heading);
  font-size: var(--tpc-size-h3);
  font-weight: var(--tpc-weight-medium);
  color: var(--tpc-dark);
  margin-top: 0;
  margin-bottom: var(--tpc-space-8);
}

.tpc-toolkit .tpc-roadmap__min-sub {
  font-size: var(--tpc-size-small);
  color: var(--tpc-warm-grey);
  font-style: italic;
  margin-top: 0;
  margin-bottom: 0;
}


/* ============================================================
   SECTION 24 — RECOMMENDATION BLOCKS
   ============================================================ */

.tpc-toolkit .tpc-recommendation-blocks {
  margin-top: var(--tpc-space-24);
}

.tpc-toolkit .tpc-recommendation {
  padding-bottom: var(--tpc-space-24);
  margin-bottom: var(--tpc-space-24);
  border-bottom: 1px solid var(--tpc-border);
}

.tpc-toolkit .tpc-recommendation:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.tpc-toolkit .tpc-recommendation__header {
  display: flex;
  align-items: flex-start;
  gap: var(--tpc-space-12);
  margin-bottom: var(--tpc-space-8);
}

.tpc-toolkit .tpc-recommendation__when {
  font-family: var(--tpc-font-heading);
  font-size: var(--tpc-size-small);
  font-weight: var(--tpc-weight-bold);
  color: var(--tpc-dark);
  margin: 0;
  padding-top: 0.2rem;
}

.tpc-toolkit .tpc-recommendation__title {
  font-size: var(--tpc-size-body);
  font-style: italic;
  font-weight: var(--tpc-weight-bold);
  color: var(--tpc-dark);
  margin-top: 0;
  margin-bottom: var(--tpc-space-4);
}

.tpc-toolkit .tpc-recommendation__url {
  display: inline-block;
  font-size: var(--tpc-size-small);
  color: var(--tpc-orange);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  margin-bottom: var(--tpc-space-12);
  word-break: break-all;
}

.tpc-toolkit .tpc-recommendation__description {
  font-size: var(--tpc-size-body);
  color: var(--tpc-charcoal);
  line-height: var(--tpc-lh-body);
  margin-top: 0;
  max-width: none;
}

.tpc-toolkit .tpc-recommendation__relevance {
  font-size: var(--tpc-size-small);
  color: var(--tpc-warm-grey);
  font-style: italic;
  margin-top: var(--tpc-space-8);
}


/* ============================================================
   SECTION 25 — INDICATORS
   ============================================================ */

.tpc-toolkit .tpc-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  min-width: 1.5rem;
  border-radius: 50%;
  font-family: var(--tpc-font-heading);
  font-size: 0.6875rem;
  font-weight: var(--tpc-weight-bold);
  flex-shrink: 0;
  line-height: 1;
}

.tpc-toolkit .tpc-indicator--orange {
  background-color: var(--tpc-orange);
  color: var(--tpc-white);
}

.tpc-toolkit .tpc-indicator--sm {
  width: 1.25rem;
  height: 1.25rem;
  min-width: 1.25rem;
  font-size: 0.625rem;
}


/* ============================================================
   SECTION 26 — QUESTION BLOCKS
   ============================================================ */

.tpc-toolkit .tpc-question-blocks {
  margin-top: var(--tpc-space-24);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tpc-toolkit .tpc-question-block {
  display: flex;
  gap: var(--tpc-space-16);
  align-items: flex-start;
  padding: var(--tpc-space-20) 0;
  border-bottom: 1px solid var(--tpc-border);
}

.tpc-toolkit .tpc-question-block:last-child {
  border-bottom: none;
}

.tpc-toolkit .tpc-question-block__content {
  flex: 1;
  min-width: 0;
}

.tpc-toolkit .tpc-question-block__question {
  font-family: var(--tpc-font-heading);
  font-size: var(--tpc-size-h3);
  font-weight: var(--tpc-weight-bold);
  color: var(--tpc-dark);
  margin-top: 0;
  margin-bottom: var(--tpc-space-8);
}

.tpc-toolkit .tpc-question-block__explanation {
  font-size: var(--tpc-size-body);
  color: var(--tpc-charcoal);
  line-height: var(--tpc-lh-body);
  margin-top: 0;
  max-width: none;
}


/* ============================================================
   SECTION 27 — NICHE SECTION SPECIFIC
   ============================================================ */

.tpc-toolkit .tpc-tool-test {
  margin-top: var(--tpc-space-24);
  margin-bottom: var(--tpc-space-32);
  padding-bottom: var(--tpc-space-24);
  border-bottom: 1px solid var(--tpc-border);
}

.tpc-toolkit .tpc-affiliate-disclosure {
  margin-top: var(--tpc-space-24);
  margin-bottom: var(--tpc-space-24);
}


/* ============================================================
   SECTION 28 — APPENDIX LAYOUT
   ============================================================ */

.tpc-toolkit .tpc-section--appendix {
  border-top: 1px solid var(--tpc-border);
  padding-top: var(--tpc-space-32);
}

.tpc-toolkit .tpc-section--appendix .tpc-chapter-label {
  font-size: var(--tpc-size-h1);
  color: var(--tpc-warm-grey);
  font-weight: var(--tpc-weight-medium);
}

.tpc-toolkit .tpc-appendix-section-label {
  font-family: var(--tpc-font-heading);
  font-size: var(--tpc-size-h2);
  font-weight: var(--tpc-weight-bold);
  color: var(--tpc-orange);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: var(--tpc-space-48);
  margin-bottom: var(--tpc-space-16);
  padding-bottom: var(--tpc-space-12);
  border-bottom: 1px solid var(--tpc-border);
}

.tpc-toolkit .tpc-appendix-mnemonic,
.tpc-toolkit .tpc-appendix-closing {
  text-align: center;
  font-size: var(--tpc-size-small);
  color: var(--tpc-warm-grey);
  font-style: italic;
  margin-top: var(--tpc-space-32);
  margin-bottom: 0;
}

.tpc-toolkit .tpc-table-footnote {
  font-size: var(--tpc-size-xs);
  color: var(--tpc-warm-grey);
  font-style: italic;
  margin-top: var(--tpc-space-8);
  margin-bottom: 0;
}

/* Status key */
.tpc-toolkit .tpc-status-key {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--tpc-space-12);
  background-color: var(--tpc-cream);
  border-left: var(--tpc-border-sheet) solid var(--tpc-orange);
  padding: var(--tpc-space-16) var(--tpc-space-20);
  margin-top: var(--tpc-space-20);
  margin-bottom: var(--tpc-space-24);
}

@media (min-width: 480px) {
  .tpc-toolkit .tpc-status-key {
    grid-template-columns: 1fr 1fr;
  }
}

.tpc-toolkit .tpc-status-key__item {
  display: flex;
  align-items: flex-start;
  gap: var(--tpc-space-8);
}

.tpc-toolkit .tpc-status-key__emoji {
  font-size: 1rem;
  flex-shrink: 0;
  line-height: 1.4;
}

.tpc-toolkit .tpc-status-key__label {
  font-family: var(--tpc-font-heading);
  font-size: var(--tpc-size-small);
  font-weight: var(--tpc-weight-bold);
  color: var(--tpc-dark);
  display: block;
}

.tpc-toolkit .tpc-status-key__description {
  font-size: var(--tpc-size-small);
  color: var(--tpc-charcoal);
  display: block;
  margin-top: var(--tpc-space-4);
}

/* Monthly review */
.tpc-toolkit .tpc-monthly-review {
  background-color: var(--tpc-cream);
  border-left: var(--tpc-border-sheet) solid var(--tpc-orange);
  padding: var(--tpc-space-20);
  margin-top: var(--tpc-space-32);
}

.tpc-toolkit .tpc-monthly-review__heading {
  font-family: var(--tpc-font-heading);
  font-size: var(--tpc-size-small);
  font-weight: var(--tpc-weight-bold);
  color: var(--tpc-orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0;
  margin-bottom: var(--tpc-space-16);
}

/* Column guide */
.tpc-toolkit .tpc-column-guide {
  margin-top: var(--tpc-space-24);
}

.tpc-toolkit .tpc-column-guide__heading {
  font-family: var(--tpc-font-heading);
  font-size: var(--tpc-size-small);
  font-weight: var(--tpc-weight-bold);
  color: var(--tpc-dark);
  margin-top: 0;
  margin-bottom: var(--tpc-space-12);
}


/* ============================================================
   SECTION 29 — OPT-IN BLOCKS
   ============================================================ */

.tpc-toolkit .tpc-optin {
  margin-top: var(--tpc-space-48);
  margin-bottom: var(--tpc-space-48);
  padding: var(--tpc-space-32) var(--tpc-space-24);
  border-radius: var(--tpc-radius-lg);
  border: 1px solid var(--tpc-border);
  background-color: var(--tpc-cream);
}

@media (min-width: 640px) {
  .tpc-toolkit .tpc-optin {
    padding: var(--tpc-space-40);
  }
}

.tpc-toolkit .tpc-optin__inner {
  display: flex;
  flex-direction: column;
  gap: var(--tpc-space-24);
}

@media (min-width: 640px) {
  .tpc-toolkit .tpc-optin__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--tpc-space-40);
  }
}

.tpc-toolkit .tpc-optin__content {
  flex: 1;
}

.tpc-toolkit .tpc-optin__label {
  display: block;
  font-family: var(--tpc-font-heading);
  font-size: var(--tpc-size-xs);
  font-weight: var(--tpc-weight-bold);
  color: var(--tpc-orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--tpc-space-8);
}

.tpc-toolkit .tpc-optin__headline {
  font-family: var(--tpc-font-heading);
  font-size: var(--tpc-size-h1);
  font-weight: var(--tpc-weight-bold);
  color: var(--tpc-dark);
  line-height: var(--tpc-lh-heading);
  margin-top: 0;
  margin-bottom: var(--tpc-space-12);
}

.tpc-toolkit .tpc-optin__description {
  font-size: var(--tpc-size-body);
  color: var(--tpc-charcoal);
  line-height: var(--tpc-lh-body);
  margin-top: 0;
  max-width: none;
}

.tpc-toolkit .tpc-optin__benefits {
  list-style: none;
  padding: 0;
  margin: var(--tpc-space-16) 0 0;
}

.tpc-toolkit .tpc-optin__benefits li {
  display: flex;
  align-items: flex-start;
  gap: var(--tpc-space-8);
  font-size: var(--tpc-size-small);
  color: var(--tpc-charcoal);
  margin-bottom: var(--tpc-space-8);
  line-height: var(--tpc-lh-tight);
}

.tpc-toolkit .tpc-optin__benefits li:last-child {
  margin-bottom: 0;
}

.tpc-toolkit .tpc-optin__benefits li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  background-color: var(--tpc-orange);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 8px 6px;
  margin-top: 0.1rem;
}

.tpc-toolkit .tpc-optin__form {
  flex: 0 0 320px;
  max-width: 100%;
}

@media (max-width: 639px) {
  .tpc-toolkit .tpc-optin__form {
    flex: none;
    width: 100%;
  }
}

.tpc-toolkit .tpc-optin__form iframe {
  width: 100% !important;
  border: none;
  display: block;
  min-height: 200px;
}

.tpc-toolkit .tpc-optin__form > div,
.tpc-toolkit .tpc-optin__form > form {
  width: 100% !important;
  max-width: none !important;
}

.tpc-toolkit .tpc-optin__form [class*="systeme"],
.tpc-toolkit .tpc-optin__form [id*="systeme"] {
  max-width: none !important;
  width: 100% !important;
}

.tpc-toolkit .tpc-optin__submitted-note {
  display: none;
  font-size: var(--tpc-size-small);
  color: var(--tpc-warm-grey);
  font-style: italic;
  margin-top: var(--tpc-space-12);
  text-align: center;
}

.tpc-toolkit .tpc-optin.is-submitted .tpc-optin__submitted-note {
  display: block;
}

/* Opt-in variants */
.tpc-toolkit .tpc-optin--scorecard {
  background-color: var(--tpc-white);
  border-color: var(--tpc-orange-20);
  border-left: 3px solid var(--tpc-orange);
}

.tpc-toolkit .tpc-optin--roadmap {
  background-color: var(--tpc-cream);
  border-color: var(--tpc-border);
  box-shadow: var(--tpc-shadow-sm);
}

.tpc-toolkit .tpc-optin--complete {
  background-color: var(--tpc-white);
  border: 2px solid var(--tpc-orange);
  box-shadow: var(--tpc-shadow-md);
}

.tpc-toolkit .tpc-optin--complete .tpc-optin__headline {
  color: var(--tpc-orange);
}

/* PDF print note (hidden on screen, shown in print) */
.tpc-toolkit .tpc-pdf-optin-note {
  display: none;
}


/* ============================================================
   SECTION 30 — RESPONSIVE BREAKPOINTS (all @media in one place)
   ============================================================ */

@media (max-width: 479px) {
  .tpc-toolkit .tpc-chapter-label {
    font-size: 1.5rem;
  }

  .tpc-toolkit .tpc-h1 {
    font-size: 1.25rem;
  }

  .tpc-toolkit .tpc-site-header__nav {
    display: none;
  }

  .tpc-toolkit .tpc-status-key {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 480px) {
  .tpc-toolkit .tpc-status-key {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 639px) {
  .tpc-toolkit .tpc-funnel-stages {
    flex-direction: column;
  }

  .tpc-toolkit .tpc-funnel-arrow {
    flex-direction: row;
    width: 100%;
    height: 2rem;
  }

  .tpc-toolkit .tpc-funnel-arrow svg {
    transform: rotate(90deg);
  }

  .tpc-toolkit .tpc-roadmap__grid {
    grid-template-columns: 1fr;
  }

  .tpc-toolkit .tpc-story-split {
    flex-direction: column;
  }
}

@media (min-width: 640px) {
  .tpc-toolkit .tpc-funnel-stages {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }

  .tpc-toolkit .tpc-funnel-arrow svg {
    transform: none;
  }

  .tpc-toolkit .tpc-roadmap__grid {
    grid-template-columns: 1fr 1fr;
  }

  .tpc-toolkit .tpc-niche-blocks {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .tpc-toolkit .tpc-document {
    margin-left: calc(var(--tpc-nav-width) + var(--tpc-space-32));
    margin-right: auto;
    padding: var(--tpc-space-48) var(--tpc-page-pad-lg) var(--tpc-space-64);
  }

  .tpc-toolkit .tpc-floating-nav {
    display: flex;
  }

  .tpc-toolkit .tpc-nav-fab {
    display: none;
  }

  .tpc-toolkit .tpc-mobile-nav {
    display: none !important;
  }

  .tpc-toolkit .tpc-mobile-overlay {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .tpc-toolkit .tpc-document {
    padding-left: var(--tpc-space-40);
    padding-right: var(--tpc-space-40);
  }
}