:root {
  --ink: #12201e;
  --muted: #5e6b68;
  --paper: #f7f8f5;
  --white: #ffffff;
  --line: #d8e0dc;
  --navy: #09243b;
  --teal: #08736f;
  --amber: #b97924;
  --sage: #e9efea;
  --shadow: 0 14px 34px rgba(9, 36, 59, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 248, 245, 0.95);
  border-bottom: 1px solid rgba(18, 32, 30, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  width: clamp(170px, 18vw, 260px);
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 22px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  padding: 5px 0;
}

.nav-toggle {
  display: none;
  padding: 8px 13px;
  border: 1px solid var(--teal);
  border-radius: 4px;
  background: transparent;
  color: var(--teal);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: var(--teal);
  color: var(--white);
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--teal);
}

.home-page .site-header {
  justify-content: flex-start;
}

.home-page .main-nav {
  justify-content: flex-start;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--teal);
}

.button.primary:hover {
  background: #065d59;
}

.button.secondary {
  color: var(--navy);
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.68);
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(420px, 1.12fr);
  min-height: calc(100vh - 76px);
  background: var(--navy);
}

.hero-copy {
  display: grid;
  align-content: center;
  padding: clamp(58px, 8vw, 112px) clamp(22px, 6vw, 82px);
  color: var(--white);
}

.eyebrow,
.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-page .hero .eyebrow {
  font-size: clamp(1.1rem, 1.7vw, 1.5rem);
}

.hero h1 {
  font-size: clamp(3.8rem, 8vw, 6.9rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero .eyebrow,
.assessment-kicker,
.outputs-kicker,
.package-kicker,
.services-kicker,
.operations-kicker {
  font-size: clamp(0.88rem, 1.1vw, 1.02rem);
}

sup {
  font-size: 0.32em;
  vertical-align: super;
}

.hero-lede {
  max-width: 660px;
  margin-top: 24px;
  font-size: clamp(1.24rem, 1.9vw, 1.85rem);
  line-height: 1.18;
  font-weight: 800;
}

.hero-lede span {
  display: block;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-media {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 36, 59, 0.52), rgba(9, 36, 59, 0.04) 48%, rgba(9, 36, 59, 0.18));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section:not(.hero) {
  padding: clamp(58px, 7vw, 96px) clamp(18px, 5vw, 72px);
}

.assessment-section,
.outputs-section,
.packages-section,
.other-products-section {
  max-width: 1180px;
  margin: 0 auto;
}

.assessment-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

h2 {
  max-width: 900px;
  font-size: clamp(1.45rem, 2.35vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.25;
}

.assessment-grid p,
.audience-copy p,
.contact-copy p {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.03rem;
}

.assessment-summary {
  display: grid;
  gap: 12px;
}

.assessment-summary article,
.output-list article,
.package-card,
.audience-cards article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.assessment-summary article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  padding: 20px;
}

.assessment-summary span {
  grid-row: span 2;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 900;
}

.assessment-summary p,
.output-list p,
.package-card p,
.service-card p,
.service-card ul {
  color: var(--muted);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 30px;
}

.output-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.output-list article {
  min-height: 190px;
  padding: 24px;
}

.output-list article::before {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  margin-bottom: 18px;
  background: var(--teal);
}

.output-list p,
.package-card p {
  margin-top: 10px;
}

.audiences-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
  background: var(--sage);
}

.audience-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.audience-cards article {
  min-height: 106px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--navy);
  font-size: 1.01rem;
  font-weight: 900;
  text-align: center;
}

.operations-band {
  color: var(--white);
  background: var(--navy);
}

.operations-band > div {
  max-width: 980px;
  margin: 0 auto;
}

.operations-band h2 {
  color: var(--white);
}

.operations-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
}

.operations-benefits li {
  padding-left: 18px;
  border-left: 3px solid var(--amber);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.package-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.package-card span {
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 10px;
  color: var(--teal);
  background: var(--sage);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package-card strong {
  display: block;
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--navy);
}

.package-card.emphasized {
  color: var(--white);
  background: var(--navy);
  border-color: rgba(255, 255, 255, 0.1);
}

.package-card.emphasized p,
.package-card.emphasized strong {
  color: rgba(255, 255, 255, 0.8);
}

.package-card.emphasized span {
  color: var(--white);
  background: var(--teal);
}

.other-products-section {
  color: var(--ink);
  background: var(--paper);
}

.service-stack {
  display: grid;
  gap: 14px;
}

.service-card {
  padding: clamp(22px, 3vw, 30px);
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card h3 {
  color: var(--navy);
  font-size: clamp(1.22rem, 1.8vw, 1.72rem);
}

.service-card h4 {
  margin: 20px 0 10px;
  color: var(--navy);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.service-card p {
  margin-top: 10px;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.service-card li::marker {
  color: var(--amber);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.62fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: stretch;
  color: var(--white);
  background: #10231f;
}

.contact-copy p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.76);
}

.contact-copy h1 {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.contact-logo {
  width: min(260px, 70%);
  margin-top: clamp(26px, 4vw, 44px);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.site-contact-cta {
  padding: clamp(48px, 6vw, 72px) clamp(18px, 5vw, 72px);
  text-align: center;
  background: var(--sage);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfcfa;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(8, 115, 111, 0.18);
  border-color: var(--teal);
}

.form-note {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.75);
  background: #091615;
}

@media (max-width: 1040px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .hero,
  .assessment-grid,
  .audiences-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 430px;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    width: 100%;
  }

  .brand-logo {
    width: min(188px, 52vw);
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    grid-column: 1 / -1;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
    gap: 0;
    padding-top: 10px;
    overflow: visible;
  }

  .nav-enhanced .main-nav {
    display: none;
  }

  .nav-enhanced .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 11px 2px;
    border-top: 1px solid rgba(18, 32, 30, 0.12);
  }

  .output-list,
  .audience-cards,
  .operations-benefits {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 52px;
  }

  .hero-media {
    min-height: 330px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .package-card,
  .output-list article {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}

.webinar-page {
  background: var(--paper);
}

.webinar-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.94fr) minmax(360px, 0.76fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(58px, 7vw, 100px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(9, 36, 59, 0.98), rgba(9, 36, 59, 0.88)),
    url("assets/eoc-wide.webp") center/cover;
}

.webinar-hero-copy {
  max-width: 820px;
}

.webinar-hero .eyebrow {
  font-size: clamp(1rem, 1.35vw, 1.25rem);
}

.featured-webinar-section .section-kicker,
.webinar-audience-section .section-kicker {
  font-size: clamp(1rem, 1.35vw, 1.25rem);
}

.webinar-hero h1 {
  max-width: 860px;
  font-size: clamp(2.15rem, 4.3vw, 4.35rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.webinar-subtitle {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.22;
  font-weight: 800;
}

.webinar-hero-copy p:not(.eyebrow):not(.webinar-subtitle) {
  max-width: 760px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.04rem;
}

.webinar-primary {
  color: var(--navy);
  background: #d9a441;
  border-color: #d9a441;
}

.webinar-primary:hover {
  background: #c7902d;
  border-color: #c7902d;
}

.webinar-secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.58);
}

.webinar-secondary:hover {
  border-color: var(--white);
}

.webinar-hero-panel {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.22);
}

.webinar-hero-panel img {
  width: 100%;
  height: clamp(280px, 34vw, 430px);
  object-fit: cover;
}

.webinar-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.webinar-stat-grid span {
  display: grid;
  min-height: 82px;
  place-items: center;
  padding: 14px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(9, 36, 59, 0.84);
  font-size: 0.84rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.webinar-overview,
.featured-webinar-section,
.webinar-audience-section,
.learning-section,
.why-webinars-matter,
.presenter-section,
.registration-section,
.webinar-closing {
  padding: clamp(58px, 7vw, 96px) clamp(18px, 5vw, 72px);
}

.webinar-overview,
.featured-webinar-section,
.learning-section,
.presenter-section,
.registration-section {
  max-width: 1180px;
  margin: 0 auto;
}

.webinar-overview,
.featured-webinar-grid,
.learning-section,
.presenter-section,
.registration-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.68fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.webinar-overview p,
.registration-copy p,
.presenter-section p,
.webinar-closing p,
.why-webinars-matter p {
  max-width: 740px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.03rem;
}

.webinar-page .webinar-overview ol li + li {
  margin-top: 12px;
}

.webinar-topic-card,
.webinar-details-card,
.webinar-description-card,
.registration-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.webinar-topic-card,
.webinar-details-card,
.webinar-description-card {
  padding: 24px;
}

.webinar-topic-card {
  align-self: center;
  justify-self: center;
  width: min(100%, 430px);
}

.webinar-topic-card ul,
.learning-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.webinar-topic-card li,
.learning-list li {
  padding-left: 18px;
  border-left: 3px solid var(--amber);
  color: var(--muted);
}

.featured-webinar-grid {
  grid-template-columns: minmax(320px, 0.58fr) minmax(0, 0.8fr);
  align-items: stretch;
}

.webinar-details-card dl {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
}

.webinar-details-card div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.webinar-details-card dt {
  color: var(--teal);
  font-weight: 900;
}

.webinar-details-card dd {
  margin: 0;
  color: var(--muted);
}

.webinar-description-card p {
  margin-top: 12px;
  color: var(--muted);
}

.webinar-audience-section {
  background: var(--sage);
}

.webinar-audience-section .section-heading,
.why-webinars-matter > div,
.webinar-closing {
  max-width: 980px;
  margin: 0 auto;
}

.webinar-audience-cards {
  max-width: 1180px;
  margin: 30px auto 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.learning-section {
  align-items: center;
}

.learning-list {
  margin-top: 0;
}

.learning-list li {
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.why-webinars-matter {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  color: var(--white);
  background: var(--navy);
}

.why-webinars-matter h2 {
  color: var(--white);
}

.why-webinars-matter p {
  max-width: none;
  color: rgba(255, 255, 255, 0.76);
}

.presenter-section {
  align-items: center;
}

.presenter-photo {
  display: grid;
  width: min(100%, 360px);
  min-height: 460px;
  aspect-ratio: 3 / 4;
  justify-self: center;
  place-items: center;
  color: var(--muted);
  background:
    linear-gradient(rgba(247, 248, 245, 0.7), rgba(247, 248, 245, 0.7)),
    url("assets/nexus-pioneer-eoc-teams-embossed.jpg") center/cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-weight: 900;
  text-transform: uppercase;
}

.presenter-title {
  color: var(--teal) !important;
  font-weight: 900;
}

.registration-section {
  align-items: stretch;
}

.registration-note {
  padding-left: 18px;
  border-left: 3px solid var(--amber);
  color: var(--navy) !important;
  font-weight: 800;
}

.registration-form {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.registration-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.registration-form input,
.registration-form select,
.registration-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfcfa;
  font: inherit;
}

.registration-form textarea {
  resize: vertical;
}

.registration-form input:focus,
.registration-form select:focus,
.registration-form textarea:focus {
  outline: 3px solid rgba(8, 115, 111, 0.18);
  border-color: var(--teal);
}

.checkbox-label {
  display: grid !important;
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--muted) !important;
  font-weight: 600 !important;
  line-height: 1.45;
}

.checkbox-label input {
  width: auto;
  margin-top: 4px;
}

.webinar-closing {
  text-align: center;
}

.closing-logo {
  width: min(220px, 52vw);
  height: auto;
  margin: 0 auto 24px;
}

.webinar-closing h2 {
  font-size: clamp(1.05rem, 1.55vw, 1.55rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
}

.webinar-closing .button {
  margin-top: 28px;
}

@media (max-width: 1040px) {
  .webinar-hero,
  .webinar-overview,
  .featured-webinar-grid,
  .learning-section,
  .why-webinars-matter,
  .presenter-section,
  .registration-section {
    grid-template-columns: 1fr;
  }

  .webinar-hero {
    min-height: auto;
  }

  .webinar-audience-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .webinar-stat-grid,
  .form-row,
  .webinar-audience-cards {
    grid-template-columns: 1fr;
  }

  .webinar-details-card div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(58px, 7vw, 100px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--navy);
}

.about-hero-copy {
  max-width: 850px;
}

.about-hero .eyebrow {
  font-size: 1.56rem;
}

.about-hero h1 {
  max-width: 900px;
  font-size: clamp(2.05rem, 4.2vw, 4.2rem);
  line-height: 0.96;
}

.about-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.about-hero .button {
  margin-top: 30px;
}

.about-cycle-section .package-kicker {
  font-size: clamp(1.15rem, 1.55vw, 1.45rem);
}

.about-intro-section,
.about-difference-section,
.about-experience-section,
.about-cycle-section,
.about-serve-section,
.about-closing {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(58px, 7vw, 96px) clamp(18px, 5vw, 72px);
}

.about-intro-section,
.about-experience-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.about-experience-section img {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  justify-self: end;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-cycle-section {
  text-align: center;
}

.about-intro-section p,
.about-difference-section p,
.about-experience-section p,
.about-closing p {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.03rem;
}

.about-question-card,
.cycle-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-question-card {
  padding: 24px;
}

.about-question-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.about-question-card li {
  padding-left: 18px;
  border-left: 3px solid var(--amber);
  color: var(--muted);
}

.about-three-column {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 48px);
}

.cycle-grid p {
  margin-top: 10px;
  color: var(--muted);
}

.cycle-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.cycle-grid article {
  padding: 20px;
}

.cycle-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 900;
}

.about-serve-section {
  max-width: none;
  background: var(--sage);
}

.about-serve-section .section-kicker {
  font-size: clamp(1.15rem, 1.55vw, 1.45rem);
}

.about-serve-section .section-heading,
.about-serve-cards {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.about-serve-cards {
  grid-template-columns: repeat(8, minmax(0, 1fr));
  margin-top: 30px;
}

.about-serve-cards article {
  grid-column: span 2;
}

.about-serve-cards article:nth-last-child(3) {
  grid-column: 2 / span 2;
}

.about-serve-cards article:nth-last-child(2) {
  grid-column: 4 / span 2;
}

.about-serve-cards article:last-child {
  grid-column: 6 / span 2;
}

.about-closing {
  text-align: center;
}

.about-closing h2 {
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  font-weight: 800;
}

.about-closing .hero-actions {
  justify-content: center;
}

@media (max-width: 1040px) {
  .about-hero,
  .about-intro-section,
  .about-experience-section,
  .about-cycle-section {
    grid-template-columns: 1fr;
  }

  .about-experience-section img {
    justify-self: center;
  }

  .about-serve-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-serve-cards article,
  .about-serve-cards article:nth-last-child(3),
  .about-serve-cards article:nth-last-child(2),
  .about-serve-cards article:last-child {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .about-three-column,
  .cycle-grid,
  .about-serve-cards {
    grid-template-columns: 1fr;
  }
}

.resources-hero {
  min-height: calc(100vh - 76px);
  padding: clamp(58px, 7vw, 100px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(9, 36, 59, 0.96), rgba(9, 36, 59, 0.82)),
    url("assets/plans-why-it-matters.png") center/cover;
}

.resources-hero-copy {
  max-width: 860px;
}

.resources-hero .eyebrow {
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
}

.resources-hero h1 {
  max-width: 900px;
  font-size: clamp(2.15rem, 4.2vw, 4.35rem);
  line-height: 0.96;
}

.resources-hero-copy p:not(.eyebrow) {
  max-width: 780px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.resources-hero .button {
  margin-top: 30px;
}

.resource-library-section .outputs-kicker {
  font-size: clamp(1.15rem, 1.55vw, 1.45rem);
}

.webinar-materials-section .package-kicker {
  font-size: clamp(1.15rem, 1.55vw, 1.45rem);
}

.external-references-section .operations-kicker {
  font-size: clamp(1.15rem, 1.55vw, 1.45rem);
}

.webinar-materials-section h2 {
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  font-weight: 400;
}

.webinar-materials-section {
  display: block;
}

.webinar-materials-section > div:first-child {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.resource-library-section .section-heading p:not(.section-kicker) + p:not(.section-kicker) {
  margin-top: 16px;
}

.resources-intro-section,
.resource-library-section,
.webinar-materials-section,
.resources-help-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(58px, 7vw, 96px) clamp(18px, 5vw, 72px);
}

.resources-intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.resources-intro-section p,
.resources-help-section p {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.03rem;
}

.resource-category-grid {
  display: grid;
  gap: 18px;
}

.resource-category,
.webinar-materials-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.resource-category {
  padding: clamp(22px, 3vw, 30px);
}

.resource-category h3 {
  color: var(--navy);
  font-size: clamp(1.22rem, 1.8vw, 1.72rem);
}

.resource-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.resource-items div {
  padding: 18px;
  background: #fbfcfa;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.resource-items h4 {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.25;
}

.resource-items p,
.webinar-materials-grid p {
  margin-top: 10px;
  color: var(--muted);
}

.resource-items a,
.webinar-materials-grid a {
  display: inline-block;
  margin-top: 14px;
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.resource-items a:hover,
.webinar-materials-grid a:hover {
  color: var(--amber);
}

.webinar-materials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1040px;
  margin: 0 auto;
}

.webinar-materials-grid article {
  padding: 24px;
}

.webinar-materials-grid article {
  min-height: 210px;
}

.external-references-section {
  display: block;
  padding: clamp(58px, 7vw, 96px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--navy);
}

.external-references-section > div {
  max-width: 820px;
  margin: 0 auto clamp(32px, 5vw, 52px);
  text-align: center;
}

.external-references-section h2 {
  color: var(--white);
}

.reference-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reference-list > li {
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--amber);
  border-radius: 6px;
  font-weight: 800;
}

.reference-list > li > ul {
  display: grid;
  gap: 6px;
  margin: 10px 0 0;
  padding-left: 20px;
  font-weight: 500;
}

.reference-list > li > ul li {
  padding: 0;
  background: transparent;
  border: 0;
}

.reference-list a {
  color: var(--white);
  text-underline-offset: 3px;
}

.reference-list a:hover,
.reference-list a:focus-visible {
  color: var(--amber);
}

.threat-monitoring-section {
  padding: clamp(64px, 8vw, 108px) clamp(18px, 5vw, 72px);
  color: var(--navy);
  background: linear-gradient(145deg, #eef2ec 0%, #f8f5ec 100%);
}

.monitoring-heading {
  max-width: 850px;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.monitoring-heading .section-kicker {
  font-size: clamp(1.15rem, 1.55vw, 1.45rem);
}

.monitoring-heading > p:last-child {
  max-width: 760px;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}

.monitoring-categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.monitoring-category {
  padding: clamp(22px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.82);
  border-top: 4px solid var(--amber);
  border-radius: 10px;
  box-shadow: 0 14px 32px rgba(16, 40, 55, 0.08);
}

.monitoring-category h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
}

.monitoring-category-intro {
  margin: -4px 0 22px;
  color: var(--slate);
  line-height: 1.65;
}

.supply-chain-category {
  grid-column: 1 / -1;
}

.national-security-category {
  grid-column: 1 / -1;
  width: calc(50% - 12px);
  justify-self: center;
}

.supply-chain-sources {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.supply-chain-sources .monitoring-source-card {
  padding: 20px;
  background: var(--white);
  border: 1px solid rgba(16, 40, 55, 0.12);
  border-radius: 8px;
}

.supply-chain-sources .monitoring-source-card + .monitoring-source-card {
  margin-top: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(16, 40, 55, 0.12);
}

.supply-chain-sources .ict-supply-chain-card {
  grid-column: 1 / -1;
  width: calc(50% - 12px);
  justify-self: center;
}

.supply-chain-use-note {
  margin-top: 24px;
  padding: 20px;
  background: rgba(9, 36, 59, 0.06);
  border-left: 4px solid var(--teal);
  border-radius: 6px;
}

.supply-chain-use-note h4 {
  margin: 0;
  color: var(--navy);
}

.supply-chain-use-note p {
  margin: 8px 0 0;
  color: var(--slate);
  line-height: 1.62;
}

.monitoring-source-card + .monitoring-source-card {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(16, 40, 55, 0.16);
}

.monitoring-source-card h4 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.monitoring-source-card h4 a {
  color: var(--teal);
  text-decoration-color: var(--amber);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.monitoring-source-card h4 a:hover,
.monitoring-source-card h4 a:focus-visible {
  color: #8a531d;
}

.monitoring-source-card h4 a:focus-visible {
  outline: 3px solid rgba(185, 121, 36, 0.35);
  outline-offset: 4px;
  border-radius: 2px;
}

.monitoring-source-card p {
  margin: 7px 0 0;
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.58;
}

.monitoring-responsible-use {
  margin-top: 28px;
  padding: clamp(22px, 3vw, 32px);
  color: var(--white);
  background: var(--navy);
  border-radius: 10px;
}

.monitoring-responsible-use h3 {
  margin: 0;
  color: var(--white);
}

.monitoring-responsible-use p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.65;
}

@media (max-width: 760px) {
  .reference-list {
    grid-template-columns: 1fr;
  }

  .monitoring-categories {
    grid-template-columns: 1fr;
  }

  .supply-chain-sources {
    grid-template-columns: 1fr;
  }

  .national-security-category,
  .supply-chain-sources .ict-supply-chain-card {
    width: 100%;
  }
}

.muted-card {
  background: var(--sage);
}

.resources-help-section {
  text-align: center;
}

.resources-help-section h2,
.resources-help-section p {
  margin-right: auto;
  margin-left: auto;
}

.resources-help-section .hero-actions {
  justify-content: center;
}

@media (max-width: 1040px) {
  .resources-hero,
  .resources-intro-section,
  .webinar-materials-section,
  .external-references-section {
    grid-template-columns: 1fr;
  }

  .resource-items,
  .webinar-materials-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 761px) and (max-width: 1040px) {
  .webinar-materials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
/* Company home page */
.company-home-page { background: #f5f4ef; color: #102b2d; }
.company-home-page .site-header { background: rgba(247, 247, 242, .97); }
.company-hero { min-height: 720px; position: relative; display: grid; align-items: center; overflow: hidden; }
.company-hero-image { position: absolute; inset: 0; background: url("assets/eoc-wide.webp") center/cover no-repeat; }
.company-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4, 30, 33, .96) 0%, rgba(4, 30, 33, .84) 43%, rgba(4, 30, 33, .22) 76%, rgba(4, 30, 33, .08) 100%); }
.company-hero-content { position: relative; z-index: 1; width: min(760px, 88vw); margin-left: clamp(28px, 7vw, 110px); padding: 90px 0 120px; color: #fff; }
.company-eyebrow { margin: 0 0 24px; color: #d5a64a; font-size: .78rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.company-hero h1 { margin: 0; max-width: 760px; font-size: clamp(3.6rem, 7vw, 7.4rem); line-height: .9; letter-spacing: -.055em; text-transform: uppercase; }
.company-hero-content > p:not(.company-eyebrow) { max-width: 660px; margin: 30px 0 0; font-size: clamp(1.05rem, 1.7vw, 1.35rem); line-height: 1.65; color: rgba(255,255,255,.86); }
.company-hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; margin-top: 38px; }
.company-primary-button { background: #d5a64a; border-color: #d5a64a; color: #102b2d; }
.company-text-link { color: #fff; font-weight: 800; text-decoration: none; }
.company-text-link span { margin-left: 7px; color: #d5a64a; }
.company-hero-note { position: absolute; z-index: 1; right: clamp(24px, 5vw, 80px); bottom: 34px; display: flex; gap: 20px; color: rgba(255,255,255,.72); font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.company-hero-note span + span::before { content: "/"; margin-right: 20px; color: #d5a64a; }
.company-intro { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(50px, 8vw, 120px); padding: 110px clamp(28px, 7vw, 110px); background: #f5f4ef; }
.company-intro h2, .company-section-heading h2, .company-proof h2, .company-resources-band h2, .company-contact h2 { margin: 14px 0 0; font-size: clamp(2.3rem, 4vw, 4.5rem); line-height: 1.02; letter-spacing: -.045em; }
.company-intro-copy { padding-top: 28px; font-size: 1.08rem; line-height: 1.8; color: #44595a; }
.company-solutions { padding: 105px clamp(28px, 7vw, 110px); background: #0d3032; color: #fff; }
.company-section-heading { max-width: 760px; margin-bottom: 58px; }
.company-solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.22); }
.company-solution-grid article { min-height: 360px; padding: 35px 34px 20px 0; }
.company-solution-grid article + article { border-left: 1px solid rgba(255,255,255,.22); padding-left: 34px; }
.solution-number { color: #d5a64a; font-weight: 800; letter-spacing: .12em; }
.company-solution-grid h3 { margin: 52px 0 18px; font-size: 1.7rem; }
.company-solution-grid p { color: rgba(255,255,255,.73); line-height: 1.7; }
.company-solution-grid a { display: inline-block; margin-top: 20px; color: #fff; font-weight: 800; text-decoration: none; }
.company-solution-grid a span { color: #d5a64a; margin-left: 5px; }
.company-proof { display: grid; grid-template-columns: 1fr 1fr; min-height: 650px; background: #fff; }
.company-proof-image { min-height: 520px; overflow: hidden; }
.company-proof-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.company-proof-copy { align-self: center; padding: 80px clamp(34px, 7vw, 110px); }
.company-proof-copy > p:not(.section-kicker) { color: #4f6060; line-height: 1.75; font-size: 1.06rem; }
.company-proof-copy ul { padding: 20px 0 20px; list-style: none; }
.company-proof-copy li { padding: 14px 0; border-bottom: 1px solid #d8ddda; font-weight: 800; }
.company-proof-copy li::before { content: "+"; margin-right: 12px; color: #c08d2d; }
.company-outline-button { border: 1px solid #0d3032; color: #0d3032; background: transparent; }
.company-resources-band { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; padding: 100px clamp(28px, 7vw, 110px); background: #d8a64b; }
.company-resource-links { border-top: 1px solid rgba(16,43,45,.35); }
.company-resource-links a { display: grid; grid-template-columns: 1fr auto; padding: 24px 0; border-bottom: 1px solid rgba(16,43,45,.35); color: #102b2d; text-decoration: none; }
.company-resource-links span { grid-column: 1; font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.company-resource-links strong { grid-column: 1; margin-top: 8px; font-size: 1.55rem; }
.company-resource-links b { grid-column: 2; grid-row: 1 / 3; align-self: center; font-size: 1.5rem; }
.company-contact { padding: 115px clamp(28px, 16vw, 260px); text-align: center; background: #f5f4ef; }
.company-contact p:not(.section-kicker) { max-width: 720px; margin: 25px auto 32px; color: #526263; font-size: 1.08rem; line-height: 1.7; }
.company-contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 820px; margin: 38px auto 0; text-align: left; }
.company-contact-form label { display: grid; gap: 8px; color: #244244; font-size: .74rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.company-contact-form input, .company-contact-form textarea { width: 100%; border: 1px solid #c4ceca; border-radius: 0; padding: 15px 16px; background: #fff; color: #102b2d; font: inherit; text-transform: none; letter-spacing: normal; }
.company-contact-message { grid-column: 1 / -1; }
.company-contact-form button { justify-self: center; grid-column: 1 / -1; margin-top: 8px; cursor: pointer; }
.company-footer { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 35px; padding: 34px clamp(28px, 7vw, 110px); background: #082527; color: rgba(255,255,255,.64); font-size: .76rem; }
.company-footer img { width: 180px; filter: brightness(0) invert(1); }
.company-footer p:last-child { text-align: right; }
@media (max-width: 900px) {
  .company-hero { min-height: 670px; }
  .company-hero-overlay { background: rgba(4,30,33,.8); }
  .company-hero-note { left: 28px; right: auto; }
  .company-intro, .company-proof, .company-resources-band { grid-template-columns: 1fr; }
  .company-solution-grid { grid-template-columns: 1fr; }
  .company-solution-grid article + article { border-left: 0; border-top: 1px solid rgba(255,255,255,.22); padding-left: 0; }
  .company-solution-grid article { min-height: auto; padding: 34px 0; }
  .company-solution-grid h3 { margin-top: 24px; }
  .company-footer { grid-template-columns: 1fr; text-align: center; }
  .company-footer img { margin: 0 auto; }
  .company-footer p:last-child { text-align: center; }
}
@media (max-width: 600px) {
  .company-hero h1 { font-size: 3.2rem; }
  .company-hero-note { gap: 8px; font-size: .55rem; }
  .company-hero-note span + span::before { margin-right: 8px; }
  .company-contact-form { grid-template-columns: 1fr; }
  .company-contact-message, .company-contact-form button { grid-column: 1; }
}
/* Content-rich company home */
.content-rich-home { background: #f3f3ee; color: #102f31; }
.content-rich-home .site-header { background: rgba(248,248,244,.98); }
.np-pad { padding: clamp(80px, 9vw, 135px) clamp(26px, 7vw, 112px); }
.np-overline { color: #e1b85f; font-size: clamp(.95rem, 1.4vw, 1.2rem); font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.np-heading-block { max-width: 900px; margin-bottom: 58px; }
.np-heading-block.light, .np-heading-block.light p { color: #fff; }
.np-heading-block h2, .np-audience-intro h2 { margin: 14px 0 0; font-size: clamp(2.5rem, 4.8vw, 5rem); line-height: 1; letter-spacing: -.05em; }
.np-heading-block > p:last-child { max-width: 760px; margin-top: 24px; color: #526667; font-size: 1.08rem; line-height: 1.75; }
.np-heading-block.light > p:last-child { color: rgba(255,255,255,.72); }
.np-hero { position: relative; min-height: 780px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, .45fr); align-items: center; gap: clamp(36px, 5vw, 80px); overflow: hidden; padding-right: clamp(26px, 7vw, 112px); color: #fff; background: #051f22; }
.np-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,31,34,.97) 0%, rgba(5,31,34,.88) 48%, rgba(5,31,34,.3) 80%); }
.np-hero-copy { position: relative; z-index: 1; width: min(900px, 100%); margin-left: clamp(26px, 7vw, 112px); padding: 100px 0 130px; }
.np-hero-logo { position: relative; z-index: 1; display: flex; justify-content: flex-end; }
.np-hero-logo img { display: block; width: min(100%, 380px); height: auto; border-radius: 50%; box-shadow: 0 24px 70px rgba(0, 0, 0, .34); }
.np-hero h1 { max-width: 900px; margin: 22px 0; font-size: clamp(2.05rem, 4.2vw, 4.2rem); line-height: .96; letter-spacing: normal; }
.np-hero-lede { max-width: 760px; font-size: clamp(1.25rem, 2.2vw, 1.75rem); line-height: 1.35; font-weight: 700; }
.np-hero-copy > p:not(.np-overline):not(.np-hero-lede) { max-width: 720px; color: rgba(255,255,255,.74); line-height: 1.7; }
.np-hero-lede + p { margin-top: 28px; }
.np-hero-copy > p:not(.np-overline):not(.np-hero-lede) + p:not(.np-overline):not(.np-hero-lede) { margin-top: 20px; }
.np-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 28px; margin-top: 38px; }
.np-button-gold { background: #d9aa50; border-color: #d9aa50; color: #102f31; }
.np-arrow-link { color: inherit; font-weight: 800; text-decoration: none; }
.np-arrow-link span { margin-left: 6px; color: #d9aa50; }
.np-problem { background: #f3f3ee; }
.np-problem .section-kicker,
.np-outcomes .section-kicker,
.np-audiences .section-kicker,
.np-resources .section-kicker { font-size: clamp(.95rem, 1.4vw, 1.2rem); }
.np-problem-grid { display: grid; grid-template-columns: 1fr .9fr; gap: clamp(45px, 8vw, 120px); align-items: center; }
.np-body-copy, .np-problem-close { color: #506465; line-height: 1.8; font-size: 1.05rem; }
.np-problem .np-body-copy p:first-child { text-align: justify; }
.np-problem .np-body-copy p + p { margin-top: 1.25rem; }
.np-problem blockquote { margin: 0; padding: 16px 0 16px 35px; border-left: 5px solid #d9aa50; color: #10383a; font-size: clamp(2rem, 3.5vw, 3.7rem); font-weight: 400; line-height: 1.1; letter-spacing: -.04em; }
.np-problem-close { max-width: none; margin-top: 55px; }
.np-outcomes { background: #f3f3ee; }
.np-outcome-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 1200px; margin: 0 auto; }
.np-outcome-grid article { display: flex; min-height: 240px; padding: 30px; flex-direction: column; justify-content: center; text-align: center; border-top: 1px solid #bdc8c4; border-right: 1px solid #bdc8c4; }
.np-outcome-grid article:nth-child(3n) { border-right: 0; }
.np-outcome-grid h3 { font-size: 1.25rem; line-height: 1.2; }
.np-outcome-grid p { color: #5c6c6d; line-height: 1.65; }
.np-audiences { background: #0b3032; color: #fff; }
.np-audience-intro { margin-bottom: 36px; text-align: center; }
.np-audience-intro > p:not(.section-kicker) { line-height: 1.7; }
.np-audience-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; width: 100%; }
.np-audience-list > span { display: flex; min-height: 180px; align-items: center; justify-content: center; flex-direction: column; gap: 16px; padding: 24px 18px; text-align: center; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.035); color: #fff; font-size: 1.08rem; font-weight: 800; }
.np-audience-icon { display: inline-grid; width: 50px; height: 50px; flex: 0 0 50px; place-items: center; border: 2px solid #d9aa50; border-radius: 50%; background: rgba(217,170,80,.1); color: #d9aa50; }
.np-audience-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.np-resources { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 9vw, 130px); background: #fff; }
.np-resource-actions { align-self: center; border-top: 1px solid #aebbb7; }
.np-resource-actions a { display: grid; grid-template-columns: 1fr auto; padding: 28px 4px; border-bottom: 1px solid #aebbb7; color: #10383a; text-decoration: none; }
.np-resource-actions span { grid-column: 1; font-size: clamp(.95rem, 1.3vw, 1.15rem); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.np-resource-actions strong { grid-column: 1; margin-top: 8px; font-size: 1.45rem; }
.np-resource-actions b { grid-column: 2; grid-row: 1 / 3; align-self: center; color: #b07c22; font-size: 1.6rem; }
.np-closing { padding: 105px clamp(26px, 12vw, 190px); text-align: center; background: #d9aa50; }
.np-closing img { width: min(390px, 80vw); }
.np-closing h2 { max-width: 900px; margin: 35px auto 18px; font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1.05; letter-spacing: -.04em; }
.np-closing p { max-width: 800px; margin: auto; line-height: 1.7; }
.np-footer { display: flex; justify-content: space-between; gap: 30px; padding: 28px clamp(26px, 7vw, 112px); background: #082426; color: rgba(255,255,255,.62); font-size: .76rem; }
.np-footer a { color: #fff; text-decoration: none; }
@media (max-width: 980px) {
  .np-hero { min-height: auto; grid-template-columns: 1fr; gap: 0; padding-right: 0; }
  .np-hero-copy { width: auto; margin: 0; padding: 82px clamp(26px, 7vw, 64px) 48px; }
  .np-hero-logo { justify-content: center; padding: 0 clamp(26px, 7vw, 64px) 82px; }
  .np-hero-logo img { width: min(100%, 340px); }
  .np-problem-grid, .np-resources { grid-template-columns: 1fr; }
  .np-audience-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .np-outcome-grid { grid-template-columns: repeat(2, 1fr); }
  .np-outcome-grid article:nth-child(3n) { border-right: 1px solid #bdc8c4; }
  .np-outcome-grid article:nth-child(2n) { border-right: 0; }
}
@media (max-width: 650px) {
  .np-hero-shade { background: rgba(5,31,34,.85); }
  .np-hero-copy { width: auto; margin: 0; padding: 72px 26px 44px; }
  .np-hero-logo { justify-content: center; padding: 0 26px 72px; }
  .np-hero-logo img { width: min(100%, 280px); }
  .np-outcome-grid { grid-template-columns: 1fr; }
  .np-audience-list { grid-template-columns: 1fr; }
  .np-outcome-grid article { padding-left: 0; border-left: 0; border-right: 0; }
  .np-footer { flex-direction: column; }
}

/* Shared primary-heading typography across all current site pages. */
.hero h1,
.webinar-hero h1,
.about-hero h1,
.resources-hero h1,
.np-hero h1,
.contact-copy h1 {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2.05rem, 4.2vw, 4.2rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: normal;
}
