/* ==========================================================================
   NTV — Homepage
   Extracted verbatim from the Elementor HTML widget. The @import for fonts was
   removed; fonts are enqueued properly in functions.php as the "ntv-fonts"
   handle, which loads earlier and blocks rendering less.
   ========================================================================== */

.ntv-home {
  --ntv-red: #c8102e;
  --ntv-red-dk: #a50d26;
  --ntv-navy: #0e2a57;
  --ntv-dark: #0a1a33;
  --ntv-ink: #0e2a57;
  --ntv-gray: #5b6472;
  --ntv-soft: #8a92a0;
  --ntv-line: #e6e8ec;
  --ntv-chip: #e6e8ec;
  --ntv-radius: 0px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ntv-ink);
  line-height: 1.5;
  background: #e6e8ec;
  -webkit-font-smoothing: antialiased;
}

body.ntv-home-body,
body.page-template-ntv-home {
  background: #e6e8ec;
}

.ntv-home * { box-sizing: border-box; }
.ntv-home a { text-decoration: none; color: inherit; }
.ntv-home img { display: block; max-width: 100%; }

.ntv-home h1,
.ntv-home h2,
.ntv-home h3 {
  font-family: "Archivo", "Inter", sans-serif;
  margin: 0;
  letter-spacing: -0.01em;
}

/* ========== HERO ========== */

.ntv-home .ntv-hero {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  aspect-ratio: 1731 / 909;
  min-height: 420px;
  max-height: 78vh;
  display: flex;
  align-items: flex-end;
  background-image: url("/wp-content/uploads/2026/08/home_banner-scaled.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.ntv-home .ntv-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 20, 45, 0.45) 0%,
    rgba(10, 20, 45, 0.20) 30%,
    rgba(10, 20, 45, 0.00) 50%
  );
  z-index: 1;
}

.ntv-home .ntv-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 5% 32px;
}

.ntv-home .ntv-hero__inner {
  max-width: 640px;
  text-align: left;
}

.ntv-home .ntv-hero__text {
  font-size: clamp(18px, 1.7vw, 26px);
  color: #ffffff;
  line-height: 1.5;
  max-width: 470px;
  margin: 0 0 38px 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}

.ntv-home .ntv-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.ntv-home .ntv-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.ntv-home .ntv-hero__btn svg { flex: none; fill: currentColor; }

.ntv-home .ntv-hero__btn,
.ntv-home .ntv-hero__btn:focus { text-decoration: none; }

.ntv-home .ntv-hero__btn--primary {
  background-color: #ffffff;
  border: 2px solid #ffffff;
  color: var(--ntv-navy) !important;
}

.ntv-home .ntv-hero__btn--primary:hover {
  background-color: transparent;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.ntv-home .ntv-hero__btn--secondary {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #ffffff !important;
}

.ntv-home .ntv-hero__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.ntv-home .ntv-hero__btn:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

/* Once the viewport is narrower than the banner's own ratio, a centred crop
   trims both edges evenly and loses the subject on the right. Bias the frame
   toward that side. Tune between 70% and 100% (or use `right center` to pin
   to the far edge) once you can see it against the real image. */
@media (max-width: 1100px) {
  .ntv-home .ntv-hero {
    background-position: 78% center;
  }
}

@media (max-width: 768px) {
  .ntv-home .ntv-hero {
    aspect-ratio: auto;
    max-height: none;
    min-height: 70vh;
    background-position: 78% center;
  }
  /* Bottom-up scrim instead of left-to-right. The horizontal version darkened
     empty background once the crop moved right, and did nothing for the
     buttons sitting at the bottom of the frame. */
  .ntv-home .ntv-hero::before {
    background: linear-gradient(
      to top,
      rgba(10, 20, 45, 0.70) 0%,
      rgba(10, 20, 45, 0.35) 32%,
      rgba(10, 20, 45, 0.00) 68%
    );
  }
  .ntv-home .ntv-hero__text {
    font-size: 17px;
    max-width: 100%;
    margin-bottom: 30px;
  }
  .ntv-home .ntv-hero__buttons { gap: 12px; }
  .ntv-home .ntv-hero__btn { padding: 13px 26px; font-size: 15px; }
}

/* ========== LATEST INTELLIGENCE (full width) ========== */

.ntv-home .ntv-latest {
  background: #e6e8ec;
  border-top: 1px solid var(--ntv-line);
  border-bottom: 1px solid var(--ntv-line);
  padding: 46px 26px 70px;
}

.ntv-home .ntv-latest__container {
  max-width: 1240px;
  margin: 0 auto;
}

/* ========== DIG DEEPER ========== */

.ntv-home .ntv-dig {
  background: #e6e8ec;
  border-bottom: 1px solid var(--ntv-line);
  padding: 60px 26px 70px;
}

.ntv-home .ntv-dig__container {
  max-width: 1240px;
  margin: 0 auto;
}

.ntv-home .ntv-dig__head {
  margin-bottom: 40px;
}

.ntv-home .ntv-dig__title {
  font-family: "Archivo", "Inter", sans-serif;
  font-size: clamp(26px, 3.2vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ntv-navy);
  margin: 0;
}

/* --- Cards --- */

.ntv-home .ntv-dig-card {
  background: #fff;
  border: 1px solid var(--ntv-line);
  border-radius: var(--ntv-radius);
  padding: 32px;
  transition: border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}

.ntv-home .ntv-dig-card:hover { border-color: #b8c7e8; }

.ntv-home .ntv-dig-card--feature {
  padding: 40px;
  margin-bottom: 32px;
}

.ntv-home .ntv-dig-card__label-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.ntv-home .ntv-dig-card__icon {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #f1f3fa;
  color: var(--ntv-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ntv-home .ntv-dig-card__icon--red { color: var(--ntv-red); }

.ntv-home .ntv-dig-card__icon svg {
  width: 20px;
  height: 20px;
}

.ntv-home .ntv-dig-card__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ntv-red);
  line-height: 1.4;
}

.ntv-home .ntv-dig-card__title {
  font-family: "Archivo", "Inter", sans-serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--ntv-navy);
  margin: 0 0 12px;
}

.ntv-home .ntv-dig-card__lede {
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.6;
  color: #181c21;
  margin: 0 0 16px;
}

.ntv-home .ntv-dig-card__body {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ntv-gray);
  margin: 0 0 24px;
}

/* --- Highlight box --- */

/* margin-top: auto pins the box to the bottom of the card, so the two boxes in
   the pair line up even when one card has more body copy than the other. */
.ntv-home .ntv-dig-box {
  background: #f8f9ff;
  border: 1px solid var(--ntv-line);
  border-radius: var(--ntv-radius);
  padding: 20px;
  margin-top: auto;
}

.ntv-home .ntv-dig-box__title {
  font-family: "Archivo", "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ntv-dark);
  margin: 0 0 14px;
}

.ntv-home .ntv-dig-box__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.ntv-home .ntv-dig-box__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ntv-gray);
  margin: 0;
}

.ntv-home .ntv-dig-box__item svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--ntv-red);
}

/* --- Two-column layouts --- */

.ntv-home .ntv-dig__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

@media (min-width: 641px) {
  .ntv-home .ntv-dig-box__list--two-col { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  .ntv-home .ntv-dig__grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  .ntv-home .ntv-dig { padding: 44px 20px 52px; }
  .ntv-home .ntv-dig__head { margin-bottom: 28px; }
  .ntv-home .ntv-dig-card { padding: 24px 22px; }
  .ntv-home .ntv-dig-card--feature { padding: 26px 22px; margin-bottom: 24px; }
  .ntv-home .ntv-dig-card__lede,
  .ntv-home .ntv-dig-card__body { font-size: 15px; }
  .ntv-home .ntv-dig-box { padding: 18px; }
}

/* ========== THE LAB BRIEF (full-width signup band) ==========
   Text on the left, form on the right, so the band stays short. Type scale
   matches the old About the Platform card: 12px eyebrow, 26–38px title,
   16px body.
   ============================================================ */

.ntv-home .ntv-brief {
  padding: 40px 26px;
}

.ntv-home .ntv-signup {
  max-width: 1240px;
  margin: 0 auto;
  background: var(--ntv-dark);
  color: #fff;
  padding: 40px 48px;
  border-radius: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 48px;
  align-items: center;
}

.ntv-home .ntv-signup__text { min-width: 0; }

.ntv-home .ntv-signup__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ntv-red);
  margin-bottom: 14px;
}

.ntv-home .ntv-signup__title {
  font-family: "Archivo", "Inter", sans-serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 14px;
}

.ntv-home .ntv-signup__body {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 60ch;
  margin: 0;
}

.ntv-home .ntv-signup__form {
  display: flex;
  gap: 12px;
}

.ntv-home .ntv-signup__input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 16px 18px;
  font-family: inherit;
  font-size: 16px;
  color: var(--ntv-ink);
  background: #fff;
  border: 2px solid #fff;
  border-radius: 0;
}

.ntv-home .ntv-signup__input::placeholder {
  color: var(--ntv-soft);
}

.ntv-home .ntv-signup__input:focus {
  outline: none;
  border-color: var(--ntv-red);
}

.ntv-home .ntv-signup__btn {
  flex: 0 0 auto;
  padding: 16px 28px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  background: var(--ntv-red);
  border: 2px solid var(--ntv-red);
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.ntv-home .ntv-signup__btn:hover {
  background: var(--ntv-red-dk);
  border-color: var(--ntv-red-dk);
}

.ntv-home .ntv-signup__btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* Form drops under the text once there isn't room for both side by side. */
@media (max-width: 980px) {
  .ntv-home .ntv-signup {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px;
  }
}

@media (max-width: 768px) {
  .ntv-home .ntv-brief { padding: 32px 20px; }
  .ntv-home .ntv-signup { padding: 28px 22px; }
  .ntv-home .ntv-signup__body { font-size: 15px; }
  .ntv-home .ntv-signup__btn { padding: 14px 24px; font-size: 13px; }
}

@media (max-width: 420px) {
  .ntv-home .ntv-signup__form {
    flex-direction: column;
  }
}

/* ========== FOUNDING PARTNER ========== */

.ntv-home .ntv-founding-partner {
  background: #e6e8ec;
  padding: 64px 24px;
  border-top: 1px solid var(--ntv-line);
}

.ntv-home .ntv-founding-partner__container {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.ntv-home .ntv-founding-partner__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ntv-red);
  margin-bottom: 18px;
}

.ntv-home .ntv-founding-partner__title {
  font-family: "Archivo", "Inter", sans-serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--ntv-navy);
  line-height: 1.2;
  margin: 0 0 22px;
}

.ntv-home .ntv-founding-partner__body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ntv-gray);
  max-width: 680px;
  margin: 0 auto 32px;
}

.ntv-home .ntv-founding-partner__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.ntv-home .ntv-founding-partner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.ntv-home .ntv-founding-partner__btn--primary {
  background: var(--ntv-red);
  color: #fff !important;
  border-color: var(--ntv-red);
}

.ntv-home .ntv-founding-partner__btn--primary:hover {
  background: var(--ntv-red-dk);
  border-color: var(--ntv-red-dk);
  transform: translateY(-2px);
}

.ntv-home .ntv-founding-partner__btn:focus-visible {
  outline: 3px solid var(--ntv-navy);
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .ntv-home .ntv-founding-partner { padding: 44px 20px; }
  .ntv-home .ntv-founding-partner__body { font-size: 15.5px; }
  .ntv-home .ntv-founding-partner__btn { padding: 12px 28px; font-size: 13px; }
}

/* ========== CONTENT SECTIONS ==========
   Kept from the original stylesheet. No markup on the homepage uses these yet;
   they're here for prose sections you may add back. Safe to delete if unused.
   ====================================================================== */

.ntv-home .ntv-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
}

.ntv-home .ntv-section + .ntv-section { border-top: 1px solid #e0e0e0; }

.ntv-home .ntv-section__header {
  text-align: center;
  margin-bottom: 40px;
}

.ntv-home .ntv-section__title {
  font-size: 36px;
  font-weight: 700;
  color: #1a2b4d;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ntv-home .ntv-section__tagline {
  font-size: 20px;
  color: var(--ntv-red);
  font-weight: 600;
  margin: 0;
}

.ntv-home .ntv-section__divider {
  width: 60px;
  height: 3px;
  background-color: var(--ntv-red);
  border: none;
  margin: 20px auto 0 auto;
}

.ntv-home .ntv-section__body p {
  margin: 0 0 18px 0;
  color: #444;
  font-size: 16px;
  line-height: 1.8;
}

.ntv-home .ntv-section__body p:last-child { margin-bottom: 0; }

.ntv-home .ntv-section__body .ntv-standout {
  font-size: 18px;
  font-weight: 600;
  color: #1a2b4d;
}

.ntv-home .ntv-section__body .ntv-closing {
  font-size: 18px;
  font-weight: 700;
  color: var(--ntv-red);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .ntv-home .ntv-section { padding: 40px 20px; }
  .ntv-home .ntv-section__title { font-size: 28px; }
  .ntv-home .ntv-section__tagline { font-size: 17px; }
  .ntv-home .ntv-section__body p { font-size: 15px; line-height: 1.7; }
}

@media (prefers-reduced-motion: reduce) {
  .ntv-home .ntv-hero__btn,
  .ntv-home .ntv-dig-card,
  .ntv-home .ntv-signup__btn,
  .ntv-home .ntv-founding-partner__btn {
    transition: none;
  }
  .ntv-home .ntv-hero__btn:hover,
  .ntv-home .ntv-founding-partner__btn:hover { transform: none; }
}