/* ═══ COLOR FLOW MAP (from design-spec.theme_context_map) ═══
 * Nav: always-dark (navy bg), logo-light on dark nav always
 *   dark-top pages: transparent initially → solid navy on scroll
 *   light-top pages: solid navy always (forced)
 *
 * index.html (dark-top):
 *   nav        → transparent-on-dark → scrolled: solid navy
 *   hero       → DARK  (#0B1829)  | text: #E8EDF2 white
 *   problem-strip → STEEL (#1C2E42) | text: white
 *   solution-intro → DARK (#0B1829) | text: white
 *   platform-features → DARK_ALT (#112240) | text: white
 *   industries-strip → LIGHT (#F0F4F8) | text: dark
 *   proof-numbers → DARK (#0B1829) | text: white
 *   cta-banner  → STEEL (#1C2E42) | text: white
 *   footer      → DARK (#0B1829) | text: white-muted
 *
 * pricing.html (light-top):
 *   nav        → solid navy always
 *   hero       → LIGHT (#F0F4F8) | text: dark
 *   pricing-tiers → WHITE (#FFFFFF) | text: dark; highlighted card: dark bg
 *   pricing-faq → LIGHT (#F0F4F8) | text: dark
 *   pricing-cta → DARK (#0B1829) | text: white
 *   footer      → DARK | text: white-muted
 *
 * blog, docs, legal pages (light-top):
 *   nav        → solid navy always
 *   hero/sections → LIGHT | text: dark
 *   footer      → DARK | text: white-muted
 *
 * Key: dark-top pages → nav transparent initially → white nav links
 *      light-top pages → nav solid dark → white nav links (always white)
 *      Nav link color is ALWAYS white (nav is always dark bg)
 * ═══════════════════════════════════════════════════════════════ */

/* ─── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--fg-light-primary);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
}
body.tvx-page--light-top {
  background: var(--bg-light);
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; }

/* ─── CSS CUSTOM PROPERTIES ────────────────────────────────────── */
:root {
  --brand-primary: #0B1829;
  --brand-secondary: #112240;
  --accent-decorative: #F59E0B;
  --accent-aa-on-light: #B45309;
  --accent-aa-on-dark: #F59E0B;

  --fg-dark-primary: #E8EDF2;
  --fg-dark-secondary: #8FA3B8;
  --fg-light-primary: #0B1829;
  --fg-light-secondary: #3D5166;

  --bg-dark: #0B1829;
  --bg-dark-alt: #112240;
  --bg-light: #F0F4F8;
  --bg-light-alt: #E3EAF2;
  --bg-white: #FFFFFF;
  --bg-steel: #1C2E42;
  --bg-cream: #F8F7F4;

  --border-dark: #243854;
  --border-light: #CBD5E1;

  --status-green: #22C55E;
  --status-amber: #F59E0B;
  --status-red: #EF4444;

  --font-mono: 'IBM Plex Mono', ui-monospace, Consolas, monospace;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  --container-max: 1240px;
  --section-pad-y: 96px;
  --grid-gap: 32px;
  --card-pad: 28px;

  --nav-height: 72px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 { line-height: 1.2; }

.tvx-section--dark h1,
.tvx-section--dark h2,
.tvx-section--dark h3,
.tvx-section--dark h4,
.tvx-section--dark-alt h1,
.tvx-section--dark-alt h2,
.tvx-section--dark-alt h3,
.tvx-section--dark-alt h4,
.tvx-section--steel h1,
.tvx-section--steel h2,
.tvx-section--steel h3,
.tvx-section--steel h4 {
  color: var(--fg-dark-primary);
}

.tvx-section--light h1,
.tvx-section--light h2,
.tvx-section--light h3,
.tvx-section--light h4,
.tvx-section--white h1,
.tvx-section--white h2,
.tvx-section--white h3,
.tvx-section--white h4,
.tvx-section--light-alt h1,
.tvx-section--light-alt h2,
.tvx-section--light-alt h3,
.tvx-section--light-alt h4 {
  color: var(--fg-light-primary);
}

/* ─── LAYOUT CONTAINERS ────────────────────────────────────────── */
.tvx-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.tvx-section--dark    { background: var(--bg-dark); }
.tvx-section--dark-alt { background: var(--bg-dark-alt); }
.tvx-section--steel   { background: var(--bg-steel); }
.tvx-section--light   { background: var(--bg-light); }
.tvx-section--light-alt { background: var(--bg-light-alt); }
.tvx-section--white   { background: var(--bg-white); }
.tvx-section--cream   { background: var(--bg-cream); }

/* ─── EYEBROW ──────────────────────────────────────────────────── */
.tvx-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.tvx-section--dark .tvx-eyebrow,
.tvx-section--dark-alt .tvx-eyebrow,
.tvx-section--steel .tvx-eyebrow {
  color: var(--accent-aa-on-dark);
}

.tvx-section--light .tvx-eyebrow,
.tvx-section--light-alt .tvx-eyebrow,
.tvx-section--white .tvx-eyebrow {
  color: var(--accent-aa-on-light);
}

/* ─── NAV ──────────────────────────────────────────────────────── */
.tvx-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Dark-top pages: nav starts transparent, logo-light */
body.tvx-page--dark-top .tvx-nav {
  background: transparent;
}

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

/* Scrolled state for dark-top pages */
body.tvx-page--dark-top .tvx-nav.tvx-nav--scrolled {
  background: var(--bg-dark);
  box-shadow: 0 1px 0 var(--border-dark);
}

/* Nav always-dark-bg → body dark-top bg to avoid transparent nav on white */
body.tvx-page--dark-top {
  background: var(--bg-dark);
}

.tvx-nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}

.tvx-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 40px;
}

.tvx-nav__logo img {
  height: 32px;
  width: auto;
  max-width: 200px;
}

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

.tvx-nav__link {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--fg-dark-primary);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease;
  white-space: nowrap;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}

.tvx-nav__link:hover {
  color: var(--accent-aa-on-dark);
}

/* Dropdown */
.tvx-nav__dropdown {
  position: relative;
}

.tvx-nav__dropdown-toggle {
  background: transparent;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--fg-dark-primary);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.tvx-nav__dropdown-toggle:hover {
  color: var(--accent-aa-on-dark);
}

.tvx-nav__dropdown-icon {
  font-size: 0.625rem;
  transition: transform 0.2s ease;
}

.tvx-nav__dropdown:hover .tvx-nav__dropdown-icon,
.tvx-nav__dropdown.is-open .tvx-nav__dropdown-icon {
  transform: rotate(180deg);
}

.tvx-nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 8px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
}

.tvx-nav__dropdown:hover .tvx-nav__dropdown-menu,
.tvx-nav__dropdown.is-open .tvx-nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tvx-nav__dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--fg-dark-secondary);
  transition: background 0.15s ease, color 0.15s ease;
}

.tvx-nav__dropdown-menu a:hover {
  background: rgba(255,255,255,0.06);
  color: var(--fg-dark-primary);
}

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

/* Hamburger (mobile) */
.tvx-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
  cursor: pointer;
  aria-label: "Toggle menu";
}

.tvx-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg-dark-primary);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.tvx-nav__mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
  padding: 20px 24px 28px;
  flex-direction: column;
  gap: 4px;
}

.tvx-nav__mobile-menu.is-open {
  display: flex;
}

.tvx-nav__mobile-menu a,
.tvx-nav__mobile-menu button {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg-dark-primary);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-dark);
  text-align: left;
  width: 100%;
  cursor: pointer;
}

.tvx-nav__mobile-menu a:last-child,
.tvx-nav__mobile-menu button:last-child {
  border-bottom: none;
}

.tvx-nav__mobile-sub {
  padding-left: 16px;
  font-size: 0.9rem;
  color: var(--fg-dark-secondary);
}

/* ─── BUTTONS ──────────────────────────────────────────────────── */
.tvx-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 11px 24px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.tvx-btn--primary {
  background: var(--accent-decorative);
  color: var(--bg-dark);
  border-color: var(--accent-decorative);
}
.tvx-btn--primary:hover {
  background: #D97706;
  border-color: #D97706;
  color: var(--bg-dark);
}

.tvx-btn--primary-sm {
  background: var(--accent-decorative);
  color: var(--bg-dark);
  border-color: var(--accent-decorative);
  font-size: 0.875rem;
  padding: 8px 16px;
}
.tvx-btn--primary-sm:hover {
  background: #D97706;
  border-color: #D97706;
}

.tvx-btn--outline-dark {
  background: transparent;
  color: var(--fg-dark-primary);
  border-color: var(--border-dark);
}
.tvx-btn--outline-dark:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--fg-dark-secondary);
  color: var(--fg-dark-primary);
}

.tvx-btn--outline-light {
  background: transparent;
  color: var(--fg-light-primary);
  border-color: var(--border-light);
}
.tvx-btn--outline-light:hover {
  background: var(--bg-light-alt);
  border-color: var(--fg-light-secondary);
  color: var(--fg-light-primary);
}

.tvx-btn--ghost-dark {
  background: transparent;
  color: var(--fg-dark-primary);
  border-color: rgba(232, 237, 242, 0.3);
}
.tvx-btn--ghost-dark:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--fg-dark-secondary);
  color: var(--fg-dark-primary);
}

.tvx-btn--ghost-light {
  background: transparent;
  color: var(--fg-light-primary);
  border-color: var(--border-light);
}
.tvx-btn--ghost-light:hover {
  background: var(--bg-light-alt);
  color: var(--fg-light-primary);
}

/* Nav CTA buttons */
.tvx-nav__btn-sign-in {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-dark-secondary);
  background: transparent;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  transition: color 0.2s;
}
.tvx-nav__btn-sign-in:hover { color: var(--fg-dark-primary); }

.tvx-nav__btn-cta {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--accent-decorative);
  color: var(--bg-dark);
  border: none;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.tvx-nav__btn-cta:hover { background: #D97706; }

/* ─── FOOTER ────────────────────────────────────────────────────── */
.tvx-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
  padding-top: 64px;
  padding-bottom: 40px;
}

.tvx-footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.tvx-footer__grid {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.tvx-footer__brand img {
  height: 28px;
  width: auto;
  margin-bottom: 16px;
}

.tvx-footer__brand p {
  font-size: 0.8125rem;
  color: var(--fg-dark-secondary);
  line-height: 1.6;
}

.tvx-footer__col-heading {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dark-secondary);
  margin-bottom: 16px;
}

.tvx-footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tvx-footer__col-links a {
  font-size: 0.875rem;
  color: var(--fg-dark-secondary);
  transition: color 0.2s ease;
}

.tvx-footer__col-links a:hover {
  color: var(--fg-dark-primary);
}

.tvx-footer__bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.tvx-footer__copyright {
  font-size: 0.8125rem;
  color: var(--fg-dark-secondary);
}

.tvx-footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tvx-footer__bottom-links a {
  font-size: 0.8125rem;
  color: var(--fg-dark-secondary);
  transition: color 0.2s;
}
.tvx-footer__bottom-links a:hover {
  color: var(--fg-dark-primary);
}

.tvx-footer__address {
  font-size: 0.8125rem;
  color: var(--fg-dark-secondary);
}

/* ─── COOKIE BANNER ─────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bg-steel);
  border-top: 1px solid var(--border-dark);
  padding: 16px 24px;
}

.cookie-banner__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  font-size: 0.875rem;
  color: var(--fg-dark-secondary);
  min-width: 200px;
}

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

.cookie-banner__actions {
  flex-shrink: 0;
}

.cookie-banner__btn {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--radius-sm);
  padding: 8px 20px;
  border: 1px solid transparent;
  transition: all 0.2s;
}

.cookie-banner__btn--primary {
  background: var(--accent-decorative);
  color: var(--bg-dark);
  border-color: var(--accent-decorative);
}
.cookie-banner__btn--primary:hover {
  background: #D97706;
  border-color: #D97706;
}

/* ─── SECTION PADDING ────────────────────────────────────────────── */
.tvx-section {
  padding: var(--section-pad-y) 0;
}
.tvx-section--narrow {
  padding: 72px 0;
}

/* ─── HERO SECTIONS ──────────────────────────────────────────────── */
.tvx-hero {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 96px;
  position: relative;
  overflow: hidden;
}

.tvx-hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tvx-hero__content {
  position: relative;
  z-index: 2;
}

.tvx-hero__title {
  font-family: var(--font-mono);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--fg-dark-primary);
  line-height: 1.1;
  margin-bottom: 24px;
}

.tvx-hero__subtitle {
  font-size: 1.125rem;
  color: var(--fg-dark-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

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

.tvx-hero__visual {
  position: relative;
  z-index: 1;
}

.tvx-hero__img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  border: 1px solid var(--border-dark);
}

/* Subpage hero (lighter weight) */
.tvx-subhero {
  padding-top: calc(var(--nav-height) + 64px);
  padding-bottom: 72px;
  position: relative;
  overflow: hidden;
}

.tvx-subhero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.tvx-subhero--split .tvx-subhero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tvx-subhero__title {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.tvx-section--dark .tvx-subhero__title,
.tvx-section--dark-alt .tvx-subhero__title,
.tvx-section--steel .tvx-subhero__title {
  color: var(--fg-dark-primary);
}
.tvx-section--light .tvx-subhero__title,
.tvx-section--white .tvx-subhero__title {
  color: var(--fg-light-primary);
}

.tvx-subhero__subtitle {
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.tvx-section--dark .tvx-subhero__subtitle,
.tvx-section--dark-alt .tvx-subhero__subtitle,
.tvx-section--steel .tvx-subhero__subtitle {
  color: var(--fg-dark-secondary);
}
.tvx-section--light .tvx-subhero__subtitle,
.tvx-section--white .tvx-subhero__subtitle {
  color: var(--fg-light-secondary);
}

.tvx-subhero__visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-dark);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

/* ─── DOT GRID PATTERN (visual motif) ────────────────────────────── */
.tvx-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(248,159,11,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

/* ─── AMBER GLOW ─────────────────────────────────────────────────── */
.tvx-amber-glow {
  position: absolute;
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(245,158,11,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ─── STATUS DOTS ────────────────────────────────────────────────── */
.tvx-status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
}
.tvx-status-dot--green { background: var(--status-green); box-shadow: 0 0 0 2px rgba(34,197,94,0.25); }
.tvx-status-dot--amber { background: var(--status-amber); box-shadow: 0 0 0 2px rgba(245,158,11,0.25); }
.tvx-status-dot--red   { background: var(--status-red); box-shadow: 0 0 0 2px rgba(239,68,68,0.25); }

/* ─── FEATURE GRID ──────────────────────────────────────────────── */
.tvx-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.tvx-section-header__title {
  font-family: var(--font-mono);
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.tvx-section--dark .tvx-section-header__title,
.tvx-section--dark-alt .tvx-section-header__title,
.tvx-section--steel .tvx-section-header__title {
  color: var(--fg-dark-primary);
}

.tvx-section--light .tvx-section-header__title,
.tvx-section--white .tvx-section-header__title,
.tvx-section--light-alt .tvx-section-header__title {
  color: var(--fg-light-primary);
}

.tvx-section-header__subtitle {
  font-size: 1.0625rem;
  max-width: 600px;
  margin: 0 auto;
}

.tvx-section--dark .tvx-section-header__subtitle,
.tvx-section--dark-alt .tvx-section-header__subtitle,
.tvx-section--steel .tvx-section-header__subtitle {
  color: var(--fg-dark-secondary);
}
.tvx-section--light .tvx-section-header__subtitle,
.tvx-section--white .tvx-section-header__subtitle,
.tvx-section--light-alt .tvx-section-header__subtitle {
  color: var(--fg-light-secondary);
}

.tvx-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.tvx-feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: var(--card-pad);
}

.tvx-feature-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,158,11,0.12);
  border-radius: var(--radius-sm);
  color: var(--accent-aa-on-dark);
  font-size: 1.125rem;
  margin-bottom: 20px;
}

.tvx-feature-card__title {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--fg-dark-primary);
  margin-bottom: 10px;
}

.tvx-feature-card__desc {
  font-size: 0.9rem;
  color: var(--fg-dark-secondary);
  line-height: 1.65;
}

/* ─── STAT GRID ─────────────────────────────────────────────────── */
.tvx-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
  margin-bottom: 40px;
}

.tvx-stat-item {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
}

.tvx-stat-item__value {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-aa-on-dark);
  line-height: 1;
  margin-bottom: 12px;
}

.tvx-stat-item__label {
  font-size: 0.9375rem;
  color: var(--fg-dark-secondary);
  line-height: 1.5;
}

/* ─── GENERAL BODY TEXT ON DARK/LIGHT ────────────────────────────── */
.tvx-section--dark p,
.tvx-section--dark-alt p,
.tvx-section--steel p {
  color: var(--fg-dark-secondary);
}

.tvx-section--light p,
.tvx-section--white p,
.tvx-section--light-alt p {
  color: var(--fg-light-secondary);
}

/* ─── CTA SECTION ───────────────────────────────────────────────── */
.tvx-cta {
  text-align: center;
  padding: 80px 24px;
}

.tvx-cta__title {
  font-family: var(--font-mono);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--fg-dark-primary);
  margin-bottom: 16px;
}

.tvx-cta__subtitle {
  font-size: 1.0625rem;
  color: var(--fg-dark-secondary);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.tvx-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── HORIZONTAL RULE ACCENT ─────────────────────────────────────── */
.tvx-rule-amber {
  border: none;
  height: 0.5px;
  background: var(--accent-decorative);
  opacity: 0.3;
  margin: 48px 0;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .tvx-hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .tvx-hero__title { font-size: 2.75rem; }
  .tvx-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .tvx-stat-grid { grid-template-columns: repeat(3, 1fr); }
  .tvx-footer__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .tvx-footer__brand { display: none; }
  .tvx-subhero--split .tvx-subhero__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad-y: 72px;
    --nav-height: 64px;
  }
  .tvx-hero__title { font-size: 2rem; }
  .tvx-feature-grid { grid-template-columns: 1fr; }
  .tvx-stat-grid { grid-template-columns: 1fr; }
  .tvx-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .tvx-footer__brand { display: none; }
  .tvx-nav__links,
  .tvx-nav__actions { display: none; }
  .tvx-nav__hamburger { display: flex; }
  .tvx-section-header__title { font-size: 1.75rem; }
  .tvx-cta__title { font-size: 1.75rem; }
  .tvx-hero__inner { gap: 36px; }
  .tvx-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .tvx-hero__title { font-size: 1.75rem; }
  .tvx-footer__grid { grid-template-columns: 1fr; }
  .tvx-hero__actions { flex-direction: column; align-items: flex-start; }
}
