#tc-home-root{
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: 0 !important;
  padding-right: 0 !important;
  background:
    radial-gradient(circle at top left, rgba(37,99,235,.10), transparent 24%),
    radial-gradient(circle at top right, rgba(79,70,229,.10), transparent 22%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 35%, #f8fafc 100%);
  overflow: hidden;
}

.entry-content #tc-home-root,
.wp-block-group #tc-home-root{
  max-width: none !important;
}

#tc-home-root *{
  box-sizing: border-box;
}

/* Generic */
.tc-home-section{
  padding: 72px 0;
  position: relative;
}

.tc-home-section-head{
  margin-bottom: 28px;
}

.tc-home-section-head--center{
  text-align: center;
}

.tc-home-section-kicker{
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 9999px;
  background: rgba(15,23,42,.06);
  color: #334155;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  margin-bottom: 14px;
}

.tc-home-section-title{
  margin: 0;
  color: #0f172a;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -.03em;
}

.tc-home-section-desc{
  margin: 14px 0 0;
  max-width: 860px;
  color: #475569;
  font-size: 15px;
  line-height: 1.9;
}

.tc-home-section-head--center .tc-home-section-desc{
  margin-left: auto;
  margin-right: auto;
}

.tc-home-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 9999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease;
}

.tc-home-btn:hover{
  transform: translateY(-1px);
}

.tc-home-btn--primary{
  background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 55%, #4338ca 100%);
  color: #fff;
  box-shadow: 0 18px 40px rgba(29,78,216,.18);
}

.tc-home-btn--secondary{
  background: rgba(255,255,255,.86);
  color: #0f172a;
  border: 1px solid rgba(15,23,42,.10);
  backdrop-filter: blur(10px);
}

.tc-home-section-actions{
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.tc-home-eyebrow{
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 9999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
}

/* Hero slider */
.tc-home-hero{
  position: relative;
  min-height: 700px;
  background: #0f172a;
}

.tc-home-hero__slides{
  position: relative;
  min-height: 700px;
}

.tc-home-hero__slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .7s ease, visibility .7s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.tc-home-hero__slide.is-active{
  opacity: 1;
  visibility: visible;
}

.tc-home-hero__overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(6,18,40,.86) 0%, rgba(8,20,43,.72) 45%, rgba(17,24,39,.78) 100%);
}

.tc-home-hero .wrapper{
  position: relative;
  z-index: 1;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tc-home-hero__content{
  max-width: 980px;
  text-align: center;
  color: #fff;
}

.tc-home-hero__title{
  margin: 0;
  font-size: clamp(34px, 6vw, 72px);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -.045em;
}

.tc-home-hero__desc{
  margin: 18px auto 0;
  max-width: 860px;
  color: rgba(255,255,255,.86);
  font-size: clamp(16px, 2.2vw, 22px);
  line-height: 1.75;
  font-weight: 500;
}

.tc-home-hero__actions{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.tc-home-hero__controls{
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.tc-home-hero__nav{
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 9999px;
  background: rgba(255,255,255,.10);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background .18s ease, transform .18s ease;
}

.tc-home-hero__nav:hover{
  background: rgba(255,255,255,.16);
  transform: translateY(-1px);
}

.tc-home-hero__dots{
  display: flex;
  align-items: center;
  gap: 10px;
}

.tc-home-hero__dot{
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: rgba(255,255,255,.35);
  border: 0;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, width .18s ease;
}

.tc-home-hero__dot.is-active{
  width: 28px;
  background: #fff;
}

/* News grid */
.tc-home-section--news{
  background: transparent;
}

.tc-home-post-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 768px){
  .tc-home-post-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px){
  .tc-home-post-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.tc-home-post-card{
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 20px 50px rgba(15,23,42,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}

.tc-home-post-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(15,23,42,.10);
}

.tc-home-post-card__thumb{
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e2e8f0;
}

.tc-home-post-card__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}

.tc-home-post-card:hover .tc-home-post-card__thumb img{
  transform: scale(1.04);
}

.tc-home-post-card__body{
  padding: 22px;
}

.tc-home-post-card__meta{
  margin-bottom: 10px;
}

.tc-home-post-card__date{
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 9999px;
  background: rgba(15,23,42,.06);
  color: #475569;
  font-size: 12px;
  font-weight: 700;
}

.tc-home-post-card__title{
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
}

.tc-home-post-card__title a{
  color: #0f172a;
  text-decoration: none;
}

.tc-home-post-card__title a:hover{
  color: #1d4ed8;
}

.tc-home-post-card__excerpt{
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.85;
}

.tc-home-post-card__link{
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  color: #1d4ed8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.tc-home-empty-state{
  border-radius: 24px;
  padding: 24px;
  background: rgba(15,23,42,.04);
  color: #475569;
  font-size: 14px;
  text-align: center;
}

/* Stats */
.tc-home-section--stats{
  background:
    radial-gradient(circle at top right, rgba(29,78,216,.08), transparent 24%),
    linear-gradient(180deg, rgba(15,23,42,.02) 0%, rgba(15,23,42,.04) 100%);
}

.tc-home-stats-hero{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 24px;
}

@media (min-width: 992px){
  .tc-home-stats-hero{
    grid-template-columns: minmax(320px, .75fr) minmax(0, 1.25fr);
    align-items: stretch;
  }
}

.tc-home-stats-total{
  border-radius: 34px;
  padding: 28px;
  background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 55%, #4338ca 100%);
  color: #fff;
  box-shadow: 0 26px 70px rgba(15,23,42,.18);
}

.tc-home-stats-total__label{
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,.82);
}

.tc-home-stats-total__value{
  margin-top: 10px;
  font-size: clamp(52px, 8vw, 90px);
  line-height: .95;
  font-weight: 900;
  letter-spacing: -.04em;
}

.tc-home-stats-total__unit{
  margin-top: 10px;
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,.84);
}

.tc-home-stats-top{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.tc-home-stats-top__card{
  border-radius: 26px;
  padding: 22px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 18px 40px rgba(15,23,42,.05);
}

.tc-home-stats-top__card strong{
  display: block;
  color: #0f172a;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 800;
  min-height: 52px;
}

.tc-home-stats-top__card span{
  display: block;
  margin-top: 10px;
  color: #1d4ed8;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.03em;
}

.tc-home-stats-table-wrap{
  border-radius: 30px;
  padding: 20px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 18px 40px rgba(15,23,42,.05);
}

.tc-home-stats-table{
  display: grid;
  gap: 14px;
}

.tc-home-stats-row{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px;
  gap: 16px;
  align-items: center;
}

.tc-home-stats-row__label{
  color: #0f172a;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
  margin-bottom: 8px;
}

.tc-home-stats-row__bar{
  position: relative;
  height: 12px;
  border-radius: 9999px;
  background: #e2e8f0;
  overflow: hidden;
}

.tc-home-stats-row__bar span{
  display: block;
  height: 100%;
  border-radius: 9999px;
  background: linear-gradient(90deg, #1d4ed8 0%, #4338ca 100%);
}

.tc-home-stats-row__value{
  text-align: right;
  color: #0f172a;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.02em;
}

@media (max-width: 640px){
  .tc-home-stats-top{
    grid-template-columns: 1fr;
  }

  .tc-home-stats-row{
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .tc-home-stats-row__value{
    text-align: left;
  }
}

/* Logos */
.tc-home-section--partners{
  background: transparent;
}

.tc-home-logos-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

@media (min-width: 768px){
  .tc-home-logos-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px){
  .tc-home-logos-grid{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.tc-home-logo-card{
  text-decoration: none;
  border-radius: 26px;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 16px 36px rgba(15,23,42,.05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.tc-home-logo-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(15,23,42,.08);
  border-color: rgba(29,78,216,.22);
}

.tc-home-logo-card__img{
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 14px;
}

.tc-home-logo-card__img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.tc-home-logo-card__name{
  margin-top: 12px;
  color: #0f172a;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 700;
  text-align: center;
}

/* Knowledge cards */
.tc-home-section--knowledge{
  background:
    radial-gradient(circle at top left, rgba(79,70,229,.08), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.tc-home-resource-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 992px){
  .tc-home-resource-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.tc-home-resource-card{
  display: block;
  text-decoration: none;
  border-radius: 30px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(248,250,252,.98) 100%);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 18px 44px rgba(15,23,42,.05);
  transition: transform .18s ease, box-shadow .18s ease;
}

.tc-home-resource-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(15,23,42,.08);
}

.tc-home-resource-card__badge{
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 9999px;
  background: rgba(29,78,216,.10);
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 14px;
}

.tc-home-resource-card h3{
  margin: 0 0 10px;
  color: #0f172a;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: -.02em;
}

.tc-home-resource-card p{
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.85;
}

/* Guidelines */
.tc-home-section--guidelines{
  background: transparent;
}

.tc-home-guideline-list{
  display: grid;
  gap: 16px;
}

.tc-home-guideline-item{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  gap: 16px;
  align-items: center;
  text-decoration: none;
  border-radius: 28px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 16px 40px rgba(15,23,42,.05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.tc-home-guideline-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(15,23,42,.08);
  border-color: rgba(29,78,216,.20);
}

.tc-home-guideline-item__content h3{
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 800;
}

.tc-home-guideline-item__content p{
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.8;
}

.tc-home-guideline-item__arrow{
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(29,78,216,.08);
  color: #1d4ed8;
  font-size: 20px;
  font-weight: 800;
}

/* Dark mode */
.dark #tc-home-root{
  background:
    radial-gradient(circle at top left, rgba(37,99,235,.16), transparent 24%),
    radial-gradient(circle at top right, rgba(79,70,229,.16), transparent 22%),
    linear-gradient(180deg, #0f172a 0%, #111827 45%, #0f172a 100%);
}

.dark .tc-home-section-title,
.dark .tc-home-post-card__title a,
.dark .tc-home-stats-top__card strong,
.dark .tc-home-stats-row__label,
.dark .tc-home-stats-row__value,
.dark .tc-home-logo-card__name,
.dark .tc-home-resource-card h3,
.dark .tc-home-guideline-item__content h3{
  color: rgba(255,255,255,.94);
}

.dark .tc-home-section-desc,
.dark .tc-home-post-card__excerpt,
.dark .tc-home-resource-card p,
.dark .tc-home-guideline-item__content p{
  color: rgba(255,255,255,.74);
}

.dark .tc-home-section-kicker,
.dark .tc-home-post-card__date{
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.84);
}

.dark .tc-home-post-card,
.dark .tc-home-stats-top__card,
.dark .tc-home-stats-table-wrap,
.dark .tc-home-logo-card,
.dark .tc-home-resource-card,
.dark .tc-home-guideline-item{
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.10);
  box-shadow: none;
}

.dark .tc-home-stats-row__bar{
  background: rgba(255,255,255,.10);
}

.dark .tc-home-logo-card__img{
  background: rgba(255,255,255,.04);
}

.dark .tc-home-btn--secondary{
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.12);
}

.dark .tc-home-empty-state{
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.76);
}

/* Accessibility */
.tc-home-btn:focus-visible,
.tc-home-hero__nav:focus-visible,
.tc-home-post-card__title a:focus-visible,
.tc-home-post-card__link:focus-visible,
.tc-home-logo-card:focus-visible,
.tc-home-resource-card:focus-visible,
.tc-home-guideline-item:focus-visible{
  outline: 2px solid rgba(59,130,246,.95);
  outline-offset: 4px;
}

/* Motion reduce */
@media (prefers-reduced-motion: reduce){
  .tc-home-btn,
  .tc-home-hero__nav,
  .tc-home-post-card,
  .tc-home-post-card__thumb img,
  .tc-home-logo-card,
  .tc-home-resource-card,
  .tc-home-guideline-item{
    transition: none;
  }

  .tc-home-btn:hover,
  .tc-home-hero__nav:hover,
  .tc-home-post-card:hover,
  .tc-home-logo-card:hover,
  .tc-home-resource-card:hover,
  .tc-home-guideline-item:hover{
    transform: none;
  }
}