.tv-home-hero {
  position: relative;
  min-height: calc(100vh - var(--tv-header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--tv-surface-page);
}

.tv-home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(22rem, 1.05fr);
  align-items: stretch;
  min-height: calc(100vh - var(--tv-header-height));
}

.tv-home-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 42rem;
  padding-block: clamp(var(--tv-space-64), 7vw, var(--tv-space-96));
  padding-right: clamp(var(--tv-space-32), 5vw, var(--tv-space-80));
}

.tv-home-hero__copy .tv-heading {
  max-width: 11ch;
  margin-bottom: var(--tv-space-24);
  color: var(--tv-color-verdant-800);
}

.tv-home-hero__intro {
  max-width: 37rem;
  margin-bottom: var(--tv-space-32);
}

.tv-home-hero__actions,
.tv-section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--tv-space-16);
  align-items: center;
}

.tv-home-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: var(--tv-space-16) var(--tv-space-32);
  padding: 0;
  margin: var(--tv-space-64) 0 0;
  list-style: none;
}

.tv-home-hero__proof li,
.tv-check-list li {
  display: flex;
  gap: var(--tv-space-10, 0.625rem);
  align-items: flex-start;
  color: var(--tv-text-secondary);
  font-size: var(--tv-text-sm);
  line-height: var(--tv-leading-ui);
}

.tv-home-hero__proof li::before,
.tv-check-list li::before {
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.45rem;
  background: var(--tv-action-primary);
  content: "";
  flex: 0 0 auto;
}

.tv-home-hero__image {
  position: relative;
  min-height: 44rem;
  overflow: hidden;
  background: var(--tv-color-verdant-700);
}

.tv-home-hero__image::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, var(--tv-surface-page) 0%, rgba(244, 239, 228, 0.78) 8%, rgba(244, 239, 228, 0) 28%), url("../hero-nature.jpg");
  background-position: left center, center;
  background-size: 100% 100%, cover;
  content: "";
}

.tv-record-card {
  position: absolute;
  right: clamp(var(--tv-space-24), 5vw, var(--tv-space-80));
  bottom: clamp(var(--tv-space-24), 5vw, var(--tv-space-80));
  width: min(24rem, calc(100% - var(--tv-space-48)));
  padding: var(--tv-space-24);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--tv-radius-lg);
  background: rgba(255, 254, 250, 0.94);
  box-shadow: var(--tv-shadow-floating);
}

.tv-record-card__label,
.tv-mini-label {
  color: var(--tv-color-verdant-600);
  font-family: var(--tv-font-display);
  font-size: var(--tv-text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tv-record-card__title {
  margin: var(--tv-space-8) 0 var(--tv-space-16);
  color: var(--tv-text-primary);
  font-family: var(--tv-font-display);
  font-size: var(--tv-text-xl);
  font-weight: 600;
  line-height: var(--tv-leading-heading);
}

.tv-record-card__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--tv-space-16);
  padding-top: var(--tv-space-16);
  border-top: 1px solid var(--tv-border-soft);
}

.tv-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(var(--tv-space-40), 7vw, var(--tv-space-96));
  align-items: start;
}

.tv-section-header {
  max-width: 44rem;
}

.tv-section-header .tv-heading {
  margin-bottom: var(--tv-space-24);
}

.tv-product-grid,
.tv-pricing-grid,
.tv-proof-grid {
  display: grid;
  gap: var(--tv-space-20);
}

.tv-product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tv-product-card {
  min-height: 15rem;
}

.tv-card__number {
  display: inline-flex;
  margin-bottom: var(--tv-space-32);
  color: var(--tv-color-parchment-500);
  font-family: var(--tv-font-display);
  font-size: var(--tv-text-sm);
  font-weight: 600;
}

.tv-pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: var(--tv-space-48);
}

.tv-price {
  margin: var(--tv-space-24) 0;
  color: var(--tv-action-primary);
  font-family: var(--tv-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1;
}

.tv-price span {
  display: block;
  margin-top: var(--tv-space-8);
  color: var(--tv-text-secondary);
  font-family: var(--tv-font-body);
  font-size: var(--tv-text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tv-process {
  display: grid;
  gap: var(--tv-space-16);
  margin-top: var(--tv-space-32);
}

.tv-process__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--tv-space-16);
  align-items: start;
}

.tv-process__num {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: var(--tv-radius-pill);
  background: var(--tv-action-primary);
  color: var(--tv-text-on-dark);
  font-family: var(--tv-font-display);
  font-size: var(--tv-text-xs);
  font-weight: 600;
}

.tv-dark-split {
  background: var(--tv-surface-dark);
  color: var(--tv-text-on-dark);
}

.tv-dark-split__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
}

.tv-dark-split__copy {
  padding: clamp(var(--tv-space-80), 9vw, var(--tv-space-120)) var(--tv-container-pad);
}

.tv-dark-split .tv-heading,
.tv-dark-split .tv-body {
  color: var(--tv-text-on-dark);
}

.tv-dark-split .tv-body {
  color: var(--tv-text-on-dark-muted);
}

.tv-dark-split__image {
  min-height: 34rem;
  background-image: url("../purpose-landscape.jpg");
  background-position: center;
  background-size: cover;
}

.tv-check-list {
  display: grid;
  gap: var(--tv-space-16);
  padding: 0;
  margin: var(--tv-space-32) 0 0;
  list-style: none;
}

.tv-check-list li::before {
  border-radius: var(--tv-radius-pill);
}

.tv-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(var(--tv-space-40), 7vw, var(--tv-space-96));
  align-items: start;
}

.tv-contact {
  background: var(--tv-surface-page-soft);
}

.tv-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(var(--tv-space-40), 7vw, var(--tv-space-96));
  align-items: start;
}

.tv-contact .tv-heading {
  margin-bottom: var(--tv-space-24);
}

@media (max-width: 1180px) {
  .tv-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1023px) {
  .tv-home-hero__grid,
  .tv-split,
  .tv-dark-split__grid,
  .tv-faq-layout,
  .tv-contact__grid {
    grid-template-columns: 1fr;
  }

  .tv-home-hero__copy {
    padding-right: 0;
  }

  .tv-home-hero__image,
  .tv-dark-split__image {
    min-height: 28rem;
  }

  .tv-home-hero__image::before {
    background-image: linear-gradient(180deg, rgba(244, 239, 228, 0) 0%, rgba(244, 239, 228, 0.08) 100%), url("../hero-nature.jpg");
  }
}

@media (max-width: 767px) {
  .tv-home-hero {
    min-height: auto;
  }

  .tv-home-hero__grid {
    min-height: auto;
  }

  .tv-home-hero__actions,
  .tv-section-actions {
    align-items: stretch;
  }

  .tv-home-hero__proof {
    display: grid;
  }

  .tv-product-grid,
  .tv-pricing-grid,
  .tv-record-card__meta {
    grid-template-columns: 1fr;
  }

  .tv-home-hero__image,
  .tv-dark-split__image {
    min-height: 23rem;
  }

  .tv-record-card {
    right: var(--tv-space-16);
    bottom: var(--tv-space-16);
    width: calc(100% - var(--tv-space-32));
  }
}
.tv-section-actions--spaced {
  margin-top: var(--tv-space-32);
}

.tv-price--dark {
  color: var(--tv-text-on-dark);
}

.tv-price--dark span {
  color: var(--tv-text-on-dark-muted);
}

.tv-dark-split .tv-eyebrow {
  color: var(--tv-color-forest-300);
}

.tv-dark-split .tv-button--secondary {
  border-color: var(--tv-border-on-dark);
  color: var(--tv-text-on-dark);
}

.tv-dark-split .tv-button--secondary:hover {
  background: rgba(245, 240, 230, 0.1);
}

/* Final homepage hero fit override: keeps the primary CTA in the first viewport. */
.tv-home-hero__copy .tv-heading {
  max-width: 17ch;
  font-size: clamp(3rem, 5vw, 4.25rem);
}

.tv-home-hero__intro {
  margin-bottom: var(--tv-space-24);
}

.tv-home-hero__proof {
  margin-top: var(--tv-space-40);
}

/* Homepage polish patch: rhythm, mobile pacing and component finish. */
.tv-home-section--receive {
  padding-bottom: clamp(var(--tv-space-96), 8vw, var(--tv-space-120));
}

.tv-home-section--how {
  padding-top: clamp(var(--tv-space-72), 7vw, var(--tv-space-104));
  padding-bottom: clamp(var(--tv-space-80), 8vw, var(--tv-space-112));
}

.tv-home-section--clarity {
  padding-block: clamp(var(--tv-space-88), 8vw, var(--tv-space-120));
}

.tv-home-section--faq {
  padding-top: clamp(var(--tv-space-72), 7vw, var(--tv-space-96));
}

.tv-home-section--contact {
  padding-top: clamp(var(--tv-space-96), 8vw, var(--tv-space-128));
}

.tv-product-card {
  transition: border-color var(--tv-motion-standard) var(--tv-ease-standard), box-shadow var(--tv-motion-standard) var(--tv-ease-standard), transform var(--tv-motion-standard) var(--tv-ease-standard);
}

.tv-product-card:hover {
  border-color: rgba(30, 96, 73, 0.22);
  box-shadow: var(--tv-shadow-card);
  transform: translateY(-2px);
}

.tv-card__number {
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--tv-space-28);
  border: 1px solid var(--tv-border-soft);
  border-radius: var(--tv-radius-pill);
  background: var(--tv-surface-page-soft);
  color: var(--tv-color-verdant-600);
}

.tv-pricing-grid .tv-card {
  display: flex;
  min-height: 21rem;
  flex-direction: column;
  justify-content: space-between;
}

.tv-pricing-grid .tv-card__eyebrow {
  min-height: 1rem;
}

.tv-price {
  min-height: 5.35rem;
  margin: var(--tv-space-20) 0 var(--tv-space-24);
}

.tv-pricing-grid .tv-card__body {
  max-width: 17rem;
}

.tv-pricing-grid .tv-card--elevated {
  border-color: rgba(30, 96, 73, 0.26);
}

.tv-pricing-grid .tv-card--dark {
  background: linear-gradient(145deg, var(--tv-surface-dark) 0%, var(--tv-color-verdant-800) 100%);
  box-shadow: 0 16px 42px rgba(14, 14, 7, 0.12);
}

.tv-dark-split__copy {
  display: flex;
  min-height: 34rem;
  flex-direction: column;
  justify-content: center;
}

.tv-dark-split__image {
  position: relative;
  min-height: 36rem;
  background-image: linear-gradient(90deg, rgba(20, 53, 40, 0.24), rgba(20, 53, 40, 0.04) 42%, rgba(20, 53, 40, 0.18)), url("../purpose-landscape.jpg");
  background-position: center;
  filter: saturate(0.92) contrast(1.04);
}

.tv-contact .tv-form-card {
  box-shadow: var(--tv-shadow-card);
}

@media (max-width: 1180px) {
  .tv-pricing-grid .tv-card {
    min-height: 17rem;
  }
}

@media (max-width: 1023px) {
  .tv-home-section--receive,
  .tv-home-section--how,
  .tv-home-section--clarity,
  .tv-home-section--faq,
  .tv-home-section--contact {
    padding-block: clamp(var(--tv-space-64), 8vw, var(--tv-space-88));
  }

  .tv-home-hero__copy {
    padding-block: clamp(var(--tv-space-64), 8vw, var(--tv-space-88)) var(--tv-space-48);
  }

  .tv-home-hero__copy .tv-heading {
    max-width: 13ch;
  }

  .tv-home-hero__proof {
    margin-top: var(--tv-space-32);
  }

  .tv-home-hero__image,
  .tv-dark-split__image {
    min-height: 24rem;
  }

  .tv-dark-split__copy {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .tv-home-hero__copy {
    padding-block: var(--tv-space-56) var(--tv-space-32);
  }

  .tv-home-hero__copy .tv-heading {
    max-width: 12ch;
    font-size: clamp(2.5rem, 11vw, 3rem);
  }

  .tv-home-hero__intro {
    margin-bottom: var(--tv-space-20);
    font-size: var(--tv-text-md);
  }

  .tv-home-hero__actions {
    gap: var(--tv-space-12);
  }

  .tv-home-hero__proof {
    gap: var(--tv-space-12);
    margin-top: var(--tv-space-28);
  }

  .tv-home-hero__image {
    min-height: 20rem;
  }

  .tv-record-card {
    padding: var(--tv-space-20);
  }

  .tv-home-section--receive,
  .tv-home-section--how,
  .tv-home-section--clarity,
  .tv-home-section--faq,
  .tv-home-section--contact {
    padding-block: var(--tv-space-64);
  }

  .tv-product-card,
  .tv-pricing-grid .tv-card {
    min-height: auto;
  }

  .tv-price {
    min-height: auto;
  }

  .tv-dark-split__copy {
    padding-block: var(--tv-space-72);
  }

  .tv-dark-split__image {
    min-height: 20rem;
    background-position: center top;
  }

  .tv-contact .tv-form-card {
    box-shadow: var(--tv-shadow-card);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tv-product-card,
  .tv-product-card:hover {
    transform: none;
  }
}
/* Programme Record signature artefact. */
.tv-record-card--evidence {
  width: min(30rem, calc(100% - var(--tv-space-48)));
  padding: clamp(var(--tv-space-24), 3vw, var(--tv-space-32));
  border: 1px solid rgba(220, 211, 192, 0.92);
  border-radius: var(--tv-radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 254, 250, 0.98), rgba(247, 242, 232, 0.96)),
    var(--tv-surface-card);
  box-shadow: 0 30px 80px rgba(14, 14, 7, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  color: var(--tv-text-primary);
}

.tv-record-card--evidence::before {
  position: absolute;
  inset: var(--tv-space-12);
  border: 1px solid rgba(220, 211, 192, 0.55);
  border-radius: calc(var(--tv-radius-lg) - 6px);
  content: "";
  pointer-events: none;
}

.tv-record-card__header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--tv-space-20);
  align-items: start;
  margin-bottom: var(--tv-space-24);
}

.tv-record-card__seal {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(30, 96, 73, 0.22);
  border-radius: var(--tv-radius-pill);
  color: var(--tv-action-primary);
  font-family: var(--tv-font-display);
  font-size: var(--tv-text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.tv-record-card--evidence .tv-record-card__label {
  margin-bottom: var(--tv-space-8);
  color: var(--tv-color-verdant-700);
}

.tv-record-card--evidence .tv-record-card__title {
  margin: 0;
  font-family: var(--tv-font-editorial);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
}

.tv-record-card__reference {
  display: grid;
  gap: var(--tv-space-6);
  padding: var(--tv-space-18) 0 var(--tv-space-20);
  border-top: 1px solid var(--tv-border-soft);
  border-bottom: 1px solid var(--tv-border-soft);
  margin-bottom: var(--tv-space-20);
}

.tv-record-card__reference span {
  color: var(--tv-text-muted);
  font-family: var(--tv-font-display);
  font-size: var(--tv-text-xs);
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.tv-record-card__reference strong {
  color: var(--tv-text-primary);
  font-family: var(--tv-font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.05;
}

.tv-record-card__meta--evidence {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--tv-space-18) var(--tv-space-24);
  padding-top: 0;
  border-top: 0;
}

.tv-record-card__meta--evidence > div {
  min-width: 0;
}

.tv-record-card__meta--evidence p {
  margin: var(--tv-space-4) 0 0;
  color: var(--tv-text-primary);
  font-family: var(--tv-font-body);
  font-size: var(--tv-text-sm);
  line-height: var(--tv-leading-ui);
}

.tv-record-card--evidence .tv-mini-label {
  color: var(--tv-text-muted);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

@media (max-width: 1023px) {
  .tv-record-card--evidence {
    width: min(32rem, calc(100% - var(--tv-space-48)));
  }
}

@media (max-width: 767px) {
  .tv-record-card--evidence {
    right: var(--tv-space-16);
    bottom: var(--tv-space-16);
    width: calc(100% - var(--tv-space-32));
    padding: var(--tv-space-20);
  }

  .tv-record-card__header {
    margin-bottom: var(--tv-space-18);
  }

  .tv-record-card__seal {
    width: 2.5rem;
    height: 2.5rem;
  }

  .tv-record-card--evidence .tv-record-card__title {
    font-size: clamp(1.55rem, 8vw, 2rem);
  }

  .tv-record-card__meta--evidence {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--tv-space-12) var(--tv-space-14);
  }

  .tv-record-card__meta--evidence p {
    font-size: 0.82rem;
  }
}
/* Documentation Pack artefact examples. */
.tv-artefact-list {
  display: grid;
  gap: var(--tv-space-8);
  padding: var(--tv-space-18) 0 0;
  margin: var(--tv-space-18) 0 0;
  border-top: 1px solid var(--tv-border-soft);
  list-style: none;
}

.tv-artefact-list li {
  display: flex;
  gap: var(--tv-space-8);
  align-items: flex-start;
  color: var(--tv-text-secondary);
  font-family: var(--tv-font-display);
  font-size: var(--tv-text-xs);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: var(--tv-leading-ui);
}

.tv-artefact-list li::before {
  width: 0.38rem;
  height: 0.38rem;
  margin-top: 0.46rem;
  border-radius: var(--tv-radius-pill);
  background: var(--tv-action-primary);
  content: "";
  flex: 0 0 auto;
}
/* Final homepage benchmark rhythm: preserve calm spacing while removing accidental dead space. */
.tv-home-section--receive {
  padding-bottom: clamp(var(--tv-space-72), 6vw, var(--tv-space-88));
}

.tv-home-section--how {
  padding-top: clamp(var(--tv-space-64), 5.5vw, var(--tv-space-88));
  padding-bottom: clamp(var(--tv-space-64), 5.5vw, var(--tv-space-88));
}

.tv-home-section--clarity {
  padding-top: clamp(var(--tv-space-80), 7vw, var(--tv-space-104));
  padding-bottom: clamp(var(--tv-space-88), 7vw, var(--tv-space-112));
}

.tv-home-section--contact {
  padding-top: clamp(var(--tv-space-80), 7vw, var(--tv-space-104));
}

.tv-product-grid {
  align-items: stretch;
}

.tv-product-card {
  display: flex;
  min-height: 16.25rem;
  flex-direction: column;
}

.tv-product-card .tv-card__body {
  margin-bottom: 0;
}

.tv-product-card--documentation {
  border-color: rgba(30, 96, 73, 0.2);
  background: linear-gradient(180deg, rgba(255, 254, 250, 0.98), rgba(247, 242, 232, 0.92));
  box-shadow: var(--tv-shadow-card);
}

.tv-product-card--documentation .tv-card__title {
  color: var(--tv-color-verdant-800);
}

.tv-product-card--documentation .tv-card__body {
  max-width: 28rem;
}

.tv-product-card--documentation .tv-artefact-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--tv-space-8);
  padding-top: var(--tv-space-16);
  margin-top: var(--tv-space-18);
}

.tv-product-card--documentation .tv-artefact-list li {
  min-height: 3.1rem;
  align-items: center;
  padding: var(--tv-space-10) var(--tv-space-12);
  border: 1px solid rgba(30, 96, 73, 0.1);
  border-radius: var(--tv-radius-sm);
  background: rgba(255, 254, 250, 0.72);
  color: var(--tv-text-primary);
  font-size: 0.73rem;
  letter-spacing: 0.02em;
}

.tv-product-card--documentation .tv-artefact-list li::before {
  width: 0.25rem;
  height: 1.25rem;
  margin-top: 0;
  border-radius: var(--tv-radius-pill);
  background: var(--tv-color-verdant-500);
}

.tv-record-card--evidence {
  width: min(29rem, calc(100% - var(--tv-space-48)));
  padding: clamp(var(--tv-space-24), 2.5vw, var(--tv-space-30));
  border-color: rgba(196, 184, 160, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 254, 250, 0.98), rgba(249, 245, 235, 0.97)),
    repeating-linear-gradient(0deg, rgba(30, 96, 73, 0.018) 0, rgba(30, 96, 73, 0.018) 1px, transparent 1px, transparent 7px);
  box-shadow: 0 18px 48px rgba(14, 14, 7, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.tv-record-card__header {
  gap: var(--tv-space-16);
  margin-bottom: var(--tv-space-20);
}

.tv-record-card--evidence .tv-record-card__label {
  margin-bottom: var(--tv-space-6);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
}

.tv-record-card--evidence .tv-record-card__title {
  font-size: clamp(1.8rem, 2.7vw, 2.45rem);
  line-height: 1.02;
}

.tv-record-card__seal {
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(255, 254, 250, 0.72);
}

.tv-record-card__reference {
  gap: var(--tv-space-4);
  padding: var(--tv-space-16) 0 var(--tv-space-18);
  margin-bottom: var(--tv-space-18);
}

.tv-record-card__reference span {
  font-size: 0.68rem;
  letter-spacing: 0.13em;
}

.tv-record-card__reference strong {
  font-size: clamp(1.22rem, 1.9vw, 1.52rem);
}

.tv-record-card__meta--evidence {
  gap: var(--tv-space-14) var(--tv-space-20);
}

.tv-record-card__meta--evidence > div {
  padding-top: var(--tv-space-10);
  border-top: 1px solid rgba(196, 184, 160, 0.55);
}

.tv-record-card__meta--evidence p {
  font-size: 0.84rem;
}

@media (max-width: 1023px) {
  .tv-home-hero__copy {
    padding-block: clamp(var(--tv-space-56), 7vw, var(--tv-space-72)) var(--tv-space-28);
  }

  .tv-home-hero__proof {
    margin-top: var(--tv-space-24);
  }

  .tv-home-hero__image {
    min-height: 25rem;
  }

  .tv-home-section--receive,
  .tv-home-section--how,
  .tv-home-section--clarity,
  .tv-home-section--faq,
  .tv-home-section--contact {
    padding-block: clamp(var(--tv-space-56), 7vw, var(--tv-space-76));
  }

  .tv-product-card--documentation .tv-artefact-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .tv-home-hero__copy {
    padding-block: var(--tv-space-44) var(--tv-space-20);
  }

  .tv-home-hero__copy .tv-heading {
    font-size: clamp(2.25rem, 10vw, 2.8rem);
  }

  .tv-home-hero__intro {
    margin-bottom: var(--tv-space-16);
  }

  .tv-home-hero__actions {
    gap: var(--tv-space-10);
  }

  .tv-home-hero__proof {
    gap: var(--tv-space-10);
    margin-top: var(--tv-space-20);
  }

  .tv-home-hero__image {
    min-height: 22rem;
  }

  .tv-record-card--evidence {
    padding: var(--tv-space-18);
  }

  .tv-record-card__header {
    margin-bottom: var(--tv-space-14);
  }

  .tv-record-card__reference {
    padding-block: var(--tv-space-14);
    margin-bottom: var(--tv-space-14);
  }

  .tv-record-card__meta--evidence {
    gap: var(--tv-space-10) var(--tv-space-12);
  }

  .tv-record-card__meta--evidence p {
    font-size: 0.78rem;
  }

  .tv-home-section--receive,
  .tv-home-section--how,
  .tv-home-section--clarity,
  .tv-home-section--faq,
  .tv-home-section--contact {
    padding-block: var(--tv-space-56);
  }

  .tv-product-card {
    min-height: auto;
  }

  .tv-product-card--documentation .tv-artefact-list li {
    min-height: auto;
  }
}
