/* tvyx-components.css — Buttons, Nav, Footer, Cards, Forms, Badges, Cookie Banner */

/* ═══ BUTTONS ═══ */
.tvyx-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--tvyx-font-sans);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--tvyx-radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.12s ease;
  white-space: nowrap;
  text-decoration: none;
}
.tvyx-btn:hover { transform: translateY(-1px); }
.tvyx-btn:active { transform: translateY(0); }

/* Primary: teal fill — works on any bg */
.tvyx-btn--primary {
  background: var(--tvyx-teal);
  border-color: var(--tvyx-teal);
  color: var(--tvyx-navy);
}
.tvyx-btn--primary:hover {
  background: var(--tvyx-teal-aa-dark);
  border-color: var(--tvyx-teal-aa-dark);
  color: var(--tvyx-navy);
}

/* Outline-light: for light/white sections */
.tvyx-btn--outline-light {
  background: transparent;
  border-color: var(--tvyx-navy);
  color: var(--tvyx-navy);
}
.tvyx-btn--outline-light:hover {
  background: var(--tvyx-navy);
  color: var(--tvyx-fg-dark-primary);
}

/* Outline-dark: for dark sections */
.tvyx-btn--outline-dark {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--tvyx-fg-dark-primary);
}
.tvyx-btn--outline-dark:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
  color: white;
}

/* Ghost-on-dark: for dark nav/sections */
.tvyx-btn--ghost-dark {
  background: transparent;
  border-color: transparent;
  color: var(--tvyx-fg-dark-primary);
  padding-left: 16px;
  padding-right: 16px;
}
.tvyx-btn--ghost-dark:hover {
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

/* Ghost-on-light: for light sections */
.tvyx-btn--ghost-light {
  background: transparent;
  border-color: transparent;
  color: var(--tvyx-fg-light-secondary);
}
.tvyx-btn--ghost-light:hover {
  color: var(--tvyx-navy);
  background: rgba(11, 28, 46, 0.06);
}

/* Small button modifier */
.tvyx-btn--sm {
  padding: 9px 18px;
  font-size: 13px;
}

/* ═══ GLOBAL NAVIGATION ═══ */
.tvyx-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 68px;
  display: flex;
  align-items: center;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

/* Dark-top pages: nav starts transparent, scrolled becomes solid navy */
body.tvyx-page--dark-top .tvyx-nav {
  background: transparent;
}
body.tvyx-page--dark-top .tvyx-nav.tvyx-nav--scrolled {
  background: var(--tvyx-bg-dark);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

/* Light-top pages: nav is always solid navy */
body.tvyx-page--light-top .tvyx-nav {
  background: var(--tvyx-bg-dark);
  box-shadow: 0 1px 0 var(--tvyx-border-dark);
}

.tvyx-nav__inner {
  max-width: var(--tvyx-container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.tvyx-nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.tvyx-nav__logo img {
  height: 32px;
  width: auto;
  max-width: 160px;
  display: block;
}

.tvyx-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

/* Nav link colors — always on dark nav bg */
.tvyx-nav__link {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  color: rgba(232, 244, 242, 0.80);  /* fg-dark-primary at 80% */
  transition: color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.tvyx-nav__link:hover {
  color: var(--tvyx-fg-dark-primary);
  background: rgba(255, 255, 255, 0.08);
}
.tvyx-nav__link--active {
  color: var(--tvyx-fg-dark-primary);
}

.tvyx-nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

/* Mobile hamburger */
.tvyx-nav__hamburger {
  display: none;
  background: transparent;
  border: none;
  padding: 8px;
  margin-left: auto;
  color: var(--tvyx-fg-dark-primary);
  cursor: pointer;
}
.tvyx-nav__hamburger svg {
  width: 24px;
  height: 24px;
}

/* Mobile menu */
.tvyx-nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--tvyx-bg-dark);
  border-top: 1px solid var(--tvyx-border-dark);
  padding: 16px clamp(16px, 4vw, 48px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.tvyx-nav__mobile.is-open {
  display: flex;
}
.tvyx-nav__mobile .tvyx-nav__link {
  font-size: 16px;
  padding: 12px 8px;
  border-bottom: 1px solid var(--tvyx-border-dark);
}
.tvyx-nav__mobile .tvyx-nav__link:last-child {
  border-bottom: none;
}
.tvyx-nav__mobile .tvyx-btn {
  margin-top: 12px;
  justify-content: center;
}

@media (max-width: 960px) {
  .tvyx-nav__links,
  .tvyx-nav__actions {
    display: none;
  }
  .tvyx-nav__hamburger {
    display: block;
  }
}

/* ═══ GLOBAL FOOTER ═══ */
.tvyx-footer {
  background: var(--tvyx-bg-dark);
  color: var(--tvyx-fg-dark-secondary);
  padding: 72px 0 40px;
  border-top: 1px solid var(--tvyx-border-dark);
}

.tvyx-footer__inner {
  max-width: var(--tvyx-container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

.tvyx-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--tvyx-border-dark);
}

.tvyx-footer__logo {
  margin-bottom: 16px;
}
.tvyx-footer__logo img {
  height: 28px;
  width: auto;
}

.tvyx-footer__tagline {
  font-size: 14px;
  color: var(--tvyx-fg-dark-secondary);
  margin-bottom: 20px;
  line-height: 1.5;
}

.tvyx-footer__address {
  font-size: 13px;
  color: var(--tvyx-fg-dark-muted);
  line-height: 1.8;
  font-style: normal;
}

.tvyx-footer__address a {
  color: var(--tvyx-fg-dark-muted);
  transition: color 0.15s;
}
.tvyx-footer__address a:hover {
  color: var(--tvyx-teal-aa-dark);
}

.tvyx-footer__col-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tvyx-fg-dark-primary);
  margin-bottom: 16px;
}

.tvyx-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tvyx-footer__link {
  font-size: 14px;
  color: var(--tvyx-fg-dark-muted);
  transition: color 0.15s;
}
.tvyx-footer__link:hover {
  color: var(--tvyx-teal-aa-dark);
}

.tvyx-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  font-size: 13px;
  color: var(--tvyx-fg-dark-muted);
  flex-wrap: wrap;
  gap: 16px;
}

.tvyx-footer__cookie-pref {
  color: var(--tvyx-fg-dark-muted);
  font-size: 13px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s;
}
.tvyx-footer__cookie-pref:hover {
  color: var(--tvyx-teal-aa-dark);
}

@media (max-width: 900px) {
  .tvyx-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 480px) {
  .tvyx-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .tvyx-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ═══ HERO COMPONENTS ═══ */
/* Homepage dark hero — full viewport */
.tvyx-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.tvyx-hero--dark {
  background: var(--tvyx-bg-dark);
}

.tvyx-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.tvyx-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
/* Dark overlay gradient */
.tvyx-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 28, 46, 0.85) 0%, rgba(11, 28, 46, 0.55) 100%);
  z-index: 1;
}

.tvyx-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--tvyx-container-max);
  margin: 0 auto;
  padding: 96px clamp(16px, 4vw, 48px);
  width: 100%;
}

.tvyx-hero__split {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.tvyx-hero__text {}

.tvyx-hero__eyebrow {
  display: inline-block;
  margin-bottom: 20px;
}

.tvyx-hero__headline {
  color: var(--tvyx-fg-dark-primary);
  margin-bottom: 20px;
  font-size: clamp(38px, 4.5vw, 52px);
}

.tvyx-hero__subhead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--tvyx-fg-dark-secondary);
  margin-bottom: 36px;
  max-width: 540px;
}

.tvyx-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.tvyx-hero__visual {
  position: relative;
}
.tvyx-hero__visual img {
  width: 100%;
  height: auto;
  border-radius: var(--tvyx-radius-card);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

/* Sub-page hero (lighter weight than homepage) */
.tvyx-subhero {
  padding: 72px 0 64px;
}

.tvyx-subhero--dark {
  background: var(--tvyx-bg-dark);
  /* Add a subtle geometric pattern in dark bg */
  background-image:
    radial-gradient(circle at 80% 20%, rgba(0, 184, 160, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(0, 184, 160, 0.05) 0%, transparent 50%);
}

.tvyx-subhero--light {
  background: var(--tvyx-bg-light);
  border-bottom: 1px solid var(--tvyx-border-light);
}

.tvyx-subhero__inner {
  max-width: var(--tvyx-container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

.tvyx-subhero__eyebrow {
  margin-bottom: 16px;
}

.tvyx-subhero--dark .tvyx-subhero__headline {
  color: var(--tvyx-fg-dark-primary);
  font-size: clamp(32px, 3.5vw, 44px);
  max-width: 640px;
  margin-bottom: 16px;
}

.tvyx-subhero--light .tvyx-subhero__headline {
  color: var(--tvyx-fg-light-primary);
  font-size: clamp(28px, 3vw, 40px);
  max-width: 640px;
  margin-bottom: 16px;
}

.tvyx-subhero--dark .tvyx-subhero__subhead {
  color: var(--tvyx-fg-dark-secondary);
  font-size: 18px;
  line-height: 1.6;
  max-width: 580px;
}

.tvyx-subhero--light .tvyx-subhero__subhead {
  color: var(--tvyx-fg-light-secondary);
  font-size: 18px;
  line-height: 1.6;
  max-width: 580px;
}

/* Subhero accent line */
.tvyx-subhero__accent-line {
  display: block;
  width: 48px;
  height: 4px;
  background: var(--tvyx-teal);
  border-radius: 2px;
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .tvyx-hero__split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .tvyx-hero__visual {
    display: none;
  }
  .tvyx-hero {
    min-height: 70vh;
  }
}

/* ═══ STAT BAR ═══ */
.tvyx-stat-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.tvyx-stat-bar__item {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid var(--tvyx-border-dark);
}
.tvyx-stat-bar__item:last-child {
  border-right: none;
}

.tvyx-stat-bar__num {
  font-family: var(--tvyx-font-mono);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--tvyx-teal-aa-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.tvyx-stat-bar__label {
  font-size: 14px;
  color: var(--tvyx-fg-dark-secondary);
  line-height: 1.4;
  max-width: 220px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .tvyx-stat-bar {
    grid-template-columns: 1fr;
  }
  .tvyx-stat-bar__item {
    border-right: none;
    border-bottom: 1px solid var(--tvyx-border-dark);
    padding: 28px 24px;
  }
  .tvyx-stat-bar__item:last-child {
    border-bottom: none;
  }
}

/* ═══ CARDS ═══ */
/* Generic card base */
.tvyx-card {
  background: var(--tvyx-bg-white);
  border: 1px solid var(--tvyx-border-light);
  border-radius: var(--tvyx-radius-card);
  padding: var(--tvyx-card-padding);
}

/* Card on light section */
.tvyx-section--light .tvyx-card,
.tvyx-section--light-alt .tvyx-card {
  background: var(--tvyx-bg-white);
  border-color: var(--tvyx-border-light);
}

/* Card on dark section (inverted card) */
.tvyx-section--dark .tvyx-card {
  background: var(--tvyx-bg-dark-alt);
  border-color: var(--tvyx-border-dark);
  color: var(--tvyx-fg-dark-primary);
}
.tvyx-section--dark .tvyx-card h3,
.tvyx-section--dark .tvyx-card h4 {
  color: var(--tvyx-fg-dark-primary);
}
.tvyx-section--dark .tvyx-card p {
  color: var(--tvyx-fg-dark-secondary);
}

/* Icon card */
.tvyx-icon-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tvyx-bg-teal-light);
  border-radius: 10px;
  margin-bottom: 20px;
  color: var(--tvyx-teal-aa-light);
  font-size: 20px;
}
.tvyx-section--dark .tvyx-icon-card__icon {
  background: rgba(0, 184, 160, 0.15);
  color: var(--tvyx-teal-aa-dark);
}

.tvyx-icon-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
/* Title color scoped to container */
.tvyx-section--light .tvyx-icon-card__title,
.tvyx-section--light-alt .tvyx-icon-card__title,
.tvyx-section--white .tvyx-icon-card__title {
  color: var(--tvyx-fg-light-primary);
}
.tvyx-section--dark .tvyx-icon-card__title,
.tvyx-section--dark-alt .tvyx-icon-card__title {
  color: var(--tvyx-fg-dark-primary);
}

.tvyx-icon-card__body {
  font-size: 15px;
  line-height: 1.6;
}
.tvyx-section--light .tvyx-icon-card__body,
.tvyx-section--light-alt .tvyx-icon-card__body,
.tvyx-section--white .tvyx-icon-card__body {
  color: var(--tvyx-fg-light-secondary);
}
.tvyx-section--dark .tvyx-icon-card__body,
.tvyx-section--dark-alt .tvyx-icon-card__body {
  color: var(--tvyx-fg-dark-secondary);
}

/* Dual audience cards */
.tvyx-audience-card {
  border-radius: var(--tvyx-radius-card);
  padding: 40px;
  display: flex;
  flex-direction: column;
}
.tvyx-audience-card--sponsor {
  background: var(--tvyx-bg-dark);
  border: 1px solid var(--tvyx-border-dark);
}
.tvyx-audience-card--site {
  background: var(--tvyx-bg-dark-alt);
  border: 1px solid var(--tvyx-border-dark);
}
.tvyx-audience-card__eyebrow {
  color: var(--tvyx-teal-aa-dark);
}
.tvyx-audience-card__headline {
  font-size: 24px;
  font-weight: 700;
  color: var(--tvyx-fg-dark-primary);
  margin: 12px 0;
}
.tvyx-audience-card__body {
  color: var(--tvyx-fg-dark-secondary);
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 24px;
}
.tvyx-audience-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tvyx-audience-card ul li {
  font-size: 14px;
  color: var(--tvyx-fg-dark-secondary);
  padding-left: 20px;
  position: relative;
}
.tvyx-audience-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--tvyx-teal-aa-dark);
}

/* ═══ BLOG CARDS ═══ */
.tvyx-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.tvyx-blog-card {
  background: var(--tvyx-bg-white);
  border: 1px solid var(--tvyx-border-light);
  border-radius: var(--tvyx-radius-card);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.tvyx-blog-card:hover {
  box-shadow: 0 8px 32px rgba(11, 28, 46, 0.12);
  transform: translateY(-2px);
}

.tvyx-blog-card__img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--tvyx-bg-light-alt);
}

/* List card cover: cropped 16:9 */
.tvyx-blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.tvyx-blog-card:hover .tvyx-blog-card__img {
  transform: scale(1.03);
}

.tvyx-blog-card__body {
  padding: 24px;
}

.tvyx-blog-card__category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tvyx-teal-aa-light);
  background: var(--tvyx-bg-teal-light);
  padding: 4px 10px;
  border-radius: var(--tvyx-radius-pill);
  margin-bottom: 12px;
}

.tvyx-blog-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--tvyx-fg-light-primary);
  margin-bottom: 10px;
  line-height: 1.35;
}
.tvyx-blog-card:hover .tvyx-blog-card__title {
  color: var(--tvyx-teal-aa-light);
}

.tvyx-blog-card__excerpt {
  font-size: 14px;
  color: var(--tvyx-fg-light-secondary);
  line-height: 1.55;
  margin-bottom: 16px;
}

.tvyx-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--tvyx-fg-light-muted);
}

.tvyx-blog-card__meta-sep {
  width: 3px;
  height: 3px;
  background: var(--tvyx-fg-light-muted);
  border-radius: 50%;
}

/* Article cover — full natural ratio, no crop */
.tvyx-blog-article__cover {
  width: 100%;
  height: auto;  /* MUST NOT share rule with .tvyx-blog-card__img */
  display: block;
  border-radius: var(--tvyx-radius-card);
  margin: 0 auto 40px;
  /* NO aspect-ratio, NO object-fit: cover — natural display */
}

@media (max-width: 1024px) {
  .tvyx-blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .tvyx-blog-grid { grid-template-columns: 1fr; }
}

/* ═══ TESTIMONIAL / QUOTE ═══ */
.tvyx-quote {
  background: var(--tvyx-bg-white);
  border: 1px solid var(--tvyx-border-light);
  border-radius: var(--tvyx-radius-card);
  padding: 40px;
  position: relative;
}

.tvyx-quote::before {
  content: '\201C';
  font-size: 80px;
  line-height: 0.7;
  color: var(--tvyx-teal);
  opacity: 0.3;
  position: absolute;
  top: 20px;
  left: 32px;
  font-family: Georgia, serif;
}

.tvyx-quote__text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--tvyx-fg-light-primary);
  font-style: italic;
  margin-bottom: 24px;
  padding-top: 32px;
}

.tvyx-quote__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tvyx-quote__portrait {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.tvyx-quote__attribution {}
.tvyx-quote__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--tvyx-fg-light-primary);
}
.tvyx-quote__role {
  font-size: 13px;
  color: var(--tvyx-fg-light-muted);
}

/* ═══ PRICING CARDS ═══ */
.tvyx-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.tvyx-pricing-card {
  background: var(--tvyx-bg-white);
  border: 2px solid var(--tvyx-border-light);
  border-radius: var(--tvyx-radius-card);
  padding: 36px 32px;
  position: relative;
}

.tvyx-pricing-card--featured {
  border-color: var(--tvyx-teal);
  box-shadow: 0 0 0 1px var(--tvyx-teal), 0 16px 48px rgba(0, 184, 160, 0.12);
}

.tvyx-pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--tvyx-teal);
  color: var(--tvyx-navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--tvyx-radius-pill);
  white-space: nowrap;
}

.tvyx-pricing-card__tier {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tvyx-teal-aa-light);
  margin-bottom: 8px;
}

.tvyx-pricing-card__price {
  font-family: var(--tvyx-font-mono);
  font-size: 36px;
  font-weight: 700;
  color: var(--tvyx-fg-light-primary);
  margin-bottom: 4px;
  line-height: 1;
}

.tvyx-pricing-card__unit {
  font-size: 14px;
  color: var(--tvyx-fg-light-muted);
  margin-bottom: 20px;
}

.tvyx-pricing-card__desc {
  font-size: 14px;
  color: var(--tvyx-fg-light-secondary);
  line-height: 1.55;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--tvyx-border-light);
}

.tvyx-pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.tvyx-pricing-card__feature {
  font-size: 14px;
  color: var(--tvyx-fg-light-secondary);
  padding-left: 22px;
  position: relative;
}
.tvyx-pricing-card__feature::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--tvyx-teal-aa-light);
  font-weight: 700;
}

@media (max-width: 900px) {
  .tvyx-pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ═══ CASE STUDY CARDS ═══ */
.tvyx-case-card {
  background: var(--tvyx-bg-white);
  border: 1px solid var(--tvyx-border-light);
  border-radius: var(--tvyx-radius-card);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.tvyx-case-card__image {
  background: var(--tvyx-bg-light-alt);
}
.tvyx-case-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tvyx-case-card__content {
  padding: 40px;
}

.tvyx-case-card__area {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tvyx-teal-aa-light);
  background: var(--tvyx-bg-teal-light);
  padding: 4px 10px;
  border-radius: var(--tvyx-radius-pill);
  margin-bottom: 16px;
}

.tvyx-case-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--tvyx-fg-light-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.tvyx-case-card__sponsor {
  font-size: 13px;
  color: var(--tvyx-fg-light-muted);
  margin-bottom: 20px;
  font-style: italic;
}

.tvyx-case-card__metrics {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.tvyx-case-metric {
  text-align: center;
}
.tvyx-case-metric__val {
  font-family: var(--tvyx-font-mono);
  font-size: 26px;
  font-weight: 700;
  color: var(--tvyx-teal-aa-light);
  line-height: 1;
}
.tvyx-case-metric__label {
  font-size: 11px;
  color: var(--tvyx-fg-light-muted);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .tvyx-case-card { grid-template-columns: 1fr; }
  .tvyx-case-card__image { height: 200px; }
}

/* ═══ TEAM CARDS ═══ */
.tvyx-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.tvyx-team-card {
  text-align: center;
}

.tvyx-team-card__portrait {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--tvyx-border-light);
}

.tvyx-team-card__letter-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--tvyx-bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 32px;
  font-weight: 700;
  color: var(--tvyx-teal-aa-dark);
  font-family: var(--tvyx-font-sans);
}

.tvyx-team-card__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--tvyx-fg-light-primary);
  margin-bottom: 4px;
}

.tvyx-team-card__title {
  font-size: 13px;
  color: var(--tvyx-teal-aa-light);
  font-weight: 600;
  margin-bottom: 12px;
}

.tvyx-team-card__bio {
  font-size: 14px;
  color: var(--tvyx-fg-light-secondary);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .tvyx-team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .tvyx-team-grid { grid-template-columns: 1fr; }
}

/* ═══ FORMS ═══ */
.tvyx-form-group {
  margin-bottom: 20px;
}

.tvyx-form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--tvyx-fg-light-primary);
  margin-bottom: 6px;
}

.tvyx-form-input {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 16px;
  font-family: var(--tvyx-font-sans);
  font-size: 15px;
  line-height: 1.5;
  color: var(--tvyx-fg-light-primary);
  background: var(--tvyx-bg-white);
  border: 1.5px solid var(--tvyx-border-light);
  border-radius: 8px;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.tvyx-form-input:focus {
  border-color: var(--tvyx-teal);
  box-shadow: 0 0 0 3px rgba(0, 184, 160, 0.15);
}

.tvyx-form-textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 16px;
  font-family: var(--tvyx-font-sans);
  font-size: 15px;
  line-height: 1.5;
  color: var(--tvyx-fg-light-primary);
  background: var(--tvyx-bg-white);
  border: 1.5px solid var(--tvyx-border-light);
  border-radius: 8px;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  min-height: 120px;
  resize: vertical;
}
.tvyx-form-textarea:focus {
  border-color: var(--tvyx-teal);
  box-shadow: 0 0 0 3px rgba(0, 184, 160, 0.15);
}

.tvyx-form-select {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 40px 12px 16px;
  font-family: var(--tvyx-font-sans);
  font-size: 15px;
  line-height: 1.5;
  color: var(--tvyx-fg-light-primary);
  background: var(--tvyx-bg-white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23617D8E' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  border: 1.5px solid var(--tvyx-border-light);
  border-radius: 8px;
  appearance: none;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.tvyx-form-select:focus {
  border-color: var(--tvyx-teal);
  box-shadow: 0 0 0 3px rgba(0, 184, 160, 0.15);
}
.tvyx-form-select option {
  background: var(--tvyx-bg-white);
  color: var(--tvyx-fg-light-primary);
}

/* ═══ SECTION HEADERS ═══ */
.tvyx-section-header {
  max-width: 640px;
  margin-bottom: 56px;
}

.tvyx-section-header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.tvyx-section-header__eyebrow {
  margin-bottom: 12px;
}

/* Section title color — scoped by container */
.tvyx-section--light .tvyx-section-header__title,
.tvyx-section--light-alt .tvyx-section-header__title,
.tvyx-section--white .tvyx-section-header__title {
  color: var(--tvyx-fg-light-primary);
}
.tvyx-section--dark .tvyx-section-header__title,
.tvyx-section--dark-alt .tvyx-section-header__title {
  color: var(--tvyx-fg-dark-primary);
}
.tvyx-section--brand .tvyx-section-header__title {
  color: var(--tvyx-navy);
}

.tvyx-section-header__lead {
  font-size: 18px;
  line-height: 1.6;
  margin-top: 16px;
}
.tvyx-section--light .tvyx-section-header__lead,
.tvyx-section--light-alt .tvyx-section-header__lead,
.tvyx-section--white .tvyx-section-header__lead {
  color: var(--tvyx-fg-light-secondary);
}
.tvyx-section--dark .tvyx-section-header__lead,
.tvyx-section--dark-alt .tvyx-section-header__lead {
  color: var(--tvyx-fg-dark-secondary);
}
.tvyx-section--brand .tvyx-section-header__lead {
  color: var(--tvyx-navy);
  opacity: 0.8;
}

/* ═══ FAQ ACCORDION ═══ */
.tvyx-faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--tvyx-border-light);
  border-radius: var(--tvyx-radius-card);
  overflow: hidden;
}

.tvyx-faq__item {
  border-bottom: 1px solid var(--tvyx-border-light);
}
.tvyx-faq__item:last-child {
  border-bottom: none;
}

.tvyx-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--tvyx-bg-white);
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--tvyx-font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--tvyx-fg-light-primary);
  transition: background 0.15s;
}
.tvyx-faq__question:hover {
  background: var(--tvyx-bg-light);
}
.tvyx-faq__question.is-open {
  color: var(--tvyx-teal-aa-light);
}

.tvyx-faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--tvyx-fg-light-muted);
  transition: transform 0.25s ease;
}
.tvyx-faq__question.is-open .tvyx-faq__icon {
  transform: rotate(180deg);
  color: var(--tvyx-teal-aa-light);
}

.tvyx-faq__answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--tvyx-fg-light-secondary);
  line-height: 1.65;
  background: var(--tvyx-bg-white);
}
.tvyx-faq__answer.is-open {
  display: block;
}

/* ═══ BRAND CTA BAND ═══ */
.tvyx-cta-band {
  background: var(--tvyx-teal);
  padding: 72px 0;
}

.tvyx-cta-band__inner {
  max-width: var(--tvyx-container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.tvyx-cta-band__headline {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--tvyx-navy);
  margin-bottom: 8px;
}

.tvyx-cta-band__sub {
  font-size: 16px;
  color: rgba(11, 28, 46, 0.75);
}

.tvyx-cta-band__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* CTA band button (on teal bg) */
.tvyx-btn--on-brand {
  background: var(--tvyx-navy);
  border-color: var(--tvyx-navy);
  color: var(--tvyx-teal-aa-dark);
}
.tvyx-btn--on-brand:hover {
  background: var(--tvyx-navy-alt);
}

@media (max-width: 768px) {
  .tvyx-cta-band__inner {
    grid-template-columns: 1fr;
  }
}

/* ═══ PROCESS STEPS ═══ */
.tvyx-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.tvyx-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: linear-gradient(90deg, var(--tvyx-teal) 0%, var(--tvyx-teal-aa-light) 100%);
  opacity: 0.4;
  z-index: 0;
}

.tvyx-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.tvyx-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--tvyx-font-mono);
  font-size: 20px;
  font-weight: 700;
  background: var(--tvyx-teal);
  color: var(--tvyx-navy);
}

.tvyx-step__icon {
  font-size: 22px;
  color: var(--tvyx-teal-aa-light);
  margin-bottom: 12px;
}

/* Step title / body on light section */
.tvyx-section--light .tvyx-step__title,
.tvyx-section--white .tvyx-step__title {
  color: var(--tvyx-fg-light-primary);
}
/* Step title / body on dark section */
.tvyx-section--dark .tvyx-step__title,
.tvyx-section--dark-alt .tvyx-step__title {
  color: var(--tvyx-fg-dark-primary);
}
.tvyx-step__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.tvyx-section--light .tvyx-step__body,
.tvyx-section--white .tvyx-step__body {
  color: var(--tvyx-fg-light-secondary);
}
.tvyx-section--dark .tvyx-step__body,
.tvyx-section--dark-alt .tvyx-step__body {
  color: var(--tvyx-fg-dark-secondary);
}
.tvyx-step__body {
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .tvyx-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .tvyx-steps::before { display: none; }
  .tvyx-step { text-align: left; display: flex; gap: 20px; }
  .tvyx-step__num { margin: 0; flex-shrink: 0; }
}

/* ═══ METRICS HIGHLIGHT GRID ═══ */
.tvyx-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--tvyx-border-light);
  border-radius: var(--tvyx-radius-card);
  overflow: hidden;
}

.tvyx-metric-cell {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--tvyx-border-light);
}
.tvyx-metric-cell:last-child { border-right: none; }

/* Metrics on light-alt section */
.tvyx-section--light-alt .tvyx-metric-cell {
  background: var(--tvyx-bg-white);
}
.tvyx-section--light-alt .tvyx-metrics-grid {
  border-color: var(--tvyx-border-light);
}

.tvyx-metric-cell__val {
  font-family: var(--tvyx-font-mono);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--tvyx-teal-aa-light);
  line-height: 1;
  margin-bottom: 8px;
}

.tvyx-metric-cell__label {
  font-size: 13px;
  color: var(--tvyx-fg-light-secondary);
  line-height: 1.4;
}

.tvyx-metric-cell__sub {
  font-size: 11px;
  color: var(--tvyx-fg-light-muted);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .tvyx-metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .tvyx-metric-cell:nth-child(2) { border-right: none; }
}
@media (max-width: 480px) {
  .tvyx-metrics-grid { grid-template-columns: 1fr; }
  .tvyx-metric-cell { border-right: none; border-bottom: 1px solid var(--tvyx-border-light); }
  .tvyx-metric-cell:last-child { border-bottom: none; }
}

/* ═══ AUTH LAYOUT ═══ */
.tvyx-auth-layout {
  min-height: calc(100vh - 68px - 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 100%;
}

.tvyx-auth-side {
  background: var(--tvyx-bg-dark);
  padding: 64px clamp(32px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tvyx-auth-side__headline {
  font-size: 28px;
  font-weight: 700;
  color: var(--tvyx-fg-dark-primary);
  margin-bottom: 16px;
  line-height: 1.25;
}

.tvyx-auth-side__sub {
  font-size: 16px;
  color: var(--tvyx-fg-dark-secondary);
  line-height: 1.6;
  margin-bottom: 40px;
}

.tvyx-auth-side__points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tvyx-auth-side__point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.tvyx-auth-side__point-icon {
  color: var(--tvyx-teal-aa-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

.tvyx-auth-side__point-text {
  font-size: 14px;
  color: var(--tvyx-fg-dark-secondary);
  line-height: 1.5;
}

.tvyx-auth-panel {
  background: var(--tvyx-bg-white);
  padding: 64px clamp(32px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tvyx-auth-panel__header {
  margin-bottom: 32px;
}

.tvyx-auth-panel__title {
  font-size: 26px;
  font-weight: 700;
  color: var(--tvyx-fg-light-primary);
  margin-bottom: 8px;
}

.tvyx-auth-panel__sub {
  font-size: 15px;
  color: var(--tvyx-fg-light-secondary);
}

.tvyx-auth-panel__form {
  max-width: 400px;
}

.tvyx-auth-panel__footer {
  margin-top: 24px;
  font-size: 14px;
  color: var(--tvyx-fg-light-muted);
}

.tvyx-auth-panel__footer a {
  color: var(--tvyx-teal-aa-light);
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .tvyx-auth-layout {
    grid-template-columns: 1fr;
  }
  .tvyx-auth-side {
    padding: 40px 24px;
  }
  .tvyx-auth-panel {
    padding: 40px 24px;
  }
}

/* ═══ INLINE SVG PIPELINE DIAGRAMS ═══ */
.tvyx-pipeline-svg-wrap {
  width: 100%;
  overflow-x: auto;
}
.tvyx-pipeline-svg-wrap svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ═══ VALUES GRID ═══ */
.tvyx-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.tvyx-value-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.tvyx-value-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 184, 160, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tvyx-teal-aa-dark);
  font-size: 18px;
  flex-shrink: 0;
}

.tvyx-value-item__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--tvyx-fg-dark-primary);
  margin-bottom: 6px;
}

.tvyx-value-item__body {
  font-size: 14px;
  color: var(--tvyx-fg-dark-secondary);
  line-height: 1.55;
}

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

/* ═══ COOKIE BANNER ═══ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--tvyx-bg-dark-alt);
  border-top: 1px solid var(--tvyx-border-dark);
}

.cookie-banner__inner {
  max-width: var(--tvyx-container-max);
  margin: 0 auto;
  padding: 16px clamp(16px, 4vw, 48px);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  min-width: 240px;
  font-size: 14px;
  color: var(--tvyx-fg-dark-secondary);
  line-height: 1.5;
}

.cookie-banner__text a {
  color: var(--tvyx-teal-aa-dark);
  text-decoration: underline;
}

.cookie-banner__actions {}

.cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  font-family: var(--tvyx-font-sans);
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}

.cookie-banner__btn--primary {
  background: var(--tvyx-teal);
  color: var(--tvyx-navy);
}
.cookie-banner__btn--primary:hover {
  background: var(--tvyx-teal-aa-dark);
  color: var(--tvyx-navy);
}

/* ═══ AUTH ASIDE (dark right panel) ═══ */
.tvyx-auth-aside {
  background: var(--tvyx-bg-dark);
  padding: 64px clamp(32px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tvyx-auth-aside__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.tvyx-auth-aside__logo img {
  height: 28px;
  width: auto;
}

.tvyx-auth-aside__tagline {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--tvyx-fg-dark-primary);
  line-height: 1.2;
}

.tvyx-auth-aside__stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tvyx-auth-aside__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  background: rgba(0, 184, 160, 0.08);
  border-left: 3px solid var(--tvyx-teal);
  border-radius: 0 8px 8px 0;
}

.tvyx-auth-aside__stat-value {
  font-family: var(--tvyx-font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--tvyx-teal-aa-dark);
  line-height: 1;
}

.tvyx-auth-aside__stat-label {
  font-size: 13px;
  color: var(--tvyx-fg-dark-secondary);
  line-height: 1.4;
}

.tvyx-auth-aside__desc {
  font-size: 14px;
  color: var(--tvyx-fg-dark-secondary);
  line-height: 1.6;
}

.tvyx-auth-aside__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tvyx-auth-aside__feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--tvyx-fg-dark-secondary);
  line-height: 1.5;
}

.tvyx-auth-aside__feature-icon {
  flex-shrink: 0;
  margin-top: 0;
}

.tvyx-auth-aside__contact {
  padding-top: 24px;
  border-top: 1px solid var(--tvyx-border-dark);
}

@media (max-width: 768px) {
  .tvyx-auth-aside {
    padding: 40px 24px;
  }
}

/* ═══ AUTH PANEL EXTRAS ═══ */
.tvyx-auth-panel__logo {
  display: flex;
  align-items: center;
}
.tvyx-auth-panel__logo img {
  height: 28px;
  width: auto;
}

.tvyx-auth-panel__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 420px;
}

/* ═══ AUTH FORM ═══ */
.tvyx-auth-form {
  margin-top: 24px;
  width: 100%;
  max-width: 400px;
}

.tvyx-auth-form__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
  flex-wrap: wrap;
}

.tvyx-auth-form__remember {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--tvyx-fg-light-secondary);
  cursor: pointer;
}

.tvyx-auth-form__forgot {
  font-size: 14px;
  color: var(--tvyx-teal-aa-light);
  text-decoration: underline;
  font-weight: 500;
}

.tvyx-auth-form__submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

/* ═══ NAV FORCED SOLID ═══ */
/* Light-top pages always force nav to solid; dark-top auth pages also use forced-solid */
.tvyx-nav--forced-solid {
  background: var(--tvyx-bg-dark) !important;
  box-shadow: 0 1px 0 var(--tvyx-border-dark);
}

/* ═══ BLOG ARTICLE HEADER EXTRAS ═══ */
.tvyx-blog-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tvyx-teal-aa-light);
  background: var(--tvyx-bg-teal-light);
  padding: 4px 10px;
  border-radius: var(--tvyx-radius-pill);
}

.tvyx-blog-card__date {
  font-size: 13px;
  color: var(--tvyx-fg-light-muted);
}

.tvyx-blog-article__read {
  font-size: 13px;
  color: var(--tvyx-fg-light-muted);
}

.tvyx-blog-article__headline {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--tvyx-fg-light-primary);
  line-height: 1.2;
  margin-bottom: 16px;
}

.tvyx-blog-article__lede {
  font-size: 18px;
  color: var(--tvyx-fg-light-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.tvyx-blog-article__byline {
  font-size: 13px;
  color: var(--tvyx-fg-light-muted);
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid var(--tvyx-border-light);
}

/* tvyx-blog-article__cover-wrap — transparent wrapper, no specific style needed */
.tvyx-blog-article__cover-wrap {}

/* ═══ RELATED ARTICLES GRID (on dark section) ═══ */
.tvyx-blog-grid--related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .tvyx-blog-grid--related { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .tvyx-blog-grid--related { grid-template-columns: 1fr; }
}

/* Related cards on dark section — need explicit text colors */
.tvyx-section--dark .tvyx-blog-card {
  background: var(--tvyx-bg-dark-alt);
  border-color: var(--tvyx-border-dark);
}
.tvyx-section--dark .tvyx-blog-card__title {
  color: var(--tvyx-fg-dark-primary);
}
.tvyx-section--dark .tvyx-blog-card:hover .tvyx-blog-card__title {
  color: var(--tvyx-teal-aa-dark);
}
.tvyx-section--dark .tvyx-blog-card__excerpt {
  color: var(--tvyx-fg-dark-secondary);
}
.tvyx-section--dark .tvyx-blog-card__meta {
  color: var(--tvyx-fg-dark-muted);
}
.tvyx-section--dark .tvyx-blog-card__meta-sep {
  background: var(--tvyx-fg-dark-muted);
}
.tvyx-section--dark .tvyx-blog-card__category {
  background: rgba(0, 184, 160, 0.15);
  color: var(--tvyx-teal-aa-dark);
}
.tvyx-section--dark .tvyx-blog-card__tag {
  background: rgba(0, 184, 160, 0.15);
  color: var(--tvyx-teal-aa-dark);
}
.tvyx-section--dark .tvyx-blog-card__date {
  color: var(--tvyx-fg-dark-muted);
}

/* ═══ BREADCRUMB SUB-ELEMENTS ═══ */
.tvyx-breadcrumb__link {
  color: var(--tvyx-teal-aa-light);
}
.tvyx-breadcrumb__link:hover { text-decoration: underline; }

.tvyx-breadcrumb__sep {
  color: var(--tvyx-fg-light-muted);
}

.tvyx-breadcrumb__current {
  color: var(--tvyx-fg-light-muted);
}

/* ═══ LEGAL PAGES ═══ */
.tvyx-legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.tvyx-legal-content .legal-article {
  padding: 0;
}

.tvyx-legal-content .legal-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--tvyx-border-light);
}

/* Scoped to page theme class — per shared_containers contract */
body.tvyx-page--light-top .tvyx-legal-content h1 {
  font-size: 36px;
  color: var(--tvyx-fg-light-primary);
  margin-bottom: 12px;
}
body.tvyx-page--light-top .tvyx-legal-content .legal-meta {
  color: var(--tvyx-fg-light-muted);
  font-size: 14px;
}
body.tvyx-page--light-top .tvyx-legal-content h2 {
  font-size: 22px;
  color: var(--tvyx-fg-light-primary);
  margin: 40px 0 12px;
  padding-top: 16px;
  border-top: 1px solid var(--tvyx-border-light);
}
body.tvyx-page--light-top .tvyx-legal-content h3 {
  font-size: 17px;
  color: var(--tvyx-fg-light-primary);
  margin: 24px 0 8px;
  font-weight: 700;
}
body.tvyx-page--light-top .tvyx-legal-content p {
  color: var(--tvyx-fg-light-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}
body.tvyx-page--light-top .tvyx-legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
body.tvyx-page--light-top .tvyx-legal-content li {
  color: var(--tvyx-fg-light-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 6px;
}
body.tvyx-page--light-top .tvyx-legal-content address {
  font-style: normal;
  color: var(--tvyx-fg-light-secondary);
  font-size: 15px;
  line-height: 1.9;
}
body.tvyx-page--light-top .tvyx-legal-content a {
  color: var(--tvyx-teal-aa-light);
  text-decoration: underline;
}
body.tvyx-page--light-top .tvyx-legal-content table.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 14px;
}
body.tvyx-page--light-top .tvyx-legal-content table.legal-table th {
  background: var(--tvyx-bg-light);
  color: var(--tvyx-fg-light-primary);
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--tvyx-border-light);
  font-weight: 700;
}
body.tvyx-page--light-top .tvyx-legal-content table.legal-table td {
  color: var(--tvyx-fg-light-secondary);
  padding: 10px 14px;
  border: 1px solid var(--tvyx-border-light);
}

/* ═══ CONTACT LAYOUT ═══ */
.tvyx-contact-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}

.tvyx-contact-sidebar {
  background: var(--tvyx-bg-light-alt);
  border-radius: var(--tvyx-radius-card);
  padding: 36px 32px;
}

.tvyx-contact-sidebar__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--tvyx-teal-aa-light);
  margin-bottom: 20px;
}

.tvyx-contact-sidebar__item {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.tvyx-contact-sidebar__item:last-child { margin-bottom: 0; }

.tvyx-contact-sidebar__icon {
  color: var(--tvyx-teal-aa-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.tvyx-contact-sidebar__text {
  font-size: 15px;
  color: var(--tvyx-fg-light-secondary);
  line-height: 1.5;
}
.tvyx-contact-sidebar__text a {
  color: var(--tvyx-teal-aa-light);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .tvyx-contact-layout { grid-template-columns: 1fr; }
  .tvyx-contact-sidebar { order: -1; }
}

/* ═══ NEWSLETTER BLOCK ═══ */
.tvyx-newsletter {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.tvyx-newsletter__text {
  flex: 1;
  min-width: 240px;
}

.tvyx-newsletter__form {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.tvyx-newsletter__input {
  padding: 12px 16px;
  font-size: 15px;
  font-family: var(--tvyx-font-sans);
  border: 1.5px solid var(--tvyx-border-light);
  border-radius: 8px;
  width: 260px;
  color: var(--tvyx-fg-light-primary);
  background: var(--tvyx-bg-white);
  outline: none;
  box-sizing: border-box;
}
.tvyx-newsletter__input:focus {
  border-color: var(--tvyx-teal);
  box-shadow: 0 0 0 3px rgba(0, 184, 160, 0.15);
}

@media (max-width: 640px) {
  .tvyx-newsletter { flex-direction: column; align-items: flex-start; }
  .tvyx-newsletter__form { flex-direction: column; width: 100%; }
  .tvyx-newsletter__input { width: 100%; }
}

/* ═══ MINIMAL FOOTER (auth pages) ═══ */
.tvyx-footer--minimal {
  background: var(--tvyx-bg-dark);
  border-top: 1px solid var(--tvyx-border-dark);
  padding: 20px 0;
}
.tvyx-footer--minimal .tvyx-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.tvyx-footer--minimal .tvyx-footer__copy {
  font-size: 13px;
  color: var(--tvyx-fg-dark-muted);
}

/* ═══ INLINE SVG: EHR MATCHING PIPELINE DIAGRAM ═══ */
.tvyx-pipeline-diagram {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* ═══ SECTION SPLIT (2 col with text and visual) ═══ */
.tvyx-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.tvyx-split--visual-left {
  direction: rtl;
}
.tvyx-split--visual-left > * {
  direction: ltr;
}
.tvyx-split__text {}
.tvyx-split__visual {}
.tvyx-split__visual img {
  width: 100%;
  height: auto;
  border-radius: var(--tvyx-radius-card);
}
@media (max-width: 900px) {
  .tvyx-split { grid-template-columns: 1fr; gap: 40px; }
  .tvyx-split--visual-left { direction: ltr; }
}

/* ═══ SECTION SEPARATOR (same-polarity light→light) ═══ */
.tvyx-section--light + .tvyx-section--light {
  border-top: 1px solid var(--tvyx-border-light);
}
.tvyx-section--white + .tvyx-section--light-alt {
  /* Natural background change is enough */
}

/* ═══ BREADCRUMB ═══ */
.tvyx-breadcrumb {
  font-size: 13px;
  color: var(--tvyx-fg-light-muted);
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
}
.tvyx-breadcrumb a {
  color: var(--tvyx-teal-aa-light);
}
.tvyx-breadcrumb a:hover { text-decoration: underline; }

/* ═══ FEATURE LIST (check-list style) ═══ */
.tvyx-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
}
.tvyx-feature-list__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
}
.tvyx-feature-list__check {
  color: var(--tvyx-teal-aa-light);
  flex-shrink: 0;
  margin-top: 1px;
}
.tvyx-section--dark .tvyx-feature-list__check {
  color: var(--tvyx-teal-aa-dark);
}
.tvyx-feature-list__text {
  line-height: 1.5;
}
.tvyx-section--light .tvyx-feature-list__text,
.tvyx-section--light-alt .tvyx-feature-list__text,
.tvyx-section--white .tvyx-feature-list__text {
  color: var(--tvyx-fg-light-secondary);
}
.tvyx-section--dark .tvyx-feature-list__text,
.tvyx-section--dark-alt .tvyx-feature-list__text {
  color: var(--tvyx-fg-dark-secondary);
}

/* ═══ FADE-IN ANIMATION with failsafe ═══ */
.tvyx-fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.tvyx-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ VISUALLY HIDDEN (screen-reader only) ═══ */
.tvyx-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ═══ GENERIC CARD EXTRAS (used in feature/icon card grids) ═══ */
.tvyx-card__icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--tvyx-bg-teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--tvyx-teal-aa-light);
  font-size: 20px;
  flex-shrink: 0;
}
.tvyx-section--dark .tvyx-card__icon-wrap {
  background: rgba(0, 184, 160, 0.15);
  color: var(--tvyx-teal-aa-dark);
}

.tvyx-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.tvyx-section--light .tvyx-card__title,
.tvyx-section--light-alt .tvyx-card__title,
.tvyx-section--white .tvyx-card__title {
  color: var(--tvyx-fg-light-primary);
}
.tvyx-section--dark .tvyx-card__title,
.tvyx-section--dark-alt .tvyx-card__title {
  color: var(--tvyx-fg-dark-primary);
}

.tvyx-card__body {
  font-size: 15px;
  line-height: 1.6;
}
.tvyx-section--light .tvyx-card__body,
.tvyx-section--light-alt .tvyx-card__body,
.tvyx-section--white .tvyx-card__body {
  color: var(--tvyx-fg-light-secondary);
}
.tvyx-section--dark .tvyx-card__body,
.tvyx-section--dark-alt .tvyx-card__body {
  color: var(--tvyx-fg-dark-secondary);
}

/* ═══ FEATURE ROW (icon-left text-right layout) ═══ */
.tvyx-feature-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--tvyx-border-light);
}
.tvyx-feature-row:last-child { border-bottom: none; }
.tvyx-section--dark .tvyx-feature-row {
  border-bottom-color: var(--tvyx-border-dark);
}

.tvyx-feature-row__icon-col {
  width: 56px;
  height: 56px;
  background: var(--tvyx-bg-teal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--tvyx-teal-aa-light);
  flex-shrink: 0;
}
.tvyx-section--dark .tvyx-feature-row__icon-col {
  background: rgba(0, 184, 160, 0.12);
  color: var(--tvyx-teal-aa-dark);
}

.tvyx-feature-row__text-col {}
.tvyx-feature-row__text-col h3,
.tvyx-feature-row__text-col h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.tvyx-section--light .tvyx-feature-row__text-col h3,
.tvyx-section--light .tvyx-feature-row__text-col h4 {
  color: var(--tvyx-fg-light-primary);
}
.tvyx-section--dark .tvyx-feature-row__text-col h3,
.tvyx-section--dark .tvyx-feature-row__text-col h4 {
  color: var(--tvyx-fg-dark-primary);
}
.tvyx-feature-row__text-col p {
  font-size: 15px;
  line-height: 1.6;
}
.tvyx-section--light .tvyx-feature-row__text-col p {
  color: var(--tvyx-fg-light-secondary);
}
.tvyx-section--dark .tvyx-feature-row__text-col p {
  color: var(--tvyx-fg-dark-secondary);
}

/* ═══ PROCESS TIMELINE (vertical stacked with numbered circles) ═══ */
.tvyx-process {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tvyx-process__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  position: relative;
  padding-bottom: 40px;
}
.tvyx-process__item:last-child { padding-bottom: 0; }

.tvyx-process__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--tvyx-teal);
  color: var(--tvyx-navy);
  font-family: var(--tvyx-font-mono);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}

.tvyx-process__content {}
.tvyx-process__heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.tvyx-section--light .tvyx-process__heading,
.tvyx-section--white .tvyx-process__heading {
  color: var(--tvyx-fg-light-primary);
}
.tvyx-section--dark .tvyx-process__heading,
.tvyx-section--dark-alt .tvyx-process__heading {
  color: var(--tvyx-fg-dark-primary);
}

.tvyx-process__body {
  font-size: 15px;
  line-height: 1.6;
}
.tvyx-section--light .tvyx-process__body,
.tvyx-section--white .tvyx-process__body {
  color: var(--tvyx-fg-light-secondary);
}
.tvyx-section--dark .tvyx-process__body,
.tvyx-section--dark-alt .tvyx-process__body {
  color: var(--tvyx-fg-dark-secondary);
}

/* ═══ CASE STUDY PAGE EXTRAS ═══ */
/* Card grid on case-studies.html */
.tvyx-case-card-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Case card extras (list page) */
.tvyx-case-card__img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--tvyx-bg-light-alt);
}

.tvyx-case-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tvyx-case-card__body {}

.tvyx-case-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tvyx-teal-aa-light);
  background: var(--tvyx-bg-teal-light);
  padding: 4px 10px;
  border-radius: var(--tvyx-radius-pill);
  margin-bottom: 12px;
}

.tvyx-case-card__excerpt {
  font-size: 15px;
  color: var(--tvyx-fg-light-secondary);
  line-height: 1.55;
  margin-bottom: 20px;
}

.tvyx-case-card__stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.tvyx-case-card__stat {
  text-align: left;
}
.tvyx-case-card__stat .val {
  font-family: var(--tvyx-font-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--tvyx-teal-aa-light);
  line-height: 1;
}
.tvyx-case-card__stat .label {
  font-size: 11px;
  color: var(--tvyx-fg-light-muted);
  margin-top: 3px;
}

.tvyx-case-card__meta {
  font-size: 13px;
  color: var(--tvyx-fg-light-muted);
  font-style: italic;
  margin-bottom: 12px;
}

.tvyx-case-card__sites {
  font-size: 13px;
  color: var(--tvyx-fg-light-muted);
}

/* Case callout (teal band quote variant) */
.tvyx-case-callout {
  background: var(--tvyx-bg-brand);
  padding: 64px 0;
}

.tvyx-case-callout__quote {
  font-size: clamp(18px, 2vw, 22px);
  font-style: italic;
  color: var(--tvyx-navy);
  line-height: 1.5;
  margin-bottom: 16px;
}

/* Case study detail hero */
.tvyx-case-detail-hero {
  background: var(--tvyx-bg-dark);
  padding: 80px 0 64px;
}

.tvyx-case-detail-hero__headline {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--tvyx-fg-dark-primary);
  max-width: 760px;
  margin-bottom: 16px;
}

.tvyx-case-detail-hero__meta {
  font-size: 14px;
  color: var(--tvyx-fg-dark-secondary);
  margin-bottom: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.tvyx-case-detail-hero__kpis {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.tvyx-case-detail-kpi {
  background: rgba(0, 184, 160, 0.12);
  border: 1px solid rgba(0, 184, 160, 0.25);
  border-radius: 10px;
  padding: 20px 24px;
  min-width: 160px;
}
.tvyx-case-detail-kpi .val {
  font-family: var(--tvyx-font-mono);
  font-size: 32px;
  font-weight: 700;
  color: var(--tvyx-teal-aa-dark);
  line-height: 1;
  margin-bottom: 6px;
}
.tvyx-case-detail-kpi .label {
  font-size: 12px;
  color: var(--tvyx-fg-dark-secondary);
  line-height: 1.4;
}

.tvyx-case-cover-img {
  width: 100%;
  height: auto;
  border-radius: var(--tvyx-radius-card);
  display: block;
}

/* ═══ PLATFORM PAGE: MODULE CARDS ═══ */
.tvyx-module-card {
  background: var(--tvyx-bg-dark-alt);
  border: 1px solid var(--tvyx-border-dark);
  border-radius: var(--tvyx-radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tvyx-module-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 184, 160, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--tvyx-teal-aa-dark);
}

.tvyx-module-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--tvyx-fg-dark-primary);
}

.tvyx-module-card__body,
.tvyx-module-card__text {
  font-size: 14px;
  color: var(--tvyx-fg-dark-secondary);
  line-height: 1.55;
}

/* Platform page: security tiles */
.tvyx-security-tile {
  background: var(--tvyx-bg-white);
  border: 1px solid var(--tvyx-border-light);
  border-radius: var(--tvyx-radius-card);
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.tvyx-security-tile__icon {
  width: 56px;
  height: 56px;
  background: var(--tvyx-bg-teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--tvyx-teal-aa-light);
}

.tvyx-security-tile__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--tvyx-fg-light-primary);
}

.tvyx-security-tile__body {
  font-size: 13px;
  color: var(--tvyx-fg-light-secondary);
  line-height: 1.5;
}

/* Subhero CTA row */
.tvyx-subhero__cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* ═══ PRICING PAGE EXTRAS ═══ */
.tvyx-pricing-card__header {
  margin-bottom: 24px;
}

.tvyx-pricing-card__label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tvyx-teal-aa-light);
  margin-bottom: 8px;
}

.tvyx-pricing-card__featured-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tvyx-teal-aa-light);
  background: var(--tvyx-bg-teal-light);
  padding: 4px 10px;
  border-radius: var(--tvyx-radius-pill);
  margin-bottom: 12px;
  display: inline-block;
}

.tvyx-pricing-card__period {
  font-size: 13px;
  color: var(--tvyx-fg-light-muted);
}

.tvyx-pricing-card__body {
  margin-bottom: 24px;
}

.tvyx-pricing-card__cta {
  margin-top: auto;
}
.tvyx-pricing-card__cta .tvyx-btn {
  width: 100%;
  justify-content: center;
}

/* ═══ ABOUT PAGE EXTRAS ═══ */
.tvyx-founder-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.tvyx-founder-block__portrait-col {}

.tvyx-founder-block__portrait {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--tvyx-radius-card);
  object-fit: cover;
  border: 3px solid var(--tvyx-border-light);
  display: block;
}

.tvyx-founder-block__text-col {}

.tvyx-about-mission-visual {
  background: var(--tvyx-bg-teal-light);
  border-radius: var(--tvyx-radius-card);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  min-height: 240px;
}

.tvyx-location-map-placeholder {
  background: var(--tvyx-bg-light-alt);
  border-radius: var(--tvyx-radius-card);
  border: 1px solid var(--tvyx-border-light);
  overflow: hidden;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Value tiles (for values grid on dark section) */
.tvyx-value-tile {
  background: var(--tvyx-bg-dark-alt);
  border: 1px solid var(--tvyx-border-dark);
  border-radius: var(--tvyx-radius-card);
  padding: 28px 24px;
}

.tvyx-value-tile__icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 184, 160, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--tvyx-teal-aa-dark);
  margin-bottom: 16px;
}

.tvyx-value-tile__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--tvyx-fg-dark-primary);
  margin-bottom: 8px;
}

.tvyx-value-tile__body {
  font-size: 14px;
  color: var(--tvyx-fg-dark-secondary);
  line-height: 1.55;
}

@media (max-width: 768px) {
  .tvyx-founder-block { grid-template-columns: 1fr; }
  .tvyx-founder-block__portrait { width: 160px; border-radius: 50%; }
}

/* ═══ TEAM PAGE EXTRAS ═══ */
/* tvyx-team-card__body = bio container (already have __bio, but some pages use __body) */
.tvyx-team-card__body {
  font-size: 14px;
  color: var(--tvyx-fg-light-secondary);
  line-height: 1.55;
}

/* tvyx-team-card__role = same as __title for some templates */
.tvyx-team-card__role {
  font-size: 13px;
  color: var(--tvyx-teal-aa-light);
  font-weight: 600;
  margin-bottom: 12px;
}

/* Advisor card extras */
.tvyx-advisor-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.tvyx-advisor-card__text {}

.tvyx-advisor-card__affiliation {
  font-size: 12px;
  color: var(--tvyx-fg-light-muted);
  margin-bottom: 8px;
}

.tvyx-advisor-card__note {
  font-size: 13px;
  color: var(--tvyx-fg-light-muted);
  font-style: italic;
  margin-top: 8px;
}

/* ═══ BLOG CARD EXTRAS ═══ */
.tvyx-blog-card__img-link {
  display: block;
  overflow: hidden;
}

.tvyx-blog-card__author {
  font-size: 12px;
  color: var(--tvyx-fg-light-muted);
}

.tvyx-blog-card__read {
  font-size: 12px;
  color: var(--tvyx-fg-light-muted);
}

.tvyx-blog-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--tvyx-fg-light-muted);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--tvyx-border-light);
}

/* Blog article body-inner (max-width wrapper inside body) */
.tvyx-blog-article__body-inner {
  max-width: 720px;
  margin: 0 auto;
}

/* ═══ CONTACT PAGE EXTRAS ═══ */
.tvyx-contact-form {
  width: 100%;
}

.tvyx-contact-form-col {}

.tvyx-contact-info-block {
  background: var(--tvyx-bg-light-alt);
  border-radius: var(--tvyx-radius-card);
  padding: 32px;
  border: 1px solid var(--tvyx-border-light);
}

.tvyx-contact-info-block__heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--tvyx-fg-light-primary);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--tvyx-border-light);
}

.tvyx-contact-info-block__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--tvyx-fg-light-secondary);
  line-height: 1.5;
}
.tvyx-contact-info-block__item:last-child { margin-bottom: 0; }
.tvyx-contact-info-block__item i {
  color: var(--tvyx-teal-aa-light);
  margin-top: 2px;
  flex-shrink: 0;
}
.tvyx-contact-info-block__item a {
  color: var(--tvyx-teal-aa-light);
  text-decoration: underline;
}

.tvyx-contact-info-block__steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.tvyx-contact-info-block__steps li {
  font-size: 14px;
  color: var(--tvyx-fg-light-secondary);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.tvyx-contact-info-block__steps li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--tvyx-teal-aa-light);
  font-weight: 700;
}

/* ═══ PROCESS STEP (sub-element of a process item, label variant) ═══ */
.tvyx-process__step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  position: relative;
  padding-bottom: 40px;
}
.tvyx-process__step:last-child { padding-bottom: 0; }

/* ═══ ROI TILES (for-sponsors benefit/ROI section) ═══ */
.tvyx-roi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.tvyx-roi-tile {
  background: var(--tvyx-bg-dark-alt);
  border: 1px solid var(--tvyx-border-dark);
  border-radius: var(--tvyx-radius-card);
  padding: 24px 20px;
  text-align: center;
}

.tvyx-roi-tile__figure {
  font-family: var(--tvyx-font-mono);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: var(--tvyx-teal-aa-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.tvyx-roi-tile__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--tvyx-fg-dark-primary);
  margin-bottom: 4px;
}

.tvyx-roi-tile__sub {
  font-size: 12px;
  color: var(--tvyx-fg-dark-secondary);
}

/* ═══ TESTIMONIAL BLOCK (for-sites, other pages) ═══ */
.tvyx-testimonial {
  background: var(--tvyx-bg-white);
  border: 1px solid var(--tvyx-border-light);
  border-radius: var(--tvyx-radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tvyx-testimonial__quote {
  font-size: 16px;
  line-height: 1.65;
  color: var(--tvyx-fg-light-secondary);
  font-style: italic;
  position: relative;
  padding-left: 20px;
}
.tvyx-testimonial__quote::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 28px;
  color: var(--tvyx-teal-aa-light);
  font-style: normal;
  line-height: 1;
}

.tvyx-testimonial__attribution {
  display: flex;
  gap: 14px;
  align-items: center;
}

.tvyx-testimonial__portrait {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.tvyx-testimonial__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--tvyx-fg-light-primary);
}

.tvyx-testimonial__role {
  font-size: 12px;
  color: var(--tvyx-fg-light-muted);
}

/* ═══ PROOF STATS GRID (case-studies.html and similar) ═══ */
.tvyx-proof-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
